annotate src/option.c @ 32076:32acf287a9ae v9.0.1369

patch 9.0.1369: still some "else if" constructs for setting options Commit: https://github.com/vim/vim/commit/c6ff21e876af0e3ad59664dd0f69359c4b6e9f1d Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Mar 2 14:46:48 2023 +0000 patch 9.0.1369: still some "else if" constructs for setting options Problem: Still some "else if" constructs for setting options. Solution: Add a few more functions for handling options. (Yegappan Lakshmanan, closes #12090)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Mar 2023 16:00:05 +0100
parents 6095218c9056
children e7ab58f57ea3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9959
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * Code to handle user-settable options. This is all pretty much table-
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * driven. Checklist for adding a new option:
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
13 * - Put it in the options array in optiondefs.h (copy an existing entry).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 * - For a global option: Add a variable for it in option.h.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * - For a buffer or window local option:
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
16 * - Add a PV_XX macro definition to the optiondefs.h file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 * - Add a variable to the window or buffer struct in structs.h.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 * - For a window option, add some code to copy_winopt().
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
19 * - For a window string option, add code to check_win_options() and
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
20 * clear_winopt().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * - For a buffer option, add some code to buf_copy_options().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 * - For a buffer string option, add code to check_buf_options().
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
23 * - If it's a numeric option, add any necessary bounds checks to
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
24 * set_num_option().
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
25 * - If it's a list of flags, add some code in did_set_string_option(), search
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
26 * for WW_ALL.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 * - When adding an option with expansion (P_EXPAND), but with a different
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 * default for Vi and Vim (no P_VI_DEF), add some code at VIMEXP.
10264
c036c0f636d5 commit https://github.com/vim/vim/commit/cea912af725c54f4727a0565e31661f6b29c6bb1
Christian Brabandt <cb@256bit.org>
parents: 10205
diff changeset
29 * - Add documentation! One line in doc/quickref.txt, full description in
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 * options.txt, and any other related places.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 * - Add an entry in runtime/optwin.vim.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 * When making changes:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 * - Adjust the help for the option in doc/option.txt.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 * - When an entry has the P_VIM flag, or is lacking the P_VI_DEF flag, add a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 * comment at the help for the 'compatible' option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 #define IN_OPTION_C
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 #include "vim.h"
18054
88b5c2b4e3d2 patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18047
diff changeset
40 #include "optiondefs.h"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
42 static void set_options_default(int opt_flags);
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
43 static void set_string_default_esc(char *name, char_u *val, int escape);
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
44 static char_u *find_dup_item(char_u *origval, char_u *newval, long_u flags);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
45 static char_u *option_expand(int opt_idx, char_u *val);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
46 static void didset_options(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
47 static void didset_options2(void);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
48 #if defined(FEAT_EVAL) || defined(PROTO)
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
49 static long_u *insecure_flag(int opt_idx, int opt_flags);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
50 #else
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
51 # define insecure_flag(opt_idx, opt_flags) (&options[opt_idx].flags)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
52 #endif
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
53 static char *set_bool_option(int opt_idx, char_u *varp, int value, int opt_flags);
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
54 static char *set_num_option(int opt_idx, char_u *varp, long value, char *errbuf, size_t errbuflen, int opt_flags);
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
55 static int find_key_option(char_u *arg_arg, int has_lt);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
56 static void showoptions(int all, int opt_flags);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
57 static int optval_default(struct vimoption *, char_u *varp, int compatible);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
58 static void showoneopt(struct vimoption *, int opt_flags);
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
59 static int put_setstring(FILE *fd, char *cmd, char *name, char_u **valuep, long_u flags);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
60 static int put_setnum(FILE *fd, char *cmd, char *name, long *valuep);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
61 static int put_setbool(FILE *fd, char *cmd, char *name, int value);
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
62 static int istermoption(struct vimoption *p);
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
63 static char_u *get_varp_scope(struct vimoption *p, int scope);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
64 static char_u *get_varp(struct vimoption *);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
65 static void check_win_options(win_T *win);
26441
65ab0b035dd8 patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents: 26400
diff changeset
66 static void option_value2string(struct vimoption *, int scope);
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
67 static void check_winopt(winopt_T *wop);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
68 static int wc_use_keyname(char_u *varp, long *wcp);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
69 static void paste_option_changed(void);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7697
diff changeset
70 static void compatible_set(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 /*
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
73 * Initialize the 'shell' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
74 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
75 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
76 set_init_default_shell(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 char_u *p;
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
79
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
80 // Find default value for 'shell' option.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
81 // Don't use it if it is empty.
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
82 if (((p = mch_getenv((char_u *)"SHELL")) != NULL && *p != NUL)
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
83 #if defined(MSWIN)
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
84 || ((p = mch_getenv((char_u *)"COMSPEC")) != NULL && *p != NUL)
8080
b6cb94ad97a4 commit https://github.com/vim/vim/commit/6aa2cd4be287f35f95f35c2cec6d5a24f53c4d3c
Christian Brabandt <cb@256bit.org>
parents: 7829
diff changeset
85 || ((p = (char_u *)default_shell()) != NULL && *p != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 #endif
161
6df0106fc595 updated for version 7.0049
vimboss
parents: 148
diff changeset
87 )
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
88 #if defined(MSWIN)
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
89 {
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
90 // For MS-Windows put the path in quotes instead of escaping spaces.
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
91 char_u *cmd;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
92 size_t len;
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
93
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
94 if (vim_strchr(p, ' ') != NULL)
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
95 {
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
96 len = STRLEN(p) + 3; // two quotes and a trailing NUL
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
97 cmd = alloc(len);
18243
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
98 if (cmd != NULL)
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
99 {
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
100 vim_snprintf((char *)cmd, len, "\"%s\"", p);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
101 set_string_default("sh", cmd);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
102 vim_free(cmd);
463da8586749 patch 8.1.2116: no check for out of memory
Bram Moolenaar <Bram@vim.org>
parents: 18241
diff changeset
103 }
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
104 }
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
105 else
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
106 set_string_default("sh", p);
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
107 }
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
108 #else
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
109 set_string_default_esc("sh", p, TRUE);
18241
85160a3649b9 patch 8.1.2115: MS-Windows: shell commands fail if &shell contains a space
Bram Moolenaar <Bram@vim.org>
parents: 18225
diff changeset
110 #endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
111 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
112
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
113 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
114 * Set the default for 'backupskip' to include environment variables for
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
115 * temp files.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
116 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
117 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
118 set_init_default_backupskip(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
119 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
120 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
121 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
122 char_u *p;
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
123 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
124 static char *(names[4]) = {"", "TMPDIR", "TEMP", "TMP"};
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
125 #else
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
126 static char *(names[3]) = {"TMPDIR", "TEMP", "TMP"};
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
127 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
128 int len;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
129 garray_T ga;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
130 int mustfree;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
131 char_u *item;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
132
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
133 opt_idx = findoption((char_u *)"backupskip");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
134
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
135 ga_init2(&ga, 1, 100);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
136 for (n = 0; n < (long)ARRAY_LENGTH(names); ++n)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
137 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
138 mustfree = FALSE;
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
139 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
140 if (*names[n] == NUL)
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
141 # ifdef MACOS_X
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
142 p = (char_u *)"/private/tmp";
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
143 # else
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
144 p = (char_u *)"/tmp";
29879
77141226eb2e patch 9.0.0278: the +wildignore feature is nearly always available
Bram Moolenaar <Bram@vim.org>
parents: 29853
diff changeset
145 # endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
146 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
147 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
148 p = vim_getenv((char_u *)names[n], &mustfree);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
149 if (p != NULL && *p != NUL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
150 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
151 // First time count the NUL, otherwise count the ','.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
152 len = (int)STRLEN(p) + 3;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
153 item = alloc(len);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
154 STRCPY(item, p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
155 add_pathsep(item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
156 STRCAT(item, "*");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
157 if (find_dup_item(ga.ga_data, item, options[opt_idx].flags)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
158 == NULL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
159 && ga_grow(&ga, len) == OK)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 {
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
161 if (ga.ga_len > 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
162 STRCAT(ga.ga_data, ",");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
163 STRCAT(ga.ga_data, item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
164 ga.ga_len += len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
166 vim_free(item);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
167 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
168 if (mustfree)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
169 vim_free(p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
170 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
171 if (ga.ga_data != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
172 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
173 set_string_default("bsk", ga.ga_data);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
174 vim_free(ga.ga_data);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
175 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
176 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
177
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
178 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
179 * Initialize the 'maxmemtot' and 'maxmem' options to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
180 * 'maxmemtot' and 'maxmem' may have to be adjusted for available memory.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
181 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
182 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
183 set_init_default_maxmemtot(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
184 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
185 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
186 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
187
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 opt_idx = findoption((char_u *)"maxmemtot");
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
189 if (opt_idx < 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
190 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
191
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
193 if (options[opt_idx].def_val[VI_DEFAULT] == (char_u *)0L)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
194 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
195 {
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
196 #if defined(HAVE_AVAIL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
197 // Use amount of memory available at this moment.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
198 n = (mch_avail_mem(FALSE) >> 1);
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
199 #elif defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
200 // Use amount of memory available to Vim.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
201 n = (mch_total_mem(FALSE) >> 1);
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
202 #else
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
203 n = (0x7fffffff >> 11);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
204 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
205 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
206 opt_idx = findoption((char_u *)"maxmem");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
207 if (opt_idx >= 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
208 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
209 #if !defined(HAVE_AVAIL_MEM) && !defined(HAVE_TOTAL_MEM)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
210 if ((long)(long_i)options[opt_idx].def_val[VI_DEFAULT] > (long)n
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
211 || (long)(long_i)options[opt_idx].def_val[VI_DEFAULT] == 0L)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
212 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
213 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)n;
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
214 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
216 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
217
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
218 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
219 * Initialize the 'cdpath' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
220 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
221 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
222 set_init_default_cdpath(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
223 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
224 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
225 char_u *cdpath;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
226 char_u *buf;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
227 int i;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
228 int j;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
229 int mustfree = FALSE;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
230
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
231 cdpath = vim_getenv((char_u *)"CDPATH", &mustfree);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
232 if (cdpath == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
233 return;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
234
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
235 buf = alloc((STRLEN(cdpath) << 1) + 2);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
236 if (buf != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
237 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
238 buf[0] = ','; // start with ",", current dir first
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
239 j = 1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
240 for (i = 0; cdpath[i] != NUL; ++i)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
241 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
242 if (vim_ispathlistsep(cdpath[i]))
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
243 buf[j++] = ',';
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
244 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245 {
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
246 if (cdpath[i] == ' ' || cdpath[i] == ',')
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
247 buf[j++] = '\\';
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
248 buf[j++] = cdpath[i];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249 }
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
250 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
251 buf[j] = NUL;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
252 opt_idx = findoption((char_u *)"cdpath");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
253 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
254 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
255 options[opt_idx].def_val[VI_DEFAULT] = buf;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
256 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
257 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
258 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
259 vim_free(buf); // cannot happen
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
260 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
261 if (mustfree)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
262 vim_free(cdpath);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
263 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
264
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
265 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
266 * Initialize the 'printencoding' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
267 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
268 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
269 set_init_default_printencoding(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
270 {
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
271 #if defined(FEAT_POSTSCRIPT) && \
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
272 (defined(MSWIN) || defined(VMS) || defined(MAC) || defined(hpux))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
273 // Set print encoding on platforms that don't default to latin1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 set_string_default("penc",
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
275 # if defined(MSWIN)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
276 (char_u *)"cp1252"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
277 # elif defined(VMS)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
278 (char_u *)"dec-mcs"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
279 # elif defined(MAC)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
280 (char_u *)"mac-roman"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
281 # else // HPUX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
282 (char_u *)"hp-roman8"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
283 # endif
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
284 );
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
285 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
286 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288 #ifdef FEAT_POSTSCRIPT
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
289 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
290 * Initialize the 'printexpr' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
291 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
292 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
293 set_init_default_printexpr(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
294 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
295 // 'printexpr' must be allocated to be able to evaluate it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 set_string_default("pexpr",
8212
05b88224cea1 commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents: 8182
diff changeset
297 # if defined(MSWIN)
8
7edf9b6e4c36 Various changes
vimboss
parents: 7
diff changeset
298 (char_u *)"system('copy' . ' ' . v:fname_in . (&printdevice == '' ? ' LPT1:' : (' \"' . &printdevice . '\"'))) . delete(v:fname_in)"
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
299 # elif defined(VMS)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 (char_u *)"system('print/delete' . (&printdevice == '' ? '' : ' /queue=' . &printdevice) . ' ' . v:fname_in)"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301
28337
1cd053ebb5fc patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents: 28177
diff changeset
302 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 (char_u *)"system('lpr' . (&printdevice == '' ? '' : ' -P' . &printdevice) . ' ' . v:fname_in) . delete(v:fname_in) + v:shell_error"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 );
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
306 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
307 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
308
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
309 #ifdef UNIX
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
310 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
311 * Force restricted-mode on for "nologin" or "false" $SHELL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
312 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
313 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
314 set_init_restricted_mode(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
315 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
316 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
317
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
318 p = get_isolated_shell_name();
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
319 if (p == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
320 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
321 if (fnamecmp(p, "nologin") == 0 || fnamecmp(p, "false") == 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
322 restricted = TRUE;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
323 vim_free(p);
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
324 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
325 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
326
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
327 #ifdef CLEAN_RUNTIMEPATH
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
328 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
329 * When Vim is started with the "--clean" argument, set the default value
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
330 * for the 'runtimepath' and 'packpath' options.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
331 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
332 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
333 set_init_clean_rtp(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
334 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
335 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
336
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
337 opt_idx = findoption((char_u *)"runtimepath");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
338 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
339 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
340 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
341 p_rtp = (char_u *)CLEAN_RUNTIMEPATH;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
342 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
343 opt_idx = findoption((char_u *)"packpath");
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
344 if (opt_idx < 0)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
345 return;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
346 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)CLEAN_RUNTIMEPATH;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
347 p_pp = (char_u *)CLEAN_RUNTIMEPATH;
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
348 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
349 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
350
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
351 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
352 * Expand environment variables and things like "~" for the defaults.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
353 * If option_expand() returns non-NULL the variable is expanded. This can
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
354 * only happen for non-indirect options.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
355 * Also set the default to the expanded value, so ":set" does not list
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
356 * them.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
357 * Don't set the P_ALLOCED flag, because we don't want to free the
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
358 * default.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
359 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
360 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
361 set_init_expand_env(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
362 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
363 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
364 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
365
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
366 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
367 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
368 if ((options[opt_idx].flags & P_GETTEXT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
369 && options[opt_idx].var != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
370 p = (char_u *)_(*(char **)options[opt_idx].var);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
371 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
372 p = option_expand(opt_idx, NULL);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
373 if (p != NULL && (p = vim_strsave(p)) != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
374 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
375 *(char_u **)options[opt_idx].var = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
376 // VIMEXP
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
377 // Defaults for all expanded options are currently the same for Vi
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
378 // and Vim. When this changes, add some code here! Also need to
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
379 // split P_DEF_ALLOCED in two.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
380 if (options[opt_idx].flags & P_DEF_ALLOCED)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
381 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
382 options[opt_idx].def_val[VI_DEFAULT] = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
383 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
384 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
385 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
386 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
387
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
388 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
389 * Initialize the 'LANG' environment variable to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
390 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
391 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
392 set_init_lang_env(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
393 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
394 #if defined(MSWIN) && defined(FEAT_GETTEXT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
395 // If $LANG isn't set, try to get a good value for it. This makes the
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
396 // right language be used automatically. Don't do this for English.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
397 if (mch_getenv((char_u *)"LANG") == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
398 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
399 char buf[20];
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
400 long_u n;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
401
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
402 // Could use LOCALE_SISO639LANGNAME, but it's not in Win95.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
403 // LOCALE_SABBREVLANGNAME gives us three letters, like "enu", we use
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
404 // only the first two.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
405 n = GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SABBREVLANGNAME,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
406 (LPTSTR)buf, 20);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
407 if (n >= 2 && STRNICMP(buf, "en", 2) != 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
408 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
409 // There are a few exceptions (probably more)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
410 if (STRNICMP(buf, "cht", 3) == 0 || STRNICMP(buf, "zht", 3) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
411 STRCPY(buf, "zh_TW");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
412 else if (STRNICMP(buf, "chs", 3) == 0
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
413 || STRNICMP(buf, "zhc", 3) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
414 STRCPY(buf, "zh_CN");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
415 else if (STRNICMP(buf, "jp", 2) == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
416 STRCPY(buf, "ja");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
417 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
418 buf[2] = NUL; // truncate to two-letter code
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
419 vim_setenv((char_u *)"LANG", (char_u *)buf);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
420 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
421 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
422 #elif defined(MACOS_CONVERT)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
423 // Moved to os_mac_conv.c to avoid dependency problems.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
424 mac_lang_init();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
425 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
426 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
427
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
428 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
429 * Initialize the 'encoding' option to a default value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
430 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
431 static void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
432 set_init_default_encoding(void)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
433 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
434 char_u *p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
435 int opt_idx;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
436
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
437 # ifdef MSWIN
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
438 // MS-Windows has builtin support for conversion to and from Unicode, using
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
439 // "utf-8" for 'encoding' should work best for most users.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
440 p = vim_strsave((char_u *)ENC_DFLT);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
441 # else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
442 // enc_locale() will try to find the encoding of the current locale.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
443 // This works best for properly configured systems, old and new.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
444 p = enc_locale();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
445 # endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
446 if (p == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
447 return;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
448
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
449 // Try setting 'encoding' and check if the value is valid.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
450 // If not, go back to the default encoding.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
451 char_u *save_enc = p_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
452 p_enc = p;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
453 if (STRCMP(p_enc, "gb18030") == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
454 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
455 // We don't support "gb18030", but "cp936" is a good substitute
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
456 // for practical purposes, thus use that. It's not an alias to
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
457 // still support conversion between gb18030 and utf-8.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
458 p_enc = vim_strsave((char_u *)"cp936");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
459 vim_free(p);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
460 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
461 if (mb_init() == NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
462 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
463 opt_idx = findoption((char_u *)"encoding");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
464 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
465 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
466 options[opt_idx].def_val[VI_DEFAULT] = p_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
467 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
468 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
469
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
470 #if defined(MSWIN) || defined(MACOS_X) || defined(VMS)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
471 if (STRCMP(p_enc, "latin1") == 0 || enc_utf8)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
472 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
473 // Adjust the default for 'isprint' and 'iskeyword' to match
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
474 // latin1. Also set the defaults for when 'nocompatible' is
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
475 // set.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
476 set_string_option_direct((char_u *)"isp", -1,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
477 ISP_LATIN1, OPT_FREE, SID_NONE);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
478 set_string_option_direct((char_u *)"isk", -1,
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
479 ISK_LATIN1, OPT_FREE, SID_NONE);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
480 opt_idx = findoption((char_u *)"isp");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
481 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
482 options[opt_idx].def_val[VIM_DEFAULT] = ISP_LATIN1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
483 opt_idx = findoption((char_u *)"isk");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
484 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
485 options[opt_idx].def_val[VIM_DEFAULT] = ISK_LATIN1;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
486 (void)init_chartab();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
487 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
488 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
489
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
490 #if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
491 // Win32 console: When GetACP() returns a different value from
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
492 // GetConsoleCP() set 'termencoding'.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
493 if (
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
494 # ifdef VIMDLL
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
495 (!gui.in_use && !gui.starting) &&
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
496 # endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
497 GetACP() != GetConsoleCP())
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
498 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
499 char buf[50];
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
500
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
501 // Win32 console: In ConPTY, GetConsoleCP() returns zero.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
502 // Use an alternative value.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
503 if (GetConsoleCP() == 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
504 sprintf(buf, "cp%ld", (long)GetACP());
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
505 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
506 sprintf(buf, "cp%ld", (long)GetConsoleCP());
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
507 p_tenc = vim_strsave((char_u *)buf);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
508 if (p_tenc != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
509 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
510 opt_idx = findoption((char_u *)"termencoding");
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
511 if (opt_idx >= 0)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
512 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
513 options[opt_idx].def_val[VI_DEFAULT] = p_tenc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
514 options[opt_idx].flags |= P_DEF_ALLOCED;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
515 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
516 convert_setup(&input_conv, p_tenc, p_enc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
517 convert_setup(&output_conv, p_enc, p_tenc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
518 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
519 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
520 p_tenc = empty_option;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
521 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
522 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
523 #if defined(MSWIN)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
524 // $HOME may have characters in active code page.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
525 init_homedir();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
526 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
527 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
528 else
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
529 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
530 vim_free(p_enc);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
531 p_enc = save_enc;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
532 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
533 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
534
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
535 /*
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
536 * Initialize the options, first part.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
537 *
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
538 * Called only once from main(), just after creating the first buffer.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
539 * If "clean_arg" is TRUE Vim was started with --clean.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
540 */
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
541 void
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
542 set_init_1(int clean_arg)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
543 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
544 #ifdef FEAT_LANGMAP
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
545 langmap_init();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
546 #endif
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
547
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
548 // Be Vi compatible by default
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
549 p_cp = TRUE;
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
550
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
551 // Use POSIX compatibility when $VIM_POSIX is set.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
552 if (mch_getenv((char_u *)"VIM_POSIX") != NULL)
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
553 {
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
554 set_string_default("cpo", (char_u *)CPO_ALL);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
555 set_string_default("shm", (char_u *)SHM_POSIX);
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
556 }
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
557
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
558 set_init_default_shell();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
559 set_init_default_backupskip();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
560 set_init_default_maxmemtot();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
561 set_init_default_cdpath();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
562 set_init_default_printencoding();
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
563 #ifdef FEAT_POSTSCRIPT
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
564 set_init_default_printexpr();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 * Set all the options (except the terminal options) to their default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 * value. Also set the global value for local options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 set_options_default(0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572
27509
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
573 #ifdef UNIX
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
574 set_init_restricted_mode();
27509
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
575 #endif
ef32ea9fbe6c patch 8.2.4282: restricted mode requires the -Z command line option
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
576
13361
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
577 #ifdef CLEAN_RUNTIMEPATH
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
578 if (clean_arg)
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
579 set_init_clean_rtp();
13361
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
580 #endif
65c29bd4548b patch 8.0.1554: custom plugins loaded with --clean
Christian Brabandt <cb@256bit.org>
parents: 13314
diff changeset
581
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 if (found_reverse_arg)
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
584 set_option_value_give_err((char_u *)"bg", 0L, (char_u *)"dark", 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 curbuf->b_p_initialized = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
588 curbuf->b_p_ar = -1; // no local 'autoread' value
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
589 curbuf->b_p_ul = NO_LOCAL_UNDOLEVEL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590 check_buf_options(curbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
591 check_win_options(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592 check_options();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
593
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
594 // Must be before option_expand(), because that one needs vim_isIDc()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 didset_options();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
597 #ifdef FEAT_SPELL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
598 // Use the current chartab for the generic chartab. This is not in
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
599 // didset_options() because it only depends on 'encoding'.
227
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
600 init_spell_chartab();
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
601 #endif
ef254e0f2365 updated for version 7.0063
vimboss
parents: 221
diff changeset
602
31962
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31958
diff changeset
603 set_init_default_encoding();
4efcb5c68112 patch 9.0.1313: some settings use the current codepage instead of 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 31958
diff changeset
604
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
605 // Expand environment variables and things like "~" for the defaults.
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
606 set_init_expand_env();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
608 save_file_ff(curbuf); // Buffer is unchanged
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 #if defined(FEAT_ARABIC)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
611 // Detect use of mlterm.
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
612 // Mlterm is a terminal emulator akin to xterm that has some special
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
613 // abilities (bidi namely).
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
614 // NOTE: mlterm's author is being asked to 'set' a variable
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
615 // instead of an environment variable due to inheritance.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 if (mch_getenv((char_u *)"MLTERM") != NULL)
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
617 set_option_value_give_err((char_u *)"tbidi", 1L, NULL, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
620 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621
31926
6072c1d9fe2a patch 9.0.1295: the option initialization function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31924
diff changeset
622 set_init_lang_env();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 #ifdef FEAT_MULTI_LANG
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
625 // Set the default for 'helplang'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 set_helplang_default(get_mess_lang());
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
630 static char_u *fencs_utf8_default = (char_u *)"ucs-bom,utf-8,default,latin1";
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
631
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
632 /*
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
633 * Set the "fileencodings" option to the default value for when 'encoding' is
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
634 * utf-8.
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
635 */
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
636 void
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
637 set_fencs_unicode(void)
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
638 {
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
639 set_string_option_direct((char_u *)"fencs", -1, fencs_utf8_default,
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
640 OPT_FREE, 0);
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
641 }
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
642
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
644 * Set an option to its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 * This does not take care of side effects!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
648 set_option_default(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
649 int opt_idx,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
650 int opt_flags, // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
651 int compatible) // use Vi default value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
653 char_u *varp; // pointer to variable for current option
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
654 int dvi; // index in def_val[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 long_u flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
656 long_u *flagsp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 varp = get_varp_scope(&(options[opt_idx]), both ? OPT_LOCAL : opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 flags = options[opt_idx].flags;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
661 if (varp != NULL) // skip hidden option, nothing to do for it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 dvi = ((flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 if (flags & P_STRING)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 {
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
666 // 'fencs' default value depends on 'encoding'
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
667 if (options[opt_idx].var == (char_u *)&p_fencs && enc_utf8)
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
668 set_fencs_unicode();
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
669 // Use set_string_option_direct() for local options to handle
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
670 // freeing and allocating the value.
24912
02fa8d72e4e3 patch 8.2.2993: 'fileencodings' default value should depend on 'encoding'
Bram Moolenaar <Bram@vim.org>
parents: 24768
diff changeset
671 else if (options[opt_idx].indir != PV_NONE)
13845
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
672 set_string_option_direct(NULL, opt_idx,
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
673 options[opt_idx].def_val[dvi], opt_flags, 0);
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
674 else
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
675 {
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
676 if ((opt_flags & OPT_FREE) && (flags & P_ALLOCED))
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
677 free_string_option(*(char_u **)(varp));
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
678 *(char_u **)varp = options[opt_idx].def_val[dvi];
f22db93bd887 patch 8.0.1794: duplicate term options after renaming
Christian Brabandt <cb@256bit.org>
parents: 13823
diff changeset
679 options[opt_idx].flags &= ~P_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 else if (flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 {
1017
0d31f8a78ab3 updated for version 7.0-143
vimboss
parents: 1004
diff changeset
684 if (options[opt_idx].indir == PV_SCROLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 win_comp_scroll(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 {
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
688 long def_val = (long)(long_i)options[opt_idx].def_val[dvi];
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
689
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
690 if ((long *)varp == &curwin->w_p_so
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
691 || (long *)varp == &curwin->w_p_siso)
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
692 // 'scrolloff' and 'sidescrolloff' local values have a
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
693 // different default value than the global default.
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
694 *(long *)varp = -1;
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
695 else
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
696 *(long *)varp = def_val;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
697 // May also set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 if (both)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
700 def_val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
703 else // P_BOOL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
705 // the cast to long is required for Manx C, long_i is needed for
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
706 // MSVC
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
707 *(int *)varp = (int)(long)(long_i)options[opt_idx].def_val[dvi];
1111
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
708 #ifdef UNIX
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
709 // 'modeline' defaults to off for root
1111
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
710 if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID)
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
711 *(int *)varp = FALSE;
53fd0a213cff updated for version 7.0-237
vimboss
parents: 1110
diff changeset
712 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
713 // May also set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 if (both)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 *(int *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 }
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
718
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
719 // The default value is not insecure.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
720 flagsp = insecure_flag(opt_idx, opt_flags);
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
721 *flagsp = *flagsp & ~P_INSECURE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 #ifdef FEAT_EVAL
14700
0a3b9ecf7cb8 patch 8.1.0362: cannot get the script line number when executing a function
Christian Brabandt <cb@256bit.org>
parents: 14479
diff changeset
725 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 * Set all options (except terminal options) to their default value.
7034
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7007
diff changeset
731 * When "opt_flags" is non-zero skip 'encoding'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
734 set_options_default(
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
735 int opt_flags) // OPT_FREE, OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 win_T *wp;
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
739 tabpage_T *tp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
741 for (i = 0; !istermoption_idx(i); i++)
7034
e668b160ac68 commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Christian Brabandt <cb@256bit.org>
parents: 7007
diff changeset
742 if (!(options[i].flags & P_NODEFAULT)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
743 && (opt_flags == 0
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
744 || (options[i].var != (char_u *)&p_enc
7058
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
745 # if defined(FEAT_CRYPT)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
746 && options[i].var != (char_u *)&p_cm
7052
9ec3329823f9 commit https://github.com/vim/vim/commit/8060687905bdadc46abb68ee6d40e5660e352297
Christian Brabandt <cb@256bit.org>
parents: 7040
diff changeset
747 && options[i].var != (char_u *)&p_key
7058
64dc5b11ad33 commit https://github.com/vim/vim/commit/5ea87a04964b0ccd017380b8247d04d2a69f6062
Christian Brabandt <cb@256bit.org>
parents: 7052
diff changeset
748 # endif
15597
536dd2bc5ac9 patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15555
diff changeset
749 )))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750 set_option_default(i, opt_flags, p_cp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
752 // The 'scroll' option must be computed for all windows.
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
753 FOR_ALL_TAB_WINDOWS(tp, wp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 win_comp_scroll(wp);
6205
db3b8fe8330e updated for version 7.4.438
Bram Moolenaar <bram@vim.org>
parents: 6162
diff changeset
755 parse_cino(curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759 * Set the Vi-default value of a string option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760 * Used for 'sh', 'backupskip' and 'term'.
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
761 * When "escape" is TRUE escape spaces with a backslash.
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
762 */
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
763 static void
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
764 set_string_default_esc(char *name, char_u *val, int escape)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
769 if (escape && vim_strchr(val, ' ') != NULL)
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
770 p = vim_strsave_escaped(val, (char_u *)" ");
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
771 else
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
772 p = vim_strsave(val);
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
773 if (p == NULL) // we don't want a NULL
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
774 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
775
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
776 opt_idx = findoption((char_u *)name);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
777 if (opt_idx < 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
778 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
779
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
780 if (options[opt_idx].flags & P_DEF_ALLOCED)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
781 vim_free(options[opt_idx].def_val[VI_DEFAULT]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
782 options[opt_idx].def_val[VI_DEFAULT] = p;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
783 options[opt_idx].flags |= P_DEF_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785
13162
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
786 void
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
787 set_string_default(char *name, char_u *val)
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
788 {
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
789 set_string_default_esc(name, val, FALSE);
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
790 }
51521b8a370c patch 8.0.1455: if $SHELL contains a space then 'shell' is incorrect
Christian Brabandt <cb@256bit.org>
parents: 13154
diff changeset
791
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 /*
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
793 * For an option value that contains comma separated items, find "newval" in
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
794 * "origval". Return NULL if not found.
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
795 */
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
796 static char_u *
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
797 find_dup_item(char_u *origval, char_u *newval, long_u flags)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
798 {
22242
f7871f02ddcd patch 8.2.1670: a couple of gcc compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 22234
diff changeset
799 int bs = 0;
22234
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
800 size_t newlen;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
801 char_u *s;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
802
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
803 if (origval == NULL)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
804 return NULL;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
805
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
806 newlen = STRLEN(newval);
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
807 for (s = origval; *s != NUL; ++s)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
808 {
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
809 if ((!(flags & P_COMMA)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
810 || s == origval
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
811 || (s[-1] == ',' && !(bs & 1)))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
812 && STRNCMP(s, newval, newlen) == 0
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
813 && (!(flags & P_COMMA)
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
814 || s[newlen] == ','
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
815 || s[newlen] == NUL))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
816 return s;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
817 // Count backslashes. Only a comma with an even number of backslashes
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
818 // or a single backslash preceded by a comma before it is recognized as
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
819 // a separator.
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
820 if ((s > origval + 1
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
821 && s[-1] == '\\'
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
822 && s[-2] != ',')
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
823 || (s == origval + 1
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
824 && s[-1] == '\\'))
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
825 ++bs;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
826 else
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
827 bs = 0;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
828 }
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
829 return NULL;
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
830 }
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
831
b5abb88d5700 patch 8.2.1666: the initial value of 'backupskip' can have duplicate items
Bram Moolenaar <Bram@vim.org>
parents: 21672
diff changeset
832 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 * Set the Vi-default value of a number option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 * Used for 'lines' and 'columns'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
837 set_number_default(char *name, long val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
839 int opt_idx;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
840
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
841 opt_idx = findoption((char_u *)name);
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
842 if (opt_idx >= 0)
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
843 options[opt_idx].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
846 #if defined(FEAT_PROP_POPUP) || defined(PROTO)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
847 /*
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
848 * Set all window-local and buffer-local options to the Vim default.
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
849 * local-global options will use the global value.
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
850 * When "do_buffer" is FALSE don't set buffer-local options.
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
851 */
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
852 void
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
853 set_local_options_default(win_T *wp, int do_buffer)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
854 {
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
855 win_T *save_curwin = curwin;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
856 int i;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
857
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
858 curwin = wp;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
859 curbuf = curwin->w_buffer;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
860 block_autocmds();
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
861
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
862 for (i = 0; !istermoption_idx(i); i++)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
863 {
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
864 struct vimoption *p = &(options[i]);
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
865 char_u *varp = get_varp_scope(p, OPT_LOCAL);
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
866
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
867 if (p->indir != PV_NONE
17845
b6acc24df7de patch 8.1.1919: using window options when passing a buffer to popup_create()
Bram Moolenaar <Bram@vim.org>
parents: 17833
diff changeset
868 && (do_buffer || (p->indir & PV_BUF) == 0)
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
869 && !(options[i].flags & P_NODEFAULT)
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
870 && !optval_default(p, varp, FALSE))
18225
6c3a8312486d patch 8.1.2107: various memory leaks reported by asan
Bram Moolenaar <Bram@vim.org>
parents: 18203
diff changeset
871 set_option_default(i, OPT_FREE|OPT_LOCAL, FALSE);
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
872 }
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
873
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
874 unblock_autocmds();
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
875 curwin = save_curwin;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
876 curbuf = curwin->w_buffer;
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
877 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
878 #endif
16843
283037126560 patch 8.1.1423: popup windows use options from current window and buffer
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
879
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
880 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
881 /*
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
882 * Free all options.
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
883 */
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
884 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
885 free_all_options(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
886 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
887 int i;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
888
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
889 for (i = 0; !istermoption_idx(i); i++)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
890 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
891 if (options[i].indir == PV_NONE)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
892 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
893 // global option: free value and default value.
10906
7fc1df5536c9 patch 8.0.0342: double free with EXITFREE and setting 'ttytype'
Christian Brabandt <cb@256bit.org>
parents: 10887
diff changeset
894 if ((options[i].flags & P_ALLOCED) && options[i].var != NULL)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
895 free_string_option(*(char_u **)options[i].var);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
896 if (options[i].flags & P_DEF_ALLOCED)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
897 free_string_option(options[i].def_val[VI_DEFAULT]);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
898 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
899 else if (options[i].var != VAR_WIN
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
900 && (options[i].flags & P_STRING))
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
901 // buffer-local option: free global value
25419
8a0234862ce6 patch 8.2.3246: memory use after free
Bram Moolenaar <Bram@vim.org>
parents: 25380
diff changeset
902 clear_string_option((char_u **)options[i].var);
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
903 }
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
904 free_operatorfunc_option();
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 26193
diff changeset
905 free_tagfunc_option();
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
906 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
907 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
908
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
909
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
911 * Initialize the options, part two: After getting Rows and Columns and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 * setting 'term'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
913 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
915 set_init_2(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 {
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
917 int idx;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
918
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
919 // 'scroll' defaults to half the window height. The stored default is zero,
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
920 // which results in the actual value computed from the window height.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
921 idx = findoption((char_u *)"scroll");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
922 if (idx >= 0 && !(options[idx].flags & P_WAS_SET))
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
923 set_option_default(idx, OPT_LOCAL, p_cp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
924 comp_col();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
925
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
926 // 'window' is only for backwards compatibility with Vi.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
927 // Default is Rows - 1.
857
b933657f7c9d updated for version 7.0g01
vimboss
parents: 842
diff changeset
928 if (!option_was_set((char_u *)"window"))
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
929 p_window = Rows - 1;
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
930 set_number_default("window", Rows - 1);
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
931
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
932 // 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
933 #if !((defined(MSWIN)) && !defined(FEAT_GUI))
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
934 // If 'background' wasn't set by the user, try guessing the value,
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
935 // depending on the terminal name. Only need to check for terminals
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
936 // with a dark background, that can handle color.
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
937 idx = findoption((char_u *)"bg");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
938 if (idx >= 0 && !(options[idx].flags & P_WAS_SET)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
939 && *term_bg_default() == 'd')
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
940 {
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
941 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
942 // 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
943 // changed again
671
83a006f81bac updated for version 7.0199
vimboss
parents: 670
diff changeset
944 options[idx].flags &= ~P_WAS_SET;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 #endif
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
947
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
948 #ifdef CURSOR_SHAPE
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
949 parse_shape_opt(SHAPE_CURSOR); // set cursor shapes from 'guicursor'
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
950 #endif
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
951 #ifdef FEAT_MOUSESHAPE
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
952 parse_shape_opt(SHAPE_MOUSE); // set mouse shapes from 'mouseshape'
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
953 #endif
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
954 #ifdef FEAT_PRINTER
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
955 (void)parse_printoptions(NULL); // parse 'printoptions' default value
440
eb531146be0e updated for version 7.0114
vimboss
parents: 419
diff changeset
956 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
960 * Initialize the options, part three: After reading the .vimrc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
962 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
963 set_init_3(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
964 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
965 #if defined(UNIX) || defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 * Set 'shellpipe' and 'shellredir', depending on the 'shell' option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 * This is done after other initializations, where 'shell' might have been
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
969 * set, but only if they have not been set before.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 int idx_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 int do_srr;
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
974 # ifdef FEAT_QUICKFIX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 int idx_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 int do_sp;
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
977 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
978
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
979 idx_srr = findoption((char_u *)"srr");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
980 if (idx_srr < 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
981 do_srr = FALSE;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
982 else
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
983 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
984 # ifdef FEAT_QUICKFIX
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
985 idx_sp = findoption((char_u *)"sp");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
986 if (idx_sp < 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
987 do_sp = FALSE;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
988 else
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
989 do_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
990 # endif
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
991 p = get_isolated_shell_name();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
992 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
993 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
994 // Default for p_sp is "| tee", for p_srr is ">".
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
995 // For known shells it is changed here to include stderr.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
996 if ( fnamecmp(p, "csh") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
997 || 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
998 # if defined(MSWIN) // also check with .exe extension
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
999 || fnamecmp(p, "csh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1000 || fnamecmp(p, "tcsh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1001 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1002 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1003 {
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1004 # if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 if (do_sp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1006 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1007 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 p_sp = (char_u *)">&";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1009 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 p_sp = (char_u *)"|& tee";
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1011 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1013 }
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1014 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1015 if (do_srr)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1017 p_srr = (char_u *)">&";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1019 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1020 }
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1021 # ifdef MSWIN
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1022 // 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
1023 // 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
1024 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
1025 || 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
1026 )
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1027 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1028 # 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
1029 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
1030 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1031 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
1032 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
1033 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1034 # endif
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1035 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
1036 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1037 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
1038 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
1039 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1040 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1041 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1042 else
24600
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1043 // Always use POSIX shell style redirection if we reach this
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 if ( fnamecmp(p, "sh") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 || fnamecmp(p, "ksh") == 0
2774
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1046 || fnamecmp(p, "mksh") == 0
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1047 || fnamecmp(p, "pdksh") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 || fnamecmp(p, "zsh") == 0
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
1049 || fnamecmp(p, "zsh-beta") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 || fnamecmp(p, "bash") == 0
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
1051 || 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
1052 || fnamecmp(p, "ash") == 0
cb4cb3ff5736 patch 8.2.2839: default redirection missing "ash" and "dash"
Bram Moolenaar <Bram@vim.org>
parents: 24476
diff changeset
1053 || 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
1054 || 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
1055 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 || fnamecmp(p, "cmd") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 || fnamecmp(p, "sh.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1058 || fnamecmp(p, "ksh.exe") == 0
2774
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1059 || fnamecmp(p, "mksh.exe") == 0
e8f012b00187 updated for version 7.3.163
Bram Moolenaar <bram@vim.org>
parents: 2726
diff changeset
1060 || fnamecmp(p, "pdksh.exe") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 || fnamecmp(p, "zsh.exe") == 0
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
1062 || fnamecmp(p, "zsh-beta.exe") == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 || fnamecmp(p, "bash.exe") == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1064 || 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
1065 || 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
1066 || fnamecmp(p, "pwsh.exe") == 0
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1067 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1068 )
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1069 {
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1070 # if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 if (do_sp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 {
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1073 # ifdef MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 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
1075 # else
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1076 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
1077 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
1078 else
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1079 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
1080 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1081 options[idx_sp].def_val[VI_DEFAULT] = p_sp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1082 }
7408
1886f2863437 commit https://github.com/vim/vim/commit/e7fedb6ebe72d9a475aa65109b77d5ed4667067a
Christian Brabandt <cb@256bit.org>
parents: 7334
diff changeset
1083 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1084 if (do_srr)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1085 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086 p_srr = (char_u *)">%s 2>&1";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1087 options[idx_srr].def_val[VI_DEFAULT] = p_srr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1090 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1091 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1092 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1093
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15858
diff changeset
1094 #if defined(MSWIN)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 /*
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1096 * Set 'shellcmdflag', 'shellxquote', and 'shellquote' depending on the
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1097 * 'shell' option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 * 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
1099 * 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
1100 * 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
1101 *
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1102 * 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
1103 * 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
1104 * powershell.exe - "-Command" "\""
25084
beff72446e2e patch 8.2.3079: Powershell core not supported by default
Bram Moolenaar <Bram@vim.org>
parents: 25068
diff changeset
1105 * 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
1106 * "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
1107 *
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1108 * For Win32 p_sxq is set instead of p_shq to include shell redirection.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1109 */
25068
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1110 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
1111 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1112 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
1113
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1114 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
1115 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
1116 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1117 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
1118 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
1119 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1120
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1121 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
1122 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
1123 {
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1124 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
1125 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
1126 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1127 }
0ce24f734615 patch 8.2.3071: shell options are not set properly for PowerShell
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
1128 else if (strstr((char *)gettail(p_sh), "sh") != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1129 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 int idx3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1131
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1132 idx3 = findoption((char_u *)"shcf");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1133 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1134 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 p_shcf = (char_u *)"-c";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1136 options[idx3].def_val[VI_DEFAULT] = p_shcf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1137 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1138
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1139 // Somehow Win32 requires the quotes around the redirection too
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1140 idx3 = findoption((char_u *)"sxq");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1141 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1142 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1143 p_sxq = (char_u *)"\"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1144 options[idx3].def_val[VI_DEFAULT] = p_sxq;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1145 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1146 }
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1147 else if (strstr((char *)gettail(p_sh), "cmd.exe") != NULL)
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1148 {
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1149 int idx3;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1150
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1151 /*
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1152 * cmd.exe on Windows will strip the first and last double quote given
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1153 * on the command line, e.g. most of the time things like:
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1154 * cmd /c "my path/to/echo" "my args to echo"
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1155 * become:
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1156 * my path/to/echo" "my args to echo
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1157 * when executed.
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1158 *
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1159 * To avoid this, set shellxquote to surround the command in
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1160 * parenthesis. This appears to make most commands work, without
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1161 * breaking commands that worked previously, such as
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1162 * '"path with spaces/cmd" "a&b"'.
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1163 */
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1164 idx3 = findoption((char_u *)"sxq");
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1165 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1166 {
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1167 p_sxq = (char_u *)"(";
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1168 options[idx3].def_val[VI_DEFAULT] = p_sxq;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1169 }
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1170
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1171 idx3 = findoption((char_u *)"shcf");
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1172 if (idx3 >= 0 && !(options[idx3].flags & P_WAS_SET))
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1173 {
3357
397e7e49bb0b updated for version 7.3.445
Bram Moolenaar <bram@vim.org>
parents: 3352
diff changeset
1174 p_shcf = (char_u *)"/c";
3352
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1175 options[idx3].def_val[VI_DEFAULT] = p_shcf;
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1176 }
de050fcc24cf updated for version 7.3.443
Bram Moolenaar <bram@vim.org>
parents: 3308
diff changeset
1177 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11107
diff changeset
1180 if (BUFEMPTY())
8659
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1181 {
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1182 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
1183
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1184 // 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
1185 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
1186 set_fileformat(default_fileformat(), OPT_LOCAL);
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1187 }
72e2f387466f commit https://github.com/vim/vim/commit/364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
1188
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 set_title_defaults();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 #if defined(FEAT_MULTI_LANG) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194 * When 'helplang' is still at its default value, set it to "lang".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1195 * Only the first two characters of "lang" are used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1196 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1197 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1198 set_helplang_default(char_u *lang)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1199 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1200 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1201
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
1202 if (lang == NULL || STRLEN(lang) < 2) // safety check
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1203 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1204 idx = findoption((char_u *)"hlg");
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1205 if (idx < 0 || (options[idx].flags & P_WAS_SET))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1206 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1207
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1208 if (options[idx].flags & P_ALLOCED)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1209 free_string_option(p_hlg);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1210 p_hlg = vim_strsave(lang);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1211 if (p_hlg == NULL)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1212 p_hlg = empty_option;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1213 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1214 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1215 // zh_CN becomes "cn", zh_TW becomes "tw"
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1216 if (STRNICMP(p_hlg, "zh_", 3) == 0 && STRLEN(p_hlg) >= 5)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1217 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1218 p_hlg[0] = TOLOWER_ASC(p_hlg[3]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1219 p_hlg[1] = TOLOWER_ASC(p_hlg[4]);
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1220 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1221 // any C like setting, such as C.UTF-8, becomes "en"
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1222 else if (STRLEN(p_hlg) >= 1 && *p_hlg == 'C')
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1223 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1224 p_hlg[0] = 'e';
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1225 p_hlg[1] = 'n';
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1226 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1227 p_hlg[2] = NUL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1228 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1229 options[idx].flags |= P_ALLOCED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 * 'title' and 'icon' only default to true if they have not been set or reset
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 * in .vimrc and we can read the old value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 * When 'title' and 'icon' have been reset in .vimrc, we won't even check if
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1237 * they can be reset. This reduces startup time when using X on a remote
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 * machine.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1241 set_title_defaults(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 int idx1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244 long val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1245
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
1246 // If GUI is (going to be) used, we can always set the window title and
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
1247 // icon name. Saves a bit of time, because the X11 display server does
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
1248 // not need to be contacted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 idx1 = findoption((char_u *)"title");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
1250 if (idx1 >= 0 && !(options[idx1].flags & P_WAS_SET))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1252 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 if (gui.starting || gui.in_use)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254 val = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1256 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 val = mch_can_restore_title();
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
1258 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259 p_title = val;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 idx1 = findoption((char_u *)"icon");
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1262 if (idx1 < 0 || (options[idx1].flags & P_WAS_SET))
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1263 {
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1264 return;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1265 }
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1266
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 #ifdef FEAT_GUI
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1268 if (gui.starting || gui.in_use)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1269 val = TRUE;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1270 else
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1271 #endif
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1272 val = mch_can_restore_icon();
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1273 options[idx1].def_val[VI_DEFAULT] = (char_u *)(long_i)val;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
1274 p_icon = val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1277 void
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1278 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
1279 {
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1280 int flags = 0;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1281
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1282 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
1283 flags = OPT_LOCAL;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1284 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
1285 flags = OPT_GLOBAL;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1286 #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
1287 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
1288 ex_options(eap);
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1289 else
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1290 #endif
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1291 {
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1292 if (eap->forceit)
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1293 flags |= OPT_ONECOLUMN;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1294 (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
1295 }
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1296 }
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
1297
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1298 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1299 * :set operator types
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1300 */
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1301 typedef enum {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1302 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
1303 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
1304 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
1305 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
1306 } 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
1307
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1308 typedef enum {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1309 PREFIX_NO = 0, // "no" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1310 PREFIX_NONE, // no prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1311 PREFIX_INV, // "inv" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1312 } set_prefix_T;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1313
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1314 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1315 * Return the prefix type for the option name in *argp.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1316 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1317 static set_prefix_T
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1318 get_option_prefix(char_u **argp)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1319 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1320 int prefix = PREFIX_NONE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1321 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1322
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1323 if (STRNCMP(arg, "no", 2) == 0 && STRNCMP(arg, "novice", 6) != 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1324 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1325 prefix = PREFIX_NO;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1326 arg += 2;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1327 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1328 else if (STRNCMP(arg, "inv", 3) == 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1329 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1330 prefix = PREFIX_INV;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1331 arg += 3;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1332 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1333
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1334 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1335 return prefix;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1336 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1337
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1338 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1339 * Parse the option name in "arg" and return the option index in "*opt_idxp",
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1340 * and the option name length in "*lenp". For a <t_xx> option, return the key
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1341 * number in "*keyp".
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1342 *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1343 * Returns FAIL if an option starting with "<" doesn't end with a ">",
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1344 * otherwise returns OK.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1345 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1346 static int
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1347 parse_option_name(char_u *arg, int *opt_idxp, int *lenp, int *keyp)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1348 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1349 int key = 0;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1350 int len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1351 int opt_idx;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1352
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1353 if (*arg == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1354 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1355 opt_idx = -1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1356 // look out for <t_>;>
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1357 if (arg[1] == 't' && arg[2] == '_' && arg[3] && arg[4])
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1358 len = 5;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1359 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1360 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1361 len = 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1362 while (arg[len] != NUL && arg[len] != '>')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1363 ++len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1364 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1365 if (arg[len] != '>')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1366 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1367
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1368 arg[len] = NUL; // put NUL after name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1369 if (arg[1] == 't' && arg[2] == '_') // could be term code
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1370 opt_idx = findoption(arg + 1);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1371 arg[len++] = '>'; // restore '>'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1372 if (opt_idx == -1)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1373 key = find_key_option(arg + 1, TRUE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1374 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1375 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1376 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1377 int nextchar; // next non-white char after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1378
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1379 len = 0;
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
1380 // The two characters after "t_" may not be alphanumeric.
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1381 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1382 len = 4;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1383 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1384 while (ASCII_ISALNUM(arg[len]) || arg[len] == '_')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1385 ++len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1386 nextchar = arg[len];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1387 arg[len] = NUL; // put NUL after name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1388 opt_idx = findoption(arg);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1389 arg[len] = nextchar; // restore nextchar
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1390 if (opt_idx == -1)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1391 key = find_key_option(arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1392 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1393
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1394 *keyp = key;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1395 *lenp = len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1396 *opt_idxp = opt_idx;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1397
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1398 return OK;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1399 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1400
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1401 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1402 * Get the option operator (+=, ^=, -=).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1403 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1404 static set_op_T
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1405 get_opt_op(char_u *arg)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1406 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1407 set_op_T op = OP_NONE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1408
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1409 if (*arg != NUL && *(arg + 1) == '=')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1410 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1411 if (*arg == '+')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1412 op = OP_ADDING; // "+="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1413 else if (*arg == '^')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1414 op = OP_PREPENDING; // "^="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1415 else if (*arg == '-')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1416 op = OP_REMOVING; // "-="
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1417 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1418
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1419 return op;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1420 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1421
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1422 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1423 * Validate whether the value of the option in "opt_idx" can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1424 * Returns FAIL if the option can be skipped or cannot be changed. Returns OK
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1425 * if it can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1426 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1427 static int
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1428 validate_opt_idx(int opt_idx, int opt_flags, long_u flags, char **errmsg)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1429 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1430 // Skip all options that are not window-local (used when showing
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1431 // an already loaded buffer in a window).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1432 if ((opt_flags & OPT_WINONLY)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1433 && (opt_idx < 0 || options[opt_idx].var != VAR_WIN))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1434 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1435
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1436 // Skip all options that are window-local (used for :vimgrep).
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1437 if ((opt_flags & OPT_NOWIN) && opt_idx >= 0
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1438 && options[opt_idx].var == VAR_WIN)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1439 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1440
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1441 // Disallow changing some options from modelines.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1442 if (opt_flags & OPT_MODELINE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1443 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1444 if (flags & (P_SECURE | P_NO_ML))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1445 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1446 *errmsg = e_not_allowed_in_modeline;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1447 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1448 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1449 if ((flags & P_MLE) && !p_mle)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1450 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1451 *errmsg = e_not_allowed_in_modeline_when_modelineexpr_is_off;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1452 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1453 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1454 #ifdef FEAT_DIFF
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1455 // In diff mode some options are overruled. This avoids that
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1456 // 'foldmethod' becomes "marker" instead of "diff" and that
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1457 // "wrap" gets set.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1458 if (curwin->w_p_diff
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1459 && opt_idx >= 0 // shut up coverity warning
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1460 && (
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1461 # ifdef FEAT_FOLDING
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1462 options[opt_idx].indir == PV_FDM ||
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1463 # endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1464 options[opt_idx].indir == PV_WRAP))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1465 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1466 #endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1467 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1468
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1469 #ifdef HAVE_SANDBOX
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1470 // Disallow changing some options in the sandbox
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1471 if (sandbox != 0 && (flags & P_SECURE))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1472 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1473 *errmsg = e_not_allowed_in_sandbox;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1474 return FAIL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1475 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1476 #endif
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1477
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1478 return OK;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1479 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
1480
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1481 /*
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1482 * Get the Vim/Vi default value for a string option.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1483 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1484 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1485 stropt_get_default_val(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1486 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1487 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1488 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1489 int cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1490 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1491 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1492
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1493 newval = options[opt_idx].def_val[((flags & P_VI_DEF) || cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1494 ? VI_DEFAULT : VIM_DEFAULT];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1495 if ((char_u **)varp == &p_bg)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1496 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1497 // guess the value of 'background'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1498 #ifdef FEAT_GUI
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1499 if (gui.in_use)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1500 newval = gui_bg_default();
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1501 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1502 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1503 newval = term_bg_default();
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1504 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1505 else if ((char_u **)varp == &p_fencs && enc_utf8)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1506 newval = fencs_utf8_default;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1507
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1508 // expand environment variables and ~ since the default value was
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1509 // already expanded, only required when an environment variable was set
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1510 // later
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1511 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1512 newval = empty_option;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1513 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1514 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1515 char_u *s = option_expand(opt_idx, newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1516 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1517 s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1518 newval = vim_strsave(s);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1519 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1520
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1521 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1522 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1523
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1524 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1525 * Convert the 'backspace' option number value to a string: for adding,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1526 * prepending and removing string.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1527 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1528 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1529 opt_backspace_nr2str(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1530 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1531 char_u **origval_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1532 char_u **origval_l_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1533 char_u **origval_g_p,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1534 char_u **oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1535 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1536 int i = getdigits((char_u **)varp);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1537
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1538 switch (i)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1539 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1540 case 0:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1541 *(char_u **)varp = empty_option;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1542 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1543 case 1:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1544 *(char_u **)varp = vim_strsave((char_u *)"indent,eol");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1545 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1546 case 2:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1547 *(char_u **)varp = vim_strsave((char_u *)"indent,eol,start");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1548 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1549 case 3:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1550 *(char_u **)varp = vim_strsave((char_u *)"indent,eol,nostop");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1551 break;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1552 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1553 vim_free(*oldval_p);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1554 if (*origval_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1555 *origval_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1556 if (*origval_l_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1557 *origval_l_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1558 if (*origval_g_p == *oldval_p)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1559 *origval_g_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1560 *oldval_p = *(char_u **)varp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1561 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1562
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1563 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1564 * Convert the 'whichwrap' option number value to a string, for backwards
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1565 * compatibility with Vim 3.0.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1566 * Note: 'argp' is a pointer to a char_u pointer and is updated.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1567 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1568 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1569 opt_whichwrap_nr2str(char_u **argp, char_u *whichwrap)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1570 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1571 *whichwrap = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1572 int i = getdigits(argp);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1573 if (i & 1)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1574 STRCAT(whichwrap, "b,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1575 if (i & 2)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1576 STRCAT(whichwrap, "s,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1577 if (i & 4)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1578 STRCAT(whichwrap, "h,l,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1579 if (i & 8)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1580 STRCAT(whichwrap, "<,>,");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1581 if (i & 16)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1582 STRCAT(whichwrap, "[,],");
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1583 if (*whichwrap != NUL) // remove trailing ,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1584 whichwrap[STRLEN(whichwrap) - 1] = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1585
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1586 return whichwrap;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1587 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1588
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1589 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1590 * Copy the new string value into allocated memory for the option.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1591 * Can't use set_string_option_direct(), because we need to remove the
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1592 * backslashes.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1593 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1594 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1595 stropt_copy_value(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1596 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1597 char_u **argp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1598 set_op_T op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1599 int flags UNUSED)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1600 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1601 char_u *arg = *argp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1602 unsigned newlen;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1603 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1604 char_u *s = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1605
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1606 // get a bit too much
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1607 newlen = (unsigned)STRLEN(arg) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1608 if (op != OP_NONE)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1609 newlen += (unsigned)STRLEN(origval) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1610 newval = alloc(newlen);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1611 if (newval == NULL) // out of mem, don't change
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1612 return NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1613 s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1614
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1615 // Copy the string, skip over escaped chars.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1616 // For MS-DOS and WIN32 backslashes before normal file name characters
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1617 // are not removed, and keep backslash at start, for "\\machine\path",
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1618 // but do remove it for "\\\\machine\\path".
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1619 // The reverse is found in ExpandOldSetting().
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1620 while (*arg != NUL && !VIM_ISWHITE(*arg))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1621 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1622 int i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1623
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1624 if (*arg == '\\' && arg[1] != NUL
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1625 #ifdef BACKSLASH_IN_FILENAME
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1626 && !((flags & P_EXPAND)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1627 && vim_isfilec(arg[1])
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1628 && !VIM_ISWHITE(arg[1])
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1629 && (arg[1] != '\\'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1630 || (s == newval && arg[2] != '\\')))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1631 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1632 )
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1633 ++arg; // remove backslash
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1634 if (has_mbyte && (i = (*mb_ptr2len)(arg)) > 1)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1635 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1636 // copy multibyte char
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1637 mch_memmove(s, arg, (size_t)i);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1638 arg += i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1639 s += i;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1640 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1641 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1642 *s++ = *arg++;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1643 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1644 *s = NUL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1645
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1646 *argp = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1647 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1648 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1649
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1650 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1651 * Expand environment variables and ~ in string option value 'newval'.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1652 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1653 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1654 stropt_expand_envvar(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1655 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1656 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1657 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1658 set_op_T op)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1659 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1660 char_u *s = option_expand(opt_idx, newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1661 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1662 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1663
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1664 vim_free(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1665 unsigned newlen = (unsigned)STRLEN(s) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1666 if (op != OP_NONE)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1667 newlen += (unsigned)STRLEN(origval) + 1;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1668
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1669 newval = alloc(newlen);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1670 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1671 return NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1672
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1673 STRCPY(newval, s);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1674
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1675 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1676 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1677
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1678 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1679 * Concatenate the original and new values of a string option, adding a "," if
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1680 * needed.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1681 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1682 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1683 stropt_concat_with_comma(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1684 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1685 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1686 set_op_T op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1687 int flags)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1688 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1689 int len = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1690
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1691 int comma = ((flags & P_COMMA) && *origval != NUL && *newval != NUL);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1692 if (op == OP_ADDING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1693 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1694 len = (int)STRLEN(origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1695 // strip a trailing comma, would get 2
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1696 if (comma && len > 1
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1697 && (flags & P_ONECOMMA) == P_ONECOMMA
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1698 && origval[len - 1] == ','
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1699 && origval[len - 2] != '\\')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1700 len--;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1701 mch_memmove(newval + len + comma, newval, STRLEN(newval) + 1);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1702 mch_memmove(newval, origval, (size_t)len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1703 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1704 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1705 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1706 len = (int)STRLEN(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1707 STRMOVE(newval + len + comma, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1708 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1709 if (comma)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1710 newval[len] = ',';
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1711 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1712
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1713 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1714 * Remove a value from a string option. Copy string option value in "origval"
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1715 * to "newval" and then remove the string "strval" of length "len".
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1716 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1717 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1718 stropt_remove_val(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1719 char_u *origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1720 char_u *newval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1721 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1722 char_u *strval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1723 int len)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1724 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1725 // Remove newval[] from origval[]. (Note: "len" has been set above
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1726 // and is used here).
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1727 STRCPY(newval, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1728 if (*strval)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1729 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1730 // may need to remove a comma
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1731 if (flags & P_COMMA)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1732 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1733 if (strval == origval)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1734 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1735 // include comma after string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1736 if (strval[len] == ',')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1737 ++len;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1738 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1739 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1740 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1741 // include comma before string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1742 --strval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1743 ++len;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1744 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1745 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1746 STRMOVE(newval + (strval - origval), strval + len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1747 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1748 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1749
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1750 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1751 * Remove flags that appear twice in the string option value 'newval'.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1752 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1753 static void
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1754 stropt_remove_dupflags(char_u *newval, int flags)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1755 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1756 char_u *s = newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1757
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1758 // Remove flags that appear twice.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1759 while (*s)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1760 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1761 // if options have P_FLAGLIST and P_ONECOMMA such as 'whichwrap'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1762 if (flags & P_ONECOMMA)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1763 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1764 if (*s != ',' && *(s + 1) == ',' && vim_strchr(s + 2, *s) != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1765 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1766 // Remove the duplicated value and the next comma.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1767 STRMOVE(s, s + 2);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1768 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1769 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1770 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1771 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1772 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1773 if ((!(flags & P_COMMA) || *s != ',')
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1774 && vim_strchr(s + 1, *s) != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1775 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1776 STRMOVE(s, s + 1);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1777 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1778 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1779 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1780 ++s;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1781 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1782 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1783
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1784 /*
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1785 * Get the string value specified for a ":set" command. The following set
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1786 * options are supported:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1787 * set {opt}&
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1788 * set {opt}<
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1789 * set {opt}={val}
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1790 * set {opt}:{val}
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1791 */
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1792 static char_u *
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1793 stropt_get_newval(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1794 int nextchar,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1795 int opt_idx,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1796 char_u **argp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1797 char_u *varp,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1798 char_u **origval_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1799 char_u **origval_l_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1800 char_u **origval_g_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1801 char_u **oldval_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1802 set_op_T *op_arg,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1803 int flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1804 int cp_val)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1805 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1806 char_u *arg = *argp;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1807 char_u *origval = *origval_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1808 char_u *origval_l = *origval_l_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1809 char_u *origval_g = *origval_g_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1810 char_u *oldval = *oldval_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1811 set_op_T op = *op_arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1812 char_u *save_arg = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1813 char_u *newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1814 char_u *s = NULL;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1815 char_u whichwrap[80];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1816
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1817 if (nextchar == '&') // set to default val
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1818 newval = stropt_get_default_val(opt_idx, varp, flags, cp_val);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1819 else if (nextchar == '<') // set to global val
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1820 newval = vim_strsave(*(char_u **)get_varp_scope(
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1821 &(options[opt_idx]), OPT_GLOBAL));
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1822 else
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1823 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1824 ++arg; // jump to after the '=' or ':'
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1825
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1826 // Set 'keywordprg' to ":help" if an empty
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1827 // value was passed to :set by the user.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1828 if (varp == (char_u *)&p_kp && (*arg == NUL || *arg == ' '))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1829 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1830 save_arg = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1831 arg = (char_u *)":help";
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1832 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1833 // Convert 'backspace' number to string
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1834 else if (varp == (char_u *)&p_bs && VIM_ISDIGIT(**(char_u **)varp))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1835 opt_backspace_nr2str(varp, &origval, &origval_l, &origval_g,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1836 &oldval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1837 else if (varp == (char_u *)&p_ww && VIM_ISDIGIT(*arg))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1838 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1839 // Convert 'whichwrap' number to string, for backwards
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1840 // compatibility with Vim 3.0.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1841 char_u *t = opt_whichwrap_nr2str(&arg, whichwrap);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1842 save_arg = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1843 arg = t;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1844 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1845 // Remove '>' before 'dir' and 'bdir', for backwards compatibility with
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1846 // version 3.0
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1847 else if (*arg == '>' && (varp == (char_u *)&p_dir
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1848 || varp == (char_u *)&p_bdir))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1849 ++arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1850
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1851 // Copy the new string into allocated memory.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1852 newval = stropt_copy_value(origval, &arg, op, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1853 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1854 goto done;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1855
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1856 // Expand environment variables and ~.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1857 // Don't do it when adding without inserting a comma.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1858 if (op == OP_NONE || (flags & P_COMMA))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1859 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1860 newval = stropt_expand_envvar(opt_idx, origval, newval, op);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1861 if (newval == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1862 goto done;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1863 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1864
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1865 // locate newval[] in origval[] when removing it and when adding to
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1866 // avoid duplicates
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1867 int len = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1868 if (op == OP_REMOVING || (flags & P_NODUP))
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1869 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1870 len = (int)STRLEN(newval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1871 s = find_dup_item(origval, newval, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1872
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1873 // do not add if already there
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1874 if ((op == OP_ADDING || op == OP_PREPENDING) && s != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1875 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1876 op = OP_NONE;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1877 STRCPY(newval, origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1878 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1879
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1880 // if no duplicate, move pointer to end of original value
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1881 if (s == NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1882 s = origval + (int)STRLEN(origval);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1883 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1884
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1885 // concatenate the two strings; add a ',' if needed
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1886 if (op == OP_ADDING || op == OP_PREPENDING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1887 stropt_concat_with_comma(origval, newval, op, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1888 else if (op == OP_REMOVING)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1889 // Remove newval[] from origval[]. (Note: "len" has been set above
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1890 // and is used here).
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1891 stropt_remove_val(origval, newval, flags, s, len);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1892
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1893 if (flags & P_FLAGLIST)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1894 // Remove flags that appear twice.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1895 stropt_remove_dupflags(newval, flags);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1896 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1897
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1898 done:
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1899 if (save_arg != NULL)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1900 arg = save_arg; // arg was temporarily changed, restore it
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1901 *argp = arg;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1902 *origval_arg = origval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1903 *origval_l_arg = origval_l;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1904 *origval_g_arg = origval_g;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1905 *oldval_arg = oldval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1906 *op_arg = op;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1907
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1908 return newval;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1909 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1910
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1911 /*
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1912 * 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
1913 * 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
1914 */
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1915 static int
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1916 do_set_option_string(
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1917 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
1918 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
1919 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
1920 int nextchar,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1921 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
1922 int flags,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1923 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
1924 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
1925 char *errbuf,
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1926 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
1927 char **errmsg)
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1928 {
30409
aea53db7eeec patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents: 30403
diff changeset
1929 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
1930 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
1931 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
1932 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
1933 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
1934 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
1935 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
1936 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
1937 #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
1938 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
1939 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
1940 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
1941 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
1942 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1943
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1944 // 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
1945 // 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
1946 // 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
1947 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
1948 && ((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
1949 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
1950
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1951 // 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
1952 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
1953
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1954 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
1955 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1956 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
1957 &(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
1958 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
1959 &(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
1960
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1961 // 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
1962 // 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
1963 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
1964 && 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
1965 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
1966 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1967
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1968 // 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
1969 // 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
1970 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
1971 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
1972 else
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1973 origval = oldval;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1974
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1975 // Get the new value for the option
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1976 newval = stropt_get_newval(nextchar, opt_idx, &arg, varp, &origval,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1977 &origval_l, &origval_g, &oldval, &op, flags,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1978 cp_val);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1979
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
1980 // Set the new value.
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1981 *(char_u **)(varp) = newval;
31958
b08c410578a5 patch 9.0.1311: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31952
diff changeset
1982 if (newval == NULL)
b08c410578a5 patch 9.0.1311: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31952
diff changeset
1983 *(char_u **)(varp) = empty_option;
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1984
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1985 #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
1986 if (!starting
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1987 # 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
1988 && 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
1989 # endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1990 && 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
1991 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1992 // 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
1993 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
1994 // 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
1995 // autocommands.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
1996 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
1997 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
1998 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
1999 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
2000 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
2001 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2002 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2003
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2004 {
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2005 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
2006 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
2007
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2008 // 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
2009 // 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
2010 // 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
2011 // replaced.
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2012 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
2013 #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
2014 || sandbox != 0
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2015 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2016 || (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
2017 secure = 1;
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2018
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2019 // 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
2020 // 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
2021 // 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
2022 *errmsg = did_set_string_option(
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
2023 opt_idx, (char_u **)varp, oldval, newval, errbuf,
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2024 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
2025
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2026 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
2027 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2028
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2029 #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
2030 if (*errmsg == NULL)
31259
a7dba627a21b patch 9.0.0963: function name does not match autocmd event name
Bram Moolenaar <Bram@vim.org>
parents: 31174
diff changeset
2031 trigger_optionset_string(opt_idx, opt_flags, saved_origval,
30403
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2032 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
2033 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
2034 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
2035 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
2036 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
2037 #endif
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2038
30409
aea53db7eeec patch 9.0.0540: assigning stack variable to argument confuses Coverity
Bram Moolenaar <Bram@vim.org>
parents: 30403
diff changeset
2039 *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
2040 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
2041 }
42d592459521 patch 9.0.0537: the do_set() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 30226
diff changeset
2042
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2043 /*
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2044 * Set a boolean option.
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2045 * Returns an untranslated error message or NULL.
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2046 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2047 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2048 do_set_option_bool(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2049 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2050 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2051 set_prefix_T prefix,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2052 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2053 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2054 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2055 int afterchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2056 int cp_val)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2057
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2058 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2059 varnumber_T value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2060
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2061 if (nextchar == '=' || nextchar == ':')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2062 return e_invalid_argument;
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2063 if (opt_idx < 0 || varp == NULL)
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2064 return NULL; // "cannot happen"
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2065
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2066 // ":set opt!": invert
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2067 // ":set opt&": reset to default value
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2068 // ":set opt<": reset to global value
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2069 if (nextchar == '!')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2070 value = *(int *)(varp) ^ 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2071 else if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2072 value = (int)(long)(long_i)options[opt_idx].def_val[
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2073 ((flags & P_VI_DEF) || cp_val) ? VI_DEFAULT : VIM_DEFAULT];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2074 else if (nextchar == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2075 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2076 // For 'autoread' -1 means to use global value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2077 if ((int *)varp == &curbuf->b_p_ar && opt_flags == OPT_LOCAL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2078 value = -1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2079 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2080 value = *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2081 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2082 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2083 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2084 // ":set invopt": invert
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2085 // ":set opt" or ":set noopt": set or reset
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2086 if (nextchar != NUL && !VIM_ISWHITE(afterchar))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2087 return e_trailing_characters;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2088 if (prefix == PREFIX_INV)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2089 value = *(int *)(varp) ^ 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2090 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2091 value = prefix == PREFIX_NO ? 0 : 1;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2092 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2093
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2094 return set_bool_option(opt_idx, varp, (int)value, opt_flags);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2095 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2096
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2097 /*
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2098 * Set a numeric option.
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2099 * Returns an untranslated error message or NULL.
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2100 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2101 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2102 do_set_option_numeric(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2103 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2104 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2105 char_u **argp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2106 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2107 set_op_T op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2108 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2109 int cp_val,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2110 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2111 char *errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2112 size_t errbuflen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2113 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2114 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2115 varnumber_T value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2116 int i;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2117 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2118
31908
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2119 if (opt_idx < 0 || varp == NULL)
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2120 return NULL; // "cannot happen"
1ae3ad2e3d03 patch 9.0.1286: Coverity warns for using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents: 31904
diff changeset
2121 //
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2122 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2123 * Different ways to set a number option:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2124 * & set to default value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2125 * < set to global value
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2126 * <xx> accept special key codes for 'wildchar'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2127 * c accept any non-digit for 'wildchar'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2128 * [-]0-9 set number
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2129 * other error
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2130 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2131 ++arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2132 if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2133 value = (long)(long_i)options[opt_idx].def_val[
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2134 ((flags & P_VI_DEF) || cp_val) ? VI_DEFAULT : VIM_DEFAULT];
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2135 else if (nextchar == '<')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2136 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2137 // For 'undolevels' NO_LOCAL_UNDOLEVEL means to
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2138 // use the global value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2139 if ((long *)varp == &curbuf->b_p_ul && opt_flags == OPT_LOCAL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2140 value = NO_LOCAL_UNDOLEVEL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2141 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2142 value = *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2143 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2144 else if (((long *)varp == &p_wc || (long *)varp == &p_wcm)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2145 && (*arg == '<'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2146 || *arg == '^'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2147 || (*arg != NUL
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2148 && (!arg[1] || VIM_ISWHITE(arg[1]))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2149 && !VIM_ISDIGIT(*arg))))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2150 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2151 value = string_to_key(arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2152 if (value == 0 && (long *)varp != &p_wcm)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2153 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2154 errmsg = e_invalid_argument;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2155 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2156 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2157 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2158 else if (*arg == '-' || VIM_ISDIGIT(*arg))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2159 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2160 // Allow negative (for 'undolevels'), octal and hex numbers.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2161 vim_str2nr(arg, NULL, &i, STR2NR_ALL, &value, NULL, 0, TRUE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2162 if (i == 0 || (arg[i] != NUL && !VIM_ISWHITE(arg[i])))
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2163 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2164 errmsg = e_number_required_after_equal;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2165 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2166 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2167 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2168 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2169 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2170 errmsg = e_number_required_after_equal;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2171 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2172 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2173
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2174 if (op == OP_ADDING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2175 value = *(long *)varp + value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2176 else if (op == OP_PREPENDING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2177 value = *(long *)varp * value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2178 else if (op == OP_REMOVING)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2179 value = *(long *)varp - value;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2180
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2181 errmsg = set_num_option(opt_idx, varp, value, errbuf, errbuflen,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2182 opt_flags);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2183
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2184 skip:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2185 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2186 return errmsg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2187 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2188
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2189 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2190 * Set a key code (t_xx) option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2191 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2192 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2193 do_set_option_keycode(char_u **argp, char_u *key_name, int nextchar)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2194 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2195 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2196 char_u *p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2197
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2198 if (nextchar == '&')
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2199 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2200 if (add_termcap_entry(key_name, TRUE) == FAIL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2201 return e_not_found_in_termcap;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2202 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2203 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2204 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2205 ++arg; // jump to after the '=' or ':'
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2206 for (p = arg; *p && !VIM_ISWHITE(*p); ++p)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2207 if (*p == '\\' && p[1] != NUL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2208 ++p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2209 nextchar = *p;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2210 *p = NUL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2211 add_termcode(key_name, arg, FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2212 *p = nextchar;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2213 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2214 if (full_screen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2215 ttest(FALSE);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2216 redraw_all_later(UPD_CLEAR);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2217
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2218 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2219 return NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2220 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2221
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2222 /*
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2223 * Set an option to a new value.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2224 */
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2225 static char *
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2226 do_set_option_value(
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2227 int opt_idx,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2228 int opt_flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2229 char_u **argp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2230 set_prefix_T prefix,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2231 set_op_T op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2232 long_u flags,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2233 char_u *varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2234 char_u *key_name,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2235 int nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2236 int afterchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2237 int cp_val,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2238 int *stopopteval,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2239 char *errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2240 size_t errbuflen)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2241 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2242 int value_checked = FALSE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2243 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2244 char_u *arg = *argp;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2245
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2246 if (flags & P_BOOL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2247 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2248 // boolean option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2249 errmsg = do_set_option_bool(opt_idx, opt_flags, prefix, flags, varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2250 nextchar, afterchar, cp_val);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2251 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2252 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2253 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2254 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2255 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2256 // numeric or string option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2257 if (vim_strchr((char_u *)"=:&<", nextchar) == NULL
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2258 || prefix != PREFIX_NONE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2259 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2260 errmsg = e_invalid_argument;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2261 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2262 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2263
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2264 if (flags & P_NUM)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2265 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2266 // numeric option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2267 errmsg = do_set_option_numeric(opt_idx, opt_flags, &arg, nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2268 op, flags, cp_val, varp,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2269 errbuf, errbuflen);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2270 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2271 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2272 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2273 else if (opt_idx >= 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2274 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2275 // string option
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2276 if (do_set_option_string(opt_idx, opt_flags, &arg, nextchar, op,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2277 flags, cp_val, varp, errbuf,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
2278 &value_checked, &errmsg) == FAIL)
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2279 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2280 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2281 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2282 *stopopteval = TRUE;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2283 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2284 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2285 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2286 else
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2287 {
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2288 // key code option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2289 errmsg = do_set_option_keycode(&arg, key_name, nextchar);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2290 if (errmsg != NULL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2291 goto skip;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2292 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2293 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2294
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2295 if (opt_idx >= 0)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2296 did_set_option(opt_idx, opt_flags, op == OP_NONE, value_checked);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2297
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2298 skip:
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2299 *argp = arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2300 return errmsg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2301 }
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2302
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2303 /*
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2304 * Set an option to a new value.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2305 * Return NULL if OK, return an untranslated error message when something is
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2306 * wrong. "errbuf[errbuflen]" can be used to create the error message.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2307 */
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2308 static char *
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2309 do_set_option(
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2310 int opt_flags,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2311 char_u **argp,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2312 char_u *arg_start,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2313 char_u **startarg,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2314 int *did_show,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2315 int *stopopteval,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2316 char *errbuf,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2317 size_t errbuflen)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2318 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2319 int opt_idx;
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2320 char_u *arg;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2321 set_prefix_T prefix; // no prefix, "no" prefix or "inv" prefix
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2322 set_op_T op;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2323 long_u flags; // flags for current option
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2324 char_u *varp; // pointer to variable for current option
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2325 char_u key_name[2];
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2326 int nextchar; // next non-white char after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2327 int afterchar; // character just after option name
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2328 char *errmsg = NULL;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2329 int key;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2330 int len;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2331
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2332 prefix = get_option_prefix(argp);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2333 arg = *argp;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2334
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2335 // find end of name
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2336 key = 0;
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2337 if (parse_option_name(arg, &opt_idx, &len, &key) == FAIL)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2338 return e_invalid_argument;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2339
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2340 // remember character after option name
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2341 afterchar = arg[len];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2342
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2343 if (in_vim9script())
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2344 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2345 char_u *p = skipwhite(arg + len);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2346
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2347 // disallow white space before =val, +=val, -=val, ^=val
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2348 if (p > arg + len && (p[0] == '='
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2349 || (vim_strchr((char_u *)"+-^", p[0]) != NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2350 && p[1] == '=')))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2351 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2352 errmsg = e_no_white_space_allowed_between_option_and;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2353 arg = p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2354 *startarg = p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2355 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2356 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2357 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2358 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2359 // skip white space, allow ":set ai ?", ":set hlsearch !"
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2360 while (VIM_ISWHITE(arg[len]))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2361 ++len;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2362
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2363 op = get_opt_op(arg + len);
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2364 if (op != OP_NONE)
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2365 len++;
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2366
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2367 nextchar = arg[len];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2368
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2369 if (opt_idx == -1 && key == 0) // found a mismatch: skip
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2370 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2371 if (in_vim9script() && arg > arg_start
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2372 && vim_strchr((char_u *)"!&<", *arg) != NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2373 errmsg = e_no_white_space_allowed_between_option_and;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2374 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2375 errmsg = e_unknown_option;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2376 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2377 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2378
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2379 if (opt_idx >= 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2380 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2381 if (options[opt_idx].var == NULL) // hidden option: skip
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2382 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2383 // Only give an error message when requesting the value of
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2384 // a hidden option, ignore setting it.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2385 if (vim_strchr((char_u *)"=:!&<", nextchar) == NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2386 && (!(options[opt_idx].flags & P_BOOL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2387 || nextchar == '?'))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2388 errmsg = e_option_not_supported;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2389 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2390 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2391
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2392 flags = options[opt_idx].flags;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2393 varp = get_varp_scope(&(options[opt_idx]), opt_flags);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2394 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2395 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2396 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2397 flags = P_STRING;
31904
a4358b58d3fb patch 9.0.1284: compiler warnings for uninitialized variables
Bram Moolenaar <Bram@vim.org>
parents: 31902
diff changeset
2398 varp = NULL;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2399 if (key < 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2400 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2401 key_name[0] = KEY2TERMCAP0(key);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2402 key_name[1] = KEY2TERMCAP1(key);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2403 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2404 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2405 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2406 key_name[0] = KS_KEY;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2407 key_name[1] = (key & 0xff);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2408 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2409 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2410
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2411 // Make sure the option value can be changed.
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2412 if (validate_opt_idx(opt_idx, opt_flags, flags, &errmsg) == FAIL)
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2413 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2414
31904
a4358b58d3fb patch 9.0.1284: compiler warnings for uninitialized variables
Bram Moolenaar <Bram@vim.org>
parents: 31902
diff changeset
2415 int cp_val = p_cp;
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2416 if (vim_strchr((char_u *)"?=:!&<", nextchar) != NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2417 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2418 arg += len;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2419 if (nextchar == '&' && arg[1] == 'v' && arg[2] == 'i')
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2420 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2421 if (arg[3] == 'm') // "opt&vim": set to Vim default
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2422 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2423 cp_val = FALSE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2424 arg += 3;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2425 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2426 else // "opt&vi": set to Vi default
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2427 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2428 cp_val = TRUE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2429 arg += 2;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2430 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2431 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2432 if (vim_strchr((char_u *)"?!&<", nextchar) != NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2433 && arg[1] != NUL && !VIM_ISWHITE(arg[1]))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2434 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2435 errmsg = e_trailing_characters;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2436 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2437 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2438 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2439
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2440 // Allow '=' and ':' for historical reasons (MSDOS command.com).
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2441 // Allows only one '=' character per "set" command line. grrr. (jw)
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2442 if (nextchar == '?'
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2443 || (prefix == PREFIX_NONE
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2444 && vim_strchr((char_u *)"=:&<", nextchar) == NULL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2445 && !(flags & P_BOOL)))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2446 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2447 // print value
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2448 if (*did_show)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2449 msg_putchar('\n'); // cursor below last one
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2450 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2451 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2452 gotocmdline(TRUE); // cursor at status line
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2453 *did_show = TRUE; // remember that we did a line
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2454 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2455 if (opt_idx >= 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2456 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2457 showoneopt(&options[opt_idx], opt_flags);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2458 #ifdef FEAT_EVAL
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2459 if (p_verbose > 0)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2460 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2461 // Mention where the option was last set.
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2462 if (varp == options[opt_idx].var)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2463 last_set_msg(options[opt_idx].script_ctx);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2464 else if ((int)options[opt_idx].indir & PV_WIN)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2465 last_set_msg(curwin->w_p_script_ctx[
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2466 (int)options[opt_idx].indir & PV_MASK]);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2467 else if ((int)options[opt_idx].indir & PV_BUF)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2468 last_set_msg(curbuf->b_p_script_ctx[
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2469 (int)options[opt_idx].indir & PV_MASK]);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2470 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2471 #endif
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2472 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2473 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2474 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2475 char_u *p;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2476
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2477 p = find_termcode(key_name);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2478 if (p == NULL)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2479 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2480 errmsg = e_key_code_not_set;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2481 goto skip;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2482 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2483 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2484 (void)show_one_termcode(key_name, p, TRUE);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2485 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2486 if (nextchar != '?'
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2487 && nextchar != NUL && !VIM_ISWHITE(afterchar))
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2488 errmsg = e_trailing_characters;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2489 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2490 else
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2491 {
31902
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2492 errmsg = do_set_option_value(opt_idx, opt_flags, &arg, prefix, op,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2493 flags, varp, key_name, nextchar,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2494 afterchar, cp_val, stopopteval, errbuf,
1c5ef864fe4c patch 9.0.1283: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31886
diff changeset
2495 errbuflen);
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2496 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2497
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2498 skip:
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2499 *argp = arg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2500 return errmsg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2501 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2502
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2503 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2504 * Parse 'arg' for option settings.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2505 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2506 * 'arg' may be IObuff, but only when no errors can be present and option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2507 * does not need to be expanded with option_expand().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2508 * "opt_flags":
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2509 * 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
2510 * 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
2511 * 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
2512 * 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
2513 * 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
2514 * 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
2515 * OPT_ONECOLUMN do not use multiple columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2516 *
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2517 * Returns FAIL if an error is detected, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2518 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2519 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2520 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
2521 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
2522 int opt_flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523 {
25174
b32c83317492 patch 8.2.3123: Vim9: confusing error when using white space after option
Bram Moolenaar <Bram@vim.org>
parents: 25084
diff changeset
2524 char_u *arg = arg_start;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2525 int i;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2526 int did_show = FALSE; // already showed one value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2527
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 if (*arg == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2529 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2530 showoptions(0, opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2531 did_show = TRUE;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2532 goto theend;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2533 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2534
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2535 while (*arg != NUL) // loop to process all options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 {
31766
9f1504e36ae9 patch 9.0.1215: using isalpha() adds dependency on current locale
Bram Moolenaar <Bram@vim.org>
parents: 31752
diff changeset
2537 if (STRNCMP(arg, "all", 3) == 0 && !ASCII_ISALPHA(arg[3])
36
125e80798a85 updated for version 7.0021
vimboss
parents: 29
diff changeset
2538 && !(opt_flags & OPT_MODELINE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2540 // ":set all" show all options.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2541 // ":set all&" set all options to their default value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2542 arg += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 if (*arg == '&')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2544 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 ++arg;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2546 // Only for :set command set global value of local options.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 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
2548 didset_options();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2549 didset_options2();
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
2550 redraw_all_later(UPD_CLEAR);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2551 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2552 else
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2553 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554 showoptions(1, opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2555 did_show = TRUE;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2556 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2557 }
36
125e80798a85 updated for version 7.0021
vimboss
parents: 29
diff changeset
2558 else if (STRNCMP(arg, "termcap", 7) == 0 && !(opt_flags & OPT_MODELINE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2559 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560 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
2561 show_termcodes(opt_flags);
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2562 did_show = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563 arg += 7;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2566 {
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2567 int stopopteval = FALSE;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2568 char *errmsg = NULL;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2569 char errbuf[80];
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2570 char_u *startarg = arg;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2571
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2572 errmsg = do_set_option(opt_flags, &arg, arg_start, &startarg,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2573 &did_show, &stopopteval, errbuf,
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2574 sizeof(errbuf));
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2575 if (stopopteval)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2576 break;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2577
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2578 // Advance to next argument.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2579 // - skip until a blank found, taking care of backslashes
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2580 // - skip blanks
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2581 // - skip one "=val" argument (for hidden options ":set gfn =xx")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2582 for (i = 0; i < 2 ; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2583 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
2584 while (*arg != NUL && !VIM_ISWHITE(*arg))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2585 if (*arg++ == '\\' && *arg != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2586 ++arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2587 arg = skipwhite(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2588 if (*arg != '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2589 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2590 }
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2591
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2592 if (errmsg != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2593 {
31886
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2594 vim_strncpy(IObuff, (char_u *)_(errmsg), IOSIZE - 1);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2595 i = (int)STRLEN(IObuff) + 2;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2596 if (i + (arg - startarg) < IOSIZE)
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2597 {
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2598 // append the argument with the error
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2599 STRCAT(IObuff, ": ");
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2600 mch_memmove(IObuff + i, startarg, (arg - startarg));
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2601 IObuff[i + (arg - startarg)] = NUL;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2602 }
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2603 // make sure all characters are printable
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2604 trans_characters(IObuff, IOSIZE);
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2605
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2606 ++no_wait_return; // wait_return() done later
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2607 emsg((char *)IObuff); // show error highlighted
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2608 --no_wait_return;
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2609
b741e5243e58 patch 9.0.1275: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31819
diff changeset
2610 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2612 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2613
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2614 arg = skipwhite(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2615 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2616
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2617 theend:
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2618 if (silent_mode && did_show)
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2619 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2620 // After displaying option values in silent mode.
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2621 silent_mode = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2622 info_message = TRUE; // use mch_msg(), not mch_errmsg()
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2623 msg_putchar('\n');
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2624 cursor_on(); // msg_start() switches it off
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2625 out_flush();
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2626 silent_mode = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2627 info_message = FALSE; // use mch_msg(), not mch_errmsg()
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2628 }
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
2629
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2630 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2633 /*
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2634 * Call this when an option has been given a new value through a user command.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2635 * Sets the P_WAS_SET flag and takes care of the P_INSECURE flag.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2636 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2637 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2638 did_set_option(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2639 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
2640 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
2641 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
2642 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
2643 // P_INSECURE flag.
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2644 {
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2645 long_u *p;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2646
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2647 options[opt_idx].flags |= P_WAS_SET;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2648
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2649 // 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
2650 // 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
2651 // flag.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2652 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
2653 if (!value_checked && (secure
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2654 #ifdef HAVE_SANDBOX
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2655 || sandbox != 0
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2656 #endif
15066
40d9218b2b12 patch 8.1.0544: setting 'filetype' in a modeline causes an error
Bram Moolenaar <Bram@vim.org>
parents: 15062
diff changeset
2657 || (opt_flags & OPT_MODELINE)))
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2658 *p = *p | P_INSECURE;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2659 else if (new_value)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2660 *p = *p & ~P_INSECURE;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2661 }
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2662
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2663 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2664 * Convert a key name or string into a key value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2665 * 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
2666 * 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
2667 */
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2668 int
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2669 string_to_key(char_u *arg, int multi_byte)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2670 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2671 if (*arg == '<')
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
2672 return find_key_option(arg + 1, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2673 if (*arg == '^')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2674 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
2675 if (multi_byte)
b82dad3fa176 patch 8.0.0764: 'termkey' does not work yet
Christian Brabandt <cb@256bit.org>
parents: 11757
diff changeset
2676 return PTR2CHAR(arg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 return *arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 * When changing 'title', 'titlestring', 'icon' or 'iconstring', call
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 * maketitle() to create and display it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2683 * When switching the title or icon off, call mch_restore_title() to get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2684 * the old value back.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2685 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2686 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
2687 did_set_title(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2688 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2689 if (starting != NO_SCREEN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2690 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 && !gui.starting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 maketitle();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2697 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 * set_options_bin - called when 'bin' changes value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2699 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2700 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2701 set_options_bin(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2702 int oldval,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2703 int newval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2704 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2706 // The option values that are changed when 'bin' changes are
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2707 // copied when 'bin is set and restored when 'bin' is reset.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 if (newval)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2710 if (!oldval) // switched on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2711 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2712 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2713 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2714 curbuf->b_p_tw_nobin = curbuf->b_p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2715 curbuf->b_p_wm_nobin = curbuf->b_p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2716 curbuf->b_p_ml_nobin = curbuf->b_p_ml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2717 curbuf->b_p_et_nobin = curbuf->b_p_et;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2718 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2719 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2720 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 p_tw_nobin = p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 p_wm_nobin = p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 p_ml_nobin = p_ml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 p_et_nobin = p_et;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2725 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2726 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2727
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2728 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2729 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2730 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
2731 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
2732 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
2733 curbuf->b_p_et = 0; // no expandtab
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2735 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2736 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2737 p_tw = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2738 p_wm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 p_ml = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 p_et = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2741 p_bin = TRUE; // needed when called for the "-b" argument
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2744 else if (oldval) // switched off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2746 if (!(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2747 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2748 curbuf->b_p_tw = curbuf->b_p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2749 curbuf->b_p_wm = curbuf->b_p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2750 curbuf->b_p_ml = curbuf->b_p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2751 curbuf->b_p_et = curbuf->b_p_et_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755 p_tw = p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2756 p_wm = p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2757 p_ml = p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2758 p_et = p_et_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2759 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2760 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2762
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2763 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764 * Expand environment variables for some string options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2765 * These string options cannot be indirect!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2766 * If "val" is NULL expand the current value of the option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2767 * Return pointer to NameBuff, or NULL when not expanded.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2769 static char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2770 option_expand(int opt_idx, char_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2771 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2772 // if option doesn't need expansion nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2773 if (!(options[opt_idx].flags & P_EXPAND) || options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2774 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2775
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2776 // 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
2777 // expand_env() would truncate the string.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2778 if (val != NULL && STRLEN(val) > MAXPATHL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2779 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2780
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2781 if (val == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2782 val = *(char_u **)options[opt_idx].var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2783
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2784 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2785 * Expanding this with NameBuff, expand_env() must not be passed IObuff.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2786 * Escape spaces when expanding 'tags', they are used to separate file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2787 * names.
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2788 * For 'spellsuggest' expand after "file:".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2789 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2790 expand_env_esc(val, NameBuff, MAXPATHL,
1408
db8309865794 updated for version 7.1-123
vimboss
parents: 1404
diff changeset
2791 (char_u **)options[opt_idx].var == &p_tags, FALSE,
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
2792 #ifdef FEAT_SPELL
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2793 (char_u **)options[opt_idx].var == &p_sps ? (char_u *)"file:" :
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2794 #endif
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2795 NULL);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2796 if (STRCMP(NameBuff, val) == 0) // they are the same
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2797 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2798
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2799 return NameBuff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2800 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2801
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2802 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2803 * After setting various option values: recompute variables that depend on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2804 * option values.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2805 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2806 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2807 didset_options(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2808 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2809 // initialize the table for 'iskeyword' et.al.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2810 (void)init_chartab();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2811
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2812 didset_string_options();
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2813
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
2814 #ifdef FEAT_SPELL
484
f012c4ed8c38 updated for version 7.0132
vimboss
parents: 480
diff changeset
2815 (void)spell_check_msm();
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
2816 (void)spell_check_sps();
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
2817 (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
2818 (void)did_set_spell_option(TRUE);
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 323
diff changeset
2819 #endif
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
2820 // set cedit_key
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
2821 (void)did_set_cedit(NULL);
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
2822 #ifdef FEAT_LINEBREAK
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2823 // initialize the table for 'breakat'.
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
2824 did_set_breakat(NULL);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2825 #endif
18156
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
2826 after_copy_winopt(curwin);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2827 }
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2828
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2829 /*
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2830 * More side effects of setting options.
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2831 */
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2832 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2833 didset_options2(void)
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2834 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2835 // Initialize the highlight_attr[] table.
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2836 (void)highlight_changed();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2837
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2838 // Parse default for 'wildmode'
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2839 check_opt_wim();
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2840
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
2841 // Parse default for 'listchars'.
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2842 (void)set_listchars_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
2843
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2844 // Parse default for 'fillchars'.
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
2845 (void)set_fillchars_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
2846
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2847 #ifdef FEAT_CLIPBOARD
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2848 // Parse default for 'clipboard'
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
2849 (void)did_set_clipboard(NULL);
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
2850 #endif
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
2851 #ifdef FEAT_VARTABS
15858
3a45b89639fb patch 8.1.0936: may leak memory when using 'vartabstop'
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
2852 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
2853 (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
2854 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
2855 (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
2856 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2857 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2858
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2859 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2860 * Check for string options that are NULL (normally only termcap options).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2861 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2862 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2863 check_options(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2864 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2866
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2867 for (opt_idx = 0; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2868 if ((options[opt_idx].flags & P_STRING) && options[opt_idx].var != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2869 check_string_option((char_u **)get_varp(&(options[opt_idx])));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2870 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2871
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2872 /*
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2873 * 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
2874 * 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
2875 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2876 int
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2877 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
2878 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2879 int opt_idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2880
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2881 for (opt_idx = 1; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2882 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
2883 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
2884 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
2885 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2886
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2887 /*
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2888 * 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
2889 * 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
2890 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2891 int
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2892 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
2893 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2894 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
2895
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
2896 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
2897 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
2898 return opt_idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2899 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2900
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2901 #if defined(FEAT_EVAL) || defined(PROTO)
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2902 /*
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2903 * Return TRUE when option "opt" was set from a modeline or in secure mode.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2904 * Return FALSE when it wasn't.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2905 * Return -1 for an unknown option.
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2906 */
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2907 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2908 was_set_insecurely(char_u *opt, int opt_flags)
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2909 {
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2910 int idx = findoption(opt);
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2911 long_u *flagp;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2912
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2913 if (idx >= 0)
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2914 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2915 flagp = insecure_flag(idx, opt_flags);
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2916 return (*flagp & P_INSECURE) != 0;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2917 }
10359
66f1b5bf3fa6 commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents: 10357
diff changeset
2918 internal_error("was_set_insecurely()");
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2919 return -1;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2920 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2921
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2922 /*
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2923 * Get a pointer to the flags used for the P_INSECURE flag of option
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2924 * "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
2925 * 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
2926 * the option is used.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2927 */
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2928 static long_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2929 insecure_flag(int opt_idx, int opt_flags)
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2930 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2931 if (opt_flags & OPT_LOCAL)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2932 switch ((int)options[opt_idx].indir)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2933 {
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2934 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2935 case PV_STL: return &curwin->w_p_stl_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2936 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2937 #ifdef FEAT_EVAL
885
2548cf0a5f62 updated for version 7.0-011
vimboss
parents: 875
diff changeset
2938 # ifdef FEAT_FOLDING
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2939 case PV_FDE: return &curwin->w_p_fde_flags;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2940 case PV_FDT: return &curwin->w_p_fdt_flags;
885
2548cf0a5f62 updated for version 7.0-011
vimboss
parents: 875
diff changeset
2941 # endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2942 # ifdef FEAT_BEVAL
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2943 case PV_BEXPR: return &curbuf->b_p_bexpr_flags;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
2944 # endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2945 case PV_INDE: return &curbuf->b_p_inde_flags;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2946 case PV_FEX: return &curbuf->b_p_fex_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2947 # ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2948 case PV_INEX: return &curbuf->b_p_inex_flags;
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2949 # endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2950 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2951 }
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2952
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2953 // Nothing special, return global flags field.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2954 return &options[opt_idx].flags;
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2955 }
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2956 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
2957
1805
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2958 /*
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2959 * Redraw the window title and/or tab page text later.
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2960 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2961 void redraw_titles(void)
1805
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2962 {
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2963 need_maketitle = TRUE;
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2964 redraw_tabline = TRUE;
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2965 }
a5e1d6526ac7 updated for version 7.2-103
vimboss
parents: 1801
diff changeset
2966
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2967 /*
16277
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2968 * 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
2969 * 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
2970 */
17940
079e10a49ea1 patch 8.1.1966: some code in options.c fits better elsewhere
Bram Moolenaar <Bram@vim.org>
parents: 17845
diff changeset
2971 int
16277
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2972 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
2973 {
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2974 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
2975
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2976 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
2977 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
2978 return FALSE;
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2979 return TRUE;
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2980 }
5ef25fa57f71 patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents: 16223
diff changeset
2981
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2982 #if defined(FEAT_EVAL) || defined(PROTO)
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2983 /*
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
2984 * Set the script_ctx for an option, taking care of setting the buffer- or
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2985 * window-local value.
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
2986 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
2987 void
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
2988 set_option_sctx_idx(int opt_idx, int opt_flags, sctx_T script_ctx)
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2989 {
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2990 int both = (opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2991 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
2992 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
2993
20269
246101db63a4 patch 8.2.0690: line number of option set by modeline is wrong
Bram Moolenaar <Bram@vim.org>
parents: 20237
diff changeset
2994 // 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
2995 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
2996 new_script_ctx.sc_lnum += SOURCING_LNUM;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
2997
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
2998 // 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
2999 // in the buffer or window structure.
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3000 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
3001 options[opt_idx].script_ctx = new_script_ctx;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3002 if (both || (opt_flags & OPT_LOCAL))
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3003 {
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3004 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
3005 curbuf->b_p_script_ctx[indir & PV_MASK] = new_script_ctx;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3006 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
3007 {
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
3008 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
3009 if (both)
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3010 // 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
3011 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
3012 new_script_ctx;
e11682ba8c80 patch 8.2.4173: cannot use an import in 'foldexpr'
Bram Moolenaar <Bram@vim.org>
parents: 27285
diff changeset
3013 }
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
3014 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3015 }
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3016
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3017 /*
27303
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3018 * 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
3019 *
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3020 */
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3021 sctx_T *
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3022 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
3023 {
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3024 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
3025
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3026 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
3027 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
3028 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
3029 return NULL;
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3030 }
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3031
9e0ac05f579a patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Bram Moolenaar <Bram@vim.org>
parents: 27289
diff changeset
3032 /*
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3033 * 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
3034 * "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
3035 * 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
3036 */
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3037 void
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3038 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
3039 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3040 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
3041 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
3042
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3043 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
3044 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
3045 else
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3046 {
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3047 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
3048 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
3049 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
3050 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
3051 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
3052 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
3053 }
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
3054 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
3055 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
3056 }
681
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3057 #endif
9364d114ed8d updated for version 7.0204
vimboss
parents: 680
diff changeset
3058
19405
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3059 #if defined(FEAT_EVAL)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3060 /*
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3061 * Apply the OptionSet autocommand.
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3062 */
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3063 static void
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3064 apply_optionset_autocmd(
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3065 int opt_idx,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3066 long opt_flags,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3067 long oldval,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3068 long oldval_g,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3069 long newval,
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3070 char *errmsg)
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3071 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3072 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
3073
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3074 // 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
3075 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
3076 return;
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3077
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3078 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
3079 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
3080 oldval_g);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3081 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
3082 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
3083 (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
3084 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
3085 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
3086 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
3087 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
3088 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3089 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
3090 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
3091 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3092 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
3093 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3094 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
3095 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
3096 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3097 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
3098 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3099 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
3100 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
3101 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
3102 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3103 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
3104 {
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3105 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
3106 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
3107 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3108 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
3109 NULL, FALSE, NULL);
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3110 reset_v_option_vars();
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3111 }
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3112 #endif
08f4dc2ba716 patch 8.2.0260: several lines of code are duplicated
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
3113
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3114 /*
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3115 * Process the updated 'compatible' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3116 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3117 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3118 did_set_compatible(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3119 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3120 compatible_set();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3121 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3122 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3123
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3124 #if defined(FEAT_LANGMAP) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3125 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3126 * Process the updated 'langremap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3127 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3128 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3129 did_set_langremap(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3130 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3131 // 'langremap' -> !'langnoremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3132 p_lnr = !p_lrm;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3133 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3134 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3135
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3136 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3137 * Process the updated 'langnoremap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3138 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3139 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3140 did_set_langnoremap(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3141 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3142 // 'langnoremap' -> !'langremap'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3143 p_lrm = !p_lnr;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3144 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3145 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3146 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3147
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3148 #if defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3149 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3150 * Process the updated 'undofile' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3151 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3152 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3153 did_set_undofile(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3154 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3155 // Only take action when the option was set.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3156 if (!curbuf->b_p_udf && !p_udf)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3157 return NULL;
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3158
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3159 // When reset we do not delete the undo file, the option may be set again
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3160 // without making any changes in between.
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3161 char_u hash[UNDO_HASH_SIZE];
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3162 buf_T *save_curbuf = curbuf;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3163
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3164 FOR_ALL_BUFFERS(curbuf)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3165 {
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3166 // When 'undofile' is set globally: for every buffer, otherwise
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3167 // only for the current buffer: Try to read in the undofile,
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3168 // if one exists, the buffer wasn't changed and the buffer was
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3169 // loaded
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3170 if ((curbuf == save_curbuf
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3171 || (args->os_flags & OPT_GLOBAL)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3172 || args->os_flags == 0)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3173 && !curbufIsChanged() && curbuf->b_ml.ml_mfp != NULL)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3174 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3175 #ifdef FEAT_CRYPT
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3176 if (crypt_get_method_nr(curbuf) == CRYPT_M_SOD)
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3177 continue;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3178 #endif
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3179 u_compute_hash(hash);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3180 u_read_undo(NULL, hash, curbuf->b_fname);
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3181 }
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3182 }
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3183 curbuf = save_curbuf;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3184
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3185 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3186 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3187 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3188
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3189 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3190 * Process the updated 'readonly' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3191 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3192 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3193 did_set_readonly(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3194 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3195 // when 'readonly' is reset globally, also reset readonlymode
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3196 if (!curbuf->b_p_ro && (args->os_flags & OPT_LOCAL) == 0)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3197 readonlymode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3198
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3199 // when 'readonly' is set may give W10 again
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3200 if (curbuf->b_p_ro)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3201 curbuf->b_did_warn = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3202
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3203 redraw_titles();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3204
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3205 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3206 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3207
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3208 #if defined(FEAT_GUI) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3209 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3210 * Process the updated 'mousehide' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3211 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3212 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3213 did_set_mousehide(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3214 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3215 if (!p_mh)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3216 gui_mch_mousehide(FALSE);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3217 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3218 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3219 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3220
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3221 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3222 * Process the updated 'modifiable' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3223 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3224 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3225 did_set_modifiable(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3226 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3227 // when 'modifiable' is changed, redraw the window title
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3228
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3229 # ifdef FEAT_TERMINAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3230 // Cannot set 'modifiable' when in Terminal mode.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3231 if (curbuf->b_p_ma && (term_in_normal_mode() || (bt_terminal(curbuf)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3232 && curbuf->b_term != NULL && !term_is_finished(curbuf))))
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3233 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3234 curbuf->b_p_ma = FALSE;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3235 args->os_doskip = TRUE;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3236 return e_cannot_make_terminal_with_running_job_modifiable;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3237 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3238 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3239 redraw_titles();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3240
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3241 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3242 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3243
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3244 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3245 * Process the updated 'endoffile' or 'endofline' or 'fixendofline' or 'bomb'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3246 * option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3247 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3248 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3249 did_set_eof_eol_fixeol_bomb(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3250 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3251 // redraw the window title and tab page text
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3252 redraw_titles();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3253 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3254 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3255
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3256 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3257 * Process the updated 'binary' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3258 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3259 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3260 did_set_binary(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3261 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3262 // when 'bin' is set also set some other options
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3263 set_options_bin(args->os_oldval.boolean, curbuf->b_p_bin, args->os_flags);
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3264 redraw_titles();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3265
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3266 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3267 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3268
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3269 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3270 * Process the updated 'buflisted' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3271 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3272 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3273 did_set_buflisted(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3274 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3275 // when 'buflisted' changes, trigger autocommands
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3276 if (args->os_oldval.boolean != curbuf->b_p_bl)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3277 apply_autocmds(curbuf->b_p_bl ? EVENT_BUFADD : EVENT_BUFDELETE,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3278 NULL, NULL, TRUE, curbuf);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3279 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3280 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3281
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3282 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3283 * Process the updated 'swapfile' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3284 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3285 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3286 did_set_swapfile(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3287 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3288 // when 'swf' is set, create swapfile, when reset remove swapfile
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3289 if (curbuf->b_p_swf && p_uc)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3290 ml_open_file(curbuf); // create the swap file
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3291 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3292 // no need to reset curbuf->b_may_swap, ml_open_file() will check
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3293 // buf->b_p_swf
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3294 mf_close_file(curbuf, TRUE); // remove the swap file
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3295 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3296 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3297
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3298 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3299 * Process the updated 'terse' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3300 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3301 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3302 did_set_terse(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3303 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3304 char_u *p;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3305
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3306 // when 'terse' is set change 'shortmess'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3307 p = vim_strchr(p_shm, SHM_SEARCH);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3308
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3309 // insert 's' in p_shm
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3310 if (p_terse && p == NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3311 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3312 STRCPY(IObuff, p_shm);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3313 STRCAT(IObuff, "s");
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3314 set_string_option_direct((char_u *)"shm", -1, IObuff, OPT_FREE, 0);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3315 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3316 // remove 's' from p_shm
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3317 else if (!p_terse && p != NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3318 STRMOVE(p, p + 1);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3319 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3320 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3321
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3322 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3323 * Process the updated 'paste' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3324 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3325 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3326 did_set_paste(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3327 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3328 // when 'paste' is set or reset also change other options
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3329 paste_option_changed();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3330 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3331 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3332
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3333 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3334 * Process the updated 'insertmode' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3335 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3336 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3337 did_set_insertmode(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3338 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3339 // when 'insertmode' is set from an autocommand need to do work here
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3340 if (p_im)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3341 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3342 if ((State & MODE_INSERT) == 0)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3343 need_start_insertmode = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3344 stop_insert_mode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3345 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3346 // only reset if it was set previously
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3347 else if (args->os_oldval.boolean)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3348 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3349 need_start_insertmode = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3350 stop_insert_mode = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3351 if (restart_edit != 0 && mode_displayed)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3352 clear_cmdline = TRUE; // remove "(insert)"
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3353 restart_edit = 0;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3354 }
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3355
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3356 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3357 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3358
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3359 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3360 * Process the updated 'ignorecase' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3361 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3362 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3363 did_set_ignorecase(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3364 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3365 // when 'ignorecase' is set or reset and 'hlsearch' is set, redraw
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3366 if (p_hls)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3367 redraw_all_later(UPD_SOME_VALID);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3368 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3369 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3370
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3371 #if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3372 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3373 * Process the updated 'hlsearch' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3374 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3375 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3376 did_set_hlsearch(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3377 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3378 // when 'hlsearch' is set or reset: reset no_hlsearch
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3379 set_no_hlsearch(FALSE);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3380 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3381 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3382 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3383
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3384 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3385 * Process the updated 'scrollbind' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3386 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3387 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3388 did_set_scrollbind(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3389 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3390 // when 'scrollbind' is set: snapshot the current position to avoid a jump
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3391 // at the end of normal_cmd()
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3392 if (!curwin->w_p_scb)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3393 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3394
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3395 do_check_scrollbind(FALSE);
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3396 curwin->w_scbind_pos = curwin->w_topline;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3397 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3398 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3399
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3400 #ifdef FEAT_QUICKFIX
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3401 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3402 * Process the updated 'previewwindow' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3403 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3404 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3405 did_set_previewwindow(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3406 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3407 if (!curwin->w_p_pvw)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3408 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3409
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3410 // There can be only one window with 'previewwindow' set.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3411 win_T *win;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3412
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3413 FOR_ALL_WINDOWS(win)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3414 if (win->w_p_pvw && win != curwin)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3415 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3416 curwin->w_p_pvw = FALSE;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3417 args->os_doskip = TRUE;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3418 return e_preview_window_already_exists;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3419 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3420
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3421 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3422 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3423 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3424
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3425 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3426 * Process the updated 'smoothscroll' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3427 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3428 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3429 did_set_smoothscroll(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3430 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3431 if (curwin->w_p_sms)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3432 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3433
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3434 curwin->w_skipcol = 0;
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3435 changed_line_abv_curs();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3436 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3437 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3438
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3439 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3440 * Process the updated 'textmode' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3441 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3442 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3443 did_set_textmode(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3444 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3445 // when 'textmode' is set or reset also change 'fileformat'
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3446 set_fileformat(curbuf->b_p_tx ? EOL_DOS : EOL_UNIX, args->os_flags);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3447
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3448 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3449 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3450
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3451 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3452 * Process the updated 'textauto' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3453 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3454 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3455 did_set_textauto(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3456 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3457 // when 'textauto' is set or reset also change 'fileformats'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3458 set_string_option_direct((char_u *)"ffs", -1,
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3459 p_ta ? (char_u *)DFLT_FFS_VIM : (char_u *)"",
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3460 OPT_FREE | args->os_flags, 0);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3461
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3462 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3463 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3464
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3465 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3466 * Process the updated 'lisp' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3467 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3468 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3469 did_set_lisp(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3470 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3471 // When 'lisp' option changes include/exclude '-' in keyword characters.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3472 (void)buf_init_chartab(curbuf, FALSE); // ignore errors
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3473 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3474 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3475
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3476 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3477 * Process the updated 'title' or the 'icon' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3478 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3479 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3480 did_set_title_icon(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3481 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3482 // when 'title' changed, may need to change the title; same for 'icon'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3483 did_set_title();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3484 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3485 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3486
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3487 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3488 * Process the updated 'modified' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3489 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3490 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3491 did_set_modified(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3492 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3493 if (!args->os_newval.boolean)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3494 save_file_ff(curbuf); // Buffer is unchanged
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3495 redraw_titles();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3496 modified_was_set = args->os_newval.boolean;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3497 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3498 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3499
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3500 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3501 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3502 * Process the updated 'shellslash' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3503 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3504 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3505 did_set_shellslash(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3506 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3507 if (p_ssl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3508 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3509 psepc = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3510 psepcN = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3511 pseps[0] = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3512 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3513 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3514 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3515 psepc = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3516 psepcN = '/';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3517 pseps[0] = '\\';
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3518 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3519
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3520 // need to adjust the file name arguments and buffer names.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3521 buflist_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3522 alist_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3523 # ifdef FEAT_EVAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3524 scriptnames_slash_adjust();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3525 # endif
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3526 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3527 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3528 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3529
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3530 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3531 * Process the updated 'wrap' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3532 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3533 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3534 did_set_wrap(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3535 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3536 // If 'wrap' is set, set w_leftcol to zero.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3537 if (curwin->w_p_wrap)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3538 curwin->w_leftcol = 0;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3539 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3540 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3541
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3542 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3543 * Process the updated 'equalalways' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3544 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3545 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3546 did_set_equalalways(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3547 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3548 if (p_ea && !args->os_oldval.boolean)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3549 win_equal(curwin, FALSE, 0);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3550
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3551 return NULL;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3552 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3553
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3554 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3555 * Process the updated 'weirdinvert' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3556 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3557 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3558 did_set_weirdinvert(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3559 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3560 // When 'weirdinvert' changed, set/reset 't_xs'.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3561 // Then set 'weirdinvert' according to value of 't_xs'.
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3562 if (p_wiv && !args->os_oldval.boolean)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3563 T_XS = (char_u *)"y";
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3564 else if (!p_wiv && args->os_oldval.boolean)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3565 T_XS = empty_option;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3566 p_wiv = (*T_XS != NUL);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3567
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3568 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3569 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3570
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3571 #if defined(FEAT_BEVAL_GUI) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3572 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3573 * Process the updated 'ballooneval' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3574 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3575 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3576 did_set_ballooneval(optset_T *args)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3577 {
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3578 if (balloonEvalForTerm)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3579 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3580
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3581 if (p_beval && !args->os_oldval.boolean)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3582 gui_mch_enable_beval_area(balloonEval);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3583 else if (!p_beval && args->os_oldval.boolean)
31952
360efef7e5df patch 9.0.1308: the code for setting options is too complicated
Bram Moolenaar <Bram@vim.org>
parents: 31950
diff changeset
3584 gui_mch_disable_beval_area(balloonEval);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3585
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3586 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3587 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3588 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3589
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3590 #if defined(FEAT_BEVAL_TERM) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3591 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3592 * Process the updated 'balloonevalterm' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3593 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3594 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3595 did_set_balloonevalterm(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3596 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3597 mch_bevalterm_changed();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3598 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3599 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3600 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3601
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3602 #if defined(FEAT_AUTOCHDIR) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3603 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3604 * Process the updated 'autochdir' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3605 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3606 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3607 did_set_autochdir(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3608 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3609 // Change directories when the 'acd' option is set now.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3610 DO_AUTOCHDIR;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3611 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3612 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3613 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3614
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3615 #if defined(FEAT_DIFF) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3616 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3617 * Process the updated 'diff' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3618 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3619 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3620 did_set_diff(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3621 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3622 // May add or remove the buffer from the list of diff buffers.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3623 diff_buf_adjust(curwin);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3624 # ifdef FEAT_FOLDING
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3625 if (foldmethodIsDiff(curwin))
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3626 foldUpdateAll(curwin);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3627 # endif
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3628 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3629 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3630 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3631
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3632 #if defined(HAVE_INPUT_METHOD) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3633 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3634 * Process the updated 'imdisable' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3635 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3636 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3637 did_set_imdisable(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3638 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3639 // Only de-activate it here, it will be enabled when changing mode.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3640 if (p_imdisable)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3641 im_set_active(FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3642 else if (State & MODE_INSERT)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3643 // When the option is set from an autocommand, it may need to take
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3644 // effect right away.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3645 im_set_active(curbuf->b_p_iminsert == B_IMODE_IM);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3646 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3647 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3648 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3649
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3650 #if defined(FEAT_SPELL) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3651 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3652 * Process the updated 'spell' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3653 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3654 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3655 did_set_spell(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3656 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3657 if (curwin->w_p_spell)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3658 return parse_spelllang(curwin);
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3659
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3660 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3661 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3662 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3663
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3664 #if defined(FEAT_ARABIC) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3665 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3666 * Process the updated 'arabic' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3667 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3668 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3669 did_set_arabic(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3670 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3671 char *errmsg = NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3672
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3673 if (curwin->w_p_arab)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3674 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
3675 // 'arabic' is set, handle various sub-settings.
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3676 if (!p_tbidi)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3677 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3678 // set rightleft mode
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3679 if (!curwin->w_p_rl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3680 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3681 curwin->w_p_rl = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3682 changed_window_setting();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3683 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3684
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3685 // Enable Arabic shaping (major part of what Arabic requires)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3686 if (!p_arshape)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3687 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3688 p_arshape = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3689 redraw_later_clear();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3690 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3691 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3692
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3693 // Arabic requires a utf-8 encoding, inform the user if it's not
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3694 // set.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3695 if (STRCMP(p_enc, "utf-8") != 0)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3696 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3697 static char *w_arabic = N_("W17: Arabic requires UTF-8, do ':set encoding=utf-8'");
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3698
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3699 msg_source(HL_ATTR(HLF_W));
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3700 msg_attr(_(w_arabic), HL_ATTR(HLF_W));
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3701 #ifdef FEAT_EVAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3702 set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_arabic), -1);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3703 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3704 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3705
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3706 // set 'delcombine'
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3707 p_deco = TRUE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3708
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3709 # ifdef FEAT_KEYMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3710 // Force-set the necessary keymap for arabic
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3711 errmsg = set_option_value((char_u *)"keymap",
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3712 0L, (char_u *)"arabic", OPT_LOCAL);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3713 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3714 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3715 else
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3716 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
3717 // 'arabic' is reset, handle various sub-settings.
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3718 if (!p_tbidi)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3719 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3720 // reset rightleft mode
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3721 if (curwin->w_p_rl)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3722 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3723 curwin->w_p_rl = FALSE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3724 changed_window_setting();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3725 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3726
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3727 // 'arabicshape' isn't reset, it is a global option and
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3728 // another window may still need it "on".
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3729 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3730
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3731 // 'delcombine' isn't reset, it is a global option and another
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3732 // window may still want it "on".
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3733
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3734 # ifdef FEAT_KEYMAP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3735 // Revert to the default keymap
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3736 curbuf->b_p_iminsert = B_IMODE_NONE;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3737 curbuf->b_p_imsearch = B_IMODE_USE_INSERT;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3738 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3739 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3740
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3741 return errmsg;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3742 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3743 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3744
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3745 /*
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3746 * Process the updated 'number' or 'relativenumber' option value.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3747 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3748 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3749 did_set_number_relativenumber(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3750 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3751 #if (defined(FEAT_SIGNS) && defined(FEAT_GUI)) || defined(PROTO)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3752 if (gui.in_use
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3753 && (*curwin->w_p_scl == 'n' && *(curwin->w_p_scl + 1) == 'u')
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3754 && curbuf->b_signlist != NULL)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3755 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3756 // If the 'number' or 'relativenumber' options are modified and
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3757 // 'signcolumn' is set to 'number', then clear the screen for a full
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3758 // refresh. Otherwise the sign icons are not displayed properly in the
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3759 // number column. If the 'number' option is set and only the
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3760 // 'relativenumber' option is toggled, then don't refresh the screen
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3761 // (optimization).
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3762 if (!(curwin->w_p_nu && ((int *)args->os_varp == &curwin->w_p_rnu)))
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3763 redraw_all_later(UPD_CLEAR);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3764 }
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3765 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3766 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3767 }
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3768
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3769 #ifdef FEAT_TERMGUICOLORS
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3770 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3771 did_set_termguicolors(optset_T *args UNUSED)
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3772 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3773 # ifdef FEAT_VTP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3774 // Do not turn on 'tgc' when 24-bit colors are not supported.
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3775 if (
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3776 # ifdef VIMDLL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3777 !gui.in_use && !gui.starting &&
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3778 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3779 !has_vtp_working())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3780 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3781 p_tgc = 0;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3782 args->os_doskip = TRUE;
31924
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3783 return e_24_bit_colors_are_not_supported_on_this_environment;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3784 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3785 if (is_term_win32())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3786 swap_tcap();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3787 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3788 # ifdef FEAT_GUI
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3789 if (!gui.in_use && !gui.starting)
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3790 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3791 highlight_gui_started();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3792 # ifdef FEAT_VTP
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3793 // reset t_Co
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3794 if (is_term_win32())
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3795 {
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3796 control_console_color_rgb();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3797 set_termname(T_NAME);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3798 init_highlight(TRUE, FALSE);
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3799 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3800 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3801 # ifdef FEAT_TERMINAL
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3802 term_update_colors_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3803 term_update_palette_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3804 term_update_wincolor_all();
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3805 # endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3806
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3807 return NULL;
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3808 }
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3809 #endif
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3810
4789a9d20e7c patch 9.0.1294: the set_bool_option() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 31922
diff changeset
3811 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3812 * Set the value of a boolean option, and take care of side effects.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3813 * Returns NULL for success, or an error message for an error.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3814 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
3815 static char *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3816 set_bool_option(
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3817 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
3818 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
3819 int value, // new value
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3820 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3821 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3822 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
3823 #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
3824 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
3825 #endif
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
3826 char *errmsg = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3827
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3828 // Disallow changing some options from secure mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3829 if ((secure
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3830 #ifdef HAVE_SANDBOX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3831 || sandbox != 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3832 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3833 ) && (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
3834 return e_not_allowed_here;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3835
17115
1c2d05cb4d1d patch 8.1.1557: compiler warning for unused variables in tiny version
Bram Moolenaar <Bram@vim.org>
parents: 17085
diff changeset
3836 #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
3837 // 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
3838 // 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
3839 // 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
3840 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
3841 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
3842 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
3843 #endif
17085
620e9011b685 patch 8.1.1542: an OptionSet autocommand does not get enough info
Bram Moolenaar <Bram@vim.org>
parents: 17039
diff changeset
3844
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3845 *(int *)varp = value; // set the new value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3846 #ifdef FEAT_EVAL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3847 // 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
3848 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3850
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3851 #ifdef FEAT_GUI
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3852 need_mouse_correct = TRUE;
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3853 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
3854
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3855 // May set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3856 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3857 *(int *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = value;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3858
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
3859 // Handle side effects of changing a bool option.
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3860 if (options[opt_idx].opt_did_set_cb != NULL)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3861 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3862 optset_T args;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3863
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3864 args.os_varp = varp;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3865 args.os_flags = opt_flags;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3866 args.os_oldval.boolean = old_value;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3867 args.os_newval.boolean = value;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3868 args.os_doskip = FALSE;
32043
6095218c9056 patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents: 31996
diff changeset
3869 args.os_errbuf = NULL;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3870 errmsg = options[opt_idx].opt_did_set_cb(&args);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3871 if (args.os_doskip)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3872 return errmsg;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3873 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3874
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3875 // after handling side effects, call autocommand
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3876
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3877 options[opt_idx].flags |= P_WAS_SET;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3878
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
3879 #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
3880 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
3881 (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
3882 (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
3883 (long)(value ? TRUE : FALSE), NULL);
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3884 #endif
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
3885
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
3886 comp_col(); // in case 'ruler' or 'showcmd' changed
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
3887 if (curwin->w_curswant != MAXCOL
6669
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
3888 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
3889 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
3890
a9ff8368d35f patch 8.2.2581: Vim9: sourcing Vim9 script triggers a redraw
Bram Moolenaar <Bram@vim.org>
parents: 23952
diff changeset
3891 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
3892 check_redraw(options[opt_idx].flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3893
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
3894 return errmsg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3895 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3896
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3897 /*
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3898 * Process the new 'winheight' or the 'helpheight' option value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3899 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3900 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3901 did_set_winheight_helpheight(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3902 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3903 long *pp = (long *)args->os_varp;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3904 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3905
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3906 if (p_wh < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3907 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3908 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3909 p_wh = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3910 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3911 if (p_wmh > p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3912 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3913 errmsg = e_winheight_cannot_be_smaller_than_winminheight;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3914 p_wh = p_wmh;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3915 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3916 if (p_hh < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3917 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3918 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3919 p_hh = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3920 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3921
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3922 // Change window height NOW
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3923 if (!ONE_WINDOW)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3924 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3925 if (pp == &p_wh && curwin->w_height < p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3926 win_setheight((int)p_wh);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3927 if (pp == &p_hh && curbuf->b_help && curwin->w_height < p_hh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3928 win_setheight((int)p_hh);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3929 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3930
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3931 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3932 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3933
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3934 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3935 * Process the new 'winminheight' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3936 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3937 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3938 did_set_winminheight(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3939 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3940 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3941
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3942 if (p_wmh < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3943 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3944 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3945 p_wmh = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3946 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3947 if (p_wmh > p_wh)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3948 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3949 errmsg = e_winheight_cannot_be_smaller_than_winminheight;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3950 p_wmh = p_wh;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3951 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3952 win_setminheight();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3953
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3954 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3955 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3956
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3957 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3958 * Process the new 'winwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3959 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3960 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3961 did_set_winwidth(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3962 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3963 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3964
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3965 if (p_wiw < 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3966 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
3967 errmsg = e_argument_must_be_positive;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3968 p_wiw = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3969 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3970 if (p_wmw > p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3971 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3972 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3973 p_wiw = p_wmw;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3974 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3975
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3976 // Change window width NOW
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3977 if (!ONE_WINDOW && curwin->w_width < p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3978 win_setwidth((int)p_wiw);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3979
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3980 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3981 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3982
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3983 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3984 * Process the new 'winminwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3985 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3986 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3987 did_set_winminwidth(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3988 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3989 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
3990
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3991 if (p_wmw < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3992 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3993 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3994 p_wmw = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3995 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3996 if (p_wmw > p_wiw)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3997 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3998 errmsg = e_winwidth_cannot_be_smaller_than_winminwidth;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
3999 p_wmw = p_wiw;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4000 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4001 win_setminwidth();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4002
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4003 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4004 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4005
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4006 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4007 * Process the new 'laststatus' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4008 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4009 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4010 did_set_laststatus(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4011 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4012 last_status(FALSE); // (re)set last window status line
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4013 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4014 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4015
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4016 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4017 * Process the new 'showtabline' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4018 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4019 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4020 did_set_showtabline(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4021 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4022 shell_new_rows(); // recompute window positions and heights
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4023 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4024 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4025
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4026 #if defined(FEAT_GUI) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4027 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4028 * Process the new 'linespace' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4029 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4030 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4031 did_set_linespace(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4032 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4033 // Recompute gui.char_height and resize the Vim window to keep the
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4034 // same number of lines.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4035 if (gui.in_use && gui_mch_adjust_charheight() == OK)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4036 gui_set_shellsize(FALSE, FALSE, RESIZE_VERT);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4037 return NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4038 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4039 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4040
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4041 #if defined(FEAT_FOLDING) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4042 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4043 * Process the new 'foldlevel' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4044 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4045 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4046 did_set_foldlevel(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4047 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4048 if (curwin->w_p_fdl < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4049 curwin->w_p_fdl = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4050 newFoldLevel();
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4051 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4052 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4053
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4054 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4055 * Process the new 'foldminlines' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4056 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4057 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4058 did_set_foldminlines(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4059 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4060 foldUpdateAll(curwin);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4061 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4062 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4063
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4064 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4065 * Process the new 'foldnestmax' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4066 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4067 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4068 did_set_foldnestmax(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4069 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4070 if (foldmethodIsSyntax(curwin) || foldmethodIsIndent(curwin))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4071 foldUpdateAll(curwin);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4072 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4073 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4074
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4075 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4076 * Process the new 'foldcolumn' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4077 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4078 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4079 did_set_foldcolumn(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4080 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4081 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4082
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4083 if (curwin->w_p_fdc < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4084 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4085 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4086 curwin->w_p_fdc = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4087 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4088 else if (curwin->w_p_fdc > 12)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4089 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4090 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4091 curwin->w_p_fdc = 12;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4092 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4093
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4094 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4095 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4096 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4097
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4098 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4099 * Process the new 'shiftwidth' or the 'tabstop' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4100 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4101 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4102 did_set_shiftwidth_tabstop(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4103 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4104 long *pp = (long *)args->os_varp;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4105 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4106
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4107 if (curbuf->b_p_sw < 0)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4108 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4109 errmsg = e_argument_must_be_positive;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4110 #ifdef FEAT_VARTABS
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4111 // Use the first 'vartabstop' value, or 'tabstop' if vts isn't in use.
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4112 curbuf->b_p_sw = tabstop_count(curbuf->b_p_vts_array) > 0
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4113 ? tabstop_first(curbuf->b_p_vts_array)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4114 : curbuf->b_p_ts;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4115 #else
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4116 curbuf->b_p_sw = curbuf->b_p_ts;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4117 #endif
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4118 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4119
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
4120 #ifdef FEAT_FOLDING
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4121 if (foldmethodIsIndent(curwin))
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4122 foldUpdateAll(curwin);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4123 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4124 // When 'shiftwidth' changes, or it's zero and 'tabstop' changes:
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4125 // parse 'cinoptions'.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4126 if (pp == &curbuf->b_p_sw || curbuf->b_p_sw == 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4127 parse_cino(curbuf);
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4128
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4129 return errmsg;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4130 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4131
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4132 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4133 * Process the new 'maxcombine' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4134 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4135 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4136 did_set_maxcombine(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4137 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4138 if (p_mco > MAX_MCO)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4139 p_mco = MAX_MCO;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4140 else if (p_mco < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4141 p_mco = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4142 screenclear(); // will re-allocate the screen
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4143 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4144 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4145
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4146 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4147 * Process the new 'iminsert' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4148 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4149 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4150 did_set_iminsert(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4151 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4152 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4153
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4154 if (curbuf->b_p_iminsert < 0 || curbuf->b_p_iminsert > B_IMODE_LAST)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4155 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4156 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4157 curbuf->b_p_iminsert = B_IMODE_NONE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4158 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4159 p_iminsert = curbuf->b_p_iminsert;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4160 if (termcap_active) // don't do this in the alternate screen
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4161 showmode();
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12469
diff changeset
4162 #if defined(FEAT_KEYMAP)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4163 // Show/unshow value of 'keymap' in status lines.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4164 status_redraw_curbuf();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4165 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4166
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4167 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4168 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4169
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4170 #if (defined(FEAT_XIM) && defined(FEAT_GUI_GTK)) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4171 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4172 * Process the new 'imstyle' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4173 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4174 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4175 did_set_imstyle(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4176 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4177 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4178
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4179 if (p_imst != IM_ON_THE_SPOT && p_imst != IM_OVER_THE_SPOT)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4180 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4181
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4182 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4183 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4184 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4185
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4186 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4187 * Process the new 'window' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4188 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4189 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4190 did_set_window(optset_T *args UNUSED)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4191 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4192 if (p_window < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4193 p_window = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4194 else if (p_window >= Rows)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4195 p_window = Rows - 1;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4196 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4197 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4198
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4199 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4200 * Process the new 'imsearch' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4201 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4202 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4203 did_set_imsearch(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4204 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4205 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4206
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4207 if (curbuf->b_p_imsearch < -1 || curbuf->b_p_imsearch > B_IMODE_LAST)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4208 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4209 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4210 curbuf->b_p_imsearch = B_IMODE_NONE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4211 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4212 p_imsearch = curbuf->b_p_imsearch;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4213
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4214 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4215 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4216
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4217 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4218 * Process the new 'titlelen' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4219 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4220 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4221 did_set_titlelen(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4222 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4223 long old_value = args->os_oldval.number;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4224 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4225
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4226 // if 'titlelen' has changed, redraw the title
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4227 if (p_titlelen < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4228 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4229 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4230 p_titlelen = 85;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4231 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4232 if (starting != NO_SCREEN && old_value != p_titlelen)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4233 need_maketitle = TRUE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4234
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4235 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4236 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4237
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4238 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4239 * Process the new 'cmdheight' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4240 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4241 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4242 did_set_cmdheight(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4243 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4244 long old_value = args->os_oldval.number;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4245 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4246
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4247 // if p_ch changed value, change the command line height
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4248 if (p_ch < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4249 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4250 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4251 p_ch = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4252 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4253 if (p_ch > Rows - min_rows() + 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4254 p_ch = Rows - min_rows() + 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4255
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4256 // Only compute the new window layout when startup has been
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4257 // completed. Otherwise the frame sizes may be wrong.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4258 if ((p_ch != old_value
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4259 || tabline_height() + topframe->fr_height != Rows - p_ch)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4260 && full_screen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4261 #ifdef FEAT_GUI
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4262 && !gui.starting
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4263 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4264 )
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4265 command_height();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4266
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4267 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4268 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4269
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4270 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4271 * Process the new 'updatecount' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4272 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4273 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4274 did_set_updatecount(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4275 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4276 long old_value = args->os_oldval.number;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4277 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4278
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4279 // when 'updatecount' changes from zero to non-zero, open swap files
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4280 if (p_uc < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4281 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4282 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4283 p_uc = 100;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4284 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4285 if (p_uc && !old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4286 ml_open_files();
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4287
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4288 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4289 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4290
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4291 #if defined(FEAT_CONCEAL) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4292 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4293 * Process the new 'conceallevel' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4294 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4295 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4296 did_set_conceallevel(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4297 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4298 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4299
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4300 if (curwin->w_p_cole < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4301 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4302 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4303 curwin->w_p_cole = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4304 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4305 else if (curwin->w_p_cole > 3)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4306 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4307 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4308 curwin->w_p_cole = 3;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4309 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4310
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4311 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4312 }
14
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
4313 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4314
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4315 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4316 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4317 * Process the new 'pyxversion' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4318 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4319 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4320 did_set_pyxversion(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4321 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4322 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4323
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4324 if (p_pyx != 0 && p_pyx != 2 && p_pyx != 3)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4325 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4326
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4327 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4328 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4329 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4330
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4331 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4332 * Process the new global 'undolevels' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4333 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4334 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4335 did_set_global_undolevels(long value, long old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4336 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4337 // sync undo before 'undolevels' changes
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4338
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4339 // use the old value, otherwise u_sync() may not work properly
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4340 p_ul = old_value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4341 u_sync(TRUE);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4342 p_ul = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4343 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4344
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4345 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4346 * Process the new buffer local 'undolevels' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4347 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4348 static void
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4349 did_set_buflocal_undolevels(long value, long old_value)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4350 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4351 // use the old value, otherwise u_sync() may not work properly
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4352 curbuf->b_p_ul = old_value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4353 u_sync(TRUE);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4354 curbuf->b_p_ul = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4355 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4356
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4357 #if defined(FEAT_LINEBREAK) || defined(PROTO)
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4358 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4359 * Process the new 'numberwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4360 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4361 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4362 did_set_numberwidth(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4363 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4364 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4365
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4366 // 'numberwidth' must be positive
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4367 if (curwin->w_p_nuw < 1)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4368 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4369 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4370 curwin->w_p_nuw = 1;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4371 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4372 if (curwin->w_p_nuw > 20)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4373 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4374 errmsg = e_invalid_argument;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4375 curwin->w_p_nuw = 20;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4376 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4377 curwin->w_nrwidth_line_count = 0; // trigger a redraw
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4378
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4379 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4380 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4381 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4382
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4383 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4384 * Process the new 'textwidth' option value.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4385 */
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4386 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4387 did_set_textwidth(optset_T *args UNUSED)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4388 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4389 char *errmsg = NULL;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4390
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4391 if (curbuf->b_p_tw < 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4392 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4393 errmsg = e_argument_must_be_positive;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4394 curbuf->b_p_tw = 0;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4395 }
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
4396 #ifdef FEAT_SYN_HL
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4397 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4398 win_T *wp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4399 tabpage_T *tp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4400
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4401 FOR_ALL_TAB_WINDOWS(tp, wp)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4402 check_colorcolumn(wp);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4403 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4404 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4405
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4406 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4407 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4408
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4409 /*
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4410 * Process the new 'undolevels' option value.
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4411 */
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4412 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4413 did_set_undolevels(optset_T *args)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4414 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4415 long *pp = (long *)args->os_varp;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4416
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4417 if (pp == &p_ul) // global 'undolevels'
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4418 did_set_global_undolevels(args->os_newval.number,
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4419 args->os_oldval.number);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4420 else if (pp == &curbuf->b_p_ul) // buffer local 'undolevels'
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4421 did_set_buflocal_undolevels(args->os_newval.number,
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4422 args->os_oldval.number);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4423
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4424 return NULL;
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4425 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4426
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4427 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4428 * Check the bounds of numeric options.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4429 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4430 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4431 check_num_option_bounds(
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4432 long *pp,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4433 long old_value,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4434 long old_Rows,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4435 long old_Columns,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4436 char *errbuf,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4437 size_t errbuflen,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4438 char *errmsg)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4439 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 if (Rows < min_rows() && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442 if (errbuf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4443 {
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27303
diff changeset
4444 vim_snprintf(errbuf, errbuflen,
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4445 _(e_need_at_least_nr_lines), min_rows());
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4446 errmsg = errbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4447 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4448 Rows = min_rows();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4449 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 if (Columns < MIN_COLUMNS && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4452 if (errbuf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4453 {
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27303
diff changeset
4454 vim_snprintf(errbuf, errbuflen,
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4455 _(e_need_at_least_nr_columns), MIN_COLUMNS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4456 errmsg = errbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4458 Columns = MIN_COLUMNS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4459 }
5070
cf52d2a8c05c updated for version 7.3.1278
Bram Moolenaar <bram@vim.org>
parents: 5039
diff changeset
4460 limit_screen_size();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4461
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4462 // If the screen (shell) height has been changed, assume it is the
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4463 // physical screenheight.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4464 if (old_Rows != Rows || old_Columns != Columns)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4465 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4466 // Changing the screen size is not allowed while updating the screen.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4467 if (updating_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4468 *pp = old_value;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4469 else if (full_screen
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4470 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4471 && !gui.starting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4472 #endif
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4473 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4474 set_shellsize((int)Columns, (int)Rows, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4475 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4476 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4477 // 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
4478 // messages.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4479 check_shellsize();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4480 if (cmdline_row > Rows - p_ch && Rows > p_ch)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4481 cmdline_row = Rows - p_ch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4482 }
857
b933657f7c9d updated for version 7.0g01
vimboss
parents: 842
diff changeset
4483 if (p_window >= Rows || !option_was_set((char_u *)"window"))
164
8b0ee9d57d7f updated for version 7.0050
vimboss
parents: 161
diff changeset
4484 p_window = Rows - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4485 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4486
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4487 if (curbuf->b_p_ts <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4488 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4489 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4490 curbuf->b_p_ts = 8;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4491 }
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4492 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
4493 {
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4494 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
4495 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
4496 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4497 if (p_tm < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4498 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4499 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4500 p_tm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4501 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4502 if ((curwin->w_p_scr <= 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4503 || (curwin->w_p_scr > curwin->w_height
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4504 && curwin->w_height > 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4505 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4506 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4507 if (pp == &(curwin->w_p_scr))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4508 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4509 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
4510 errmsg = e_invalid_scroll_size;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4511 win_comp_scroll(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4512 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4513 // 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
4514 // it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4515 else if (curwin->w_p_scr <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4516 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
4517 else // curwin->w_p_scr > curwin->w_height
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4518 curwin->w_p_scr = curwin->w_height;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4519 }
1726
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4520 if (p_hi < 0)
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4521 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4522 errmsg = e_argument_must_be_positive;
1726
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4523 p_hi = 0;
1e25b58fbf7b updated for version 7.2-024
vimboss
parents: 1683
diff changeset
4524 }
5991
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4525 else if (p_hi > 10000)
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4526 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26802
diff changeset
4527 errmsg = e_invalid_argument;
5991
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4528 p_hi = 10000;
a42ba1e50992 updated for version 7.4.336
Bram Moolenaar <bram@vim.org>
parents: 5883
diff changeset
4529 }
4444
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4530 if (p_re < 0 || p_re > 2)
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4531 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26802
diff changeset
4532 errmsg = e_invalid_argument;
4444
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4533 p_re = 0;
ccecb03e5e8b updated for version 7.3.970
Bram Moolenaar <bram@vim.org>
parents: 4367
diff changeset
4534 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4535 if (p_report < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4536 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4537 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4538 p_report = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4539 }
532
7052f11a3dc9 updated for version 7.0150
vimboss
parents: 523
diff changeset
4540 if ((p_sj < -100 || p_sj >= Rows) && full_screen)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4541 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4542 if (Rows != old_Rows) // Rows changed, just adjust p_sj
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 p_sj = Rows / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4544 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4545 {
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25176
diff changeset
4546 errmsg = e_invalid_scroll_size;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4547 p_sj = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4548 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4549 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4550 if (p_so < 0 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4551 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4552 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4553 p_so = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4554 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4555 if (p_siso < 0 && full_screen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4556 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4557 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4558 p_siso = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4559 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4560 if (p_cwh < 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4561 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4562 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4563 p_cwh = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4564 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4565 if (p_ut < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4566 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4567 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4568 p_ut = 2000;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4569 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4570 if (p_ss < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4571 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4572 errmsg = e_argument_must_be_positive;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4573 p_ss = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4574 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4575
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4576 return errmsg;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4577 }
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4578
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4579 /*
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4580 * Set the value of a number option, and take care of side effects.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4581 * Returns NULL for success, or an error message for an error.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4582 */
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4583 static char *
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4584 set_num_option(
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4585 int opt_idx, // index in options[] table
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4586 char_u *varp, // pointer to the option variable
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4587 long value, // new value
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4588 char *errbuf, // buffer for error messages
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4589 size_t errbuflen, // length of "errbuf"
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4590 int opt_flags) // OPT_LOCAL, OPT_GLOBAL,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4591 // OPT_MODELINE, etc.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4592 {
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4593 char *errmsg = NULL;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4594 long old_value = *(long *)varp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4595 #if defined(FEAT_EVAL)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4596 long old_global_value = 0; // only used when setting a local and
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4597 // global option
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4598 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4599 long old_Rows = Rows; // remember old Rows
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4600 long old_Columns = Columns; // remember old Columns
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4601 long *pp = (long *)varp;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4602
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4603 // Disallow changing some options from secure mode.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4604 if ((secure
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4605 #ifdef HAVE_SANDBOX
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4606 || sandbox != 0
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4607 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4608 ) && (options[opt_idx].flags & P_SECURE))
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4609 return e_not_allowed_here;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4610
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4611 #if defined(FEAT_EVAL)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4612 // Save the global value before changing anything. This is needed as for
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4613 // a global-only option setting the "local value" in fact sets the global
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4614 // value (since there is only one value).
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4615 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4616 old_global_value = *(long *)get_varp_scope(&(options[opt_idx]),
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4617 OPT_GLOBAL);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4618 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4619
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4620 *pp = value;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4621 #ifdef FEAT_EVAL
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4622 // Remember where the option was set.
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4623 set_option_sctx_idx(opt_idx, opt_flags, current_sctx);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4624 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4625 #ifdef FEAT_GUI
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4626 need_mouse_correct = TRUE;
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4627 #endif
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4628
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4629 // Invoke the option specific callback function to validate and apply the
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4630 // new value.
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4631 if (options[opt_idx].opt_did_set_cb != NULL)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4632 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4633 optset_T args;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4634
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4635 args.os_varp = varp;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4636 args.os_flags = opt_flags;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4637 args.os_oldval.number = old_value;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4638 args.os_newval.number = value;
32043
6095218c9056 patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents: 31996
diff changeset
4639 args.os_errbuf = NULL;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4640 errmsg = options[opt_idx].opt_did_set_cb(&args);
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4641 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4642
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
4643 // Check the bounds for numeric options here
31922
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4644 errmsg = check_num_option_bounds(pp, old_value, old_Rows, old_Columns,
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4645 errbuf, errbuflen, errmsg);
440256d03990 patch 9.0.1293: the set_num_option() is too long
Bram Moolenaar <Bram@vim.org>
parents: 31908
diff changeset
4646
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4647 // May set global value for local option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4648 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4649 *(long *)get_varp_scope(&(options[opt_idx]), OPT_GLOBAL) = *pp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4651 options[opt_idx].flags |= P_WAS_SET;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4652
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
4653 #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
4654 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
4655 value, errmsg);
6935
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
4656 #endif
4db70c94226b patch 7.4.786
Bram Moolenaar <bram@vim.org>
parents: 6933
diff changeset
4657
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4658 comp_col(); // in case 'columns' or 'ls' changed
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
4659 if (curwin->w_curswant != MAXCOL
6669
5a12a6861367 updated for version 7.4.659
Bram Moolenaar <bram@vim.org>
parents: 6602
diff changeset
4660 && (options[opt_idx].flags & (P_CURSWANT | P_RALL)) != 0)
3443
21219ffc9790 updated for version 7.3.487
Bram Moolenaar <bram@vim.org>
parents: 3427
diff changeset
4661 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
4662 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
4663 check_redraw(options[opt_idx].flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4664
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4665 return errmsg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4666 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4667
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4668 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4669 * Called after an option changed: check if something needs to be redrawn.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4670 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
4671 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4672 check_redraw(long_u flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4673 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4674 // Careful: P_RCLR and P_RALL are a combination of other P_ flags
3263
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4675 int doclear = (flags & P_RCLR) == P_RCLR;
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4676 int all = ((flags & P_RALL) == P_RALL || doclear);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4677
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4678 if ((flags & P_RSTAT) || all) // mark all status lines dirty
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4679 status_redraw_all();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4680
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4681 if ((flags & P_RBUF) || (flags & P_RWIN) || all)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4682 changed_window_setting();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4683 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
4684 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
4685 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
4686 redraw_later(UPD_NOT_VALID);
3263
320cc46d0eb0 updated for version 7.3.400
Bram Moolenaar <bram@vim.org>
parents: 3246
diff changeset
4687 if (doclear)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4688 redraw_all_later(UPD_CLEAR);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4689 else if (all)
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4690 redraw_all_later(UPD_NOT_VALID);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4691 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4693 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4694 * Find index for option 'arg'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4695 * Return -1 if not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4696 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
4697 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4698 findoption(char_u *arg)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4699 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4700 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4701 char *s, *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4702 static short quick_tab[27] = {0, 0}; // quick access table
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4703 int is_term_opt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4704
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4705 // For first call: Initialize the quick-access table.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4706 // It contains the index for the first option that starts with a certain
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4707 // letter. There are 26 letters, plus the first "t_" option.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4708 if (quick_tab[1] == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4709 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4710 p = options[0].fullname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4711 for (opt_idx = 1; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4712 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4713 if (s[0] != p[0])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4714 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4715 if (s[0] == 't' && s[1] == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4716 quick_tab[26] = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4717 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4718 quick_tab[CharOrdLow(s[0])] = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4719 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4720 p = s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4721 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4722 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4723
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
4724 // Check for name starting with an illegal character.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4725 if (arg[0] < 'a' || arg[0] > 'z')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4726 return -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4727
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4728 is_term_opt = (arg[0] == 't' && arg[1] == '_');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4729 if (is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4730 opt_idx = quick_tab[26];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4731 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4732 opt_idx = quick_tab[CharOrdLow(arg[0])];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4733 for ( ; (s = options[opt_idx].fullname) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4734 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4735 if (STRCMP(arg, s) == 0) // match full name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4736 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4737 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4738 if (s == NULL && !is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4739 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4740 opt_idx = quick_tab[CharOrdLow(arg[0])];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4741 for ( ; options[opt_idx].fullname != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4743 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
4744 if (s != NULL && STRCMP(arg, s) == 0) // match short name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4745 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4746 s = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4747 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4748 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4749 if (s == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4750 opt_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4751 return opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4752 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4753
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4754 #if defined(FEAT_EVAL) || defined(FEAT_TCL) || defined(FEAT_MZSCHEME) \
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4755 || defined(FEAT_SPELL) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4756 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4757 * Get the value for an option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4758 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4759 * Returns:
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4760 * 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
4761 * 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
4762 * 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
4763 * 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
4764 * 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
4765 * 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
4766 * 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
4767 *
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
4768 * "flagsp" (if not NULL) is set to the option flags (P_xxxx).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4769 */
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4770 getoption_T
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4771 get_option_value(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4772 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4773 long *numval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4774 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
4775 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
4776 int scope)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4777 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4778 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781 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
4782 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
4783 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4784 int key;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4785
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4786 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
4787 && (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
4788 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4789 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
4790 char_u *p;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4791
26802
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4792 if (flagsp != NULL)
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4793 *flagsp = 0; // terminal option has no flags
f6b10a501a0e patch 8.2.3929: using unititialized variable
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
4794
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4795 // 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
4796 if (key < 0)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4797 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4798 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
4799 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
4800 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4801 else
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4802 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4803 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
4804 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
4805 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4806 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
4807 if (p != NULL)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4808 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4809 if (stringval != NULL)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4810 *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
4811 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
4812 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
4813 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4814 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
4815 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4816
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
4817 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
4818
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
4819 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
4820 // 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
4821 *flagsp = options[opt_idx].flags;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4822
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4823 if (options[opt_idx].flags & P_STRING)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4824 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4825 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
4826 return gov_hidden_string;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 if (stringval != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828 {
28804
12bbd8a31cac patch 8.2.4926: #ifdef for crypt feature around too many lines
Bram Moolenaar <Bram@vim.org>
parents: 28800
diff changeset
4829 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
4830 *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
4831 FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4832 #ifdef FEAT_CRYPT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4833 // 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
4834 else if ((char_u **)varp == &curbuf->b_p_key
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1601
diff changeset
4835 && **(char_u **)(varp) != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4836 *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
4837 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839 *stringval = vim_strsave(*(char_u **)(varp));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4841 return gov_string;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4843
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4844 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
4845 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
4846 ? gov_hidden_number : gov_hidden_bool;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4847 if (options[opt_idx].flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4848 *numval = *(long *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4849 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4850 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4851 // 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
4852 // it set when 'ff' or 'fenc' changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4853 if ((int *)varp == &curbuf->b_changed)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4854 *numval = curbufIsChanged();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4855 else
9395
beab399e3883 commit https://github.com/vim/vim/commit/2acfbed9dbea990f129535de7ff3df360365130b
Christian Brabandt <cb@256bit.org>
parents: 9389
diff changeset
4856 *numval = (long) *(int *)varp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4857 }
23422
bb0c53f4ef8b patch 8.2.2254: Vim9: bool option type is number
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
4858 return (options[opt_idx].flags & P_NUM) ? gov_number : gov_bool;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4859 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4860 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4861
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
4862 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4863 /*
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4864 * Returns the option attributes and its value. Unlike the above function it
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4865 * will return either global value or local value of the option depending on
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4866 * what was requested, but it will never return global value if it was
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4867 * requested to return local one and vice versa. Neither it will return
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4868 * buffer-local value if it was requested to return window-local one.
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4869 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4870 * Pretends that option is absent if it is not present in the requested scope
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4871 * (i.e. has no global, window-local or buffer-local value depending on
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4872 * opt_type). Uses
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4873 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4874 * Returned flags:
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
4875 * 0 hidden or unknown option, also option that does not have requested
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
4876 * type (see SREQ_* in vim.h)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4877 * see SOPT_* in vim.h for other flags
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4878 *
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4879 * Possible opt_type values: see SREQ_* in vim.h
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4880 */
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4881 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4882 get_option_value_strict(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4883 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4884 long *numval,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4885 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
4886 int opt_type,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4887 void *from)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4888 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4889 int opt_idx;
4367
b7f2d97ae2b7 updated for version 7.3.932
Bram Moolenaar <bram@vim.org>
parents: 4361
diff changeset
4890 char_u *varp = NULL;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4891 struct vimoption *p;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4892 int r = 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4893
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4894 opt_idx = findoption(name);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4895 if (opt_idx < 0)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4896 return 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4897
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4898 p = &(options[opt_idx]);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4899
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4900 // Hidden option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4901 if (p->var == NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4902 return 0;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4903
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4904 if (p->flags & P_BOOL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4905 r |= SOPT_BOOL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4906 else if (p->flags & P_NUM)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4907 r |= SOPT_NUM;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4908 else if (p->flags & P_STRING)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4909 r |= SOPT_STRING;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4910
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4911 if (p->indir == PV_NONE)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4912 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4913 if (opt_type == SREQ_GLOBAL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4914 r |= SOPT_GLOBAL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4915 else
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4916 return 0; // Did not request global-only option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4917 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4918 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4919 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4920 if (p->indir & PV_BOTH)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4921 r |= SOPT_GLOBAL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4922 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
4923 return 0; // Requested global option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4924
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4925 if (p->indir & PV_WIN)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4926 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4927 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
4928 return 0; // Did not request window-local option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4929 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4930 r |= SOPT_WIN;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4931 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4932 else if (p->indir & PV_BUF)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4933 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4934 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
4935 return 0; // Did not request buffer-local option
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4936 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4937 r |= SOPT_BUF;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4938 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4939 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4940
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4941 if (stringval == NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4942 return r;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4943
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4944 if (opt_type == SREQ_GLOBAL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4945 varp = p->var;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4946 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4947 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4948 if (opt_type == SREQ_BUF)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4949 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4950 // 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
4951 // consider it set when 'ff' or 'fenc' changed.
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4952 if (p->indir == PV_MOD)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4953 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4954 *numval = bufIsChanged((buf_T *)from);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4955 varp = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4956 }
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4957 # ifdef FEAT_CRYPT
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4958 else if (p->indir == PV_KEY)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4959 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
4960 // never return the value of the crypt key
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4961 *stringval = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4962 varp = NULL;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4963 }
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
4964 # endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4965 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4966 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4967 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
4968
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4969 // 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
4970 curbuf = (buf_T *)from;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4971 curwin->w_buffer = curbuf;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4972 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
4973 curbuf = save_curbuf;
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4974 curwin->w_buffer = curbuf;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4975 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4976 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4977 else if (opt_type == SREQ_WIN)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4978 {
14179
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4979 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
4980
ab64a4fb5edd patch 8.1.0107: Python: getting buffer option clears message
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
4981 curwin = (win_T *)from;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4982 curbuf = curwin->w_buffer;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4983 varp = get_varp(p);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4984 curwin = save_curwin;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4985 curbuf = curwin->w_buffer;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4986 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4987 if (varp == p->var)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4988 return (r | SOPT_UNSET);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4989 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4990
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4991 if (varp != NULL)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4992 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4993 if (p->flags & P_STRING)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4994 *stringval = vim_strsave(*(char_u **)(varp));
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4995 else if (p->flags & P_NUM)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4996 *numval = *(long *) varp;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4997 else
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4998 *numval = *(int *)varp;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
4999 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5000
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5001 return r;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5002 }
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5003
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5004 /*
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5005 * Iterate over options. First argument is a pointer to a pointer to a
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5006 * structure inside options[] array, second is option type like in the above
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5007 * function.
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5008 *
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5009 * If first argument points to NULL it is assumed that iteration just started
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5010 * and caller needs the very first value.
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5011 * If first argument points to the end marker function returns NULL and sets
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5012 * first argument to NULL.
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5013 *
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5014 * Returns full option name for current option on each call.
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5015 */
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5016 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5017 option_iter_next(void **option, int opt_type)
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5018 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5019 struct vimoption *ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5020 do
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5021 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5022 if (*option == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5023 *option = (void *) options;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5024 else if (((struct vimoption *) (*option))->fullname == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5025 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5026 *option = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5027 return NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5028 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5029 else
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5030 *option = (void *) (((struct vimoption *) (*option)) + 1);
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5031
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5032 ret = ((struct vimoption *) (*option));
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5033
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5034 // Hidden option
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5035 if (ret->var == NULL)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5036 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5037 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5038 continue;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5039 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5040
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5041 switch (opt_type)
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5042 {
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5043 case SREQ_GLOBAL:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5044 if (!(ret->indir == PV_NONE || ret->indir & PV_BOTH))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5045 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5046 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5047 case SREQ_BUF:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5048 if (!(ret->indir & PV_BUF))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5049 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5050 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5051 case SREQ_WIN:
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5052 if (!(ret->indir & PV_WIN))
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5053 ret = NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5054 break;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5055 default:
10359
66f1b5bf3fa6 commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents: 10357
diff changeset
5056 internal_error("option_iter_next()");
5610
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5057 return NULL;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5058 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5059 }
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5060 while (ret == NULL);
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5061
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5062 return (char_u *)ret->fullname;
2ace11abcfb5 updated for version 7.4.152
Bram Moolenaar <bram@vim.org>
parents: 5477
diff changeset
5063 }
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5064 #endif
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5065
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5066 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5067 * 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
5068 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5069 long_u
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5070 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
5071 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5072 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
5073 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5074
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5075 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5076 * 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
5077 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5078 void
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5079 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
5080 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5081 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
5082 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5083
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5084 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5085 * 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
5086 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5087 void
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5088 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
5089 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5090 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
5091 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5092
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5093 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5094 * 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
5095 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5096 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5097 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
5098 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5099 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
5100 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5101
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5102 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5103 * 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
5104 * local value.
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 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
5108 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5109 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
5110 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5111
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5112 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5113 * 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
5114 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5115 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5116 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
5117 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5118 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
5119 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5120
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5121 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5122 * 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
5123 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5124 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5125 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
5126 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5127 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
5128 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5129
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5130 #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
5131 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5132 * 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
5133 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5134 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5135 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
5136 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5137 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
5138 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5139 #endif
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5140
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5141 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5142 * Set the value of option "name".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5143 * 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
5144 *
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5145 * 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
5146 */
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15207
diff changeset
5147 char *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5148 set_option_value(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5149 char_u *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5150 long number,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5151 char_u *string,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5152 int opt_flags) // OPT_LOCAL or 0 (both)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5153 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5154 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5155 char_u *varp;
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 828
diff changeset
5156 long_u flags;
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5157 static char errbuf[80];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5159 opt_idx = findoption(name);
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
5160 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
5161 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5162 int key;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5163
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5164 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
5165 && (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
5166 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5167 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
5168
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5169 if (key < 0)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5170 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5171 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
5172 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
5173 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5174 else
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5175 {
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5176 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
5177 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
5178 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5179 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
5180 if (full_screen)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5181 ttest(FALSE);
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
5182 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
5183 return NULL;
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5184 }
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 10722
diff changeset
5185
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
5186 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
5187 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5188 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5189 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5190 flags = options[opt_idx].flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5191 #ifdef HAVE_SANDBOX
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5192 // Disallow changing some options in the sandbox
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5193 if (sandbox > 0 && (flags & P_SECURE))
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5194 {
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25176
diff changeset
5195 emsg(_(e_not_allowed_in_sandbox));
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5196 return NULL;
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5197 }
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5198 #endif
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 593
diff changeset
5199 if (flags & P_STRING)
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5200 return set_string_option(opt_idx, string, opt_flags, errbuf);
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5201
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5202 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
5203 if (varp != NULL) // hidden option is not changed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5204 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5205 if (number == 0 && string != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5206 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5207 int idx;
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5208
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5209 // 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
5210 // to zero.
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5211 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
5212 ;
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5213 if (string[idx] != NUL || idx == 0)
1298
f4c7b5da017a updated for version 7.1-012
vimboss
parents: 1157
diff changeset
5214 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5215 // 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
5216 // 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
5217 // 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
5218 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
5219 name, string);
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5220 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
5221
1298
f4c7b5da017a updated for version 7.1-012
vimboss
parents: 1157
diff changeset
5222 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5223 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5224 if (flags & P_NUM)
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5225 {
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5226 return set_num_option(opt_idx, varp, number,
31950
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5227 errbuf, sizeof(errbuf), opt_flags);
b0717fcca5eb patch 9.0.1307: setting 'formatoptions' with :let doesn't check for errors
Bram Moolenaar <Bram@vim.org>
parents: 31926
diff changeset
5228 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5229 else
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5230 return set_bool_option(opt_idx, varp, (int)number, opt_flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5231 }
28357
86b6432aa1d8 patch 8.2.4704: using "else" after return or break increases indent
Bram Moolenaar <Bram@vim.org>
parents: 28353
diff changeset
5232
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5233 }
4513
cadb57fbb781 updated for version 7.3.1004
Bram Moolenaar <bram@vim.org>
parents: 4444
diff changeset
5234 return NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5235 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5236
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5237 /*
28457
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5238 * 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
5239 */
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5240 void
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5241 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
5242 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
5243 long number,
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5244 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
5245 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
5246 {
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5247 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
5248
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5249 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
5250 emsg(_(errmsg));
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5251 }
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5252
4dcccb2673fe patch 8.2.4753: error from setting an option is silently ignored
Bram Moolenaar <Bram@vim.org>
parents: 28405
diff changeset
5253 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5254 * Get the terminal code for a terminal option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5255 * Returns NULL when not found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5256 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5257 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5258 get_term_code(char_u *tname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5259 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5260 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5261 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5262
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5263 if (tname[0] != 't' || tname[1] != '_' ||
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5264 tname[2] == NUL || tname[3] == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5265 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5266 if ((opt_idx = findoption(tname)) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5267 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5268 varp = get_varp(&(options[opt_idx]));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5269 if (varp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5270 varp = *(char_u **)(varp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5271 return varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5272 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5273 return find_termcode(tname + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5274 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5275
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5276 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5277 get_highlight_default(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5278 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5279 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5281 i = findoption((char_u *)"hl");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5282 if (i >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5283 return options[i].def_val[VI_DEFAULT];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5284 return (char_u *)NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5285 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5286
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5287 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5288 get_encoding_default(void)
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5289 {
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5290 int i;
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5291
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5292 i = findoption((char_u *)"enc");
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5293 if (i >= 0)
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5294 return options[i].def_val[VI_DEFAULT];
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5295 return (char_u *)NULL;
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5296 }
410fa1a31baf updated for version 7.0023
vimboss
parents: 36
diff changeset
5297
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
5298 #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
5299 int
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5300 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
5301 {
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5302 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
5303
44a552776007 patch 8.2.4453: :helpgrep may free an option that was not allocated
Bram Moolenaar <Bram@vim.org>
parents: 27659
diff changeset
5304 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
5305 }
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
5306 #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
5307
29497
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5308 #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
5309 /*
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5310 * 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
5311 * 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
5312 */
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5313 int
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5314 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
5315 {
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5316 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
5317
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5318 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
5319 }
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5320 #endif
9908c07ccb56 patch 9.0.0090: no error when assigning bool to a string option
Bram Moolenaar <Bram@vim.org>
parents: 29395
diff changeset
5321
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5322 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5323 * 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
5324 * 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
5325 * Returns 0 when the key is not recognized.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5326 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5327 static int
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5328 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
5329 {
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5330 int key = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5331 int modifiers;
14381
d9e6eec551e1 patch 8.1.0205: invalid memory access with invalid modeline
Christian Brabandt <cb@256bit.org>
parents: 14313
diff changeset
5332 char_u *arg = arg_arg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5333
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5334 // Don't use get_special_key_code() for t_xx, we don't want it to call
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5335 // add_termcap_entry().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5336 if (arg[0] == 't' && arg[1] == '_' && arg[2] && arg[3])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5337 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
5338 else if (has_lt)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5339 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5340 --arg; // put arg at the '<'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5341 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
5342 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
5343 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
5344 if (modifiers) // can't handle modifiers here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5345 key = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5346 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5347 return key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5348 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5349
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5350 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5351 * if 'all' == 0: show changed options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5352 * if 'all' == 1: show all normal options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5353 * if 'all' == 2: show all terminal options
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5354 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5355 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5356 showoptions(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5357 int all,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5358 int opt_flags) // OPT_LOCAL and/or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5359 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5360 struct vimoption *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5361 int col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5362 int isterm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5363 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5364 struct vimoption **items;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5365 int item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5366 int run;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5367 int row, rows;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5368 int cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5369 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5370 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5371
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5372 #define INC 20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5373 #define GAP 3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5374
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5375 items = ALLOC_MULT(struct vimoption *, OPTION_COUNT);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5376 if (items == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5377 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5378
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5379 // Highlight title
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5380 if (all == 2)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5381 msg_puts_title(_("\n--- Terminal codes ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5382 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
5383 msg_puts_title(_("\n--- Global option values ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5384 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
5385 msg_puts_title(_("\n--- Local option values ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5386 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5387 msg_puts_title(_("\n--- Options ---"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5388
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5389 // Do the loop two times:
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5390 // 1. display the short items
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5391 // 2. display the long items (only strings and numbers)
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5392 // When "opt_flags" has OPT_ONECOLUMN do everything in run 2.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5393 for (run = 1; run <= 2 && !got_int; ++run)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5394 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5395 // collect the items in items[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5396 item_count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5397 for (p = &options[0]; p->fullname != NULL; p++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5398 {
14968
c5ec5ddbe814 patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents: 14935
diff changeset
5399 // apply :filter /pat/
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5400 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
5401 continue;
c5ec5ddbe814 patch 8.1.0495: :filter only supports some commands
Bram Moolenaar <Bram@vim.org>
parents: 14935
diff changeset
5402
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5403 varp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5404 isterm = istermoption(p);
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5405 if ((opt_flags & (OPT_LOCAL | OPT_GLOBAL)) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5406 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5407 if (p->indir != PV_NONE && !isterm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5408 varp = get_varp_scope(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5409 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5410 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5411 varp = get_varp(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5412 if (varp != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5413 && ((all == 2 && isterm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5414 || (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
5415 || (all == 0 && !optval_default(p, varp, p_cp))))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5416 {
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5417 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
5418 len = Columns;
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 18991
diff changeset
5419 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
5420 len = 1; // a toggle option fits always
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5421 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5422 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5423 option_value2string(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5424 len = (int)STRLEN(p->fullname) + vim_strsize(NameBuff) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5425 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5426 if ((len <= INC - GAP && run == 1) ||
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5427 (len > INC - GAP && run == 2))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5428 items[item_count++] = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5429 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5430 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5431
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5432 // display the items
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5433 if (run == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5434 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5435 cols = (Columns + GAP - 3) / INC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5436 if (cols == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5437 cols = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5438 rows = (item_count + cols - 1) / cols;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5439 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5440 else // run == 2
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5441 rows = item_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5442 for (row = 0; row < rows && !got_int; ++row)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5443 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5444 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
5445 if (got_int) // 'q' typed in more
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5446 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5447 col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5448 for (i = row; i < item_count; i += rows)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5449 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5450 msg_col = col; // make columns
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5451 showoneopt(items[i], opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5452 col += INC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5453 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5454 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5455 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5456 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5457 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5458 vim_free(items);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5460
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5461 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5462 * Return TRUE if option "p" has its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5463 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5464 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
5465 optval_default(struct vimoption *p, char_u *varp, int compatible)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5466 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5467 int dvi;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5468
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5469 if (varp == NULL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5470 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
5471 dvi = ((p->flags & P_VI_DEF) || compatible) ? VI_DEFAULT : VIM_DEFAULT;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5472 if (p->flags & P_NUM)
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
5473 return (*(long *)varp == (long)(long_i)p->def_val[dvi]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5474 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
5475 // 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
5476 // needed for MSVC
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
5477 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
5478 // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5479 return (STRCMP(*(char_u **)varp, p->def_val[dvi]) == 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5480 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5481
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5482 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5483 * showoneopt: show the value of one option
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5484 * must not be called with a hidden option!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5485 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5486 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5487 showoneopt(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5488 struct vimoption *p,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5489 int opt_flags) // OPT_LOCAL or OPT_GLOBAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5490 {
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5491 char_u *varp;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5492 int save_silent = silent_mode;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5493
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5494 silent_mode = FALSE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5495 info_message = TRUE; // use mch_msg(), not mch_errmsg()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5496
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5497 varp = get_varp_scope(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5498
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5499 // for 'modified' we also need to check if 'ff' or 'fenc' changed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5500 if ((p->flags & P_BOOL) && ((int *)varp == &curbuf->b_changed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5501 ? !curbufIsChanged() : !*(int *)varp))
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5502 msg_puts("no");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5503 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
5504 msg_puts("--");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5505 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5506 msg_puts(" ");
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15502
diff changeset
5507 msg_puts(p->fullname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5508 if (!(p->flags & P_BOOL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5509 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5510 msg_putchar('=');
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5511 // put value string in NameBuff
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5512 option_value2string(p, opt_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5513 msg_outtrans(NameBuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5514 }
168
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5515
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5516 silent_mode = save_silent;
4d9eabb1396e updated for version 7.0051
vimboss
parents: 164
diff changeset
5517 info_message = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5518 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5519
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5520 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5521 * Write modified options as ":set" commands to a file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5522 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5523 * There are three values for "opt_flags":
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5524 * OPT_GLOBAL: Write global option values and fresh values of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5525 * buffer-local options (used for start of a session
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5526 * file).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5527 * OPT_GLOBAL + OPT_LOCAL: Idem, add fresh values of window-local options for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5528 * curwin (used for a vimrc file).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5529 * OPT_LOCAL: Write buffer-local option values for curbuf, fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5530 * and local values for window-local options of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5531 * curwin. Local values are also written when at the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5532 * default value, because a modeline or autocommand
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5533 * may have set them when doing ":edit file" and the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5534 * user has set them back at the default or fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5535 * value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5536 * When "local_only" is TRUE, don't write fresh
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5537 * values, only local values (for ":mkview").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5538 * (fresh value = value used for a new buffer or window for a local option).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5539 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5540 * Return FAIL on error, OK otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5541 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5542 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5543 makeset(FILE *fd, int opt_flags, int local_only)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5544 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5545 struct vimoption *p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5546 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
5547 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
5548 char_u *varp_local = NULL; // fresh value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5549 char *cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5550 int round;
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5551 int pri;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5552
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5553 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5554 * The options that don't have a default (terminal name, columns, lines)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5555 * are never written. Terminal options are also not written.
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5556 * Do the loop over "options[]" twice: once for options with the
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5557 * P_PRI_MKRC flag and once without.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5558 */
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5559 for (pri = 1; pri >= 0; --pri)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5560 {
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5561 for (p = &options[0]; !istermoption(p); p++)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5562 if (!(p->flags & P_NO_MKRC)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5563 && !istermoption(p)
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5564 && ((pri == 1) == ((p->flags & P_PRI_MKRC) != 0)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5565 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5566 // skip global option when only doing locals
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5567 if (p->indir == PV_NONE && !(opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5568 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5569
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5570 // 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
5571 // file, they are always buffer-specific.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5572 if ((opt_flags & OPT_GLOBAL) && (p->flags & P_NOGLOB))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5573 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5574
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5575 // Global values are only written when not at the default value.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5576 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
5577 if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5578 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5579
24476
e79d1475fc89 patch 8.2.2778: problem restoring 'packpath' in session
Bram Moolenaar <Bram@vim.org>
parents: 24464
diff changeset
5580 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
5581 || 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
5582 continue;
a56f9c2ba51c patch 8.2.2772: problems when restoring 'runtimepath' from a session file
Bram Moolenaar <Bram@vim.org>
parents: 24079
diff changeset
5583
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5584 round = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5585 if (p->indir != PV_NONE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5586 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5587 if (p->var == VAR_WIN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5588 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5589 // skip window-local option when only doing globals
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5590 if (!(opt_flags & OPT_LOCAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5591 continue;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5592 // 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
5593 // default, need to write it too.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5594 if (!(opt_flags & OPT_GLOBAL) && !local_only)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5595 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5596 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
5597 if (!optval_default(p, varp_fresh, p_cp))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5598 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5599 round = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5600 varp_local = varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5601 varp = varp_fresh;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5602 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5603 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5604 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5605 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5606
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5607 // 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
5608 // Round 2: other values
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5609 for ( ; round <= 2; varp = varp_local, ++round)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5610 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5611 if (round == 1 || (opt_flags & OPT_GLOBAL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5612 cmd = "set";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5613 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5614 cmd = "setlocal";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5615
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5616 if (p->flags & P_BOOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5617 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5618 if (put_setbool(fd, cmd, p->fullname, *(int *)varp) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5619 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5620 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5621 else if (p->flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5622 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5623 if (put_setnum(fd, cmd, p->fullname, (long *)varp) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5624 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5625 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5626 else // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5627 {
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5628 int do_endif = FALSE;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5629
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5630 // 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
5631 // already right, avoids reloading the syntax file.
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5632 if (
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5633 #if defined(FEAT_SYN_HL)
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5634 p->indir == PV_SYN ||
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5635 #endif
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13361
diff changeset
5636 p->indir == PV_FT)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5637 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5638 if (fprintf(fd, "if &%s != '%s'", p->fullname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5639 *(char_u **)(varp)) < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5640 || put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5641 return FAIL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5642 do_endif = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5644 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
5645 p->flags) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5646 return FAIL;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
5647 if (do_endif)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5648 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5649 if (put_line(fd, "endif") == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5650 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5651 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5652 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5653 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5654 }
1384
5ef53a1677ee updated for version 7.1-099
vimboss
parents: 1382
diff changeset
5655 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5656 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5657 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5658
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5659 #if defined(FEAT_FOLDING) || defined(PROTO)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5660 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5661 * Generate set commands for the local fold options only. Used when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5662 * 'sessionoptions' or 'viewoptions' contains "folds" but not "options".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5663 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5664 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5665 makefoldset(FILE *fd)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5666 {
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5667 if (put_setstring(fd, "setlocal", "fdm", &curwin->w_p_fdm, 0) == FAIL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5668 # 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
5669 || put_setstring(fd, "setlocal", "fde", &curwin->w_p_fde, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5670 == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5671 # endif
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5672 || put_setstring(fd, "setlocal", "fmr", &curwin->w_p_fmr, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5673 == FAIL
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5674 || put_setstring(fd, "setlocal", "fdi", &curwin->w_p_fdi, 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5675 == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5676 || put_setnum(fd, "setlocal", "fdl", &curwin->w_p_fdl) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5677 || put_setnum(fd, "setlocal", "fml", &curwin->w_p_fml) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5678 || put_setnum(fd, "setlocal", "fdn", &curwin->w_p_fdn) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5679 || put_setbool(fd, "setlocal", "fen", curwin->w_p_fen) == FAIL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5680 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5681 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5682
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5683 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5684 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5685 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5686
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5687 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5688 put_setstring(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5689 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5690 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5691 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5692 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
5693 long_u flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5694 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5695 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
5696 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
5697 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
5698 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5699
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5700 if (fprintf(fd, "%s %s=", cmd, name) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5701 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5702 if (*valuep != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5703 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5704 // 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
5705 // 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
5706 // CTRL-V or backslash
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5707 if (valuep == &p_pt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5708 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5709 s = *valuep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5710 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
5711 if (put_escstr(fd, str2special(&s, FALSE, FALSE), 2) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5712 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5713 }
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5714 // 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
5715 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
5716 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5717 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
5718
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5719 // 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
5720 buf = alloc(size);
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5721 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
5722 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5723 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
5724
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5725 // 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
5726 // 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
5727 // 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
5728 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
5729 && 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
5730 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5731 part = alloc(size);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5732 if (part == NULL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5733 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5734
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5735 // 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
5736 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
5737 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5738
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5739 p = buf;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5740 while (*p != NUL)
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5741 {
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5742 // 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
5743 // 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
5744 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
5745 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5746 (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
5747 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
5748 goto fail;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5749 }
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5750 vim_free(buf);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5751 vim_free(part);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5752 return OK;
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5753 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5754 if (put_escstr(fd, buf, 2) == FAIL)
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5755 {
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5756 vim_free(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5757 return FAIL;
2780
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5758 }
5ddb68c2a845 updated for version 7.3.166
Bram Moolenaar <bram@vim.org>
parents: 2774
diff changeset
5759 vim_free(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5760 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5761 else if (put_escstr(fd, *valuep, 2) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5762 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5763 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5764 if (put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5765 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5766 return OK;
15613
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5767 fail:
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5768 vim_free(buf);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5769 vim_free(part);
90f01701ecad patch 8.1.0814: :mksession cannot handle a very long 'runtimepath'
Bram Moolenaar <Bram@vim.org>
parents: 15597
diff changeset
5770 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5771 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5772
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5773 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5774 put_setnum(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5775 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5776 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5777 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5778 long *valuep)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5779 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5780 long wc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5781
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5782 if (fprintf(fd, "%s %s=", cmd, name) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5783 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5784 if (wc_use_keyname((char_u *)valuep, &wc))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5785 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5786 // print 'wildchar' and 'wildcharm' as a key name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5787 if (fputs((char *)get_special_key_name((int)wc, 0), fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5788 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5789 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5790 else if (fprintf(fd, "%ld", *valuep) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5791 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5792 if (put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5793 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5794 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5795 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5796
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5797 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5798 put_setbool(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5799 FILE *fd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5800 char *cmd,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5801 char *name,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5802 int value)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5803 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5804 if (value < 0) // global/local option using global value
1416
0a80dc6d7804 updated for version 7.1-131
vimboss
parents: 1408
diff changeset
5805 return OK;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5806 if (fprintf(fd, "%s %s%s", cmd, value ? "" : "no", name) < 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5807 || put_eol(fd) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5808 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5809 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5810 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5811
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5812 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5813 * Clear all the terminal options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5814 * If the option has been allocated, free the memory.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5815 * Terminal options are never hidden or indirect.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5816 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5817 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5818 clear_termoptions(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5819 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5820 // Reset a few things before clearing the old options. This may cause
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5821 // outputting a few things that the terminal doesn't understand, but the
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
5822 // screen will be cleared later, so this is OK.
18354
9f51d0cef8da patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents: 18301
diff changeset
5823 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
5824 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5825 #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
5826 // 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
5827 // After restoring the title, because that will need the display.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5828 if (gui.starting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5829 clear_xterm_clip();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5830 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5831 stoptermcap(); // stop termcap mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5832
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5833 free_termoptions();
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5834 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5835
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5836 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5837 free_termoptions(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5838 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5839 struct vimoption *p;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 344
diff changeset
5840
14867
cf4d6489c9eb patch 8.1.0445: setting 'term' does not store location for termcap options
Christian Brabandt <cb@256bit.org>
parents: 14862
diff changeset
5841 for (p = options; p->fullname != NULL; p++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5842 if (istermoption(p))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5843 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5844 if (p->flags & P_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5845 free_string_option(*(char_u **)(p->var));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5846 if (p->flags & P_DEF_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5847 free_string_option(p->def_val[VI_DEFAULT]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5848 *(char_u **)(p->var) = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5849 p->def_val[VI_DEFAULT] = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5850 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
5851 #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
5852 // 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
5853 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
5854 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5855 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5856 clear_termcodes();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5857 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5858
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5859 /*
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5860 * Free the string for one term option, if it was allocated.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5861 * Set the string to empty_option and clear allocated flag.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5862 * "var" points to the option value.
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5863 */
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5864 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5865 free_one_termoption(char_u *var)
1941
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5866 {
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5867 struct vimoption *p;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5868
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5869 for (p = &options[0]; p->fullname != NULL; p++)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5870 if (p->var == var)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5871 {
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5872 if (p->flags & P_ALLOCED)
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5873 free_string_option(*(char_u **)(p->var));
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5874 *(char_u **)(p->var) = empty_option;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5875 p->flags &= ~P_ALLOCED;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5876 break;
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5877 }
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5878 }
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5879
d92358c7d621 updated for version 7.2-238
vimboss
parents: 1911
diff changeset
5880 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5881 * Set the terminal option defaults to the current value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5882 * Used after setting the terminal name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5883 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5884 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5885 set_term_defaults(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5886 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5887 struct vimoption *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5888
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5889 for (p = &options[0]; p->fullname != NULL; p++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5890 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5891 if (istermoption(p) && p->def_val[VI_DEFAULT] != *(char_u **)(p->var))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5892 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5893 if (p->flags & P_DEF_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5894 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5895 free_string_option(p->def_val[VI_DEFAULT]);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5896 p->flags &= ~P_DEF_ALLOCED;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5897 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5898 p->def_val[VI_DEFAULT] = *(char_u **)(p->var);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5899 if (p->flags & P_ALLOCED)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5900 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5901 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
5902 p->flags &= ~P_ALLOCED; // don't free the value now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5903 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5904 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5905 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5906 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5907
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5908 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5909 * return TRUE if 'p' starts with 't_'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5910 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5911 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5912 istermoption(struct vimoption *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5913 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5914 return (p->fullname[0] == 't' && p->fullname[1] == '_');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5915 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5916
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5917 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5918 * 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
5919 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5920 int
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5921 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
5922 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5923 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
5924 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
5925
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
5926 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5927 /*
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5928 * Unset local option value, similar to ":set opt<".
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5929 */
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5930 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
5931 unset_global_local_option(char_u *name, void *from)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5932 {
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5933 struct vimoption *p;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5934 int opt_idx;
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5935 buf_T *buf = (buf_T *)from;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5936
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5937 opt_idx = findoption(name);
7007
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
5938 if (opt_idx < 0)
5ea5bd9c18d2 patch 7.4.821
Bram Moolenaar <bram@vim.org>
parents: 6954
diff changeset
5939 return;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5940 p = &(options[opt_idx]);
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5941
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5942 switch ((int)p->indir)
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5943 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
5944 // global option with local value: use local value if it's been set
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5945 case PV_EP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5946 clear_string_option(&buf->b_p_ep);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5947 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5948 case PV_KP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5949 clear_string_option(&buf->b_p_kp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5950 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5951 case PV_PATH:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5952 clear_string_option(&buf->b_p_path);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5953 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5954 case PV_AR:
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5955 buf->b_p_ar = -1;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5956 break;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5957 case PV_BKC:
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5958 clear_string_option(&buf->b_p_bkc);
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5959 buf->b_bkc_flags = 0;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
5960 break;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5961 case PV_TAGS:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5962 clear_string_option(&buf->b_p_tags);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5963 break;
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
5964 case PV_TC:
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
5965 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
5966 buf->b_tc_flags = 0;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
5967 break;
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
5968 case PV_SISO:
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
5969 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
5970 break;
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
5971 case PV_SO:
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
5972 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
5973 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5974 # ifdef FEAT_FIND_ID
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5975 case PV_DEF:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5976 clear_string_option(&buf->b_p_def);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5977 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5978 case PV_INC:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5979 clear_string_option(&buf->b_p_inc);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5980 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5981 # endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5982 case PV_DICT:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5983 clear_string_option(&buf->b_p_dict);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5984 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5985 case PV_TSR:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5986 clear_string_option(&buf->b_p_tsr);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5987 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5988 # ifdef FEAT_COMPL_FUNC
25990
ac330e2fecc4 patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
Bram Moolenaar <Bram@vim.org>
parents: 25984
diff changeset
5989 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
5990 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
5991 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5992 # endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
5993 case PV_FP:
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
5994 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
5995 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
5996 # ifdef FEAT_QUICKFIX
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5997 case PV_EFM:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
5998 clear_string_option(&buf->b_p_efm);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
5999 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6000 case PV_GP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6001 clear_string_option(&buf->b_p_gp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6002 break;
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6003 case PV_MP:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6004 clear_string_option(&buf->b_p_mp);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6005 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6006 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6007 # if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6008 case PV_BEXPR:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6009 clear_string_option(&buf->b_p_bexpr);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6010 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6011 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6012 # if defined(FEAT_CRYPT)
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6013 case PV_CM:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6014 clear_string_option(&buf->b_p_cm);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6015 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6016 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6017 # ifdef FEAT_LINEBREAK
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6018 case PV_SBR:
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6019 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
6020 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6021 # endif
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6022 # ifdef FEAT_STL_OPT
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6023 case PV_STL:
4361
94aa0d30a3ea updated for version 7.3.929
Bram Moolenaar <bram@vim.org>
parents: 4350
diff changeset
6024 clear_string_option(&((win_T *)from)->w_p_stl);
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6025 break;
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
6026 # endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6027 case PV_UL:
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6028 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6029 break;
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6030 case PV_LW:
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6031 clear_string_option(&buf->b_p_lw);
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6032 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
6033 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
6034 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
6035 break;
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6036 case PV_LCS:
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6037 clear_string_option(&((win_T *)from)->w_p_lcs);
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6038 set_listchars_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
6039 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
6040 break;
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6041 case PV_FCS:
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6042 clear_string_option(&((win_T *)from)->w_p_fcs);
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6043 set_fillchars_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
6044 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
6045 break;
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
6046 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
6047 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
6048 ((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
6049 break;
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6050 }
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6051 }
15555
d89c5b339c2a patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
6052 #endif
4350
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6053
7eaccdaa5304 updated for version 7.3.924
Bram Moolenaar <bram@vim.org>
parents: 4242
diff changeset
6054 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6055 * 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
6056 * "scope" can be OPT_LOCAL, OPT_GLOBAL or a combination.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6057 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6058 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
6059 get_varp_scope(struct vimoption *p, int scope)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6060 {
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
6061 if ((scope & OPT_GLOBAL) && p->indir != PV_NONE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6062 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6063 if (p->var == VAR_WIN)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6064 return (char_u *)GLOBAL_WO(get_varp(p));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6065 return p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6066 }
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
6067 if ((scope & OPT_LOCAL) && ((int)p->indir & PV_BOTH))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6068 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6069 switch ((int)p->indir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6070 {
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6071 case PV_FP: return (char_u *)&(curbuf->b_p_fp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6072 #ifdef FEAT_QUICKFIX
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6073 case PV_EFM: return (char_u *)&(curbuf->b_p_efm);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6074 case PV_GP: return (char_u *)&(curbuf->b_p_gp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6075 case PV_MP: return (char_u *)&(curbuf->b_p_mp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6076 #endif
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6077 case PV_EP: return (char_u *)&(curbuf->b_p_ep);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6078 case PV_KP: return (char_u *)&(curbuf->b_p_kp);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6079 case PV_PATH: return (char_u *)&(curbuf->b_p_path);
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 688
diff changeset
6080 case PV_AR: return (char_u *)&(curbuf->b_p_ar);
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6081 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
6082 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
6083 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
6084 case PV_SO: return (char_u *)&(curwin->w_p_so);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6085 #ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6086 case PV_DEF: return (char_u *)&(curbuf->b_p_def);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6087 case PV_INC: return (char_u *)&(curbuf->b_p_inc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6088 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6089 case PV_DICT: return (char_u *)&(curbuf->b_p_dict);
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6090 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
6091 #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
6092 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
6093 #endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6094 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6095 case PV_BEXPR: return (char_u *)&(curbuf->b_p_bexpr);
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6096 #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
6097 #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
6098 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
6099 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6100 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6101 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
6102 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6103 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6104 case PV_STL: return (char_u *)&(curwin->w_p_stl);
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6105 #endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6106 case PV_UL: return (char_u *)&(curbuf->b_p_ul);
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6107 case PV_LW: return (char_u *)&(curbuf->b_p_lw);
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6108 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
6109 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
6110 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
6111 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
6112 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
6113
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6114 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6115 return NULL; // "cannot happen"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6116 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6117 return get_varp(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6118 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6120 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6121 * 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
6122 * scope.
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6123 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6124 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
6125 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
6126 {
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
6127 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
6128 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6129
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6130 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6131 * Get pointer to option variable.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6132 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6133 static char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6134 get_varp(struct vimoption *p)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6135 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6136 // hidden option, always return NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6137 if (p->var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6138 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6139
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6140 switch ((int)p->indir)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6141 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6142 case PV_NONE: return p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6143
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6144 // global option with local value: use local value if it's been set
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6145 case PV_EP: return *curbuf->b_p_ep != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6146 ? (char_u *)&curbuf->b_p_ep : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6147 case PV_KP: return *curbuf->b_p_kp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6148 ? (char_u *)&curbuf->b_p_kp : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6149 case PV_PATH: return *curbuf->b_p_path != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6150 ? (char_u *)&(curbuf->b_p_path) : p->var;
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 688
diff changeset
6151 case PV_AR: return curbuf->b_p_ar >= 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6152 ? (char_u *)&(curbuf->b_p_ar) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6153 case PV_TAGS: return *curbuf->b_p_tags != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6154 ? (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
6155 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
6156 ? (char_u *)&(curbuf->b_p_tc) : p->var;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6157 case PV_BKC: return *curbuf->b_p_bkc != NUL
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6158 ? (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
6159 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
6160 ? (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
6161 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
6162 ? (char_u *)&(curwin->w_p_so) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6163 #ifdef FEAT_FIND_ID
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6164 case PV_DEF: return *curbuf->b_p_def != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6165 ? (char_u *)&(curbuf->b_p_def) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6166 case PV_INC: return *curbuf->b_p_inc != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6167 ? (char_u *)&(curbuf->b_p_inc) : p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6168 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6169 case PV_DICT: return *curbuf->b_p_dict != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6170 ? (char_u *)&(curbuf->b_p_dict) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6171 case PV_TSR: return *curbuf->b_p_tsr != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6172 ? (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
6173 #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
6174 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
6175 ? (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
6176 #endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6177 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
6178 ? (char_u *)&(curbuf->b_p_fp) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6179 #ifdef FEAT_QUICKFIX
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6180 case PV_EFM: return *curbuf->b_p_efm != NUL
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6181 ? (char_u *)&(curbuf->b_p_efm) : p->var;
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6182 case PV_GP: return *curbuf->b_p_gp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6183 ? (char_u *)&(curbuf->b_p_gp) : p->var;
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6184 case PV_MP: return *curbuf->b_p_mp != NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6185 ? (char_u *)&(curbuf->b_p_mp) : p->var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6186 #endif
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6187 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6188 case PV_BEXPR: return *curbuf->b_p_bexpr != NUL
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6189 ? (char_u *)&(curbuf->b_p_bexpr) : p->var;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6190 #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
6191 #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
6192 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
6193 ? (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
6194 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6195 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6196 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
6197 ? (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
6198 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6199 #ifdef FEAT_STL_OPT
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6200 case PV_STL: return *curwin->w_p_stl != NUL
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6201 ? (char_u *)&(curwin->w_p_stl) : p->var;
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6202 #endif
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6203 case PV_UL: return curbuf->b_p_ul != NO_LOCAL_UNDOLEVEL
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6204 ? (char_u *)&(curbuf->b_p_ul) : p->var;
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6205 case PV_LW: return *curbuf->b_p_lw != NUL
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6206 ? (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
6207 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
6208 ? (char_u *)&(curbuf->b_p_menc) : p->var;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6209 #ifdef FEAT_ARABIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6210 case PV_ARAB: return (char_u *)&(curwin->w_p_arab);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6211 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6212 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
6213 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
6214 ? (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
6215 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
6216 ? (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
6217 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
6218 ? (char_u *)&(curwin->w_p_ve) : p->var;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6219 #ifdef FEAT_SPELL
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6220 case PV_SPELL: return (char_u *)&(curwin->w_p_spell);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6221 #endif
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6222 #ifdef FEAT_SYN_HL
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6223 case PV_CUC: return (char_u *)&(curwin->w_p_cuc);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6224 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
6225 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
6226 case PV_CC: return (char_u *)&(curwin->w_p_cc);
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6227 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6228 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6229 case PV_DIFF: return (char_u *)&(curwin->w_p_diff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6230 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6231 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6232 case PV_FDC: return (char_u *)&(curwin->w_p_fdc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6233 case PV_FEN: return (char_u *)&(curwin->w_p_fen);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6234 case PV_FDI: return (char_u *)&(curwin->w_p_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6235 case PV_FDL: return (char_u *)&(curwin->w_p_fdl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6236 case PV_FDM: return (char_u *)&(curwin->w_p_fdm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6237 case PV_FML: return (char_u *)&(curwin->w_p_fml);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6238 case PV_FDN: return (char_u *)&(curwin->w_p_fdn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6239 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6240 case PV_FDE: return (char_u *)&(curwin->w_p_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6241 case PV_FDT: return (char_u *)&(curwin->w_p_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6242 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6243 case PV_FMR: return (char_u *)&(curwin->w_p_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6244 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6245 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
6246 case PV_RNU: return (char_u *)&(curwin->w_p_rnu);
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6247 #ifdef FEAT_LINEBREAK
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6248 case PV_NUW: return (char_u *)&(curwin->w_p_nuw);
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6249 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6250 case PV_WFH: return (char_u *)&(curwin->w_p_wfh);
782
d20041a02ee5 updated for version 7.0228
vimboss
parents: 767
diff changeset
6251 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
6252 #if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6253 case PV_PVW: return (char_u *)&(curwin->w_p_pvw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6254 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6255 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6256 case PV_RL: return (char_u *)&(curwin->w_p_rl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6257 case PV_RLC: return (char_u *)&(curwin->w_p_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6258 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6259 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
6260 case PV_SMS: return (char_u *)&(curwin->w_p_sms);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6261 case PV_WRAP: return (char_u *)&(curwin->w_p_wrap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6262 #ifdef FEAT_LINEBREAK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6263 case PV_LBR: return (char_u *)&(curwin->w_p_lbr);
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6264 case PV_BRI: return (char_u *)&(curwin->w_p_bri);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6265 case PV_BRIOPT: return (char_u *)&(curwin->w_p_briopt);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6266 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6267 case PV_WCR: return (char_u *)&(curwin->w_p_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6268 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
6269 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
6270 #ifdef FEAT_CONCEAL
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6271 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
6272 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
6273 #endif
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6274 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6275 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
6276 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
6277 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
6278 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6279
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6280 case PV_AI: return (char_u *)&(curbuf->b_p_ai);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6281 case PV_BIN: return (char_u *)&(curbuf->b_p_bin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6282 case PV_BOMB: return (char_u *)&(curbuf->b_p_bomb);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6283 case PV_BH: return (char_u *)&(curbuf->b_p_bh);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6284 case PV_BT: return (char_u *)&(curbuf->b_p_bt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6285 case PV_BL: return (char_u *)&(curbuf->b_p_bl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6286 case PV_CI: return (char_u *)&(curbuf->b_p_ci);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6287 case PV_CIN: return (char_u *)&(curbuf->b_p_cin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6288 case PV_CINK: return (char_u *)&(curbuf->b_p_cink);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6289 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
6290 case PV_CINSD: return (char_u *)&(curbuf->b_p_cinsd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6291 case PV_CINW: return (char_u *)&(curbuf->b_p_cinw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6292 case PV_COM: return (char_u *)&(curbuf->b_p_com);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6293 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6294 case PV_CMS: return (char_u *)&(curbuf->b_p_cms);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6295 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6296 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
6297 #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
6298 case PV_CSL: return (char_u *)&(curbuf->b_p_csl);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6299 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6300 #ifdef FEAT_COMPL_FUNC
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6301 case PV_CFU: return (char_u *)&(curbuf->b_p_cfu);
502
52e76e2b5b65 updated for version 7.0140
vimboss
parents: 501
diff changeset
6302 case PV_OFU: return (char_u *)&(curbuf->b_p_ofu);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6303 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6304 #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
6305 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
6306 #endif
30966
685ee8453163 Add missing entry for the 'endoffile' option.
Bram Moolenaar <Bram@vim.org>
parents: 30853
diff changeset
6307 case PV_EOF: return (char_u *)&(curbuf->b_p_eof);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6308 case PV_EOL: return (char_u *)&(curbuf->b_p_eol);
6933
62ba356c2d4e patch 7.4.785
Bram Moolenaar <bram@vim.org>
parents: 6927
diff changeset
6309 case PV_FIXEOL: return (char_u *)&(curbuf->b_p_fixeol);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6310 case PV_ET: return (char_u *)&(curbuf->b_p_et);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6311 case PV_FENC: return (char_u *)&(curbuf->b_p_fenc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6312 case PV_FF: return (char_u *)&(curbuf->b_p_ff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6313 case PV_FT: return (char_u *)&(curbuf->b_p_ft);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6314 case PV_FO: return (char_u *)&(curbuf->b_p_fo);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 40
diff changeset
6315 case PV_FLP: return (char_u *)&(curbuf->b_p_flp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6316 case PV_IMI: return (char_u *)&(curbuf->b_p_iminsert);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6317 case PV_IMS: return (char_u *)&(curbuf->b_p_imsearch);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6318 case PV_INF: return (char_u *)&(curbuf->b_p_inf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6319 case PV_ISK: return (char_u *)&(curbuf->b_p_isk);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6320 #ifdef FEAT_FIND_ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6321 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6322 case PV_INEX: return (char_u *)&(curbuf->b_p_inex);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6323 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6324 #endif
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6325 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6326 case PV_INDE: return (char_u *)&(curbuf->b_p_inde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6327 case PV_INDK: return (char_u *)&(curbuf->b_p_indk);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6328 #endif
694
07d199fe02ed updated for version 7.0209
vimboss
parents: 692
diff changeset
6329 #ifdef FEAT_EVAL
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6330 case PV_FEX: return (char_u *)&(curbuf->b_p_fex);
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6331 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6332 #ifdef FEAT_CRYPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6333 case PV_KEY: return (char_u *)&(curbuf->b_p_key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6334 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6335 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
6336 case PV_LOP: return (char_u *)&(curbuf->b_p_lop);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6337 case PV_ML: return (char_u *)&(curbuf->b_p_ml);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6338 case PV_MPS: return (char_u *)&(curbuf->b_p_mps);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6339 case PV_MA: return (char_u *)&(curbuf->b_p_ma);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6340 case PV_MOD: return (char_u *)&(curbuf->b_changed);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6341 case PV_NF: return (char_u *)&(curbuf->b_p_nf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6342 case PV_PI: return (char_u *)&(curbuf->b_p_pi);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6343 case PV_QE: return (char_u *)&(curbuf->b_p_qe);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6344 case PV_RO: return (char_u *)&(curbuf->b_p_ro);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6345 case PV_SI: return (char_u *)&(curbuf->b_p_si);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6346 case PV_SN: return (char_u *)&(curbuf->b_p_sn);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6347 case PV_STS: return (char_u *)&(curbuf->b_p_sts);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6348 case PV_SUA: return (char_u *)&(curbuf->b_p_sua);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6349 case PV_SWF: return (char_u *)&(curbuf->b_p_swf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6350 #ifdef FEAT_SYN_HL
410
c60ba877860b updated for version 7.0107
vimboss
parents: 402
diff changeset
6351 case PV_SMC: return (char_u *)&(curbuf->b_p_smc);
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6352 case PV_SYN: return (char_u *)&(curbuf->b_p_syn);
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6353 #endif
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6354 #ifdef FEAT_SPELL
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6355 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
6356 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
6357 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
6358 case PV_SPO: return (char_u *)&(curwin->w_s->b_p_spo);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6359 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6360 case PV_SW: return (char_u *)&(curbuf->b_p_sw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6361 case PV_TS: return (char_u *)&(curbuf->b_p_ts);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6362 case PV_TW: return (char_u *)&(curbuf->b_p_tw);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6363 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
6364 #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
6365 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
6366 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6367 case PV_WM: return (char_u *)&(curbuf->b_p_wm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6368 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6369 case PV_KMAP: return (char_u *)&(curbuf->b_p_keymap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6370 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6371 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6372 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
6373 #endif
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6374 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6375 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
6376 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
6377 #endif
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
6378 default: iemsg(_(e_get_varp_error));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6379 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6380 // always return a valid pointer to avoid a crash!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6381 return (char_u *)&(curbuf->b_p_wm);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6382 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6383
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6384 /*
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6385 * 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
6386 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6387 char_u *
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6388 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
6389 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6390 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
6391 }
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6392
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
6393 #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
6394 /*
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6395 * 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
6396 */
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6397 char_u *
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6398 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
6399 {
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6400 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
6401 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
6402 #endif
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6403
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
6404 /*
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6405 * Return the did_set callback function for the option at 'opt_idx'
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6406 */
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6407 opt_did_set_cb_T
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6408 get_option_did_set_cb(int opt_idx)
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6409 {
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6410 return options[opt_idx].opt_did_set_cb;
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6411 }
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6412
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
6413 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6414 * Get the value of 'equalprg', either the buffer-local one or the global one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6415 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6416 char_u *
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6417 get_equalprg(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6418 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6419 if (*curbuf->b_p_ep == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6420 return p_ep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6421 return curbuf->b_p_ep;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6422 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6423
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6424 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6425 * Copy options from one window to another.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6426 * Used when splitting a window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6427 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6428 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6429 win_copy_options(win_T *wp_from, win_T *wp_to)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6430 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6431 copy_winopt(&wp_from->w_onebuf_opt, &wp_to->w_onebuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6432 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
6433 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
6434 }
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6435
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6436 /*
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6437 * 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
6438 */
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6439 void
27659
b5ebc885c25c patch 8.2.4355: unnecessary call to check_colorcolumn()
Bram Moolenaar <Bram@vim.org>
parents: 27509
diff changeset
6440 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
6441 {
c81370b3ede4 patch 8.1.2073: when editing a buffer 'colorcolumn' may not work
Bram Moolenaar <Bram@vim.org>
parents: 18100
diff changeset
6442 #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
6443 briopt_check(wp);
6162
e60327caf909 updated for version 7.4.417
Bram Moolenaar <bram@vim.org>
parents: 6130
diff changeset
6444 #endif
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
6445 #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
6446 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
6447 check_colorcolumn(wp);
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
6448 #endif
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6449 set_listchars_option(wp, wp->w_p_lcs, TRUE);
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6450 set_fillchars_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
6451 }
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6452
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6453 static char_u *
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6454 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
6455 {
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6456 if (val == empty_option)
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6457 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
6458 return vim_strsave(val);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6460
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6461 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6462 * Copy the options from one winopt_T to another.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6463 * Doesn't free the old option values in "to", use clear_winopt() for that.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6464 * The 'scroll' option is not copied, because it depends on the window height.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6465 * The 'previewwindow' option is reset, there can be only one preview window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6466 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6467 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6468 copy_winopt(winopt_T *from, winopt_T *to)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6469 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6470 #ifdef FEAT_ARABIC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6471 to->wo_arab = from->wo_arab;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6472 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6473 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
6474 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
6475 to->wo_fcs = copy_option_val(from->wo_fcs);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6476 to->wo_nu = from->wo_nu;
2178
c6f1aa1e9f32 Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents: 2144
diff changeset
6477 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
6478 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
6479 to->wo_ve_flags = from->wo_ve_flags;
13
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6480 #ifdef FEAT_LINEBREAK
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6481 to->wo_nuw = from->wo_nuw;
24d5189d3956 updated for version 7.0005
vimboss
parents: 12
diff changeset
6482 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6483 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6484 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
6485 to->wo_rlc = copy_option_val(from->wo_rlc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6486 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6487 #ifdef FEAT_LINEBREAK
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6488 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
6489 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6490 #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
6491 to->wo_stl = copy_option_val(from->wo_stl);
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6492 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6493 to->wo_wrap = from->wo_wrap;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6494 #ifdef FEAT_DIFF
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6495 to->wo_wrap_save = from->wo_wrap_save;
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6496 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6497 #ifdef FEAT_LINEBREAK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6498 to->wo_lbr = from->wo_lbr;
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6499 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
6500 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
6501 #endif
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6502 to->wo_wcr = copy_option_val(from->wo_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6503 to->wo_scb = from->wo_scb;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6504 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
6505 to->wo_sms = from->wo_sms;
2651
b254cfdd7405 updated for version 7.3.071
Bram Moolenaar <bram@vim.org>
parents: 2599
diff changeset
6506 to->wo_crb = from->wo_crb;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6507 to->wo_crb_save = from->wo_crb_save;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6508 #ifdef FEAT_SPELL
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6509 to->wo_spell = from->wo_spell;
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6510 #endif
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6511 #ifdef FEAT_SYN_HL
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6512 to->wo_cuc = from->wo_cuc;
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6513 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
6514 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
6515 to->wo_cc = copy_option_val(from->wo_cc);
221
7fd4b5df33be updated for version 7.0062
vimboss
parents: 190
diff changeset
6516 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6517 #ifdef FEAT_DIFF
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6518 to->wo_diff = from->wo_diff;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6519 to->wo_diff_saved = from->wo_diff_saved;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6520 #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
6521 #ifdef FEAT_CONCEAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6522 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
6523 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
6524 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6525 #ifdef FEAT_TERMINAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6526 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
6527 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
6528 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6529 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6530 to->wo_fdc = from->wo_fdc;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6531 to->wo_fdc_save = from->wo_fdc_save;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6532 to->wo_fen = from->wo_fen;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6533 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
6534 to->wo_fdi = copy_option_val(from->wo_fdi);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6535 to->wo_fml = from->wo_fml;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6536 to->wo_fdl = from->wo_fdl;
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6537 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
6538 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
6539 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
6540 ? vim_strsave(from->wo_fdm_save) : empty_option;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6541 to->wo_fdn = from->wo_fdn;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6542 # ifdef FEAT_EVAL
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6543 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
6544 to->wo_fdt = copy_option_val(from->wo_fdt);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6545 # endif
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6546 to->wo_fmr = copy_option_val(from->wo_fmr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6547 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6548 #ifdef FEAT_SIGNS
29387
9dce192d1ac2 patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents: 28942
diff changeset
6549 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
6550 #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
6551
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6552 #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
6553 // 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
6554 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
6555 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
6556 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6557 check_winopt(to); // don't want NULL pointers
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6558 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6559
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6560 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6561 * Check string options in a window for a NULL value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6562 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17781
diff changeset
6563 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6564 check_win_options(win_T *win)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6565 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6566 check_winopt(&win->w_onebuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6567 check_winopt(&win->w_allbuf_opt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6568 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6569
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6570 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6571 * Check for NULL pointers in a winopt_T and replace them with empty_option.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6572 */
5997
fd7110d0c3bf updated for version 7.4.339
Bram Moolenaar <bram@vim.org>
parents: 5995
diff changeset
6573 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6574 check_winopt(winopt_T *wop UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6575 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6576 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6577 check_string_option(&wop->wo_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6578 check_string_option(&wop->wo_fdm);
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6579 check_string_option(&wop->wo_fdm_save);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6580 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6581 check_string_option(&wop->wo_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6582 check_string_option(&wop->wo_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6583 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6584 check_string_option(&wop->wo_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6585 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6586 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6587 check_string_option(&wop->wo_scl);
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6588 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6589 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6590 check_string_option(&wop->wo_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6591 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6592 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6593 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
6594 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6595 #ifdef FEAT_STL_OPT
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6596 check_string_option(&wop->wo_stl);
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6597 #endif
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6598 #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
6599 check_string_option(&wop->wo_culopt);
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6600 check_string_option(&wop->wo_cc);
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6601 #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
6602 #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
6603 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
6604 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6605 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6606 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
6607 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
6608 #endif
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6609 #ifdef FEAT_LINEBREAK
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6610 check_string_option(&wop->wo_briopt);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6611 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6612 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
6613 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
6614 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
6615 check_string_option(&wop->wo_ve);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6616 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6617
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6618 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6619 * Free the allocated memory inside a winopt_T.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6620 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6621 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6622 clear_winopt(winopt_T *wop UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6623 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6624 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6625 clear_string_option(&wop->wo_fdi);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6626 clear_string_option(&wop->wo_fdm);
5102
11d0c6df1d7b updated for version 7.3.1294
Bram Moolenaar <bram@vim.org>
parents: 5070
diff changeset
6627 clear_string_option(&wop->wo_fdm_save);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6628 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6629 clear_string_option(&wop->wo_fde);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6630 clear_string_option(&wop->wo_fdt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6631 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6632 clear_string_option(&wop->wo_fmr);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6633 #endif
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6634 #ifdef FEAT_SIGNS
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6635 clear_string_option(&wop->wo_scl);
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
6636 #endif
5995
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6637 #ifdef FEAT_LINEBREAK
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6638 clear_string_option(&wop->wo_briopt);
ef83b423ebf7 updated for version 7.4.338
Bram Moolenaar <bram@vim.org>
parents: 5991
diff changeset
6639 #endif
16778
eda4d65f232c patch 8.1.1391: no popup window support
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
6640 clear_string_option(&wop->wo_wcr);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6641 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6642 clear_string_option(&wop->wo_rlc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6643 #endif
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6644 #ifdef FEAT_LINEBREAK
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
6645 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
6646 #endif
40
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6647 #ifdef FEAT_STL_OPT
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6648 clear_string_option(&wop->wo_stl);
f1d2a58883b9 updated for version 7.0024
vimboss
parents: 39
diff changeset
6649 #endif
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6650 #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
6651 clear_string_option(&wop->wo_culopt);
2314
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6652 clear_string_option(&wop->wo_cc);
233eb4412f5d Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
6653 #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
6654 #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
6655 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
6656 #endif
11621
b8299e742f41 patch 8.0.0693: no terminal emulator support
Christian Brabandt <cb@256bit.org>
parents: 11587
diff changeset
6657 #ifdef FEAT_TERMINAL
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6658 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
6659 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
6660 #endif
23952
44be09b25619 patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents: 23821
diff changeset
6661 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
6662 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
6663 clear_string_option(&wop->wo_ve);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6664 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6665
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6666 #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
6667 // 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
6668 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
6669 # 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
6670
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6671 /*
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6672 * 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
6673 */
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6674 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
6675 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
6676 {
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6677 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
6678 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
6679
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6680 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
6681 return;
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6682 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
6683 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
6684 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
6685 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
6686 }
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6687 #else
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6688 # 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
6689 #endif
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6690
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6691 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6692 * Copy global option values to local options for one buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6693 * Used when creating a new buffer and sometimes when entering a buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6694 * 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
6695 * BCO_ENTER We will enter the buffer "buf".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6696 * BCO_ALWAYS Always copy the options, but only set b_p_initialized when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6697 * appropriate.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6698 * BCO_NOHELP Don't copy the values to a help buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6699 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6700 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
6701 buf_copy_options(buf_T *buf, int flags)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6702 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6703 int should_copy = TRUE;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6704 char_u *save_p_isk = NULL; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6705 int dont_do_help;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6706 int did_isk = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6707
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6708 // Skip this when the option defaults have not been set yet. Happens when
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6709 // main() allocates the first buffer.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6710 if (p_cpo != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6711 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6712 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6713 * Always copy when entering and 'cpo' contains 'S'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6714 * Don't copy when already initialized.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6715 * Don't copy when 'cpo' contains 's' and not entering.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6716 * 'S' BCO_ENTER initialized 's' should_copy
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6717 * yes yes X X TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6718 * yes no yes X FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6719 * no X yes X FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6720 * X no no yes FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6721 * X no no no TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6722 * no yes no X TRUE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6723 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6724 if ((vim_strchr(p_cpo, CPO_BUFOPTGLOB) == NULL || !(flags & BCO_ENTER))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6725 && (buf->b_p_initialized
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6726 || (!(flags & BCO_ENTER)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6727 && vim_strchr(p_cpo, CPO_BUFOPT) != NULL)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6728 should_copy = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6729
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6730 if (should_copy || (flags & BCO_ALWAYS))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6731 {
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
6732 #ifdef FEAT_EVAL
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19405
diff changeset
6733 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
6734 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
6735 #endif
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6736 // 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
6737 // 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
6738 // (jumping back to a help file with CTRL-T or CTRL-O)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6739 dont_do_help = ((flags & BCO_NOHELP) && buf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6740 || 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
6741 if (dont_do_help) // don't free b_p_isk
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6743 save_p_isk = buf->b_p_isk;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6744 buf->b_p_isk = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6745 }
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6746 // Always free the allocated strings. If not already initialized,
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6747 // reset 'readonly' and copy 'fileformat'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6748 if (!buf->b_p_initialized)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6749 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6750 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
6751 buf->b_p_ro = FALSE; // don't copy readonly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6752 buf->b_p_tx = p_tx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6753 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
6754 switch (*p_ffs)
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6755 {
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6756 case 'm':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6757 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
6758 case 'd':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6759 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
6760 case 'u':
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6761 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
6762 default:
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6763 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
6764 }
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6765 if (buf->b_p_ff != NULL)
c55a7232fb48 commit https://github.com/vim/vim/commit/e8ef3a093453b73594e15462d4de50b011c8ba66
Christian Brabandt <cb@256bit.org>
parents: 10264
diff changeset
6766 buf->b_start_ffc = *buf->b_p_ff;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6767 buf->b_p_bh = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6768 buf->b_p_bt = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6769 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6770 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6771 free_buf_options(buf, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6772
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6773 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
6774 COPY_OPT_SCTX(buf, BV_AI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6775 buf->b_p_ai_nopaste = p_ai_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6776 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
6777 COPY_OPT_SCTX(buf, BV_SW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6778 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
6779 COPY_OPT_SCTX(buf, BV_TW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6780 buf->b_p_tw_nopaste = p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6781 buf->b_p_tw_nobin = p_tw_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6782 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
6783 COPY_OPT_SCTX(buf, BV_WM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6784 buf->b_p_wm_nopaste = p_wm_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6785 buf->b_p_wm_nobin = p_wm_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6786 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
6787 COPY_OPT_SCTX(buf, BV_BIN);
402
5b1544b1b228 updated for version 7.0105
vimboss
parents: 389
diff changeset
6788 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
6789 COPY_OPT_SCTX(buf, BV_BOMB);
6954
a958ac497a81 patch 7.4.795
Bram Moolenaar <bram@vim.org>
parents: 6949
diff changeset
6790 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
6791 COPY_OPT_SCTX(buf, BV_FIXEOL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6792 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
6793 COPY_OPT_SCTX(buf, BV_ET);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6794 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
6795 buf->b_p_et_nopaste = p_et_nopaste;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6796 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
6797 COPY_OPT_SCTX(buf, BV_ML);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6798 buf->b_p_ml_nobin = p_ml_nobin;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6799 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
6800 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
6801 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
6802 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
6803 else
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6804 {
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6805 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
6806 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
6807 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6808 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
6809 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
6810 #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
6811 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
6812 COPY_OPT_SCTX(buf, BV_CSL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6813 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6814 #ifdef FEAT_COMPL_FUNC
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6815 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
6816 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
6817 set_buflocal_cfu_callback(buf);
502
52e76e2b5b65 updated for version 7.0140
vimboss
parents: 501
diff changeset
6818 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
6819 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
6820 set_buflocal_ofu_callback(buf);
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6821 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
6822 #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
6823 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
6824 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
6825 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
6826 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6827 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
6828 COPY_OPT_SCTX(buf, BV_STS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6829 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
6830 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6831 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
6832 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
6833 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
6834 (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
6835 else
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
6836 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
6837 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
6838 ? 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
6839 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6840 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
6841 COPY_OPT_SCTX(buf, BV_SN);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6842 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
6843 COPY_OPT_SCTX(buf, BV_COM);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6844 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6845 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
6846 COPY_OPT_SCTX(buf, BV_CMS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6847 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6848 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
6849 COPY_OPT_SCTX(buf, BV_FO);
41
f529edb9bab3 updated for version 7.0025
vimboss
parents: 40
diff changeset
6850 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
6851 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
6852 // 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
6853 // when it is set to 8 bytes in defaults.vim.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6854 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
6855 COPY_OPT_SCTX(buf, BV_NF);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6856 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
6857 COPY_OPT_SCTX(buf, BV_MPS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6858 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
6859 COPY_OPT_SCTX(buf, BV_SI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6860 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
6861 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
6862
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6863 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
6864 COPY_OPT_SCTX(buf, BV_CIN);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6865 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
6866 COPY_OPT_SCTX(buf, BV_CINK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6867 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
6868 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
6869 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
6870 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
6871 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
6872 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
6873
18380
212284f893d5 patch 8.1.2184: option context is not copied when splitting a window
Bram Moolenaar <Bram@vim.org>
parents: 18354
diff changeset
6874 // Don't copy 'filetype', it must be detected
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6875 buf->b_p_ft = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6876 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
6877 COPY_OPT_SCTX(buf, BV_PI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6878 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
6879 COPY_OPT_SCTX(buf, BV_CINW);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6880 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
6881 COPY_OPT_SCTX(buf, BV_LISP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6882 #ifdef FEAT_SYN_HL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6883 // Don't copy 'syntax', it must be set
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6884 buf->b_p_syn = empty_option;
410
c60ba877860b updated for version 7.0107
vimboss
parents: 402
diff changeset
6885 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
6886 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
6887 buf->b_s.b_syn_isk = empty_option;
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6888 #endif
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
6889 #ifdef FEAT_SPELL
2599
8aa94f8080bd updated for version 7.3.022
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
6890 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
6891 COPY_OPT_SCTX(buf, BV_SPC);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6892 (void)compile_cap_prog(&buf->b_s);
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6893 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
6894 COPY_OPT_SCTX(buf, BV_SPF);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2248
diff changeset
6895 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
6896 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
6897 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
6898 COPY_OPT_SCTX(buf, BV_SPO);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6899 #endif
28942
6cdf55afaae9 patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents: 28919
diff changeset
6900 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6901 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
6902 COPY_OPT_SCTX(buf, BV_INDE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6903 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
6904 COPY_OPT_SCTX(buf, BV_INDK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6905 #endif
10579
688b97124d23 patch 8.0.0179: cannot have a local value for 'formatprg'
Christian Brabandt <cb@256bit.org>
parents: 10456
diff changeset
6906 buf->b_p_fp = empty_option;
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6907 #if defined(FEAT_EVAL)
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6908 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
6909 COPY_OPT_SCTX(buf, BV_FEX);
667
9090f866cd57 updated for version 7.0197
vimboss
parents: 665
diff changeset
6910 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6911 #ifdef FEAT_CRYPT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6912 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
6913 COPY_OPT_SCTX(buf, BV_KEY);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6914 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6915 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
6916 COPY_OPT_SCTX(buf, BV_SUA);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6917 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6918 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
6919 COPY_OPT_SCTX(buf, BV_KMAP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6920 buf->b_kmap_state |= KEYMAP_INIT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6921 #endif
13742
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6922 #ifdef FEAT_TERMINAL
a34b1323286c patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents: 13700
diff changeset
6923 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
6924 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
6925 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6926 // 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
6927 // state from the current buffer is better than resetting it.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6928 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
6929 COPY_OPT_SCTX(buf, BV_IMI);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6930 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
6931 COPY_OPT_SCTX(buf, BV_IMS);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6932
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
6933 // 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
6934 // are not copied, start using the global value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6935 buf->b_p_ar = -1;
5446
d0595545e98a updated for version 7.4.073
Bram Moolenaar <bram@vim.org>
parents: 5438
diff changeset
6936 buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6937 buf->b_p_bkc = empty_option;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
6938 buf->b_bkc_flags = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6939 #ifdef FEAT_QUICKFIX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6940 buf->b_p_gp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6941 buf->b_p_mp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6942 buf->b_p_efm = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6943 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6944 buf->b_p_ep = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6945 buf->b_p_kp = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6946 buf->b_p_path = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6947 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
6948 buf->b_p_tc = empty_option;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 7218
diff changeset
6949 buf->b_tc_flags = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6950 #ifdef FEAT_FIND_ID
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6951 buf->b_p_def = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6952 buf->b_p_inc = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6953 # ifdef FEAT_EVAL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6954 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
6955 COPY_OPT_SCTX(buf, BV_INEX);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6956 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6957 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6958 buf->b_p_dict = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6959 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
6960 #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
6961 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
6962 #endif
12
bdeee1504ac1 updated for version 7.0004
vimboss
parents: 11
diff changeset
6963 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
6964 COPY_OPT_SCTX(buf, BV_QE);
790
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6965 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6966 buf->b_p_bexpr = empty_option;
c8680debe1cc updated for version 7.0230
vimboss
parents: 786
diff changeset
6967 #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
6968 #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
6969 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
6970 #endif
2214
f8222d1f9a73 Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents: 2184
diff changeset
6971 #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
6972 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
6973 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
6974 #endif
5712
06e5f65c34d8 updated for version 7.4.201
Bram Moolenaar <bram@vim.org>
parents: 5610
diff changeset
6975 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
6976 buf->b_p_menc = empty_option;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6977
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6978 // Don't copy the options set by ex_help(), use the saved values,
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6979 // when going from a help buffer to a non-help buffer.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6980 // Don't touch these at all when BCO_NOHELP is used and going from
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
6981 // or to a help buffer.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6982 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
6983 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6984 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
6985 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6986 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
6987 (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
6988 else
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6989 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
6990 #endif
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
6991 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6992 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6993 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6994 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
6995 COPY_OPT_SCTX(buf, BV_ISK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6996 did_isk = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6997 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
6998 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
6999 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7000 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
7001 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
7002 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
7003 (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
7004 else
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7005 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
7006 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7007 buf->b_help = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7008 if (buf->b_p_bt[0] == 'h')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7009 clear_string_option(&buf->b_p_bt);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7010 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
7011 COPY_OPT_SCTX(buf, BV_MA);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7012 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7013 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7014
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7015 // When the options should be copied (ignoring BCO_ALWAYS), set the
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7016 // flag that indicates that the options have been initialized.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7017 if (should_copy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7018 buf->b_p_initialized = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7019 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7020
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7021 check_buf_options(buf); // make sure we don't have NULLs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7022 if (did_isk)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7023 (void)buf_init_chartab(buf, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7024 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7025
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7026 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7027 * Reset the 'modifiable' option and its default value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7028 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7029 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7030 reset_modifiable(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7031 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7032 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7033
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7034 curbuf->b_p_ma = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7035 p_ma = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7036 opt_idx = findoption((char_u *)"ma");
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7037 if (opt_idx >= 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7038 options[opt_idx].def_val[VI_DEFAULT] = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7039 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7040
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7041 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7042 * Set the global value for 'iminsert' to the local value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7043 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7044 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7045 set_iminsert_global(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7046 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7047 p_iminsert = curbuf->b_p_iminsert;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7048 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7049
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7050 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7051 * Set the global value for 'imsearch' to the local value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7052 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7053 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7054 set_imsearch_global(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7055 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7056 p_imsearch = curbuf->b_p_imsearch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7057 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7058
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7059 static int expand_option_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7060 static char_u expand_option_name[5] = {'t', '_', NUL, NUL, NUL};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7061 static int expand_option_flags = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7062
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7063 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7064 set_context_in_set_cmd(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7065 expand_T *xp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7066 char_u *arg,
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7067 int opt_flags) // OPT_GLOBAL and/or OPT_LOCAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7068 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7069 int nextchar;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7070 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
7071 int opt_idx = 0; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7072 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7073 char_u *s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7074 int is_term_option = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7075 int key;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7076
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7077 expand_option_flags = opt_flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7078
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7079 xp->xp_context = EXPAND_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7080 if (*arg == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7081 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7082 xp->xp_pattern = arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7083 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7084 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7085 p = arg + STRLEN(arg) - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7086 if (*p == ' ' && *(p - 1) != '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7087 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7088 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7089 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7090 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7091 while (p > arg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7092 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7093 s = p;
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7094 // count number of backslashes before ' ' or ','
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7095 if (*p == ' ' || *p == ',')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7096 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7097 while (s > arg && *(s - 1) == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7098 --s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7099 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7100 // break at a space with an even number of backslashes
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7101 if (*p == ' ' && ((p - s) & 1) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7102 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7103 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7104 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7105 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7106 --p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7107 }
1911
afbe4a4c884c updated for version 7.2-208
vimboss
parents: 1904
diff changeset
7108 if (STRNCMP(p, "no", 2) == 0 && STRNCMP(p, "novice", 6) != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7109 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7110 xp->xp_context = EXPAND_BOOL_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7111 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7112 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7113 if (STRNCMP(p, "inv", 3) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7114 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7115 xp->xp_context = EXPAND_BOOL_SETTINGS;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7116 p += 3;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7117 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7118 xp->xp_pattern = arg = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7119 if (*arg == '<')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7120 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7121 while (*p != '>')
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7122 if (*p++ == NUL) // expand terminal option name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7123 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7124 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
7125 if (key == 0) // unknown name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7126 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7127 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7128 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7129 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7130 nextchar = *++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7131 is_term_option = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7132 expand_option_name[2] = KEY2TERMCAP0(key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7133 expand_option_name[3] = KEY2TERMCAP1(key);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7134 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7135 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7136 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7137 if (p[0] == 't' && p[1] == '_')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7138 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7139 p += 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7140 if (*p != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7141 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7142 if (*p == NUL)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7143 return; // expand option name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7144 nextchar = *++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7145 is_term_option = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7146 expand_option_name[2] = p[-2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7147 expand_option_name[3] = p[-1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7148 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7149 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7150 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7151 // Allow * wildcard
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7152 while (ASCII_ISALNUM(*p) || *p == '_' || *p == '*')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7153 p++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7154 if (*p == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7155 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7156 nextchar = *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7157 *p = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7158 opt_idx = findoption(arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7159 *p = nextchar;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7160 if (opt_idx == -1 || options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7161 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7162 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7163 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7164 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7165 flags = options[opt_idx].flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7166 if (flags & P_BOOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7167 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7168 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7169 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7171 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7172 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7173 // handle "-=" and "+="
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7174 if ((nextchar == '-' || nextchar == '+' || nextchar == '^') && p[1] == '=')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7175 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7176 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7177 nextchar = '=';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7178 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7179 if ((nextchar != '=' && nextchar != ':')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7180 || xp->xp_context == EXPAND_BOOL_SETTINGS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7181 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7182 xp->xp_context = EXPAND_UNSUCCESSFUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7183 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7184 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7185 if (xp->xp_context != EXPAND_BOOL_SETTINGS && p[1] == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7186 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7187 xp->xp_context = EXPAND_OLD_SETTING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7188 if (is_term_option)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7189 expand_option_idx = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7190 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7191 expand_option_idx = opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7192 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7193 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7194 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7195 xp->xp_context = EXPAND_NOTHING;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7196 if (is_term_option || (flags & P_NUM))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7197 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7198
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7199 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7200
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7201 if (flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7202 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7203 p = options[opt_idx].var;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7204 if (p == (char_u *)&p_bdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7205 || p == (char_u *)&p_dir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7206 || p == (char_u *)&p_path
8182
95d59081580f commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents: 8163
diff changeset
7207 || p == (char_u *)&p_pp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7208 || p == (char_u *)&p_rtp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7209 || p == (char_u *)&p_cdpath
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7210 #ifdef FEAT_SESSION
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7211 || p == (char_u *)&p_vdir
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7212 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7213 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7214 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7215 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
7216 if (p == (char_u *)&p_path || p == (char_u *)&p_cdpath)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7217 xp->xp_backslash = XP_BS_THREE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7218 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7219 xp->xp_backslash = XP_BS_ONE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7220 }
23821
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7221 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
7222 {
bfc1ae959d9d patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
7223 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
7224 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7225 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7226 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7227 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
7228 // for 'tags' need three backslashes for a space
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7229 if (p == (char_u *)&p_tags)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7230 xp->xp_backslash = XP_BS_THREE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7231 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7232 xp->xp_backslash = XP_BS_ONE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7233 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7234 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7235
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7236 // 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
7237 // last file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7238 for (p = arg + STRLEN(arg) - 1; p > xp->xp_pattern; --p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7239 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7240 // count number of backslashes before ' ' or ','
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7241 if (*p == ' ' || *p == ',')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7242 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7243 s = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7244 while (s > xp->xp_pattern && *(s - 1) == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7245 --s;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7246 if ((*p == ' ' && (xp->xp_backslash == XP_BS_THREE && (p - s) < 3))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7247 || (*p == ',' && (flags & P_COMMA) && ((p - s) & 1) == 0))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7248 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7249 xp->xp_pattern = p + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7250 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7251 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7252 }
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7253
744
07f7b4a7755c updated for version 7.0222
vimboss
parents: 731
diff changeset
7254 #ifdef FEAT_SPELL
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7255 // for 'spellsuggest' start at "file:"
374
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7256 if (options[opt_idx].var == (char_u *)&p_sps
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7257 && STRNCMP(p, "file:", 5) == 0)
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7258 {
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7259 xp->xp_pattern = p + 5;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7260 break;
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7261 }
575dacb554d8 updated for version 7.0096
vimboss
parents: 359
diff changeset
7262 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7263 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7264 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7265
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7266 /*
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7267 * 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
7268 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7269 * 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
7270 * 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
7271 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7272 * 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
7273 * 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
7274 * returns TRUE.
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7275 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7276 * 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
7277 * '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
7278 *
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7279 * 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
7280 * '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
7281 */
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7282 static int
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7283 match_str(
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7284 char_u *str,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7285 regmatch_T *regmatch,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7286 char_u **matches,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7287 int idx,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7288 int test_only,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7289 int fuzzy,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7290 char_u *fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7291 fuzmatch_str_T *fuzmatch)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7292 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7293 if (!fuzzy)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7294 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7295 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
7296 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7297 if (!test_only)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7298 matches[idx] = vim_strsave(str);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7299 return TRUE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7300 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7301 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7302 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7303 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7304 int score;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7305
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7306 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
7307 if (score != 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7308 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7309 if (!test_only)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7310 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7311 fuzmatch[idx].idx = idx;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7312 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
7313 fuzmatch[idx].score = score;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7314 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7315
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7316 return TRUE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7317 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7318 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7319
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7320 return FALSE;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7321 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7322
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7323 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7324 ExpandSettings(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7325 expand_T *xp,
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7326 regmatch_T *regmatch,
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7327 char_u *fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7328 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
7329 char_u ***matches,
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
7330 int can_fuzzy)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7331 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7332 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
7333 int num_term = 0; // Nr of matching terminal code settings
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7334 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7335 int match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7336 int count = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7337 char_u *str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7338 int loop;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7339 int is_term_opt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7340 char_u name_buf[MAX_KEY_NAME_LEN];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7341 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
7342 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
7343 int fuzzy;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7344 fuzmatch_str_T *fuzmatch = NULL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7345
28786
fd5942a62312 patch 8.2.4917: fuzzy expansion of option names is not right
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
7346 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
7347
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7348 // do this loop twice:
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7349 // 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
7350 // loop == 1: copy the matching options into allocated memory
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7351 for (loop = 0; loop <= 1; ++loop)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7352 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7353 regmatch->rm_ic = ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7354 if (xp->xp_context != EXPAND_BOOL_SETTINGS)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7355 {
24768
7334bf933510 patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents: 24747
diff changeset
7356 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
7357 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7358 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
7359 count, (loop == 0), fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7360 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7361 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7362 num_normal++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7363 else
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7364 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7365 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7366 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7367 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7368 for (opt_idx = 0; (str = (char_u *)options[opt_idx].fullname) != NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7369 opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7370 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7371 if (options[opt_idx].var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7372 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7373 if (xp->xp_context == EXPAND_BOOL_SETTINGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7374 && !(options[opt_idx].flags & P_BOOL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7375 continue;
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
7376 is_term_opt = istermoption_idx(opt_idx);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7377 if (is_term_opt && num_normal > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7378 continue;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7379
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7380 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
7381 fuzzy, fuzzystr, fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7382 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7383 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7384 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7385 if (is_term_opt)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7386 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7387 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7388 num_normal++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7389 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7390 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7391 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7392 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7393 else if (!fuzzy && options[opt_idx].shortname != NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7394 && vim_regexec(regmatch,
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28804
diff changeset
7395 (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
7396 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7397 // 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
7398 // 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
7399 // 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
7400 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7401 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7402 if (is_term_opt)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7403 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7404 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7405 num_normal++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7406 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7407 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7408 (*matches)[count++] = vim_strsave(str);
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7409 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7410 else if (is_term_opt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7411 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7412 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7413 name_buf[1] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7414 name_buf[2] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7415 name_buf[3] = str[2];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7416 name_buf[4] = str[3];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7417 name_buf[5] = '>';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7418 name_buf[6] = NUL;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7419
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7420 if (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
7421 fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7422 {
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7423 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7424 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7425 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7426 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7427 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7428 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7429 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7430
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7431 // Check terminal key codes, these are not in the option table
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7432 if (xp->xp_context != EXPAND_BOOL_SETTINGS && num_normal == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7433 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7434 for (opt_idx = 0; (str = get_termcode(opt_idx)) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7435 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7436 if (!isprint(str[0]) || !isprint(str[1]))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7437 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7438
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7439 name_buf[0] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7440 name_buf[1] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7441 name_buf[2] = str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7442 name_buf[3] = str[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7443 name_buf[4] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7444
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7445 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
7446 (loop == 0), fuzzy, fuzzystr, fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7447 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7448 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7449 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7450 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7451 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7452 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7453 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7454 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7455 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7456 name_buf[1] = 't';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7457 name_buf[2] = '_';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7458 name_buf[3] = str[0];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7459 name_buf[4] = str[1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7460 name_buf[5] = '>';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7461 name_buf[6] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7462
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7463 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
7464 (loop == 0), fuzzy, fuzzystr,
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7465 fuzmatch))
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7466 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7467 if (loop == 0)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7468 num_term++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7469 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7470 count++;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7471 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7472 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7473 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7474
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7475 // Check special key names.
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7476 regmatch->rm_ic = TRUE; // ignore case here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7477 for (opt_idx = 0; (str = get_key_name(opt_idx)) != NULL; opt_idx++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7478 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7479 name_buf[0] = '<';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7480 STRCPY(name_buf + 1, str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7481 STRCAT(name_buf, ">");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7482
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7483 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
7484 fuzzy, fuzzystr, fuzmatch))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7485 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7486 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7487 num_term++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7488 else
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7489 count++;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7490 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7491 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7492 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7493 if (loop == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7494 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7495 if (num_normal > 0)
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7496 *numMatches = num_normal;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7497 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
7498 *numMatches = num_term;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7499 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7500 return OK;
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7501 if (!fuzzy)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7502 {
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7503 *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
7504 if (*matches == NULL)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7505 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7506 *matches = (char_u **)"";
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7507 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7508 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7509 }
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7510 else
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7511 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7512 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
7513 if (fuzmatch == NULL)
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7514 {
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7515 *matches = (char_u **)"";
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7516 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7517 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7518 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7519 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7520 }
27875
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7521
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7522 if (fuzzy &&
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7523 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
7524 return FAIL;
ae38d2e81fca patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents: 27855
diff changeset
7525
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7526 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7528
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7529 int
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7530 ExpandOldSetting(int *numMatches, char_u ***matches)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7531 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7532 char_u *var = NULL; // init for GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7533 char_u *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7534
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7535 *numMatches = 0;
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7536 *matches = ALLOC_ONE(char_u *);
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7537 if (*matches == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7538 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7539
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7540 // For a terminal key code expand_option_idx is < 0.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7541 if (expand_option_idx < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7542 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7543 var = find_termcode(expand_option_name + 2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7544 if (var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7545 expand_option_idx = findoption(expand_option_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7546 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7547
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7548 if (expand_option_idx >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7549 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7550 // put string of option value in NameBuff
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7551 option_value2string(&options[expand_option_idx], expand_option_flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7552 var = NameBuff;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7553 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7554 else if (var == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7555 var = (char_u *)"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7556
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7557 // 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
7558 // what happens in do_set().
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7559 buf = vim_strsave_escaped(var, escape_chars);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7560
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7561 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7562 {
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7563 VIM_CLEAR(*matches);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7564 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7565 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7566
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7567 #ifdef BACKSLASH_IN_FILENAME
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7568 // 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
7569 // 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
7570 for (var = buf; *var != NUL; MB_PTR_ADV(var))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7571 if (var[0] == '\\' && var[1] == '\\'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7572 && expand_option_idx >= 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7573 && (options[expand_option_idx].flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7574 && vim_isfilec(var[2])
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7575 && (var[2] != '\\' || (var == buf && var[4] != '\\')))
1622
149d8b46404c updated for version 7.2a
vimboss
parents: 1601
diff changeset
7576 STRMOVE(var, var + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7577 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7578
31819
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7579 *matches[0] = buf;
aec031683d61 patch 9.0.1242: code for :runtime completion is not consistent
Bram Moolenaar <Bram@vim.org>
parents: 31766
diff changeset
7580 *numMatches = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7581 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7582 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7583
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7584 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7585 * Get the value for the numeric or string option *opp in a nice format into
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7586 * NameBuff[]. Must not be called with a hidden option!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7587 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7588 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7589 option_value2string(
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7590 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
7591 int scope) // OPT_GLOBAL and/or OPT_LOCAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7592 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7593 char_u *varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7594
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
7595 varp = get_varp_scope(opp, scope);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7596
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7597 if (opp->flags & P_NUM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7598 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7599 long wc = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7600
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7601 if (wc_use_keyname(varp, &wc))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7602 STRCPY(NameBuff, get_special_key_name((int)wc, 0));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7603 else if (wc != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7604 STRCPY(NameBuff, transchar((int)wc));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7605 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7606 sprintf((char *)NameBuff, "%ld", *(long *)varp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7607 }
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7608 else // P_STRING
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7609 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7610 varp = *(char_u **)(varp);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7611 if (varp == NULL) // just in case
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7612 NameBuff[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7613 #ifdef FEAT_CRYPT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7614 // don't show the actual value of 'key', only that it's set
840
2c885fab04e3 updated for version 7.0e06
vimboss
parents: 839
diff changeset
7615 else if (opp->var == (char_u *)&p_key && *varp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7616 STRCPY(NameBuff, "*****");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7617 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7618 else if (opp->flags & P_EXPAND)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7619 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
7620 // Translate 'pastetoggle' into special key names
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7621 else if ((char_u **)opp->var == &p_pt)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7622 str2specialbuf(p_pt, NameBuff, MAXPATHL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7623 else
419
f713fc55bf7b updated for version 7.0109
vimboss
parents: 410
diff changeset
7624 vim_strncpy(NameBuff, varp, MAXPATHL - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7625 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7626 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7627
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7628 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7629 * Return TRUE if "varp" points to 'wildchar' or 'wildcharm' and it can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7630 * printed as a keyname.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7631 * "*wcp" is set to the value of the option if it's 'wildchar' or 'wildcharm'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7632 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7633 static int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7634 wc_use_keyname(char_u *varp, long *wcp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7635 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7636 if (((long *)varp == &p_wc) || ((long *)varp == &p_wcm))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7637 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7638 *wcp = *(long *)varp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7639 if (IS_SPECIAL(*wcp) || find_special_key_in_table((int)*wcp) >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7640 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7641 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7642 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7644
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7645 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7646 * Return TRUE if "x" is present in 'shortmess' option, or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7647 * 'shortmess' contains 'a' and "x" is present in SHM_A.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7648 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7649 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7650 shortmess(int x)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7651 {
3384
da670fb71d30 updated for version 7.3.458
Bram Moolenaar <bram@vim.org>
parents: 3359
diff changeset
7652 return p_shm != NULL &&
da670fb71d30 updated for version 7.3.458
Bram Moolenaar <bram@vim.org>
parents: 3359
diff changeset
7653 ( vim_strchr(p_shm, x) != NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7654 || (vim_strchr(p_shm, 'a') != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7655 && vim_strchr((char_u *)SHM_A, x) != NULL));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7656 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7658 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7659 * paste_option_changed() - Called after p_paste was set or reset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7660 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7661 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7662 paste_option_changed(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7663 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7664 static int old_p_paste = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7665 static int save_sm = 0;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7666 static int save_sta = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7667 static int save_ru = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7668 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7669 static int save_ri = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7670 static int save_hkmap = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7671 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7672 buf_T *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7673
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7674 if (p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7675 {
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7676 // Paste switched from off to on.
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7677 // Save the current values, so they can be restored later.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7678 if (!old_p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7679 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7680 // save options for each buffer
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7681 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7682 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7683 buf->b_p_tw_nopaste = buf->b_p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7684 buf->b_p_wm_nopaste = buf->b_p_wm;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7685 buf->b_p_sts_nopaste = buf->b_p_sts;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7686 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
7687 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
7688 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7689 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
7690 vim_free(buf->b_p_vsts_nopaste);
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7691 buf->b_p_vsts_nopaste =
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7692 buf->b_p_vsts && buf->b_p_vsts != empty_option
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7693 ? vim_strsave(buf->b_p_vsts) : NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7694 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7695 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7696
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7697 // save global options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7698 save_sm = p_sm;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7699 save_sta = p_sta;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7700 save_ru = p_ru;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7701 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7702 save_ri = p_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7703 save_hkmap = p_hkmap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7704 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7705 // 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
7706 p_ai_nopaste = p_ai;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7707 p_et_nopaste = p_et;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7708 p_sts_nopaste = p_sts;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7709 p_tw_nopaste = p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7710 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
7711 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7712 if (p_vsts_nopaste)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7713 vim_free(p_vsts_nopaste);
31174
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7714 p_vsts_nopaste = p_vsts && p_vsts != empty_option
1d00fa720007 patch 9.0.0921: missing defined(PROTO) in #ifdef
Bram Moolenaar <Bram@vim.org>
parents: 31000
diff changeset
7715 ? vim_strsave(p_vsts) : NULL;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7716 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7717 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7718
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7719 // Always set the option values, also when 'paste' is set when it is
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7720 // already on. Set options for each buffer.
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7721 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7722 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7723 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
7724 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
7725 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
7726 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
7727 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
7728 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7729 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
7730 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
7731 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
7732 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
7733 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7735
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7736 // set global options
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7737 p_sm = 0; // no showmatch
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7738 p_sta = 0; // no smarttab
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7739 if (p_ru)
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7740 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
7741 p_ru = 0; // no ruler
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7742 #ifdef FEAT_RIGHTLEFT
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7743 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
7744 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
7745 #endif
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7746 // set global values for local buffer options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7747 p_tw = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7748 p_wm = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7749 p_sts = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7750 p_ai = 0;
14175
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7751 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7752 if (p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7753 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
7754 p_vsts = empty_option;
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7755 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7756 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7757
32076
32acf287a9ae patch 9.0.1369: still some "else if" constructs for setting options
Bram Moolenaar <Bram@vim.org>
parents: 32043
diff changeset
7758 // Paste switched from on to off: Restore saved values.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7759 else if (old_p_paste)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7760 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7761 // restore options for each buffer
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9536
diff changeset
7762 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7763 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7764 buf->b_p_tw = buf->b_p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7765 buf->b_p_wm = buf->b_p_wm_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7766 buf->b_p_sts = buf->b_p_sts_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7767 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
7768 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
7769 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7770 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
7771 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
7772 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
7773 ? 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
7774 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
7775 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
7776 (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
7777 else
27434
c1702fd7e716 patch 8.2.4245: ":retab 0" may cause illegal memory access
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
7778 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
7779 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7780 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7781
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7782 // restore global options
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7783 p_sm = save_sm;
7113
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7784 p_sta = save_sta;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7785 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
7786 status_redraw_all(); // redraw to draw the ruler
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7787 p_ru = save_ru;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7788 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7789 p_ri = save_ri;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7790 p_hkmap = save_hkmap;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7791 #endif
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7792 // 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
7793 p_ai = p_ai_nopaste;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7794 p_et = p_et_nopaste;
83b3261352b3 commit https://github.com/vim/vim/commit/54f018cd5994c3ffcd0740526e56db6934edf1f2
Christian Brabandt <cb@256bit.org>
parents: 7058
diff changeset
7795 p_sts = p_sts_nopaste;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7796 p_tw = p_tw_nopaste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7797 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
7798 #ifdef FEAT_VARTABS
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7799 if (p_vsts)
2ad722003b36 patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents: 14099
diff changeset
7800 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
7801 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
7802 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7803 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7804
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7805 old_p_paste = p_paste;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7806 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7807
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7808 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7809 * vimrc_found() - Called when a ".vimrc" or "VIMINIT" has been found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7810 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7811 * Reset 'compatible' and set the values for options that didn't get set yet
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7812 * to the Vim defaults.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7813 * Don't do this if the 'compatible' option has been set or reset before.
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7814 * When "fname" is not NULL, use it to set $"envname" when it wasn't set yet.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7815 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7816 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7817 vimrc_found(char_u *fname, char_u *envname)
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7818 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7819 int opt_idx;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
7820 int dofree = FALSE;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7821 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7822
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7823 if (!option_was_set((char_u *)"cp"))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7824 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7825 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
7826 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7827 if (!(options[opt_idx].flags & (P_WAS_SET|P_VI_DEF)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7828 set_option_default(opt_idx, OPT_FREE, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7829 didset_options();
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
7830 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7831 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7832
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7833 if (fname != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7834 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7835 p = vim_getenv(envname, &dofree);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7836 if (p == NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7837 {
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7838 // Set $MYVIMRC to the first vimrc file found.
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7839 p = FullName_save(fname, FALSE);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7840 if (p != NULL)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7841 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7842 vim_setenv(envname, p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7843 vim_free(p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7844 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7845 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7846 else if (dofree)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7847 vim_free(p);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 818
diff changeset
7848 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7849 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7850
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7851 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7852 * Set 'compatible' on or off. Called for "-C" and "-N" command line arg.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7853 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7854 void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7855 change_compatible(int on)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7856 {
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7857 int opt_idx;
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7858
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7859 if (p_cp != on)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7860 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7861 p_cp = on;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7862 compatible_set();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7863 }
838
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7864 opt_idx = findoption((char_u *)"cp");
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7865 if (opt_idx >= 0)
8e5830943bff updated for version 7.0e04
vimboss
parents: 836
diff changeset
7866 options[opt_idx].flags |= P_WAS_SET;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7867 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7868
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7869 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7870 * 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
7871 * Only works correctly for global options.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7872 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7873 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7874 option_was_set(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7875 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7876 int idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7877
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7878 idx = findoption(name);
18808
7982f65d8f54 patch 8.1.2392: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18679
diff changeset
7879 if (idx < 0) // unknown option
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7880 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7881 if (options[idx].flags & P_WAS_SET)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7882 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7883 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7884 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7885
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7886 /*
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7887 * Reset the flag indicating option "name" was set.
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7888 */
14748
00da090af0ab patch 8.1.0386: cannot test with non-default option value
Christian Brabandt <cb@256bit.org>
parents: 14702
diff changeset
7889 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7890 reset_option_was_set(char_u *name)
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7891 {
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7892 int idx = findoption(name);
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7893
31752
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
7894 if (idx < 0)
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
7895 return FAIL;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
7896
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
7897 options[idx].flags &= ~P_WAS_SET;
3365a601e73b patch 9.0.1208: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31313
diff changeset
7898 return OK;
3980
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7899 }
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7900
aab4b29520e7 updated for version 7.3.745
Bram Moolenaar <bram@vim.org>
parents: 3894
diff changeset
7901 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7902 * compatible_set() - Called when 'compatible' has been set or unset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7903 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7904 * When 'compatible' set: Set all relevant options (those that have the P_VIM)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7905 * flag) to a Vi compatible value.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7906 * When 'compatible' is unset: Set all options that have a different default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7907 * for Vim (without the P_VI_DEF flag) to that default.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7908 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7909 static void
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7910 compatible_set(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7911 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7912 int opt_idx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7913
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
7914 for (opt_idx = 0; !istermoption_idx(opt_idx); opt_idx++)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7915 if ( ((options[opt_idx].flags & P_VIM) && p_cp)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7916 || (!(options[opt_idx].flags & P_VI_DEF) && !p_cp))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7917 set_option_default(opt_idx, OPT_FREE, p_cp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7918 didset_options();
7040
17a3fa77e941 commit https://github.com/vim/vim/commit/e68c25c677167bb90ac5ec77038e340c730b6567
Christian Brabandt <cb@256bit.org>
parents: 7034
diff changeset
7919 didset_options2();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7920 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7921
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
7922 #if defined(FEAT_LINEBREAK) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7923
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7924 /*
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7925 * Called when the 'breakat' option changes value.
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7926 */
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7927 char *
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7928 did_set_breakat(optset_T *args UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7929 {
500
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
7930 char_u *p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7931 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7932
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7933 for (i = 0; i < 256; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7934 breakat_flags[i] = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7935
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7936 if (p_breakat != NULL)
500
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
7937 for (p = p_breakat; *p; p++)
4772a5e3f9fa updated for version 7.0138
vimboss
parents: 484
diff changeset
7938 breakat_flags[*p] = TRUE;
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7939
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31962
diff changeset
7940 return NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7941 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7942 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7943
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7944 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7945 * Check if backspacing over something is allowed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7946 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7947 int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7948 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
7949 int what) // BS_INDENT, BS_EOL, BS_START or BS_NOSTOP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7950 {
14029
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
7951 #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
7952 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
7953 return FALSE;
d9fc15c833d5 patch 8.1.0032: BS in prompt buffer starts new line
Christian Brabandt <cb@256bit.org>
parents: 14019
diff changeset
7954 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7955 switch (*p_bs)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7956 {
20069
9a67d41708d2 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
7957 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
7958 case '2': return (what != BS_NOSTOP);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7959 case '1': return (what != BS_START);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7960 case '0': return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7961 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7962 return vim_strchr(p_bs, what) != NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7963 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7964
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7965 /*
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7966 * 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
7967 * 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
7968 */
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7969 long
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7970 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
7971 {
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7972 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
7973 }
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7974
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7975 /*
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7976 * 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
7977 * 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
7978 */
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7979 long
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7980 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
7981 {
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7982 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
7983 }
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7984
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15701
diff changeset
7985 /*
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7986 * Get the local or global value of 'backupcopy'.
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7987 */
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7988 unsigned int
7829
2a8d6b2dd925 commit https://github.com/vim/vim/commit/9b57814db13c29ecb08260b36923c0e1c8a373a9
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
7989 get_bkc_value(buf_T *buf)
6243
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7990 {
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7991 return buf->b_bkc_flags ? buf->b_bkc_flags : bkc_flags;
54194bd6ed60 updated for version 7.4.456
Bram Moolenaar <bram@vim.org>
parents: 6205
diff changeset
7992 }
9852
4eea48b76d03 commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents: 9798
diff changeset
7993
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
7994 #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
7995 /*
27128
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7996 * 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
7997 */
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7998 char_u *
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
7999 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
8000 {
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8001 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
8002 return p_flp;
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8003 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
8004 }
28405
473cfd79bcd8 patch 8.2.4727: unused code
Bram Moolenaar <Bram@vim.org>
parents: 28357
diff changeset
8005 #endif
27128
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8006
164d59ddd48a patch 8.2.4093: cached breakindent values not initialized properly
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
8007 /*
25380
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8008 * 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
8009 */
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8010 unsigned int
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8011 get_ve_flags(void)
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8012 {
25487
c26ff3203b43 patch 8.2.3280: 'virtualedit' local to buffer is not the best solution
Bram Moolenaar <Bram@vim.org>
parents: 25419
diff changeset
8013 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
8014 & ~(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
8015 }
ac88cd21ae88 patch 8.2.3227: 'virtualedit' can only be set globally
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
8016
18574
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8017 #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
8018 /*
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8019 * 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
8020 */
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8021 char_u *
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8022 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
8023 {
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8024 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
8025 return p_sbr;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8026 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
8027 return empty_option;
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8028 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
8029 }
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8030 #endif
8b0114ffde2b patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents: 18498
diff changeset
8031
9858
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8032 #if defined(FEAT_EVAL) || defined(PROTO)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8033 /*
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8034 * Get window or buffer local options.
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8035 */
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8036 dict_T *
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8037 get_winbuf_options(int bufopt)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8038 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8039 dict_T *d;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8040 int opt_idx;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8041
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8042 d = dict_alloc();
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8043 if (d == NULL)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8044 return NULL;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8045
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8046 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
8047 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8048 struct vimoption *opt = &options[opt_idx];
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8049
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8050 if ((bufopt && (opt->indir & PV_BUF))
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8051 || (!bufopt && (opt->indir & PV_WIN)))
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8052 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8053 char_u *varp = get_varp(opt);
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8054
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8055 if (varp != NULL)
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8056 {
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8057 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
8058 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
8059 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
8060 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
8061 else
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14243
diff changeset
8062 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
8063 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8064 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8065 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8066
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8067 return d;
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8068 }
3e96d9ed2ca1 commit https://github.com/vim/vim/commit/b5ae48e9ffd3b8eb6ca4057de11f1bddcde8ce6f
Christian Brabandt <cb@256bit.org>
parents: 9854
diff changeset
8069 #endif
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8070
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8071 #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
8072 /*
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8073 * 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
8074 */
18100
df5778d73320 patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 18068
diff changeset
8075 int
18068
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8076 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
8077 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8078 char_u *p;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8079 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
8080
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8081 if (val == NULL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8082 p = wp->w_p_culopt;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8083 else
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8084 p = val;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8085 while (*p != NUL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8086 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8087 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
8088 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8089 p += 4;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8090 culopt_flags_new |= CULOPT_LINE;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8091 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8092 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
8093 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8094 p += 4;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8095 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
8096 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8097 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
8098 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8099 p += 6;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8100 culopt_flags_new |= CULOPT_NBR;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8101 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8102 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
8103 {
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8104 p += 10;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8105 culopt_flags_new |= CULOPT_SCRLINE;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8106 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8107
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8108 if (*p != ',' && *p != NUL)
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8109 return FAIL;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8110 if (*p == ',')
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8111 ++p;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8112 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8113
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8114 // 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
8115 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
8116 return FAIL;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8117 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
8118
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8119 return OK;
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8120 }
1101eacc1444 patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents: 18054
diff changeset
8121 #endif
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8122
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8123 /*
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8124 * 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
8125 */
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8126 int
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8127 magic_isset(void)
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8128 {
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8129 switch (magic_overruled)
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8130 {
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23467
diff changeset
8131 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
8132 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
8133 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
8134 }
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8135 #ifdef FEAT_EVAL
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8136 if (in_vim9script())
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8137 return TRUE;
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8138 #endif
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8139 return p_magic;
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
8140 }
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8141
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8142 /*
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8143 * 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
8144 * 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
8145 * 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
8146 * returns FAIL.
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8147 */
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8148 int
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8149 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
8150 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8151 #ifdef FEAT_EVAL
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8152 typval_T *tv;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8153 callback_T cb;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8154
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8155 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
8156 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8157 free_callback(optcb);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8158 return OK;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8159 }
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8160
26362
dbe615b75f15 patch 8.2.3712: cannot use Vim9 lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
8161 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
8162 || (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
8163 || (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
8164 // 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
8165 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
8166 else
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8167 // 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
8168 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
8169 if (tv == NULL)
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8170 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8171
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8172 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
8173 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
8174 {
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8175 free_tv(tv);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8176 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8177 }
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8178
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8179 free_callback(optcb);
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8180 set_callback(optcb, &cb);
31313
b6bef244837e patch 9.0.0990: callback name argument is changed by setqflist()
Bram Moolenaar <Bram@vim.org>
parents: 31259
diff changeset
8181 if (cb.cb_free_name)
b6bef244837e patch 9.0.0990: callback name argument is changed by setqflist()
Bram Moolenaar <Bram@vim.org>
parents: 31259
diff changeset
8182 vim_free(cb.cb_name);
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8183 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
8184
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8185 // 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
8186 // "import#funcname".
53edd190a607 patch 8.2.4171: cannot invoke option function using autoload import
Bram Moolenaar <Bram@vim.org>
parents: 27142
diff changeset
8187 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
8188
26175
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8189 return OK;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8190 #else
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8191 return FAIL;
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8192 #endif
6b4f017d7005 patch 8.2.3619: cannot use a lambda for 'operatorfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25990
diff changeset
8193 }