Mercurial > vim
annotate src/optiondefs.h @ 32051:e8c60d35fce3 v9.0.1357
patch 9.0.1357: using null_object results in an internal error
Commit: https://github.com/vim/vim/commit/c4e1b86cb0d88fa5ec1141d3c600e026dcc1bc21
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 26 18:58:23 2023 +0000
patch 9.0.1357: using null_object results in an internal error
Problem: Using null_object results in an internal error. (Ernie Rael)
Solution: Add instructions for pushing an object and class. (closes https://github.com/vim/vim/issues/12044)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 26 Feb 2023 20:00:03 +0100 |
parents | 6095218c9056 |
children | 8a3f659c7b5e |
rev | line source |
---|---|
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 * |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 * VIM - Vi IMproved by Bram Moolenaar |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 * |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 * Do ":help uganda" in Vim to read copying and usage conditions. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 * Do ":help credits" in Vim to see a list of people who contributed. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 */ |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 /* |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 * optiondefs.h: option definitions |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 */ |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 // The options that are local to a window or buffer have "indir" set to one of |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 // these values. Special values: |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 // PV_NONE: global option. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 // PV_WIN is added: window-local option |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 // PV_BUF is added: buffer-local option |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 // PV_BOTH is added: global option which also has a local value. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 #define PV_BOTH 0x1000 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 #define PV_WIN 0x2000 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 #define PV_BUF 0x4000 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 #define PV_MASK 0x0fff |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 #define OPT_WIN(x) (idopt_T)(PV_WIN + (int)(x)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 #define OPT_BUF(x) (idopt_T)(PV_BUF + (int)(x)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 #define OPT_BOTH(x) (idopt_T)(PV_BOTH + (int)(x)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 // Definition of the PV_ values for buffer-local options. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 // The BV_ values are defined in option.h. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 #define PV_AI OPT_BUF(BV_AI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 #define PV_AR OPT_BOTH(OPT_BUF(BV_AR)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 #define PV_BKC OPT_BOTH(OPT_BUF(BV_BKC)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 #define PV_BH OPT_BUF(BV_BH) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 #define PV_BT OPT_BUF(BV_BT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 #ifdef FEAT_QUICKFIX |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 # define PV_EFM OPT_BOTH(OPT_BUF(BV_EFM)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
36 # define PV_GP OPT_BOTH(OPT_BUF(BV_GP)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
37 # define PV_MP OPT_BOTH(OPT_BUF(BV_MP)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
38 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
39 #define PV_BIN OPT_BUF(BV_BIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
40 #define PV_BL OPT_BUF(BV_BL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
41 #define PV_BOMB OPT_BUF(BV_BOMB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
42 #define PV_CI OPT_BUF(BV_CI) |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
43 #define PV_CIN OPT_BUF(BV_CIN) |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
44 #define PV_CINK OPT_BUF(BV_CINK) |
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
45 #define PV_CINO OPT_BUF(BV_CINO) |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
46 #define PV_CINSD OPT_BUF(BV_CINSD) |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
47 #define PV_CINW OPT_BUF(BV_CINW) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
48 #define PV_CM OPT_BOTH(OPT_BUF(BV_CM)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
49 #ifdef FEAT_FOLDING |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
50 # define PV_CMS OPT_BUF(BV_CMS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
51 #endif |
18203
e0ec4cd7a865
patch 8.1.2096: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
18100
diff
changeset
|
52 #define PV_COM OPT_BUF(BV_COM) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
53 #define PV_CPT OPT_BUF(BV_CPT) |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
54 #define PV_DICT OPT_BOTH(OPT_BUF(BV_DICT)) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
55 #define PV_TSR OPT_BOTH(OPT_BUF(BV_TSR)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
56 #define PV_CSL OPT_BUF(BV_CSL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
57 #ifdef FEAT_COMPL_FUNC |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
58 # define PV_CFU OPT_BUF(BV_CFU) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
59 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
60 #ifdef FEAT_FIND_ID |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
61 # define PV_DEF OPT_BOTH(OPT_BUF(BV_DEF)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
62 # define PV_INC OPT_BOTH(OPT_BUF(BV_INC)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
63 #endif |
30962 | 64 #define PV_EOF OPT_BUF(BV_EOF) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
65 #define PV_EOL OPT_BUF(BV_EOL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
66 #define PV_FIXEOL OPT_BUF(BV_FIXEOL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
67 #define PV_EP OPT_BOTH(OPT_BUF(BV_EP)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
68 #define PV_ET OPT_BUF(BV_ET) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
69 #define PV_FENC OPT_BUF(BV_FENC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
70 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
71 # define PV_BEXPR OPT_BOTH(OPT_BUF(BV_BEXPR)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
72 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
73 #define PV_FP OPT_BOTH(OPT_BUF(BV_FP)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
74 #ifdef FEAT_EVAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
75 # define PV_FEX OPT_BUF(BV_FEX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
76 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
77 #define PV_FF OPT_BUF(BV_FF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
78 #define PV_FLP OPT_BUF(BV_FLP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
79 #define PV_FO OPT_BUF(BV_FO) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
80 #define PV_FT OPT_BUF(BV_FT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
81 #define PV_IMI OPT_BUF(BV_IMI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
82 #define PV_IMS OPT_BUF(BV_IMS) |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
83 #if defined(FEAT_EVAL) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
84 # define PV_INDE OPT_BUF(BV_INDE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
85 # define PV_INDK OPT_BUF(BV_INDK) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
86 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
87 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
88 # define PV_INEX OPT_BUF(BV_INEX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
89 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
90 #define PV_INF OPT_BUF(BV_INF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
91 #define PV_ISK OPT_BUF(BV_ISK) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
92 #ifdef FEAT_CRYPT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
93 # define PV_KEY OPT_BUF(BV_KEY) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
94 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
95 #ifdef FEAT_KEYMAP |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
96 # define PV_KMAP OPT_BUF(BV_KMAP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
97 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
98 #define PV_KP OPT_BOTH(OPT_BUF(BV_KP)) |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
99 #define PV_LISP OPT_BUF(BV_LISP) |
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
100 #define PV_LOP OPT_BUF(BV_LOP) |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
101 #define PV_LW OPT_BOTH(OPT_BUF(BV_LW)) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
102 #define PV_MENC OPT_BOTH(OPT_BUF(BV_MENC)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
103 #define PV_MA OPT_BUF(BV_MA) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
104 #define PV_ML OPT_BUF(BV_ML) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
105 #define PV_MOD OPT_BUF(BV_MOD) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
106 #define PV_MPS OPT_BUF(BV_MPS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
107 #define PV_NF OPT_BUF(BV_NF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
108 #ifdef FEAT_COMPL_FUNC |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
109 # define PV_OFU OPT_BUF(BV_OFU) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
110 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
111 #define PV_PATH OPT_BOTH(OPT_BUF(BV_PATH)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
112 #define PV_PI OPT_BUF(BV_PI) |
29765
bc6cf208b1b4
patch 9.0.0222: no good reason why text objects are only in larger builds
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
113 #define PV_QE OPT_BUF(BV_QE) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
114 #define PV_RO OPT_BUF(BV_RO) |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
115 #define PV_SI OPT_BUF(BV_SI) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
116 #define PV_SN OPT_BUF(BV_SN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
117 #ifdef FEAT_SYN_HL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
118 # define PV_SMC OPT_BUF(BV_SMC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
119 # define PV_SYN OPT_BUF(BV_SYN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
120 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
121 #ifdef FEAT_SPELL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
122 # define PV_SPC OPT_BUF(BV_SPC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
123 # define PV_SPF OPT_BUF(BV_SPF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
124 # define PV_SPL OPT_BUF(BV_SPL) |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
125 # define PV_SPO OPT_BUF(BV_SPO) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
126 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
127 #define PV_STS OPT_BUF(BV_STS) |
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
|
128 #define PV_SUA OPT_BUF(BV_SUA) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
129 #define PV_SW OPT_BUF(BV_SW) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
130 #define PV_SWF OPT_BUF(BV_SWF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
131 #ifdef FEAT_EVAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
132 # define PV_TFU OPT_BUF(BV_TFU) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
133 #endif |
25974
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
134 #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:
25982
diff
changeset
|
135 # define PV_TSRFU OPT_BOTH(OPT_BUF(BV_TSRFU)) |
25974
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
136 #endif |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
137 #define PV_TAGS OPT_BOTH(OPT_BUF(BV_TAGS)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
138 #define PV_TC OPT_BOTH(OPT_BUF(BV_TC)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
139 #define PV_TS OPT_BUF(BV_TS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
140 #define PV_TW OPT_BUF(BV_TW) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
141 #define PV_TX OPT_BUF(BV_TX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
142 #ifdef FEAT_PERSISTENT_UNDO |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
143 # define PV_UDF OPT_BUF(BV_UDF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
144 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
145 #define PV_WM OPT_BUF(BV_WM) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
146 #ifdef FEAT_VARTABS |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
147 # define PV_VSTS OPT_BUF(BV_VSTS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
148 # define PV_VTS OPT_BUF(BV_VTS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
149 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
150 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
151 // Definition of the PV_ values for window-local options. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
152 // The WV_ values are defined in option.h. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
153 #define PV_LIST OPT_WIN(WV_LIST) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
154 #ifdef FEAT_ARABIC |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
155 # define PV_ARAB OPT_WIN(WV_ARAB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
156 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
157 #ifdef FEAT_LINEBREAK |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
158 # define PV_BRI OPT_WIN(WV_BRI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
159 # define PV_BRIOPT OPT_WIN(WV_BRIOPT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
160 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
161 # define PV_WCR OPT_WIN(WV_WCR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
162 #ifdef FEAT_DIFF |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
163 # define PV_DIFF OPT_WIN(WV_DIFF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
164 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
165 #ifdef FEAT_FOLDING |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
166 # define PV_FDC OPT_WIN(WV_FDC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
167 # define PV_FEN OPT_WIN(WV_FEN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
168 # define PV_FDI OPT_WIN(WV_FDI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
169 # define PV_FDL OPT_WIN(WV_FDL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
170 # define PV_FDM OPT_WIN(WV_FDM) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
171 # define PV_FML OPT_WIN(WV_FML) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
172 # define PV_FDN OPT_WIN(WV_FDN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
173 # ifdef FEAT_EVAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
174 # define PV_FDE OPT_WIN(WV_FDE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
175 # define PV_FDT OPT_WIN(WV_FDT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
176 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
177 # define PV_FMR OPT_WIN(WV_FMR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
178 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
179 #ifdef FEAT_LINEBREAK |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
180 # define PV_LBR OPT_WIN(WV_LBR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
181 #endif |
23952
44be09b25619
patch 8.2.2518: 'listchars' should be window-local
Bram Moolenaar <Bram@vim.org>
parents:
23932
diff
changeset
|
182 #define PV_LCS OPT_BOTH(OPT_WIN(WV_LCS)) |
29387
9dce192d1ac2
patch 9.0.0036: 'fillchars' cannot have window-local values
Bram Moolenaar <Bram@vim.org>
parents:
29328
diff
changeset
|
183 #define PV_FCS OPT_BOTH(OPT_WIN(WV_FCS)) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
184 #define PV_NU OPT_WIN(WV_NU) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
185 #define PV_RNU OPT_WIN(WV_RNU) |
27130
daac3cf65d7e
patch 8.2.4094: 'virtualedit' is window-local but using buffer-local enum
Bram Moolenaar <Bram@vim.org>
parents:
26670
diff
changeset
|
186 #define PV_VE OPT_BOTH(OPT_WIN(WV_VE)) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
187 #ifdef FEAT_LINEBREAK |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
188 # define PV_NUW OPT_WIN(WV_NUW) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
189 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
190 #if defined(FEAT_QUICKFIX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
191 # define PV_PVW OPT_WIN(WV_PVW) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
192 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
193 #ifdef FEAT_RIGHTLEFT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
194 # define PV_RL OPT_WIN(WV_RL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
195 # define PV_RLC OPT_WIN(WV_RLC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
196 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
197 #define PV_SCBIND OPT_WIN(WV_SCBIND) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
198 #define PV_SCROLL OPT_WIN(WV_SCROLL) |
30610
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
199 #define PV_SMS OPT_WIN(WV_SMS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
200 #define PV_SISO OPT_BOTH(OPT_WIN(WV_SISO)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
201 #define PV_SO OPT_BOTH(OPT_WIN(WV_SO)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
202 #ifdef FEAT_SPELL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
203 # define PV_SPELL OPT_WIN(WV_SPELL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
204 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
205 #ifdef FEAT_SYN_HL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
206 # define PV_CUC OPT_WIN(WV_CUC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
207 # define PV_CUL OPT_WIN(WV_CUL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
208 # define PV_CULOPT OPT_WIN(WV_CULOPT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
209 # define PV_CC OPT_WIN(WV_CC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
210 #endif |
18574
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18526
diff
changeset
|
211 #ifdef FEAT_LINEBREAK |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18526
diff
changeset
|
212 # define PV_SBR OPT_BOTH(OPT_WIN(WV_SBR)) |
8b0114ffde2b
patch 8.1.2281: 'showbreak' cannot be set for one window
Bram Moolenaar <Bram@vim.org>
parents:
18526
diff
changeset
|
213 #endif |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
214 #ifdef FEAT_STL_OPT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
215 # define PV_STL OPT_BOTH(OPT_WIN(WV_STL)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
216 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
217 #define PV_UL OPT_BOTH(OPT_BUF(BV_UL)) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
218 # define PV_WFH OPT_WIN(WV_WFH) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
219 # define PV_WFW OPT_WIN(WV_WFW) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
220 #define PV_WRAP OPT_WIN(WV_WRAP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
221 #define PV_CRBIND OPT_WIN(WV_CRBIND) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
222 #ifdef FEAT_CONCEAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
223 # define PV_COCU OPT_WIN(WV_COCU) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
224 # define PV_COLE OPT_WIN(WV_COLE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
225 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
226 #ifdef FEAT_TERMINAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
227 # define PV_TWK OPT_WIN(WV_TWK) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
228 # define PV_TWS OPT_WIN(WV_TWS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
229 # define PV_TWSL OPT_BUF(BV_TWSL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
230 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
231 #ifdef FEAT_SIGNS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
232 # define PV_SCL OPT_WIN(WV_SCL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
233 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
234 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
235 // WV_ and BV_ values get typecasted to this for the "indir" field |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
236 typedef enum |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
237 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
238 PV_NONE = 0, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
239 PV_MAXVAL = 0xffff // to avoid warnings for value out of range |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
240 } idopt_T; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
241 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
242 // Options local to a window have a value local to a buffer and global to all |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
243 // buffers. Indicate this by setting "var" to VAR_WIN. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
244 #define VAR_WIN ((char_u *)-1) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
245 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
246 // Saved values for when 'bin' is set. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
247 static int p_et_nobin; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
248 static int p_ml_nobin; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
249 static long p_tw_nobin; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
250 static long p_wm_nobin; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
251 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
252 // Saved values for when 'paste' is set |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
253 static int p_ai_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
254 static int p_et_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
255 static long p_sts_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
256 static long p_tw_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
257 static long p_wm_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
258 #ifdef FEAT_VARTABS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
259 static char_u *p_vsts_nopaste; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
260 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
261 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
262 struct vimoption |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
263 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
264 char *fullname; // full option name |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
265 char *shortname; // permissible abbreviation |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
266 long_u flags; // see in option.h |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
267 char_u *var; // global option: pointer to variable; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
268 // window-local option: VAR_WIN; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
269 // buffer-local option: global value |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
270 idopt_T indir; // global option: PV_NONE; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
271 // local option: indirect option index |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
272 // callback function to invoke after an option is modified to validate and |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
273 // apply the 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:
31804
diff
changeset
|
274 opt_did_set_cb_T opt_did_set_cb; |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
275 char_u *def_val[2]; // default values for variable (vi and vim) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
276 #ifdef FEAT_EVAL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
277 sctx_T script_ctx; // script context where the option was last set |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
278 # define SCTX_INIT , {0, 0, 0, 1} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
279 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
280 # define SCTX_INIT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
281 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
282 }; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
283 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
284 #define VI_DEFAULT 0 // def_val[VI_DEFAULT] is Vi default value |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
285 #define VIM_DEFAULT 1 // def_val[VIM_DEFAULT] is Vim default value |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
286 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
287 #define ISK_LATIN1 (char_u *)"@,48-57,_,192-255" |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
288 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
289 // 'isprint' for latin1 is also used for MS-Windows cp1252, where 0x80 is used |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
290 // for the currency sign. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
291 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
292 # define ISP_LATIN1 (char_u *)"@,~-255" |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
293 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
294 # define ISP_LATIN1 (char_u *)"@,161-255" |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
295 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
296 |
28399
d395fadbaf67
patch 8.2.4724: current instance of last search pattern not easily spotted
Bram Moolenaar <Bram@vim.org>
parents:
28353
diff
changeset
|
297 # define HIGHLIGHT_INIT "8:SpecialKey,~:EndOfBuffer,@:NonText,d:Directory,e:ErrorMsg,i:IncSearch,l:Search,y:CurSearch,m:MoreMsg,M:ModeMsg,n:LineNr,a:LineNrAbove,b:LineNrBelow,N:CursorLineNr,G:CursorLineSign,O:CursorLineFold,r:Question,s:StatusLine,S:StatusLineNC,c:VertSplit,t:Title,v:Visual,V:VisualNOS,w:WarningMsg,W:WildMenu,f:Folded,F:FoldColumn,A:DiffAdd,C:DiffChange,D:DiffDelete,T:DiffText,>:SignColumn,-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel,x:PmenuSbar,X:PmenuThumb,*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine,o:ColorColumn,q:QuickFixLine,z:StatusLineTerm,Z:StatusLineTermNC" |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
298 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
299 // Default python version for pyx* commands |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
300 #if defined(FEAT_PYTHON) && defined(FEAT_PYTHON3) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
301 # define DEFAULT_PYTHON_VER 0 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
302 #elif defined(FEAT_PYTHON3) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
303 # define DEFAULT_PYTHON_VER 3 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
304 #elif defined(FEAT_PYTHON) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
305 # define DEFAULT_PYTHON_VER 2 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
306 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
307 # define DEFAULT_PYTHON_VER 0 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
308 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
309 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
310 // used for 'cinkeys' and 'indentkeys' |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
311 #define INDENTKEYS_DEFAULT (char_u *)"0{,0},0),0],:,0#,!^F,o,O,e" |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
312 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
313 // options[] is initialized here. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
314 // The order of the options MUST be alphabetic for ":set all" and findoption(). |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
315 // All option names MUST start with a lowercase letter (for findoption()). |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
316 // Exception: "t_" options are at the end. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
317 // The options with a NULL variable are 'hidden': a set command for them is |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
318 // ignored and they are not printed. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
319 static struct vimoption options[] = |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
320 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
321 {"aleph", "al", P_NUM|P_VI_DEF|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
322 #ifdef FEAT_RIGHTLEFT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
323 (char_u *)&p_aleph, PV_NONE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
324 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
325 (char_u *)NULL, PV_NONE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
326 #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:
31804
diff
changeset
|
327 NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
328 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
329 #if defined(MSWIN) && !defined(FEAT_GUI_MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
330 (char_u *)128L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
331 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
332 (char_u *)224L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
333 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
334 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
335 {"antialias", "anti", P_BOOL|P_VI_DEF|P_VIM|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
336 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
337 {(char_u *)FALSE, (char_u *)FALSE} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
338 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
339 {"arabic", "arab", P_BOOL|P_VI_DEF|P_VIM|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
340 #ifdef FEAT_ARABIC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
341 (char_u *)VAR_WIN, PV_ARAB, did_set_arabic, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
342 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
343 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
344 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
345 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
346 {"arabicshape", "arshape", P_BOOL|P_VI_DEF|P_VIM|P_RCLR, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
347 #ifdef FEAT_ARABIC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
348 (char_u *)&p_arshape, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
349 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
350 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
351 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
352 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
353 {"allowrevins", "ari", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
354 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
355 (char_u *)&p_ari, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
356 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
357 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
358 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
359 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
360 {"altkeymap", "akm", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
361 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
362 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
363 {"ambiwidth", "ambw", P_STRING|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
364 (char_u *)&p_ambw, PV_NONE, did_set_ambiwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
365 {(char_u *)"single", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
366 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
367 {"autochdir", "acd", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
368 #ifdef FEAT_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:
31804
diff
changeset
|
369 (char_u *)&p_acd, PV_NONE, did_set_autochdir, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
370 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
371 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
372 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
373 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
374 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
375 SCTX_INIT}, |
24268
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
376 {"autoshelldir", "asd", P_BOOL|P_VI_DEF, |
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
377 #ifdef FEAT_AUTOSHELLDIR |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
378 (char_u *)&p_asd, PV_NONE, NULL, |
24268
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
379 {(char_u *)FALSE, (char_u *)0L} |
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
380 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
381 (char_u *)NULL, PV_NONE, NULL, |
24268
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
382 {(char_u *)0L, (char_u *)0L} |
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
383 #endif |
9257f3980f4a
patch 8.2.2675: directory change in a terminal window shell is not followed
Bram Moolenaar <Bram@vim.org>
parents:
23952
diff
changeset
|
384 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
385 {"autoindent", "ai", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
386 (char_u *)&p_ai, PV_AI, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
387 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
388 {"autoprint", "ap", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
389 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
390 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
391 {"autoread", "ar", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
392 (char_u *)&p_ar, PV_AR, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
393 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
394 {"autowrite", "aw", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
395 (char_u *)&p_aw, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
396 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
397 {"autowriteall","awa", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
398 (char_u *)&p_awa, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
399 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
400 {"background", "bg", P_STRING|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
401 (char_u *)&p_bg, PV_NONE, did_set_background, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
402 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
403 #if (defined(MSWIN)) && !defined(FEAT_GUI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
404 (char_u *)"dark", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
405 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
406 (char_u *)"light", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
407 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
408 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
409 {"backspace", "bs", P_STRING|P_VI_DEF|P_VIM|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
410 (char_u *)&p_bs, PV_NONE, did_set_backspace, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
411 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
412 {"backup", "bk", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
413 (char_u *)&p_bk, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
414 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
415 {"backupcopy", "bkc", P_STRING|P_VIM|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
416 (char_u *)&p_bkc, PV_BKC, did_set_backupcopy, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
417 #ifdef UNIX |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
418 {(char_u *)"yes", (char_u *)"auto"} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
419 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
420 {(char_u *)"auto", (char_u *)"auto"} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
421 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
422 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
423 {"backupdir", "bdir", P_STRING|P_EXPAND|P_VI_DEF|P_ONECOMMA |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
424 |P_NODUP|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
425 (char_u *)&p_bdir, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
426 {(char_u *)DFLT_BDIR, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
427 {"backupext", "bex", P_STRING|P_VI_DEF|P_NFNAME, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
428 (char_u *)&p_bex, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
429 did_set_backupext_or_patchmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
430 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
431 #ifdef VMS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
432 (char_u *)"_", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
433 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
434 (char_u *)"~", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
435 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
436 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
437 {"backupskip", "bsk", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
438 (char_u *)&p_bsk, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
439 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
440 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
441 {"balloondelay","bdlay",P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
442 #ifdef FEAT_BEVAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
443 (char_u *)&p_bdlay, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
444 {(char_u *)600L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
445 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
446 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
447 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
448 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
449 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
450 {"ballooneval", "beval",P_BOOL|P_VI_DEF|P_NO_MKRC, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
451 #ifdef FEAT_BEVAL_GUI |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
452 (char_u *)&p_beval, PV_NONE, did_set_ballooneval, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
453 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
454 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
455 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
456 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
457 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
458 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
459 {"balloonevalterm", "bevalterm",P_BOOL|P_VI_DEF|P_NO_MKRC, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
460 #ifdef FEAT_BEVAL_TERM |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
461 (char_u *)&p_bevalterm, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
462 did_set_balloonevalterm, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
463 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
464 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
465 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
466 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
467 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
468 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
469 {"balloonexpr", "bexpr", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
470 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
471 (char_u *)&p_bexpr, PV_BEXPR, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
472 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
473 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
474 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
475 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
476 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
477 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
478 {"beautify", "bf", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
479 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
480 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
481 {"belloff", "bo", P_STRING|P_VI_DEF|P_COMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
482 (char_u *)&p_bo, PV_NONE, did_set_belloff, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
483 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
484 {"binary", "bin", P_BOOL|P_VI_DEF|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
485 (char_u *)&p_bin, PV_BIN, did_set_binary, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
486 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
487 {"bioskey", "biosk",P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
488 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
489 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
490 {"bomb", NULL, P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
491 (char_u *)&p_bomb, PV_BOMB, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
492 did_set_eof_eol_fixeol_bomb, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
493 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
494 {"breakat", "brk", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
495 #ifdef FEAT_LINEBREAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
496 (char_u *)&p_breakat, PV_NONE, did_set_breakat, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
497 {(char_u *)" \t!@*-+;:,./?", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
498 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
499 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
500 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
501 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
502 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
503 {"breakindent", "bri", P_BOOL|P_VI_DEF|P_VIM|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
504 #ifdef FEAT_LINEBREAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
505 (char_u *)VAR_WIN, PV_BRI, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
506 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
507 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
508 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
509 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
510 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
511 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
512 {"breakindentopt", "briopt", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
513 |P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
514 #ifdef FEAT_LINEBREAK |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
515 (char_u *)VAR_WIN, PV_BRIOPT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
516 did_set_breakindentopt, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
517 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
518 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
519 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
520 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
521 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
522 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
523 {"browsedir", "bsdir",P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
524 #ifdef FEAT_BROWSE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
525 (char_u *)&p_bsdir, PV_NONE, did_set_browsedir, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
526 {(char_u *)"last", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
527 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
528 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
529 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
530 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
531 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
532 {"bufhidden", "bh", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
533 (char_u *)&p_bh, PV_BH, did_set_bufhidden, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
534 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
535 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
536 {"buflisted", "bl", P_BOOL|P_VI_DEF|P_NOGLOB, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
537 (char_u *)&p_bl, PV_BL, did_set_buflisted, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
538 {(char_u *)1L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
539 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
540 {"buftype", "bt", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
541 (char_u *)&p_bt, PV_BT, did_set_buftype, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
542 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
543 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
544 {"casemap", "cmp", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
545 (char_u *)&p_cmp, PV_NONE, did_set_casemap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
546 {(char_u *)"internal,keepascii", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
547 SCTX_INIT}, |
26500
8088fa133b93
patch 8.2.3780: ":cd" works differently on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
548 {"cdhome", "cdh", P_BOOL|P_VI_DEF|P_VIM|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
549 (char_u *)&p_cdh, PV_NONE, NULL, |
26500
8088fa133b93
patch 8.2.3780: ":cd" works differently on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
550 {(char_u *)FALSE, (char_u *)0L} |
8088fa133b93
patch 8.2.3780: ":cd" works differently on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
26441
diff
changeset
|
551 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
552 {"cdpath", "cd", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
553 (char_u *)&p_cdpath, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
554 {(char_u *)",,", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
555 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
556 {"cedit", NULL, P_STRING, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
557 (char_u *)&p_cedit, PV_NONE, did_set_cedit, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
558 {(char_u *)"", (char_u *)CTRL_F_STR} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
559 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
560 {"charconvert", "ccv", P_STRING|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
561 #if defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
562 (char_u *)&p_ccv, PV_NONE, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
563 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
564 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
565 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
566 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
567 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
568 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
569 {"cindent", "cin", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
570 (char_u *)&p_cin, PV_CIN, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
571 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
572 {"cinkeys", "cink", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
573 (char_u *)&p_cink, PV_CINK, NULL, |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
574 {INDENTKEYS_DEFAULT, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
575 {"cinoptions", "cino", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
576 (char_u *)&p_cino, PV_CINO, did_set_cinoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
577 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
28353
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
578 {"cinscopedecls", "cinsd", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
579 (char_u *)&p_cinsd, PV_CINSD, NULL, |
28353
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
580 {(char_u *)"public,protected,private", (char_u *)0L} |
8bc8071928ed
patch 8.2.4702: C++ scope labels are hard-coded
Bram Moolenaar <Bram@vim.org>
parents:
28337
diff
changeset
|
581 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
582 {"cinwords", "cinw", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
583 (char_u *)&p_cinw, PV_CINW, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
584 {(char_u *)"if,else,while,do,for,switch", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
585 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
586 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
587 {"clipboard", "cb", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
588 #ifdef FEAT_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:
31804
diff
changeset
|
589 (char_u *)&p_cb, PV_NONE, did_set_clipboard, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
590 # ifdef FEAT_XCLIPBOARD |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
591 {(char_u *)"autoselect,exclude:cons\\|linux", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
592 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
593 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
594 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
595 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
596 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
597 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
598 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
599 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
600 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
601 {"cmdheight", "ch", P_NUM|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
602 (char_u *)&p_ch, PV_NONE, did_set_cmdheight, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
603 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
604 {"cmdwinheight", "cwh", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
605 (char_u *)&p_cwh, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
606 {(char_u *)7L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
607 {"colorcolumn", "cc", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
608 #ifdef FEAT_SYN_HL |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
609 (char_u *)VAR_WIN, PV_CC, did_set_colorcolumn, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
610 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
611 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
612 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
613 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
614 {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
615 (char_u *)&Columns, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
616 {(char_u *)80L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
617 {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
618 |P_NODUP|P_CURSWANT, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
619 (char_u *)&p_com, PV_COM, did_set_comments, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
620 {(char_u *)"s1:/*,mb:*,ex:*/,://,b:#,:%,:XCOMM,n:>,fb:-", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
621 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
622 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
623 {"commentstring", "cms", P_STRING|P_ALLOCED|P_VI_DEF|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
624 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
625 (char_u *)&p_cms, PV_CMS, did_set_commentstring, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
626 {(char_u *)"/*%s*/", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
627 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
628 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
629 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
630 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
631 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
632 // P_PRI_MKRC isn't needed here, optval_default() |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
633 // always returns TRUE for 'compatible' |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
634 {"compatible", "cp", P_BOOL|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
635 (char_u *)&p_cp, PV_NONE, did_set_compatible, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
636 {(char_u *)TRUE, (char_u *)FALSE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
637 {"complete", "cpt", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
638 (char_u *)&p_cpt, PV_CPT, did_set_complete, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
639 {(char_u *)".,w,b,u,t,i", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
640 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
641 {"concealcursor","cocu", P_STRING|P_ALLOCED|P_RWIN|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
642 #ifdef FEAT_CONCEAL |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
643 (char_u *)VAR_WIN, PV_COCU, did_set_concealcursor, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
644 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
645 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
646 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
647 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
648 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
649 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
650 {"conceallevel","cole", P_NUM|P_RWIN|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
651 #ifdef FEAT_CONCEAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
652 (char_u *)VAR_WIN, PV_COLE, did_set_conceallevel, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
653 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
654 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
655 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
656 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
657 SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
658 {"completefunc", "cfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE|P_FUNC, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
659 #ifdef FEAT_COMPL_FUNC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
660 (char_u *)&p_cfu, PV_CFU, did_set_completefunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
661 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
662 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
663 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
664 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
665 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
666 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
667 {"completeopt", "cot", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
668 (char_u *)&p_cot, PV_NONE, did_set_completeopt, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
669 {(char_u *)"menu,preview", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
670 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
671 {"completepopup", "cpp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP, |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
672 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
673 (char_u *)&p_cpp, PV_NONE, did_set_completepopup, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
674 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
675 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
676 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
677 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
678 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
679 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
680 {"completeslash", "csl", P_STRING|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
681 #if defined(BACKSLASH_IN_FILENAME) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
682 (char_u *)&p_csl, PV_CSL, did_set_completeslash, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
683 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
684 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
685 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
686 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
687 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
688 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
689 {"confirm", "cf", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
690 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
691 (char_u *)&p_confirm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
692 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
693 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
694 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
695 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
696 {"conskey", "consk",P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
697 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
698 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
699 {"copyindent", "ci", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
700 (char_u *)&p_ci, PV_CI, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
701 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
702 {"cpoptions", "cpo", P_STRING|P_VIM|P_RALL|P_FLAGLIST, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
703 (char_u *)&p_cpo, PV_NONE, did_set_cpoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
704 {(char_u *)CPO_VI, (char_u *)CPO_VIM} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
705 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
706 {"cryptmethod", "cm", P_STRING|P_ALLOCED|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
707 #ifdef FEAT_CRYPT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
708 (char_u *)&p_cm, PV_CM, did_set_cryptmethod, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
709 {(char_u *)"blowfish2", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
710 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
711 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
712 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
713 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
714 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
715 {"cscopepathcomp", "cspc", P_NUM|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
716 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
717 (char_u *)&p_cspc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
718 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
719 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
720 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
721 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
722 {"cscopeprg", "csprg", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
723 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
724 (char_u *)&p_csprg, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
725 {(char_u *)"cscope", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
726 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
727 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
728 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
729 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
730 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
731 {"cscopequickfix", "csqf", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
732 #if defined(FEAT_CSCOPE) && defined(FEAT_QUICKFIX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
733 (char_u *)&p_csqf, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
734 did_set_cscopequickfix, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
735 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
736 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
737 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
738 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
739 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
740 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
741 {"cscoperelative", "csre", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
742 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
743 (char_u *)&p_csre, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
744 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
745 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
746 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
747 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
748 {"cscopetag", "cst", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
749 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
750 (char_u *)&p_cst, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
751 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
752 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
753 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
754 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
755 {"cscopetagorder", "csto", P_NUM|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
756 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
757 (char_u *)&p_csto, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
758 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
759 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
760 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
761 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
762 {"cscopeverbose", "csverb", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
763 #ifdef FEAT_CSCOPE |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
764 (char_u *)&p_csverbose, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
765 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
766 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
767 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
768 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
769 {"cursorbind", "crb", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
770 (char_u *)VAR_WIN, PV_CRBIND, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
771 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
772 {"cursorcolumn", "cuc", P_BOOL|P_VI_DEF|P_RWINONLY, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
773 #ifdef FEAT_SYN_HL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
774 (char_u *)VAR_WIN, PV_CUC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
775 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
776 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
777 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
778 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
779 {"cursorline", "cul", P_BOOL|P_VI_DEF|P_RWINONLY, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
780 #ifdef FEAT_SYN_HL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
781 (char_u *)VAR_WIN, PV_CUL, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
782 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
783 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
784 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
785 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18068
1101eacc1444
patch 8.1.2029: cannot control 'cursorline' highlighting well
Bram Moolenaar <Bram@vim.org>
parents:
18054
diff
changeset
|
786 {"cursorlineopt", "culopt", P_STRING|P_VI_DEF|P_RWIN|P_ONECOMMA|P_NODUP, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
787 #ifdef FEAT_SYN_HL |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
788 (char_u *)VAR_WIN, PV_CULOPT, |
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
789 did_set_cursorlineopt, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
790 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
791 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
792 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
793 {(char_u *)"both", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
794 {"debug", NULL, P_STRING|P_VI_DEF, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
795 (char_u *)&p_debug, PV_NONE, did_set_debug, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
796 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
797 {"define", "def", P_STRING|P_ALLOCED|P_VI_DEF|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
798 #ifdef FEAT_FIND_ID |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
799 (char_u *)&p_def, PV_DEF, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
800 {(char_u *)"^\\s*#\\s*define", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
801 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
802 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
803 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
804 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
805 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
806 {"delcombine", "deco", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
807 (char_u *)&p_deco, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
808 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
809 {"dictionary", "dict", P_STRING|P_EXPAND|P_VI_DEF|P_ONECOMMA|P_NODUP|P_NDNAME, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
810 (char_u *)&p_dict, PV_DICT, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
811 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
812 {"diff", NULL, P_BOOL|P_VI_DEF|P_RWIN|P_NOGLOB, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
813 #ifdef FEAT_DIFF |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
814 (char_u *)VAR_WIN, PV_DIFF, did_set_diff, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
815 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
816 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
817 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
818 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
819 {"diffexpr", "dex", P_STRING|P_VI_DEF|P_SECURE|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
820 #if defined(FEAT_DIFF) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
821 (char_u *)&p_dex, PV_NONE, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
822 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
823 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
824 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
825 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
826 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
827 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
828 {"diffopt", "dip", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN|P_ONECOMMA |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
829 |P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
830 #ifdef FEAT_DIFF |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
831 (char_u *)&p_dip, PV_NONE, did_set_diffopt, |
18590
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
832 {(char_u *)"internal,filler,closeoff", |
41484f342f80
patch 8.1.2289: after :diffsplit closing the window does not disable diff
Bram Moolenaar <Bram@vim.org>
parents:
18574
diff
changeset
|
833 (char_u *)NULL} |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
834 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
835 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
836 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
837 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
838 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
839 {"digraph", "dg", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
840 #ifdef FEAT_DIGRAPHS |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
841 (char_u *)&p_dg, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
842 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
843 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
844 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
845 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
846 {"directory", "dir", P_STRING|P_EXPAND|P_VI_DEF|P_ONECOMMA |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
847 |P_NODUP|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
848 (char_u *)&p_dir, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
849 {(char_u *)DFLT_DIR, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
850 {"display", "dy", P_STRING|P_VI_DEF|P_ONECOMMA|P_RALL|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
851 (char_u *)&p_dy, PV_NONE, did_set_display, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
852 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
853 {"eadirection", "ead", P_STRING|P_VI_DEF, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
854 (char_u *)&p_ead, PV_NONE, did_set_eadirection, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
855 {(char_u *)"both", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
856 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
857 {"edcompatible","ed", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
858 (char_u *)&p_ed, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
859 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
30962 | 860 {"emoji", "emo", P_BOOL|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
861 (char_u *)&p_emoji, PV_NONE, did_set_ambiwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
862 {(char_u *)TRUE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
863 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
864 {"encoding", "enc", P_STRING|P_VI_DEF|P_RCLR|P_NO_ML, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
865 (char_u *)&p_enc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
866 {(char_u *)ENC_DFLT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
867 SCTX_INIT}, |
30962 | 868 {"endoffile", "eof", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT, |
869 (char_u *)&p_eof, PV_EOF, | |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
870 did_set_eof_eol_fixeol_bomb, |
31055
5a95f0c630b1
patch 9.0.0862: default value of 'endoffile' is wrong
Bram Moolenaar <Bram@vim.org>
parents:
30962
diff
changeset
|
871 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
872 {"endofline", "eol", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
873 (char_u *)&p_eol, PV_EOL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
874 did_set_eof_eol_fixeol_bomb, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
875 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
876 {"equalalways", "ea", P_BOOL|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
877 (char_u *)&p_ea, PV_NONE, did_set_equalalways, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
878 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
879 {"equalprg", "ep", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
880 (char_u *)&p_ep, PV_EP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
881 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
882 {"errorbells", "eb", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
883 (char_u *)&p_eb, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
884 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
885 {"errorfile", "ef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
886 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
887 (char_u *)&p_ef, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
888 {(char_u *)DFLT_ERRORFILE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
889 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
890 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
891 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
892 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
893 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
894 {"errorformat", "efm", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
895 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
896 (char_u *)&p_efm, PV_EFM, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
897 {(char_u *)DFLT_EFM, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
898 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
899 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
900 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
901 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
902 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
903 {"esckeys", "ek", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
904 (char_u *)&p_ek, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
905 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
906 {"eventignore", "ei", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
907 (char_u *)&p_ei, PV_NONE, did_set_eventignore, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
908 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
909 {"expandtab", "et", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
910 (char_u *)&p_et, PV_ET, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
911 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
912 {"exrc", "ex", P_BOOL|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
913 (char_u *)&p_exrc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
914 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
915 {"fileencoding","fenc", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_RBUF |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
916 |P_NO_MKRC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
917 (char_u *)&p_fenc, PV_FENC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
918 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
919 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
920 {"fileencodings","fencs", P_STRING|P_VI_DEF|P_ONECOMMA, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
921 (char_u *)&p_fencs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
922 {(char_u *)"ucs-bom", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
923 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
924 {"fileformat", "ff", P_STRING|P_ALLOCED|P_VI_DEF|P_RSTAT|P_NO_MKRC |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
925 |P_CURSWANT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
926 (char_u *)&p_ff, PV_FF, did_set_fileformat, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
927 {(char_u *)DFLT_FF, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
928 {"fileformats", "ffs", P_STRING|P_VIM|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
929 (char_u *)&p_ffs, PV_NONE, did_set_fileformats, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
930 {(char_u *)DFLT_FFS_VI, (char_u *)DFLT_FFS_VIM} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
931 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
932 {"fileignorecase", "fic", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
933 (char_u *)&p_fic, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
934 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
935 #ifdef CASE_INSENSITIVE_FILENAME |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
936 (char_u *)TRUE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
937 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
938 (char_u *)FALSE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
939 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
940 (char_u *)0L} SCTX_INIT}, |
23821
bfc1ae959d9d
patch 8.2.2452: no completion for the 'filetype' option
Bram Moolenaar <Bram@vim.org>
parents:
23606
diff
changeset
|
941 {"filetype", "ft", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
942 (char_u *)&p_ft, PV_FT, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
943 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
944 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
945 {"fillchars", "fcs", P_STRING|P_VI_DEF|P_RALL|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
946 (char_u *)&p_fcs, PV_FCS, NULL, |
30643
dfb02f9dcbe8
patch 9.0.0656: cannot specify another character to use instead of '@'
Bram Moolenaar <Bram@vim.org>
parents:
30624
diff
changeset
|
947 {(char_u *)"vert:|,fold:-,eob:~,lastline:@", |
dfb02f9dcbe8
patch 9.0.0656: cannot specify another character to use instead of '@'
Bram Moolenaar <Bram@vim.org>
parents:
30624
diff
changeset
|
948 (char_u *)0L} |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
949 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
950 {"fixendofline", "fixeol", P_BOOL|P_VI_DEF|P_RSTAT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
951 (char_u *)&p_fixeol, PV_FIXEOL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
952 did_set_eof_eol_fixeol_bomb, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
953 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
954 {"fkmap", "fk", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
955 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
956 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
957 {"flash", "fl", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
958 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
959 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
960 {"foldclose", "fcl", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
961 #ifdef FEAT_FOLDING |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
962 (char_u *)&p_fcl, PV_NONE, did_set_foldclose, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
963 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
964 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
965 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
966 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
967 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
968 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
969 {"foldcolumn", "fdc", P_NUM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
970 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
971 (char_u *)VAR_WIN, PV_FDC, did_set_foldcolumn, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
972 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
973 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
974 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
975 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
976 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
977 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
978 {"foldenable", "fen", P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
979 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
980 (char_u *)VAR_WIN, PV_FEN, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
981 {(char_u *)TRUE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
982 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
983 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
984 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
985 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
986 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
987 {"foldexpr", "fde", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
988 #if defined(FEAT_FOLDING) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
989 (char_u *)VAR_WIN, PV_FDE, did_set_foldexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
990 {(char_u *)"0", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
991 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
992 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
993 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
994 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
995 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
996 {"foldignore", "fdi", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
997 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
998 (char_u *)VAR_WIN, PV_FDI, did_set_foldignore, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
999 {(char_u *)"#", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1000 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1001 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1002 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1003 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1004 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1005 {"foldlevel", "fdl", P_NUM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1006 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1007 (char_u *)VAR_WIN, PV_FDL, did_set_foldlevel, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1008 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1009 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1010 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1011 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1012 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1013 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1014 {"foldlevelstart","fdls", P_NUM|P_VI_DEF|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1015 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1016 (char_u *)&p_fdls, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1017 {(char_u *)-1L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1018 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1019 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1020 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1021 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1022 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1023 {"foldmarker", "fmr", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF| |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1024 P_RWIN|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1025 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1026 (char_u *)VAR_WIN, PV_FMR, did_set_foldmarker, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1027 {(char_u *)"{{{,}}}", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1028 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1029 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1030 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1031 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1032 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1033 {"foldmethod", "fdm", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1034 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1035 (char_u *)VAR_WIN, PV_FDM, did_set_foldmethod, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1036 {(char_u *)"manual", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1037 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1038 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1039 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1040 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1041 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1042 {"foldminlines","fml", P_NUM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1043 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1044 (char_u *)VAR_WIN, PV_FML, did_set_foldminlines, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1045 {(char_u *)1L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1046 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1047 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1048 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1049 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1050 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1051 {"foldnestmax", "fdn", P_NUM|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1052 #ifdef FEAT_FOLDING |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1053 (char_u *)VAR_WIN, PV_FDN, did_set_foldnestmax, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1054 {(char_u *)20L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1055 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1056 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1057 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1058 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1059 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1060 {"foldopen", "fdo", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP|P_CURSWANT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1061 #ifdef FEAT_FOLDING |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
1062 (char_u *)&p_fdo, PV_NONE, did_set_foldopen, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1063 {(char_u *)"block,hor,mark,percent,quickfix,search,tag,undo", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1064 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1065 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1066 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1067 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1068 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1069 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1070 {"foldtext", "fdt", P_STRING|P_ALLOCED|P_VIM|P_VI_DEF|P_RWIN|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1071 #if defined(FEAT_FOLDING) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1072 (char_u *)VAR_WIN, PV_FDT, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1073 {(char_u *)"foldtext()", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1074 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1075 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1076 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1077 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1078 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1079 {"formatexpr", "fex", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1080 #ifdef FEAT_EVAL |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1081 (char_u *)&p_fex, PV_FEX, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1082 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1083 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1084 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1085 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1086 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1087 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1088 {"formatoptions","fo", P_STRING|P_ALLOCED|P_VIM|P_FLAGLIST, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1089 (char_u *)&p_fo, PV_FO, did_set_formatoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1090 {(char_u *)DFLT_FO_VI, (char_u *)DFLT_FO_VIM} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1091 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1092 {"formatlistpat","flp", P_STRING|P_ALLOCED|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1093 (char_u *)&p_flp, PV_FLP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1094 {(char_u *)"^\\s*\\d\\+[\\]:.)}\\t ]\\s*", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1095 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1096 {"formatprg", "fp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1097 (char_u *)&p_fp, PV_FP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1098 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1099 {"fsync", "fs", P_BOOL|P_SECURE|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1100 #ifdef HAVE_FSYNC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1101 (char_u *)&p_fs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1102 {(char_u *)TRUE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1103 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1104 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1105 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1106 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1107 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1108 {"gdefault", "gd", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1109 (char_u *)&p_gd, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1110 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1111 {"graphic", "gr", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1112 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1113 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1114 {"grepformat", "gfm", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1115 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1116 (char_u *)&p_gefm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1117 {(char_u *)DFLT_GREPFORMAT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1118 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1119 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1120 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1121 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1122 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1123 {"grepprg", "gp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1124 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1125 (char_u *)&p_gp, PV_GP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1126 { |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1127 # if defined(MSWIN) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1128 // may be changed to "grep -n" in os_win32.c |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1129 (char_u *)"findstr /n", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1130 # elif defined(UNIX) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1131 // Add an extra file name so that grep will always |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1132 // insert a file name in the match line. |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1133 (char_u *)"grep -n $* /dev/null", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1134 # elif defined(VMS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1135 (char_u *)"SEARCH/NUMBERS ", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1136 # else |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1137 (char_u *)"grep -n ", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1138 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1139 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1140 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1141 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1142 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1143 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1144 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1145 {"guicursor", "gcr", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1146 #ifdef CURSOR_SHAPE |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1147 (char_u *)&p_guicursor, PV_NONE, |
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1148 did_set_guicursor, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1149 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1150 # ifdef FEAT_GUI |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1151 (char_u *)"n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1152 # else // Win32 console |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1153 (char_u *)"n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1154 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1155 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1156 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1157 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1158 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1159 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1160 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1161 {"guifont", "gfn", P_STRING|P_VI_DEF|P_RCLR|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1162 #ifdef FEAT_GUI |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1163 (char_u *)&p_guifont, PV_NONE, did_set_guifont, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1164 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1165 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1166 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1167 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1168 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1169 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1170 {"guifontset", "gfs", P_STRING|P_VI_DEF|P_RCLR|P_ONECOMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1171 #if defined(FEAT_GUI) && defined(FEAT_XFONTSET) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1172 (char_u *)&p_guifontset, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1173 did_set_guifontset, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1174 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1175 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1176 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1177 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1178 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1179 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1180 {"guifontwide", "gfw", P_STRING|P_VI_DEF|P_RCLR|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1181 #if defined(FEAT_GUI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1182 (char_u *)&p_guifontwide, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1183 did_set_guifontwide, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1184 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1185 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1186 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1187 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1188 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1189 SCTX_INIT}, |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1190 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1191 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1192 {"guiligatures", "gli", P_STRING|P_VI_DEF|P_RCLR|P_ONECOMMA|P_NODUP, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1193 #if defined(FEAT_GUI_GTK) |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1194 (char_u *)&p_guiligatures, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1195 did_set_guiligatures, |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1196 {(char_u *)"", (char_u *)0L} |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1197 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1198 (char_u *)NULL, PV_NONE, NULL, |
25982
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1199 {(char_u *)NULL, (char_u *)0L} |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1200 #endif |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1201 SCTX_INIT}, |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1202 |
aade8ef975d5
patch 8.2.3524: GUI: ligatures are not used
Bram Moolenaar <Bram@vim.org>
parents:
25974
diff
changeset
|
1203 |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1204 {"guiheadroom", "ghr", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1205 #if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_X11) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1206 (char_u *)&p_ghr, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1207 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1208 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1209 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1210 {(char_u *)50L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1211 {"guioptions", "go", P_STRING|P_VI_DEF|P_RALL|P_FLAGLIST, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1212 #if defined(FEAT_GUI) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1213 (char_u *)&p_go, PV_NONE, did_set_guioptions, |
21745
35921b7fc07a
patch 8.2.1422: the Mac GUI implementation is outdated
Bram Moolenaar <Bram@vim.org>
parents:
20802
diff
changeset
|
1214 # if defined(UNIX) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1215 {(char_u *)"aegimrLtT", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1216 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1217 {(char_u *)"egmrLtT", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1218 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1219 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1220 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1221 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1222 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1223 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1224 {"guipty", NULL, P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1225 #if defined(FEAT_GUI) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1226 (char_u *)&p_guipty, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1227 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1228 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1229 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1230 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1231 {"guitablabel", "gtl", P_STRING|P_VI_DEF|P_RWIN|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1232 #if defined(FEAT_GUI_TABLINE) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1233 (char_u *)&p_gtl, PV_NONE, did_set_guitablabel, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1234 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1235 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1236 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1237 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1238 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1239 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1240 {"guitabtooltip", "gtt", P_STRING|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1241 #if defined(FEAT_GUI_TABLINE) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1242 (char_u *)&p_gtt, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1243 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1244 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1245 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1246 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1247 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1248 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1249 {"hardtabs", "ht", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1250 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1251 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1252 {"helpfile", "hf", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1253 (char_u *)&p_hf, PV_NONE, did_set_helpfile, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1254 {(char_u *)DFLT_HELPFILE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1255 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1256 {"helpheight", "hh", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1257 (char_u *)&p_hh, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1258 did_set_winheight_helpheight, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1259 {(char_u *)20L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1260 {"helplang", "hlg", P_STRING|P_VI_DEF|P_ONECOMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1261 #ifdef FEAT_MULTI_LANG |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1262 (char_u *)&p_hlg, PV_NONE, did_set_helplang, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1263 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1264 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1265 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1266 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1267 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1268 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1269 {"hidden", "hid", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1270 (char_u *)&p_hid, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1271 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1272 {"highlight", "hl", P_STRING|P_VI_DEF|P_RCLR|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1273 (char_u *)&p_hl, PV_NONE, did_set_highlight, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1274 {(char_u *)HIGHLIGHT_INIT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1275 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1276 {"history", "hi", P_NUM|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1277 (char_u *)&p_hi, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1278 {(char_u *)0L, (char_u *)50L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1279 {"hkmap", "hk", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1280 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1281 (char_u *)&p_hkmap, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1282 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1283 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1284 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1285 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1286 {"hkmapp", "hkp", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1287 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1288 (char_u *)&p_hkmapp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1289 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1290 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1291 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1292 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1293 {"hlsearch", "hls", P_BOOL|P_VI_DEF|P_VIM|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1294 #if defined(FEAT_SEARCH_EXTRA) |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1295 (char_u *)&p_hls, PV_NONE, did_set_hlsearch, |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1296 #else |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1297 (char_u *)NULL, PV_NONE, NULL, |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1298 #endif |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1299 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1300 {"icon", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1301 (char_u *)&p_icon, PV_NONE, did_set_title_icon, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1302 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1303 {"iconstring", NULL, P_STRING|P_VI_DEF|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1304 (char_u *)&p_iconstring, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1305 did_set_iconstring, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1306 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1307 {"ignorecase", "ic", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1308 (char_u *)&p_ic, PV_NONE, did_set_ignorecase, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1309 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1310 {"imactivatefunc","imaf",P_STRING|P_VI_DEF|P_SECURE|P_FUNC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1311 #if defined(FEAT_EVAL) && \ |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1312 (defined(FEAT_XIM) || defined(IME_WITHOUT_XIM) || defined(VIMDLL)) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1313 (char_u *)&p_imaf, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1314 did_set_imactivatefunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1315 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1316 # else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1317 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1318 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1319 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1320 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1321 {"imactivatekey","imak",P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1322 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1323 (char_u *)&p_imak, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1324 did_set_imactivatekey, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1325 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1326 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1327 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1328 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1329 {"imcmdline", "imc", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1330 (char_u *)&p_imcmdline, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1331 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1332 {"imdisable", "imd", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1333 #if defined(HAVE_INPUT_METHOD) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1334 (char_u *)&p_imdisable, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1335 did_set_imdisable, |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1336 #else |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1337 (char_u *)NULL, PV_NONE, NULL, |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1338 #endif |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1339 {(char_u *)FALSE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1340 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1341 {"iminsert", "imi", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1342 (char_u *)&p_iminsert, PV_IMI, did_set_iminsert, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1343 {(char_u *)B_IMODE_NONE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1344 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1345 {"imsearch", "ims", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1346 (char_u *)&p_imsearch, PV_IMS, did_set_imsearch, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1347 {(char_u *)B_IMODE_USE_INSERT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1348 SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1349 {"imstatusfunc","imsf",P_STRING|P_VI_DEF|P_SECURE|P_FUNC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1350 #if defined(FEAT_EVAL) && \ |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1351 (defined(FEAT_XIM) || defined(IME_WITHOUT_XIM) || defined(VIMDLL)) |
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1352 (char_u *)&p_imsf, PV_NONE, did_set_imstatusfunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1353 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1354 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1355 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1356 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1357 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1358 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1359 {"imstyle", "imst", P_NUM|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1360 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1361 (char_u *)&p_imst, PV_NONE, did_set_imstyle, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1362 {(char_u *)IM_OVER_THE_SPOT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1363 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1364 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1365 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1366 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1367 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1368 {"include", "inc", P_STRING|P_ALLOCED|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1369 #ifdef FEAT_FIND_ID |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1370 (char_u *)&p_inc, PV_INC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1371 {(char_u *)"^\\s*#\\s*include", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1372 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1373 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1374 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1375 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1376 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1377 {"includeexpr", "inex", P_STRING|P_ALLOCED|P_VI_DEF|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1378 #if defined(FEAT_FIND_ID) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1379 (char_u *)&p_inex, PV_INEX, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1380 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1381 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1382 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1383 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1384 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1385 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1386 {"incsearch", "is", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1387 (char_u *)&p_is, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1388 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1389 {"indentexpr", "inde", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM|P_MLE, |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
1390 #if defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1391 (char_u *)&p_inde, PV_INDE, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1392 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1393 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1394 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1395 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1396 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1397 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1398 {"indentkeys", "indk", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
1399 #if defined(FEAT_EVAL) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1400 (char_u *)&p_indk, PV_INDK, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1401 {INDENTKEYS_DEFAULT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1402 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1403 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1404 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1405 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1406 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1407 {"infercase", "inf", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1408 (char_u *)&p_inf, PV_INF, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1409 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1410 {"insertmode", "im", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1411 (char_u *)&p_im, PV_NONE, did_set_insertmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1412 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1413 {"isfname", "isf", P_STRING|P_VI_DEF|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1414 (char_u *)&p_isf, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1415 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1416 #ifdef BACKSLASH_IN_FILENAME |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1417 // Excluded are: & and ^ are special in cmd.exe |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1418 // ( and ) are used in text separating fnames |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1419 (char_u *)"@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1420 #else |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1421 # if defined(AMIGA) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1422 (char_u *)"@,48-57,/,.,-,_,+,,,$,:", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1423 # elif defined(VMS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1424 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,<,>,[,],:,;,~", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1425 # else // UNIX et al. |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1426 (char_u *)"@,48-57,/,.,-,_,+,,,#,$,%,~,=", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1427 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1428 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1429 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1430 {"isident", "isi", P_STRING|P_VI_DEF|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1431 (char_u *)&p_isi, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1432 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1433 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1434 (char_u *)"@,48-57,_,128-167,224-235", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1435 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1436 (char_u *)"@,48-57,_,192-255", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1437 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1438 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1439 {"iskeyword", "isk", P_STRING|P_ALLOCED|P_VIM|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1440 (char_u *)&p_isk, PV_ISK, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1441 { |
27490
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27130
diff
changeset
|
1442 (char_u *)"@,48-57,_", |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27130
diff
changeset
|
1443 #if defined(MSWIN) |
fb4c30606b4a
patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents:
27130
diff
changeset
|
1444 (char_u *)"@,48-57,_,128-167,224-235" |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1445 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1446 ISK_LATIN1 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1447 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1448 } SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1449 {"isprint", "isp", P_STRING|P_VI_DEF|P_RALL|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1450 (char_u *)&p_isp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1451 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1452 #if defined(MSWIN) || defined(VMS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1453 (char_u *)"@,~-255", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1454 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1455 ISP_LATIN1, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1456 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1457 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1458 {"joinspaces", "js", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1459 (char_u *)&p_js, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1460 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1461 {"key", NULL, P_STRING|P_ALLOCED|P_VI_DEF|P_NO_MKRC, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1462 #ifdef FEAT_CRYPT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1463 (char_u *)&p_key, PV_KEY, did_set_cryptkey, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1464 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1465 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1466 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1467 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1468 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1469 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1470 {"keymap", "kmp", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF|P_RSTAT|P_NFNAME|P_PRI_MKRC, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1471 #ifdef FEAT_KEYMAP |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1472 (char_u *)&p_keymap, PV_KMAP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1473 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1474 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1475 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1476 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1477 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1478 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1479 {"keymodel", "km", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1480 (char_u *)&p_km, PV_NONE, did_set_keymodel, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1481 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31055
diff
changeset
|
1482 {"keyprotocol", "kpc", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1483 (char_u *)&p_kpc, PV_NONE, did_set_keyprotocol, |
31192
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31055
diff
changeset
|
1484 {(char_u *)"kitty:kitty,foot:kitty,wezterm:kitty,xterm:mok2", (char_u *)0L} |
dcde141f2d1e
patch 9.0.0930: cannot debug the Kitty keyboard protocol with TermDebug
Bram Moolenaar <Bram@vim.org>
parents:
31055
diff
changeset
|
1485 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1486 {"keywordprg", "kp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1487 (char_u *)&p_kp, PV_KP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1488 { |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1489 #if defined(MSWIN) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1490 (char_u *)":help", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1491 #elif defined(VMS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1492 (char_u *)"help", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1493 #elif defined(USEMAN_S) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1494 (char_u *)"man -s", |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
1495 #else |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1496 (char_u *)"man", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1497 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1498 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1499 {"langmap", "lmap", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1500 #ifdef FEAT_LANGMAP |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1501 (char_u *)&p_langmap, PV_NONE, did_set_langmap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1502 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1503 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1504 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1505 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1506 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1507 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1508 {"langmenu", "lm", P_STRING|P_VI_DEF|P_NFNAME, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1509 #if defined(FEAT_MENU) && defined(FEAT_MULTI_LANG) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1510 (char_u *)&p_lm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1511 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1512 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1513 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1514 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1515 {"langnoremap", "lnr", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1516 #ifdef FEAT_LANGMAP |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1517 (char_u *)&p_lnr, PV_NONE, did_set_langnoremap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1518 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1519 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1520 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1521 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1522 {"langremap", "lrm", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1523 #ifdef FEAT_LANGMAP |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1524 (char_u *)&p_lrm, PV_NONE, did_set_langremap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1525 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1526 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1527 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1528 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1529 {"laststatus", "ls", P_NUM|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1530 (char_u *)&p_ls, PV_NONE, did_set_laststatus, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1531 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1532 {"lazyredraw", "lz", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1533 (char_u *)&p_lz, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1534 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1535 {"linebreak", "lbr", P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1536 #ifdef FEAT_LINEBREAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1537 (char_u *)VAR_WIN, PV_LBR, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1538 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1539 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1540 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1541 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1542 {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1543 (char_u *)&Rows, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1544 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1545 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1546 (char_u *)25L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1547 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1548 (char_u *)24L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1549 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1550 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1551 {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1552 #ifdef FEAT_GUI |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1553 (char_u *)&p_linespace, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1554 did_set_linespace, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1555 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1556 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1557 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1558 #ifdef FEAT_GUI_MSWIN |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1559 {(char_u *)1L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1560 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1561 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1562 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1563 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1564 {"lisp", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1565 (char_u *)&p_lisp, PV_LISP, did_set_lisp, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1566 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
1567 {"lispoptions", "lop", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1568 (char_u *)&p_lop, PV_LOP, did_set_lispoptions, |
30853
40df8a6515f6
patch 9.0.0761: cannot use 'indentexpr' for Lisp indenting
Bram Moolenaar <Bram@vim.org>
parents:
30825
diff
changeset
|
1569 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1570 {"lispwords", "lw", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1571 (char_u *)&p_lispwords, PV_LW, NULL, |
28942
6cdf55afaae9
patch 8.2.4993: smart/C/lisp indenting is optional
Bram Moolenaar <Bram@vim.org>
parents:
28399
diff
changeset
|
1572 {(char_u *)LISPWORD_VALUE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1573 {"list", NULL, P_BOOL|P_VI_DEF|P_RWIN, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1574 (char_u *)VAR_WIN, PV_LIST, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1575 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1576 {"listchars", "lcs", P_STRING|P_VI_DEF|P_RALL|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1577 (char_u *)&p_lcs, PV_LCS, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1578 {(char_u *)"eol:$", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1579 {"loadplugins", "lpl", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1580 (char_u *)&p_lpl, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1581 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1582 {"luadll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1583 #if defined(DYNAMIC_LUA) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1584 (char_u *)&p_luadll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1585 {(char_u *)DYNAMIC_LUA_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1586 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1587 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1588 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1589 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1590 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1591 {"macatsui", NULL, P_BOOL|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1592 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1593 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1594 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1595 {"magic", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1596 (char_u *)&p_magic, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1597 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1598 {"makeef", "mef", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1599 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1600 (char_u *)&p_mef, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1601 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1602 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1603 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1604 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1605 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1606 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1607 {"makeencoding","menc", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1608 (char_u *)&p_menc, PV_MENC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1609 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1610 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1611 {"makeprg", "mp", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1612 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1613 (char_u *)&p_mp, PV_MP, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1614 # ifdef VMS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1615 {(char_u *)"MMS", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1616 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1617 {(char_u *)"make", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1618 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1619 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1620 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1621 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1622 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1623 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1624 {"matchpairs", "mps", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1625 (char_u *)&p_mps, PV_MPS, did_set_matchpairs, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1626 {(char_u *)"(:),{:},[:]", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1627 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1628 {"matchtime", "mat", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1629 (char_u *)&p_mat, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1630 {(char_u *)5L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1631 {"maxcombine", "mco", P_NUM|P_VI_DEF|P_CURSWANT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1632 (char_u *)&p_mco, PV_NONE, did_set_maxcombine, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1633 {(char_u *)2, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1634 {"maxfuncdepth", "mfd", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1635 #ifdef FEAT_EVAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1636 (char_u *)&p_mfd, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1637 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1638 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1639 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1640 {(char_u *)100L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1641 {"maxmapdepth", "mmd", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1642 (char_u *)&p_mmd, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1643 {(char_u *)1000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1644 {"maxmem", "mm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1645 (char_u *)&p_mm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1646 {(char_u *)DFLT_MAXMEM, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1647 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1648 {"maxmempattern","mmp", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1649 (char_u *)&p_mmp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1650 {(char_u *)1000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1651 {"maxmemtot", "mmt", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1652 (char_u *)&p_mmt, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1653 {(char_u *)DFLT_MAXMEMTOT, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1654 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1655 {"menuitems", "mis", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1656 #ifdef FEAT_MENU |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1657 (char_u *)&p_mis, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1658 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1659 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1660 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1661 {(char_u *)25L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1662 {"mesg", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1663 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1664 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1665 {"mkspellmem", "msm", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1666 #ifdef FEAT_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:
31804
diff
changeset
|
1667 (char_u *)&p_msm, PV_NONE, did_set_mkspellmem, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1668 {(char_u *)"460000,2000,500", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1669 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1670 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1671 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1672 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1673 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1674 {"modeline", "ml", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1675 (char_u *)&p_ml, PV_ML, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1676 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1677 {"modelineexpr", "mle", P_BOOL|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1678 (char_u *)&p_mle, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1679 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1680 {"modelines", "mls", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1681 (char_u *)&p_mls, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1682 {(char_u *)5L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1683 {"modifiable", "ma", P_BOOL|P_VI_DEF|P_NOGLOB, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1684 (char_u *)&p_ma, PV_MA, did_set_modifiable, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1685 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1686 {"modified", "mod", P_BOOL|P_NO_MKRC|P_VI_DEF|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1687 (char_u *)&p_mod, PV_MOD, did_set_modified, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1688 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1689 {"more", NULL, P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1690 (char_u *)&p_more, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1691 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1692 {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1693 (char_u *)&p_mouse, PV_NONE, did_set_mouse, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1694 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1695 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1696 (char_u *)"a", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1697 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1698 (char_u *)"", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1699 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1700 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1701 {"mousefocus", "mousef", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1702 #ifdef FEAT_GUI |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1703 (char_u *)&p_mousef, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1704 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1705 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1706 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1707 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1708 {"mousehide", "mh", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1709 #ifdef FEAT_GUI |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1710 (char_u *)&p_mh, PV_NONE, did_set_mousehide, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1711 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1712 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1713 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1714 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1715 {"mousemodel", "mousem", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1716 (char_u *)&p_mousem, PV_NONE, did_set_mousemodel, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1717 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1718 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1719 (char_u *)"popup", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1720 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1721 # if defined(MACOS_X) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1722 (char_u *)"popup_setpos", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1723 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1724 (char_u *)"extend", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1725 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1726 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1727 (char_u *)0L} SCTX_INIT}, |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1728 {"mousemoveevent", "mousemev", P_BOOL|P_VI_DEF, |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1729 #ifdef FEAT_GUI |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1730 (char_u *)&p_mousemev, PV_NONE, NULL, |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1731 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1732 (char_u *)NULL, PV_NONE, NULL, |
28297
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1733 #endif |
4190b932e6ca
patch 8.2.4674: cannot force getting MouseMove events
Bram Moolenaar <Bram@vim.org>
parents:
27490
diff
changeset
|
1734 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1735 {"mouseshape", "mouses", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1736 #ifdef FEAT_MOUSESHAPE |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1737 (char_u *)&p_mouseshape, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1738 did_set_mouseshape, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1739 {(char_u *)"i-r:beam,s:updown,sd:udsizing,vs:leftright,vd:lrsizing,m:no,ml:up-arrow,v:rightup-arrow", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1740 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1741 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1742 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1743 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1744 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1745 {"mousetime", "mouset", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1746 (char_u *)&p_mouset, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1747 {(char_u *)500L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1748 {"mzschemedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1749 #if defined(DYNAMIC_MZSCHEME) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1750 (char_u *)&p_mzschemedll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1751 {(char_u *)DYNAMIC_MZSCH_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1752 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1753 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1754 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1755 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1756 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1757 {"mzschemegcdll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1758 #if defined(DYNAMIC_MZSCHEME) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1759 (char_u *)&p_mzschemegcdll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1760 {(char_u *)DYNAMIC_MZGC_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1761 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1762 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1763 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1764 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1765 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1766 {"mzquantum", "mzq", P_NUM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1767 #ifdef FEAT_MZSCHEME |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1768 (char_u *)&p_mzq, PV_NONE, did_set_mzquantum, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1769 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1770 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1771 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1772 {(char_u *)100L, (char_u *)100L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1773 {"novice", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1774 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1775 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1776 {"nrformats", "nf", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
1777 (char_u *)&p_nf, PV_NF, did_set_nrformats, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1778 {(char_u *)"bin,octal,hex", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1779 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1780 {"number", "nu", P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1781 (char_u *)VAR_WIN, PV_NU, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1782 did_set_number_relativenumber, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1783 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1784 {"numberwidth", "nuw", P_NUM|P_RWIN|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1785 #ifdef FEAT_LINEBREAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1786 (char_u *)VAR_WIN, PV_NUW, did_set_numberwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1787 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1788 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1789 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1790 {(char_u *)8L, (char_u *)4L} SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1791 {"omnifunc", "ofu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE|P_FUNC, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1792 #ifdef FEAT_COMPL_FUNC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1793 (char_u *)&p_ofu, PV_OFU, did_set_omnifunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1794 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1795 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1796 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1797 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1798 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1799 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1800 {"open", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1801 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1802 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1803 {"opendevice", "odev", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1804 #if defined(MSWIN) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1805 (char_u *)&p_odev, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1806 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1807 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1808 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1809 {(char_u *)FALSE, (char_u *)FALSE} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1810 SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
1811 {"operatorfunc", "opfunc", P_STRING|P_VI_DEF|P_SECURE|P_FUNC, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1812 (char_u *)&p_opfunc, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1813 did_set_operatorfunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1814 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1815 {"optimize", "opt", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1816 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1817 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1818 {"osfiletype", "oft", P_STRING|P_ALLOCED|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1819 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1820 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1821 {"packpath", "pp", P_STRING|P_VI_DEF|P_EXPAND|P_ONECOMMA|P_NODUP |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1822 |P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1823 (char_u *)&p_pp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1824 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1825 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1826 {"paragraphs", "para", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1827 (char_u *)&p_para, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1828 {(char_u *)"IPLPPPQPP TPHPLIPpLpItpplpipbp", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1829 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1830 {"paste", NULL, P_BOOL|P_VI_DEF|P_PRI_MKRC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1831 (char_u *)&p_paste, PV_NONE, did_set_paste, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1832 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1833 {"pastetoggle", "pt", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1834 (char_u *)&p_pt, PV_NONE, did_set_pastetoggle, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1835 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1836 {"patchexpr", "pex", P_STRING|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1837 #if defined(FEAT_DIFF) && defined(FEAT_EVAL) |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1838 (char_u *)&p_pex, PV_NONE, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1839 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1840 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1841 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1842 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1843 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1844 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1845 {"patchmode", "pm", P_STRING|P_VI_DEF|P_NFNAME, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1846 (char_u *)&p_pm, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1847 did_set_backupext_or_patchmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1848 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1849 {"path", "pa", P_STRING|P_EXPAND|P_VI_DEF|P_COMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1850 (char_u *)&p_path, PV_PATH, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1851 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1852 #if defined(AMIGA) || defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1853 (char_u *)".,,", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1854 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1855 (char_u *)".,/usr/include,,", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1856 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1857 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1858 {"perldll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1859 #if defined(DYNAMIC_PERL) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1860 (char_u *)&p_perldll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1861 {(char_u *)DYNAMIC_PERL_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1862 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1863 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1864 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1865 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1866 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1867 {"preserveindent", "pi", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1868 (char_u *)&p_pi, PV_PI, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1869 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1870 {"previewheight", "pvh", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1871 #if defined(FEAT_QUICKFIX) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1872 (char_u *)&p_pvh, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1873 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1874 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1875 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1876 {(char_u *)12L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1877 {"previewpopup", "pvp", P_STRING|P_VI_DEF|P_COMMA|P_NODUP, |
18763
49b78d6465e5
patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents:
18590
diff
changeset
|
1878 #ifdef FEAT_PROP_POPUP |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1879 (char_u *)&p_pvp, PV_NONE, did_set_previewpopup, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1880 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1881 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1882 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1883 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1884 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1885 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1886 {"previewwindow", "pvw", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1887 #if defined(FEAT_QUICKFIX) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1888 (char_u *)VAR_WIN, PV_PVW, did_set_previewwindow, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1889 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1890 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1891 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1892 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1893 {"printdevice", "pdev", P_STRING|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1894 #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:
31804
diff
changeset
|
1895 (char_u *)&p_pdev, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1896 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1897 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1898 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1899 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1900 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1901 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1902 {"printencoding", "penc", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1903 #ifdef FEAT_POSTSCRIPT |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1904 (char_u *)&p_penc, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1905 did_set_printencoding, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1906 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1907 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1908 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1909 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1910 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1911 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1912 {"printexpr", "pexpr", P_STRING|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1913 #ifdef FEAT_POSTSCRIPT |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
1914 (char_u *)&p_pexpr, PV_NONE, did_set_optexpr, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1915 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1916 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1917 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1918 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1919 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1920 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1921 {"printfont", "pfn", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1922 #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:
31804
diff
changeset
|
1923 (char_u *)&p_pfn, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1924 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1925 # ifdef MSWIN |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1926 (char_u *)"Courier_New:h10", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1927 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1928 (char_u *)"courier", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1929 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1930 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1931 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1932 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1933 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1934 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1935 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1936 {"printheader", "pheader", P_STRING|P_VI_DEF|P_GETTEXT, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1937 #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:
31804
diff
changeset
|
1938 (char_u *)&p_header, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1939 // untranslated to avoid problems when 'encoding' |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1940 // is changed |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1941 {(char_u *)"%<%f%h%m%=Page %N", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1942 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1943 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1944 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1945 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1946 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1947 {"printmbcharset", "pmbcs", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1948 #if defined(FEAT_POSTSCRIPT) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1949 (char_u *)&p_pmcs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1950 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1951 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1952 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1953 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1954 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1955 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1956 {"printmbfont", "pmbfn", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1957 #if defined(FEAT_POSTSCRIPT) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1958 (char_u *)&p_pmfn, PV_NONE, parse_printmbfont, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1959 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1960 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1961 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1962 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1963 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1964 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1965 {"printoptions", "popt", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1966 #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:
31804
diff
changeset
|
1967 (char_u *)&p_popt, PV_NONE, parse_printoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1968 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1969 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1970 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1971 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1972 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1973 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1974 {"prompt", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1975 (char_u *)&p_prompt, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1976 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1977 {"pumheight", "ph", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1978 (char_u *)&p_ph, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1979 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1980 {"pumwidth", "pw", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1981 (char_u *)&p_pw, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1982 {(char_u *)15L, (char_u *)15L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1983 {"pythonthreedll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1984 #if defined(DYNAMIC_PYTHON3) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1985 (char_u *)&p_py3dll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1986 {(char_u *)DYNAMIC_PYTHON3_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1987 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1988 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1989 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1990 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1991 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1992 {"pythonthreehome", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1993 #if defined(FEAT_PYTHON3) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1994 (char_u *)&p_py3home, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1995 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1996 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
1997 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1998 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1999 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2000 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2001 {"pythondll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2002 #if defined(DYNAMIC_PYTHON) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2003 (char_u *)&p_pydll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2004 {(char_u *)DYNAMIC_PYTHON_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2005 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2006 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2007 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2008 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2009 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2010 {"pythonhome", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2011 #if defined(FEAT_PYTHON) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2012 (char_u *)&p_pyhome, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2013 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2014 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2015 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2016 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2017 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2018 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2019 {"pyxversion", "pyx", P_NUM|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2020 #if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2021 (char_u *)&p_pyx, PV_NONE, did_set_pyxversion, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2022 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2023 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2024 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2025 {(char_u *)DEFAULT_PYTHON_VER, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2026 SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2027 {"quickfixtextfunc", "qftf", P_STRING|P_ALLOCED|P_VI_DEF|P_VIM|P_SECURE|P_FUNC, |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2028 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL) |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2029 (char_u *)&p_qftf, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2030 did_set_quickfixtextfunc, |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2031 {(char_u *)"", (char_u *)0L} |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2032 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2033 (char_u *)NULL, PV_NONE, NULL, |
20631
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2034 {(char_u *)NULL, (char_u *)NULL} |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2035 #endif |
d6827bd31d1d
patch 8.2.0869: it is not possible to customize the quickfix window contents
Bram Moolenaar <Bram@vim.org>
parents:
20619
diff
changeset
|
2036 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2037 {"quoteescape", "qe", P_STRING|P_ALLOCED|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2038 (char_u *)&p_qe, PV_QE, NULL, |
29765
bc6cf208b1b4
patch 9.0.0222: no good reason why text objects are only in larger builds
Bram Moolenaar <Bram@vim.org>
parents:
29387
diff
changeset
|
2039 {(char_u *)"\\", (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2040 {"readonly", "ro", P_BOOL|P_VI_DEF|P_RSTAT|P_NOGLOB, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2041 (char_u *)&p_ro, PV_RO, did_set_readonly, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2042 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2043 {"redraw", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2044 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2045 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2046 {"redrawtime", "rdt", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2047 #ifdef FEAT_RELTIME |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2048 (char_u *)&p_rdt, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2049 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2050 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2051 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2052 {(char_u *)2000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2053 {"regexpengine", "re", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2054 (char_u *)&p_re, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2055 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2056 {"relativenumber", "rnu", P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2057 (char_u *)VAR_WIN, PV_RNU, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2058 did_set_number_relativenumber, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2059 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2060 {"remap", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2061 (char_u *)&p_remap, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2062 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2063 {"renderoptions", "rop", P_STRING|P_ONECOMMA|P_RCLR|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2064 #ifdef FEAT_RENDER_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:
31804
diff
changeset
|
2065 (char_u *)&p_rop, PV_NONE, did_set_renderoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2066 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2067 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2068 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2069 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2070 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2071 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2072 {"report", NULL, P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2073 (char_u *)&p_report, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2074 {(char_u *)2L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2075 {"restorescreen", "rs", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2076 #ifdef MSWIN |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2077 (char_u *)&p_rs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2078 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2079 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2080 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2081 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2082 {"revins", "ri", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2083 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2084 (char_u *)&p_ri, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2085 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2086 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2087 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2088 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2089 {"rightleft", "rl", P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2090 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2091 (char_u *)VAR_WIN, PV_RL, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2092 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2093 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2094 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2095 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2096 {"rightleftcmd", "rlc", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2097 #ifdef FEAT_RIGHTLEFT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2098 (char_u *)VAR_WIN, PV_RLC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2099 {(char_u *)"search", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2100 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2101 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2102 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2103 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2104 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2105 {"rubydll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2106 #if defined(DYNAMIC_RUBY) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2107 (char_u *)&p_rubydll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2108 {(char_u *)DYNAMIC_RUBY_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2109 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2110 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2111 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2112 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2113 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2114 {"ruler", "ru", P_BOOL|P_VI_DEF|P_VIM|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2115 (char_u *)&p_ru, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2116 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2117 {"rulerformat", "ruf", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2118 #ifdef FEAT_STL_OPT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2119 (char_u *)&p_ruf, PV_NONE, did_set_rulerformat, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2120 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2121 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2122 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2123 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2124 {"runtimepath", "rtp", P_STRING|P_VI_DEF|P_EXPAND|P_ONECOMMA|P_NODUP |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2125 |P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2126 (char_u *)&p_rtp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2127 {(char_u *)DFLT_RUNTIMEPATH, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2128 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2129 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2130 (char_u *)VAR_WIN, PV_SCROLL, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2131 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2132 {"scrollbind", "scb", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2133 (char_u *)VAR_WIN, PV_SCBIND, did_set_scrollbind, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2134 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18526
334b1f897f3a
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
Bram Moolenaar <Bram@vim.org>
parents:
18471
diff
changeset
|
2135 {"scrollfocus", "scf", P_BOOL|P_VI_DEF, |
334b1f897f3a
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
Bram Moolenaar <Bram@vim.org>
parents:
18471
diff
changeset
|
2136 #if defined(MSWIN) && defined(FEAT_GUI) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2137 (char_u *)&p_scf, PV_NONE, NULL, |
18526
334b1f897f3a
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
Bram Moolenaar <Bram@vim.org>
parents:
18471
diff
changeset
|
2138 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2139 (char_u *)NULL, PV_NONE, NULL, |
18526
334b1f897f3a
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
Bram Moolenaar <Bram@vim.org>
parents:
18471
diff
changeset
|
2140 #endif |
334b1f897f3a
patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window
Bram Moolenaar <Bram@vim.org>
parents:
18471
diff
changeset
|
2141 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2142 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2143 (char_u *)&p_sj, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2144 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2145 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2146 (char_u *)&p_so, PV_SO, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2147 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2148 {"scrollopt", "sbo", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2149 (char_u *)&p_sbo, PV_NONE, did_set_scrollopt, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2150 {(char_u *)"ver,jump", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2151 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2152 {"sections", "sect", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2153 (char_u *)&p_sections, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2154 {(char_u *)"SHNHH HUnhsh", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2155 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2156 {"secure", NULL, P_BOOL|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2157 (char_u *)&p_secure, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2158 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2159 {"selection", "sel", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2160 (char_u *)&p_sel, PV_NONE, did_set_selection, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2161 {(char_u *)"inclusive", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2162 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2163 {"selectmode", "slm", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2164 (char_u *)&p_slm, PV_NONE, did_set_selectmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2165 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2166 {"sessionoptions", "ssop", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2167 #ifdef FEAT_SESSION |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2168 (char_u *)&p_ssop, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2169 did_set_sessionoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2170 {(char_u *)"blank,buffers,curdir,folds,help,options,tabpages,winsize,terminal", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2171 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2172 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2173 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2174 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2175 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2176 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2177 {"shell", "sh", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2178 (char_u *)&p_sh, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2179 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2180 #ifdef VMS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2181 (char_u *)"-", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2182 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2183 # if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2184 (char_u *)"", // set in set_init_1() |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2185 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2186 (char_u *)"sh", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2187 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2188 #endif // VMS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2189 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2190 {"shellcmdflag","shcf", P_STRING|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2191 (char_u *)&p_shcf, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2192 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2193 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2194 (char_u *)"/c", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2195 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2196 (char_u *)"-c", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2197 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2198 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2199 {"shellpipe", "sp", P_STRING|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2200 #ifdef FEAT_QUICKFIX |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2201 (char_u *)&p_sp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2202 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2203 #if defined(UNIX) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2204 (char_u *)"| tee", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2205 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2206 (char_u *)">", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2207 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2208 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2209 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2210 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2211 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2212 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2213 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2214 {"shellquote", "shq", P_STRING|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2215 (char_u *)&p_shq, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2216 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2217 {"shellredir", "srr", P_STRING|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2218 (char_u *)&p_srr, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2219 {(char_u *)">", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2220 {"shellslash", "ssl", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2221 #ifdef BACKSLASH_IN_FILENAME |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2222 (char_u *)&p_ssl, PV_NONE, did_set_shellslash, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2223 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2224 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2225 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2226 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2227 {"shelltemp", "stmp", P_BOOL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2228 (char_u *)&p_stmp, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2229 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2230 {"shelltype", "st", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2231 #ifdef AMIGA |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2232 (char_u *)&p_st, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2233 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2234 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2235 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2236 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2237 {"shellxquote", "sxq", P_STRING|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2238 (char_u *)&p_sxq, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2239 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2240 #if defined(UNIX) && defined(USE_SYSTEM) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2241 (char_u *)"\"", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2242 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2243 (char_u *)"", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2244 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2245 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2246 {"shellxescape", "sxe", P_STRING|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2247 (char_u *)&p_sxe, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2248 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2249 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2250 (char_u *)"\"&|<>()@^", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2251 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2252 (char_u *)"", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2253 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2254 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2255 {"shiftround", "sr", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2256 (char_u *)&p_sr, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2257 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2258 {"shiftwidth", "sw", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2259 (char_u *)&p_sw, PV_SW, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2260 did_set_shiftwidth_tabstop, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2261 {(char_u *)8L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2262 {"shortmess", "shm", P_STRING|P_VIM|P_FLAGLIST, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
2263 (char_u *)&p_shm, PV_NONE, did_set_shortmess, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2264 {(char_u *)"S", (char_u *)"filnxtToOS"} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2265 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2266 {"shortname", "sn", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2267 (char_u *)&p_sn, PV_SN, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2268 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2269 {"showbreak", "sbr", P_STRING|P_VI_DEF|P_RALL, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2270 #ifdef FEAT_LINEBREAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2271 (char_u *)&p_sbr, PV_SBR, did_set_showbreak, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2272 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2273 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2274 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2275 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2276 {"showcmd", "sc", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2277 (char_u *)&p_sc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2278 {(char_u *)FALSE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2279 #ifdef UNIX |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2280 (char_u *)FALSE |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2281 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2282 (char_u *)TRUE |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2283 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2284 } SCTX_INIT}, |
31457
bb797331e21b
patch 9.0.1061: cannot display 'showcmd' somewhere else
Bram Moolenaar <Bram@vim.org>
parents:
31299
diff
changeset
|
2285 {"showcmdloc", "sloc", P_STRING|P_RSTAT, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2286 (char_u *)&p_sloc, PV_NONE, did_set_showcmdloc, |
31457
bb797331e21b
patch 9.0.1061: cannot display 'showcmd' somewhere else
Bram Moolenaar <Bram@vim.org>
parents:
31299
diff
changeset
|
2287 {(char_u *)"last", (char_u *)"last"} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2288 {"showfulltag", "sft", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2289 (char_u *)&p_sft, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2290 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2291 {"showmatch", "sm", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2292 (char_u *)&p_sm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2293 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2294 {"showmode", "smd", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2295 (char_u *)&p_smd, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2296 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2297 {"showtabline", "stal", P_NUM|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2298 (char_u *)&p_stal, PV_NONE, did_set_showtabline, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2299 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2300 {"sidescroll", "ss", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2301 (char_u *)&p_ss, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2302 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2303 {"sidescrolloff", "siso", P_NUM|P_VI_DEF|P_VIM|P_RBUF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2304 (char_u *)&p_siso, PV_SISO, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2305 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2306 {"signcolumn", "scl", P_STRING|P_ALLOCED|P_VI_DEF|P_RCLR, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2307 #ifdef FEAT_SIGNS |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2308 (char_u *)VAR_WIN, PV_SCL, did_set_signcolumn, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2309 {(char_u *)"auto", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2310 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2311 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2312 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2313 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2314 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2315 {"slowopen", "slow", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2316 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2317 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2318 {"smartcase", "scs", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2319 (char_u *)&p_scs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2320 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2321 {"smartindent", "si", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2322 (char_u *)&p_si, PV_SI, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2323 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2324 {"smarttab", "sta", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2325 (char_u *)&p_sta, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2326 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
30610
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
2327 {"smoothscroll", "sms", P_BOOL|P_VI_DEF|P_RWIN, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2328 (char_u *)VAR_WIN, PV_SMS, did_set_smoothscroll, |
30610
6c6ac189a05f
patch 9.0.0640: cannot scroll by screen line if a line wraps
Bram Moolenaar <Bram@vim.org>
parents:
30219
diff
changeset
|
2329 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2330 {"softtabstop", "sts", P_NUM|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2331 (char_u *)&p_sts, PV_STS, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2332 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2333 {"sourceany", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2334 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2335 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2336 {"spell", NULL, P_BOOL|P_VI_DEF|P_RWIN, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2337 #ifdef FEAT_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:
31804
diff
changeset
|
2338 (char_u *)VAR_WIN, PV_SPELL, did_set_spell, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2339 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2340 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2341 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2342 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2343 {"spellcapcheck", "spc", P_STRING|P_ALLOCED|P_VI_DEF|P_RBUF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2344 #ifdef FEAT_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:
31804
diff
changeset
|
2345 (char_u *)&p_spc, PV_SPC, did_set_spellcapcheck, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2346 {(char_u *)"[.?!]\\_[\\])'\" ]\\+", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2347 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2348 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2349 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2350 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2351 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2352 {"spellfile", "spf", P_STRING|P_EXPAND|P_ALLOCED|P_VI_DEF|P_SECURE |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2353 |P_ONECOMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2354 #ifdef FEAT_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:
31804
diff
changeset
|
2355 (char_u *)&p_spf, PV_SPF, did_set_spellfile, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2356 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2357 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2358 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2359 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2360 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2361 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2362 {"spelllang", "spl", P_STRING|P_ALLOCED|P_VI_DEF|P_ONECOMMA |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2363 |P_RBUF|P_EXPAND, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2364 #ifdef FEAT_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:
31804
diff
changeset
|
2365 (char_u *)&p_spl, PV_SPL, did_set_spelllang, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2366 {(char_u *)"en", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2367 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2368 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2369 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2370 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2371 SCTX_INIT}, |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2372 {"spelloptions", "spo", P_STRING|P_ALLOCED|P_VI_DEF |
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2373 |P_ONECOMMA|P_NODUP|P_RBUF, |
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2374 #ifdef FEAT_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:
31804
diff
changeset
|
2375 (char_u *)&p_spo, PV_SPO, did_set_spelloptions, |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2376 {(char_u *)"", (char_u *)0L} |
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2377 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2378 (char_u *)NULL, PV_NONE, NULL, |
20802
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2379 {(char_u *)0L, (char_u *)0L} |
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2380 #endif |
ed00f0fbdaef
patch 8.2.0953: spell checking doesn't work for CamelCased words
Bram Moolenaar <Bram@vim.org>
parents:
20631
diff
changeset
|
2381 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2382 {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_ONECOMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2383 #ifdef FEAT_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:
31804
diff
changeset
|
2384 (char_u *)&p_sps, PV_NONE, did_set_spellsuggest, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2385 {(char_u *)"best", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2386 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2387 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2388 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2389 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2390 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2391 {"splitbelow", "sb", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2392 (char_u *)&p_sb, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2393 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
30624
f2f35161d75a
patch 9.0.0647: the 'splitscroll' option is not a good name
Bram Moolenaar <Bram@vim.org>
parents:
30610
diff
changeset
|
2394 {"splitkeep", "spk", P_STRING, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2395 (char_u *)&p_spk, PV_NONE, did_set_splitkeep, |
30624
f2f35161d75a
patch 9.0.0647: the 'splitscroll' option is not a good name
Bram Moolenaar <Bram@vim.org>
parents:
30610
diff
changeset
|
2396 {(char_u *)"cursor", (char_u *)"cursor"} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2397 {"splitright", "spr", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2398 (char_u *)&p_spr, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2399 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2400 {"startofline", "sol", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2401 (char_u *)&p_sol, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2402 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2403 {"statusline" ,"stl", P_STRING|P_VI_DEF|P_ALLOCED|P_RSTAT|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2404 #ifdef FEAT_STL_OPT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2405 (char_u *)&p_stl, PV_STL, did_set_statusline, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2406 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2407 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2408 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2409 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2410 {"suffixes", "su", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2411 (char_u *)&p_su, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2412 {(char_u *)".bak,~,.o,.h,.info,.swp,.obj", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2413 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2414 {"suffixesadd", "sua", P_STRING|P_VI_DEF|P_ALLOCED|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2415 (char_u *)&p_sua, PV_SUA, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2416 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2417 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2418 {"swapfile", "swf", P_BOOL|P_VI_DEF|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2419 (char_u *)&p_swf, PV_SWF, did_set_swapfile, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2420 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2421 {"swapsync", "sws", P_STRING|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2422 (char_u *)&p_sws, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2423 {(char_u *)"fsync", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2424 {"switchbuf", "swb", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2425 (char_u *)&p_swb, PV_NONE, did_set_switchbuf, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2426 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2427 {"synmaxcol", "smc", P_NUM|P_VI_DEF|P_RBUF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2428 #ifdef FEAT_SYN_HL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2429 (char_u *)&p_smc, PV_SMC, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2430 {(char_u *)3000L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2431 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2432 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2433 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2434 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2435 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2436 {"syntax", "syn", P_STRING|P_ALLOCED|P_VI_DEF|P_NOGLOB|P_NFNAME, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2437 #ifdef FEAT_SYN_HL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2438 (char_u *)&p_syn, PV_SYN, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2439 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2440 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2441 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2442 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2443 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2444 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2445 {"tabline", "tal", P_STRING|P_VI_DEF|P_RALL|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2446 #ifdef FEAT_STL_OPT |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2447 (char_u *)&p_tal, PV_NONE, did_set_tabline, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2448 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2449 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2450 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2451 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2452 {"tabpagemax", "tpm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2453 (char_u *)&p_tpm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2454 {(char_u *)10L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2455 {"tabstop", "ts", P_NUM|P_VI_DEF|P_RBUF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2456 (char_u *)&p_ts, PV_TS, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2457 did_set_shiftwidth_tabstop, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2458 {(char_u *)8L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2459 {"tagbsearch", "tbs", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2460 (char_u *)&p_tbs, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2461 #ifdef VMS // binary searching doesn't appear to work on VMS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2462 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2463 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2464 {(char_u *)TRUE, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2465 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2466 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2467 {"tagcase", "tc", P_STRING|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2468 (char_u *)&p_tc, PV_TC, did_set_tagcase, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2469 {(char_u *)"followic", (char_u *)"followic"} SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2470 {"tagfunc", "tfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE|P_FUNC, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2471 #ifdef FEAT_EVAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2472 (char_u *)&p_tfu, PV_TFU, did_set_tagfunc, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2473 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2474 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2475 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2476 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2477 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2478 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2479 {"taglength", "tl", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2480 (char_u *)&p_tl, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2481 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2482 {"tagrelative", "tr", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2483 (char_u *)&p_tr, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2484 {(char_u *)FALSE, (char_u *)TRUE} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2485 {"tags", "tag", P_STRING|P_EXPAND|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2486 (char_u *)&p_tags, PV_TAGS, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2487 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2488 #if defined(FEAT_EMACS_TAGS) && !defined(CASE_INSENSITIVE_FILENAME) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2489 (char_u *)"./tags,./TAGS,tags,TAGS", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2490 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2491 (char_u *)"./tags,tags", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2492 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2493 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2494 {"tagstack", "tgst", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2495 (char_u *)&p_tgst, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2496 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2497 {"tcldll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2498 #if defined(DYNAMIC_TCL) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2499 (char_u *)&p_tcldll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2500 {(char_u *)DYNAMIC_TCL_DLL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2501 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2502 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2503 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2504 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2505 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2506 {"term", NULL, P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2507 (char_u *)&T_NAME, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2508 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2509 {"termbidi", "tbidi", P_BOOL|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2510 #ifdef FEAT_ARABIC |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2511 (char_u *)&p_tbidi, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2512 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2513 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2514 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2515 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2516 {"termencoding", "tenc", P_STRING|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2517 (char_u *)&p_tenc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2518 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2519 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2520 {"termguicolors", "tgc", P_BOOL|P_VI_DEF|P_VIM|P_RCLR, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2521 #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:
31804
diff
changeset
|
2522 (char_u *)&p_tgc, PV_NONE, did_set_termguicolors, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2523 {(char_u *)FALSE, (char_u *)FALSE} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2524 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2525 (char_u*)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2526 {(char_u *)FALSE, (char_u *)FALSE} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2527 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2528 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2529 {"termwinkey", "twk", P_STRING|P_ALLOCED|P_RWIN|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2530 #ifdef FEAT_TERMINAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2531 (char_u *)VAR_WIN, PV_TWK, did_set_termwinkey, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2532 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2533 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2534 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2535 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2536 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2537 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2538 {"termwinscroll", "twsl", P_NUM|P_VI_DEF|P_VIM|P_RBUF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2539 #ifdef FEAT_TERMINAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2540 (char_u *)&p_twsl, PV_TWSL, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2541 {(char_u *)10000L, (char_u *)10000L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2542 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2543 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2544 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2545 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2546 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2547 {"termwinsize", "tws", P_STRING|P_ALLOCED|P_RWIN|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2548 #ifdef FEAT_TERMINAL |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2549 (char_u *)VAR_WIN, PV_TWS, did_set_termwinsize, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2550 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2551 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2552 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2553 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2554 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2555 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2556 {"termwintype", "twt", P_STRING|P_ALLOCED|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2557 #if defined(MSWIN) && defined(FEAT_TERMINAL) |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2558 (char_u *)&p_twt, PV_NONE, did_set_termwintype, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2559 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2560 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2561 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2562 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2563 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2564 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2565 {"terse", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2566 (char_u *)&p_terse, PV_NONE, did_set_terse, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2567 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2568 {"textauto", "ta", P_BOOL|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2569 (char_u *)&p_ta, PV_NONE, did_set_textauto, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2570 {(char_u *)DFLT_TEXTAUTO, (char_u *)TRUE} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2571 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2572 {"textmode", "tx", P_BOOL|P_VI_DEF|P_NO_MKRC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2573 (char_u *)&p_tx, PV_TX, did_set_textmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2574 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2575 #ifdef USE_CRNL |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2576 (char_u *)TRUE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2577 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2578 (char_u *)FALSE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2579 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2580 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2581 {"textwidth", "tw", P_NUM|P_VI_DEF|P_VIM|P_RBUF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2582 (char_u *)&p_tw, PV_TW, did_set_textwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2583 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2584 {"thesaurus", "tsr", P_STRING|P_EXPAND|P_VI_DEF|P_ONECOMMA|P_NODUP|P_NDNAME, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2585 (char_u *)&p_tsr, PV_TSR, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2586 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
26441
65ab0b035dd8
patch 8.2.3751: cannot assign a lambda to an option that takes a function
Bram Moolenaar <Bram@vim.org>
parents:
26336
diff
changeset
|
2587 {"thesaurusfunc", "tsrfu", P_STRING|P_ALLOCED|P_VI_DEF|P_SECURE|P_FUNC, |
25974
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2588 #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:
25982
diff
changeset
|
2589 (char_u *)&p_tsrfu, PV_TSRFU, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2590 did_set_thesaurusfunc, |
25974
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2591 {(char_u *)"", (char_u *)0L} |
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2592 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2593 (char_u *)NULL, PV_NONE, NULL, |
25974
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2594 {(char_u *)0L, (char_u *)0L} |
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2595 #endif |
416237f1de22
patch 8.2.3520: cannot define a function for thesaurus completion
Bram Moolenaar <Bram@vim.org>
parents:
25380
diff
changeset
|
2596 SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2597 {"tildeop", "top", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2598 (char_u *)&p_to, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2599 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2600 {"timeout", "to", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2601 (char_u *)&p_timeout, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2602 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2603 {"timeoutlen", "tm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2604 (char_u *)&p_tm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2605 {(char_u *)1000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2606 {"title", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2607 (char_u *)&p_title, PV_NONE, did_set_title_icon, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2608 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2609 {"titlelen", NULL, P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2610 (char_u *)&p_titlelen, PV_NONE, did_set_titlelen, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2611 {(char_u *)85L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2612 {"titleold", NULL, P_STRING|P_VI_DEF|P_GETTEXT|P_SECURE|P_NO_MKRC, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2613 (char_u *)&p_titleold, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2614 {(char_u *)N_("Thanks for flying Vim"), |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2615 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2616 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2617 {"titlestring", NULL, P_STRING|P_VI_DEF|P_MLE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2618 (char_u *)&p_titlestring, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2619 did_set_titlestring, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2620 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2621 {"toolbar", "tb", P_STRING|P_ONECOMMA|P_VI_DEF|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2622 #if defined(FEAT_TOOLBAR) && !defined(FEAT_GUI_MSWIN) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2623 (char_u *)&p_toolbar, PV_NONE, did_set_toolbar, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2624 {(char_u *)"icons,tooltips", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2625 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2626 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2627 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2628 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2629 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2630 {"toolbariconsize", "tbis", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2631 #if defined(FEAT_TOOLBAR) && defined(FEAT_GUI_GTK) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2632 (char_u *)&p_tbis, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2633 did_set_toolbariconsize, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2634 {(char_u *)"small", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2635 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2636 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2637 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2638 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2639 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2640 {"ttimeout", NULL, P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2641 (char_u *)&p_ttimeout, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2642 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2643 {"ttimeoutlen", "ttm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2644 (char_u *)&p_ttm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2645 {(char_u *)-1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2646 {"ttybuiltin", "tbi", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2647 (char_u *)&p_tbi, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2648 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2649 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2650 (char_u *)&p_tf, PV_NONE, NULL, |
31229
5b71c3884a2a
patch 9.0.0948: 'ttyfast' is set for arbitrary terminals
Bram Moolenaar <Bram@vim.org>
parents:
31192
diff
changeset
|
2651 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2652 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF, |
18354
9f51d0cef8da
patch 8.1.2171: mouse support not always available
Bram Moolenaar <Bram@vim.org>
parents:
18299
diff
changeset
|
2653 #if defined(UNIX) || defined(VMS) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2654 (char_u *)&p_ttym, PV_NONE, did_set_ttymouse, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2655 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2656 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2657 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2658 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2659 {"ttyscroll", "tsl", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2660 (char_u *)&p_ttyscroll, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2661 {(char_u *)999L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2662 {"ttytype", "tty", P_STRING|P_EXPAND|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RALL, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2663 (char_u *)&T_NAME, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2664 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2665 {"undodir", "udir", P_STRING|P_EXPAND|P_ONECOMMA|P_NODUP|P_SECURE |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2666 |P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2667 #ifdef FEAT_PERSISTENT_UNDO |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2668 (char_u *)&p_udir, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2669 {(char_u *)".", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2670 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2671 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2672 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2673 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2674 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2675 {"undofile", "udf", P_BOOL|P_VI_DEF|P_VIM, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2676 #ifdef FEAT_PERSISTENT_UNDO |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2677 (char_u *)&p_udf, PV_UDF, did_set_undofile, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2678 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2679 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2680 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2681 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2682 {"undolevels", "ul", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2683 (char_u *)&p_ul, PV_UL, did_set_undolevels, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2684 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2685 #if defined(UNIX) || defined(MSWIN) || defined(VMS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2686 (char_u *)1000L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2687 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2688 (char_u *)100L, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2689 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2690 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2691 {"undoreload", "ur", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2692 (char_u *)&p_ur, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2693 { (char_u *)10000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2694 {"updatecount", "uc", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2695 (char_u *)&p_uc, PV_NONE, did_set_updatecount, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2696 {(char_u *)200L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2697 {"updatetime", "ut", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2698 (char_u *)&p_ut, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2699 {(char_u *)4000L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2700 {"varsofttabstop", "vsts", P_STRING|P_VI_DEF|P_VIM|P_COMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2701 #ifdef FEAT_VARTABS |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2702 (char_u *)&p_vsts, PV_VSTS, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2703 did_set_varsofttabstop, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2704 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2705 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2706 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2707 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2708 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2709 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2710 {"vartabstop", "vts", P_STRING|P_VI_DEF|P_VIM|P_RBUF|P_COMMA, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2711 #ifdef FEAT_VARTABS |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2712 (char_u *)&p_vts, PV_VTS, did_set_vartabstop, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2713 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2714 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2715 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2716 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2717 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2718 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2719 {"verbose", "vbs", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2720 (char_u *)&p_verbose, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2721 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2722 {"verbosefile", "vfile", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2723 (char_u *)&p_vfile, PV_NONE, did_set_verbosefile, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2724 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2725 {"viewdir", "vdir", P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2726 #ifdef FEAT_SESSION |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2727 (char_u *)&p_vdir, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2728 {(char_u *)DFLT_VDIR, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2729 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2730 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2731 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2732 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2733 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2734 {"viewoptions", "vop", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2735 #ifdef FEAT_SESSION |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2736 (char_u *)&p_vop, PV_NONE, did_set_viewoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2737 {(char_u *)"folds,options,cursor,curdir", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2738 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2739 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2740 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2741 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2742 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2743 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2744 {"viminfo", "vi", P_STRING|P_ONECOMMA|P_NODUP|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2745 #ifdef FEAT_VIMINFO |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
2746 (char_u *)&p_viminfo, PV_NONE, did_set_viminfo, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2747 #if defined(MSWIN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2748 {(char_u *)"", (char_u *)"'100,<50,s10,h,rA:,rB:"} |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
2749 #elif defined(AMIGA) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2750 {(char_u *)"", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2751 (char_u *)"'100,<50,s10,h,rdf0:,rdf1:,rdf2:"} |
28337
1cd053ebb5fc
patch 8.2.4694: avoidance of #elif causes more preproc nesting
Bram Moolenaar <Bram@vim.org>
parents:
28297
diff
changeset
|
2752 #else |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2753 {(char_u *)"", (char_u *)"'100,<50,s10,h"} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2754 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2755 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2756 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2757 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2758 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2759 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2760 {"viminfofile", "vif", P_STRING|P_EXPAND|P_ONECOMMA|P_NODUP |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2761 |P_SECURE|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2762 #ifdef FEAT_VIMINFO |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2763 (char_u *)&p_viminfofile, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2764 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2765 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2766 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2767 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2768 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2769 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2770 {"virtualedit", "ve", P_STRING|P_ONECOMMA|P_NODUP|P_VI_DEF |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2771 |P_VIM|P_CURSWANT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2772 (char_u *)&p_ve, PV_VE, did_set_virtualedit, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2773 {(char_u *)"", (char_u *)""} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2774 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2775 {"visualbell", "vb", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2776 (char_u *)&p_vb, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2777 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2778 {"w300", NULL, P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2779 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2780 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2781 {"w1200", NULL, P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2782 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2783 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2784 {"w9600", NULL, P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2785 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2786 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2787 {"warn", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2788 (char_u *)&p_warn, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2789 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2790 {"weirdinvert", "wiv", P_BOOL|P_VI_DEF|P_RCLR, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2791 (char_u *)&p_wiv, PV_NONE, did_set_weirdinvert, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2792 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2793 {"whichwrap", "ww", P_STRING|P_VIM|P_ONECOMMA|P_FLAGLIST, |
32043
6095218c9056
patch 9.0.1353: too many "else if" statements to handle option values
Bram Moolenaar <Bram@vim.org>
parents:
32027
diff
changeset
|
2794 (char_u *)&p_ww, PV_NONE, did_set_whichwrap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2795 {(char_u *)"", (char_u *)"b,s"} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2796 {"wildchar", "wc", P_NUM|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2797 (char_u *)&p_wc, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2798 {(char_u *)(long)Ctrl_E, (char_u *)(long)TAB} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2799 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2800 {"wildcharm", "wcm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2801 (char_u *)&p_wcm, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2802 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2803 {"wildignore", "wig", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2804 (char_u *)&p_wig, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2805 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2806 {"wildignorecase", "wic", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2807 (char_u *)&p_wic, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2808 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2809 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2810 (char_u *)&p_wmnu, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2811 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2812 {"wildmode", "wim", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2813 (char_u *)&p_wim, PV_NONE, did_set_wildmode, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2814 {(char_u *)"full", (char_u *)0L} SCTX_INIT}, |
20512
33a67d1dcaf0
patch 8.2.0810: error when appending "tagfile" to 'wildoptions'
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
2815 {"wildoptions", "wop", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2816 (char_u *)&p_wop, PV_NONE, did_set_wildoptions, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2817 {(char_u *)"", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2818 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2819 {"winaltkeys", "wak", P_STRING|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2820 #ifdef FEAT_WAK |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2821 (char_u *)&p_wak, PV_NONE, did_set_winaltkeys, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2822 {(char_u *)"menu", (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2823 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2824 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2825 {(char_u *)NULL, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2826 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2827 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2828 {"wincolor", "wcr", P_STRING|P_ALLOCED|P_VI_DEF|P_RWIN, |
32027
ef124f222fc2
patch 9.0.1345: too many "else if" statements for handling options
Bram Moolenaar <Bram@vim.org>
parents:
31996
diff
changeset
|
2829 (char_u *)VAR_WIN, PV_WCR, did_set_wincolor, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2830 {(char_u *)"", (char_u *)NULL} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2831 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2832 {"window", "wi", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2833 (char_u *)&p_window, PV_NONE, did_set_window, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2834 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2835 {"winheight", "wh", P_NUM|P_VI_DEF, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2836 (char_u *)&p_wh, PV_NONE, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2837 did_set_winheight_helpheight, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2838 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2839 {"winfixheight", "wfh", P_BOOL|P_VI_DEF|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2840 (char_u *)VAR_WIN, PV_WFH, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2841 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2842 {"winfixwidth", "wfw", P_BOOL|P_VI_DEF|P_RSTAT, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2843 (char_u *)VAR_WIN, PV_WFW, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2844 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2845 {"winminheight", "wmh", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2846 (char_u *)&p_wmh, PV_NONE, did_set_winminheight, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2847 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2848 {"winminwidth", "wmw", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2849 (char_u *)&p_wmw, PV_NONE, did_set_winminwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2850 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2851 {"winptydll", NULL, P_STRING|P_EXPAND|P_VI_DEF|P_SECURE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2852 #if defined(MSWIN) && defined(FEAT_TERMINAL) |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2853 (char_u *)&p_winptydll, PV_NONE, NULL, { |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2854 # ifdef _WIN64 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2855 (char_u *)"winpty64.dll", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2856 # else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2857 (char_u *)"winpty32.dll", |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2858 # endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2859 (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2860 #else |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2861 (char_u *)NULL, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2862 {(char_u *)0L, (char_u *)0L} |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2863 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2864 SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2865 {"winwidth", "wiw", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2866 (char_u *)&p_wiw, PV_NONE, did_set_winwidth, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2867 {(char_u *)20L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2868 {"wrap", NULL, P_BOOL|P_VI_DEF|P_RWIN, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2869 (char_u *)VAR_WIN, PV_WRAP, did_set_wrap, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2870 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2871 {"wrapmargin", "wm", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2872 (char_u *)&p_wm, PV_WM, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2873 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2874 {"wrapscan", "ws", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2875 (char_u *)&p_ws, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2876 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2877 {"write", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2878 (char_u *)&p_write, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2879 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2880 {"writeany", "wa", P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2881 (char_u *)&p_wa, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2882 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2883 {"writebackup", "wb", P_BOOL|P_VI_DEF|P_VIM, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2884 (char_u *)&p_wb, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2885 { |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2886 #ifdef FEAT_WRITEBACKUP |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2887 (char_u *)TRUE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2888 #else |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2889 (char_u *)FALSE, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2890 #endif |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2891 (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2892 {"writedelay", "wd", P_NUM|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2893 (char_u *)&p_wd, PV_NONE, NULL, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2894 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, |
26670
a77b661439f9
patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents:
26500
diff
changeset
|
2895 {"xtermcodes", NULL, P_BOOL|P_VI_DEF, |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2896 (char_u *)&p_xtermcodes, PV_NONE, NULL, |
26670
a77b661439f9
patch 8.2.3864: cannot disable requesting key codes from xterm
Bram Moolenaar <Bram@vim.org>
parents:
26500
diff
changeset
|
2897 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2898 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2899 // terminal output codes |
31804
50555279168b
patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents:
31672
diff
changeset
|
2900 #define p_term(sss, vvv) \ |
50555279168b
patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents:
31672
diff
changeset
|
2901 {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \ |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2902 (char_u *)&vvv, PV_NONE, NULL, \ |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2903 {(char_u *)"", (char_u *)0L} SCTX_INIT}, |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2904 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2905 p_term("t_AB", T_CAB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2906 p_term("t_AF", T_CAF) |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20512
diff
changeset
|
2907 p_term("t_AU", T_CAU) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2908 p_term("t_AL", T_CAL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2909 p_term("t_al", T_AL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2910 p_term("t_bc", T_BC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2911 p_term("t_BE", T_BE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2912 p_term("t_BD", T_BD) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2913 p_term("t_cd", T_CD) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2914 p_term("t_ce", T_CE) |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
2915 p_term("t_Ce", T_UCE) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2916 p_term("t_cl", T_CL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2917 p_term("t_cm", T_CM) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2918 p_term("t_Co", T_CCO) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2919 p_term("t_CS", T_CCS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2920 p_term("t_Cs", T_UCS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2921 p_term("t_cs", T_CS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2922 p_term("t_CV", T_CSV) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2923 p_term("t_da", T_DA) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2924 p_term("t_db", T_DB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2925 p_term("t_DL", T_CDL) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2926 p_term("t_dl", T_DL) |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
2927 p_term("t_ds", T_DS) |
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
2928 p_term("t_Ds", T_CDS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2929 p_term("t_EC", T_CEC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2930 p_term("t_EI", T_CEI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2931 p_term("t_fs", T_FS) |
23606
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
2932 p_term("t_fd", T_FD) |
f98939164e91
patch 8.2.2345: no focus events in a terminal
Bram Moolenaar <Bram@vim.org>
parents:
21745
diff
changeset
|
2933 p_term("t_fe", T_FE) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2934 p_term("t_GP", T_CGP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2935 p_term("t_IE", T_CIE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2936 p_term("t_IS", T_CIS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2937 p_term("t_ke", T_KE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2938 p_term("t_ks", T_KS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2939 p_term("t_le", T_LE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2940 p_term("t_mb", T_MB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2941 p_term("t_md", T_MD) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2942 p_term("t_me", T_ME) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2943 p_term("t_mr", T_MR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2944 p_term("t_ms", T_MS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2945 p_term("t_nd", T_ND) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2946 p_term("t_op", T_OP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2947 p_term("t_RF", T_RFG) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2948 p_term("t_RB", T_RBG) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2949 p_term("t_RC", T_CRC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2950 p_term("t_RI", T_CRI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2951 p_term("t_Ri", T_SRI) |
31299
f8d32833cf31
patch 9.0.0983: stray characters displayed when starting the GUI
Bram Moolenaar <Bram@vim.org>
parents:
31229
diff
changeset
|
2952 p_term("t_RK", T_CRK) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2953 p_term("t_RS", T_CRS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2954 p_term("t_RT", T_CRT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2955 p_term("t_RV", T_CRV) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2956 p_term("t_Sb", T_CSB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2957 p_term("t_SC", T_CSC) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2958 p_term("t_se", T_SE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2959 p_term("t_Sf", T_CSF) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2960 p_term("t_SH", T_CSH) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2961 p_term("t_SI", T_CSI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2962 p_term("t_Si", T_SSI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2963 p_term("t_so", T_SO) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2964 p_term("t_SR", T_CSR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2965 p_term("t_sr", T_SR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2966 p_term("t_ST", T_CST) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2967 p_term("t_Te", T_STE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2968 p_term("t_te", T_TE) |
18299
a9cf41bcb5d6
patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
2969 p_term("t_TE", T_CTE) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2970 p_term("t_ti", T_TI) |
18299
a9cf41bcb5d6
patch 8.1.2144: side effects when using t_ti to enable modifyOtherKeys
Bram Moolenaar <Bram@vim.org>
parents:
18203
diff
changeset
|
2971 p_term("t_TI", T_CTI) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2972 p_term("t_Ts", T_STS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2973 p_term("t_ts", T_TS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2974 p_term("t_u7", T_U7) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2975 p_term("t_ue", T_UE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2976 p_term("t_us", T_US) |
29328
60977de70684
patch 9.0.0007: no support for double, dotted and dashed underlines
Bram Moolenaar <Bram@vim.org>
parents:
28942
diff
changeset
|
2977 p_term("t_Us", T_USS) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2978 p_term("t_ut", T_UT) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2979 p_term("t_vb", T_VB) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2980 p_term("t_ve", T_VE) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2981 p_term("t_vi", T_VI) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2982 p_term("t_VS", T_CVS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2983 p_term("t_vs", T_VS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2984 p_term("t_WP", T_CWP) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2985 p_term("t_WS", T_CWS) |
31672
9dc48932db8e
patch 9.0.1168: code to enable/disable mouse is not from terminfo/termcap
Bram Moolenaar <Bram@vim.org>
parents:
31457
diff
changeset
|
2986 p_term("t_XM", T_CXM) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2987 p_term("t_xn", T_XN) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2988 p_term("t_xs", T_XS) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2989 p_term("t_ZH", T_CZH) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2990 p_term("t_ZR", T_CZR) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2991 p_term("t_8f", T_8F) |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2992 p_term("t_8b", T_8B) |
20619
68c206d3a251
patch 8.2.0863: cannot set a separate color for underline/undercurl
Bram Moolenaar <Bram@vim.org>
parents:
20512
diff
changeset
|
2993 p_term("t_8u", T_8U) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2994 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2995 // terminal key codes are not in here |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2996 |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2997 // end marker |
31996
ca6bc7c04163
patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents:
31804
diff
changeset
|
2998 {NULL, NULL, 0, NULL, PV_NONE, NULL, {NULL, NULL} SCTX_INIT} |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2999 }; |
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3000 |
24768
7334bf933510
patch 8.2.2922: computing array length is done in various ways
Bram Moolenaar <Bram@vim.org>
parents:
24268
diff
changeset
|
3001 #define OPTION_COUNT ARRAY_LENGTH(options) |
18054
88b5c2b4e3d2
patch 8.1.2022: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3002 |
18100
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3003 // The following is needed to make the gen_opt_test.vim script work. |
df5778d73320
patch 8.1.2045: the option.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
18068
diff
changeset
|
3004 // {" |