Mercurial > vim
annotate src/ex_cmds.h @ 27140:a9eeb18e749c v8.2.4099
patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Commit: https://github.com/vim/vim/commit/e32c3c462ce9b3163a4a4bffd985897910885d29
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 15 18:26:04 2022 +0000
patch 8.2.4099: Vim9: cannot use Vim9 syntax in mapping
Problem: Vim9: cannot use Vim9 syntax in mapping.
Solution: Add <ScriptCmd> to use the script context for a command.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Jan 2022 19:30:04 +0100 |
parents | 2bdcce61a4e4 |
children | 212c5894b8b1 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9980
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 */ | |
8 | |
9 /* | |
10 * This file defines the Ex commands. | |
11 * When DO_DECLARE_EXCMD is defined, the table with ex command names and | |
12 * options results. | |
13 * When DO_DECLARE_EXCMD is NOT defined, the enum with all the Ex commands | |
14 * results. | |
15 * This clever trick was invented by Ron Aaron. | |
16 */ | |
17 | |
18 /* | |
19 * When adding an Ex command: | |
20 * 1. Add an entry in the table below. Keep it sorted on the shortest | |
21 * version of the command name that works. If it doesn't start with a | |
22 * lower case letter, add it at the end. | |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14536
diff
changeset
|
23 * 2. Run "make cmdidxs" to re-generate ex_cmdidxs.h. |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14536
diff
changeset
|
24 * 3. Add a "case: CMD_xxx" in the big switch in ex_docmd.c. |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14536
diff
changeset
|
25 * 4. Add an entry in the index for Ex commands at ":help ex-cmd-index". |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14536
diff
changeset
|
26 * 5. Add documentation in ../doc/xxx.txt. Add a tag for both the short and |
7 | 27 * long name of the command. |
28 */ | |
29 | |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
30 #define EX_RANGE 0x001 // allow a linespecs |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
31 #define EX_BANG 0x002 // allow a ! after the command name |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
32 #define EX_EXTRA 0x004 // allow extra args after command name |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
33 #define EX_XFILE 0x008 // expand wildcards in extra part |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
34 #define EX_NOSPC 0x010 // no spaces allowed in the extra part |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
35 #define EX_DFLALL 0x020 // default file range is 1,$ |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
36 #define EX_WHOLEFOLD 0x040 // extend range to include whole fold also |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
37 // when less than two numbers given |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
38 #define EX_NEEDARG 0x080 // argument required |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
39 #define EX_TRLBAR 0x100 // check for trailing vertical bar |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
40 #define EX_REGSTR 0x200 // allow "x for register designation |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
41 #define EX_COUNT 0x400 // allow count in argument, after command |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
42 #define EX_NOTRLCOM 0x800 // no trailing comment allowed |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
43 #define EX_ZEROR 0x1000 // zero line number allowed |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
44 #define EX_CTRLV 0x2000 // do not remove CTRL-V from argument |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
45 #define EX_CMDARG 0x4000 // allow "+command" argument |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
46 #define EX_BUFNAME 0x8000 // accepts buffer name |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
47 #define EX_BUFUNL 0x10000 // accepts unlisted buffer too |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
48 #define EX_ARGOPT 0x20000 // allow "++opt=val" argument |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
49 #define EX_SBOXOK 0x40000 // allowed in the sandbox |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
50 #define EX_CMDWIN 0x80000 // allowed in cmdline window |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
51 #define EX_MODIFY 0x100000 // forbidden in non-'modifiable' buffer |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
52 #define EX_FLAGS 0x200000 // allow flags after count in argument |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
53 #define EX_RESTRICT 0x400000 // forbidden in restricted mode |
20172
1d84eaed0ec8
patch 8.2.0641: Vim9: not expanded in :hardcopy and syn-include
Bram Moolenaar <Bram@vim.org>
parents:
20075
diff
changeset
|
54 #define EX_EXPAND 0x800000 // expands wildcards later |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
55 #define EX_LOCK_OK 0x1000000 // command can be executed when textlock is |
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
56 // set; when missing disallows editing another |
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
57 // buffer when curbuf_lock is set |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
58 #define EX_NONWHITE_OK 0x2000000 // command can be followed by non-white |
26103
d079ab2ba260
patch 8.2.3584: "verbose set efm" reports location of the :compiler command
Bram Moolenaar <Bram@vim.org>
parents:
25729
diff
changeset
|
59 #define EX_KEEPSCRIPT 0x4000000 // keep sctx of where command was invoked |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
60 #define EX_EXPR_ARG 0x8000000 // argument is an expression |
20172
1d84eaed0ec8
patch 8.2.0641: Vim9: not expanded in :hardcopy and syn-include
Bram Moolenaar <Bram@vim.org>
parents:
20075
diff
changeset
|
61 |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
62 #define EX_FILES (EX_XFILE | EX_EXTRA) // multiple extra files allowed |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
63 #define EX_FILE1 (EX_FILES | EX_NOSPC) // 1 file, defaults to current file |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
64 #define EX_WORD1 (EX_EXTRA | EX_NOSPC) // one extra word allowed |
7 | 65 |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
66 #ifndef DO_DECLARE_EXCMD |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
67 /* |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
68 * values for cmd_addr_type |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
69 */ |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
70 typedef enum { |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
71 ADDR_LINES, // buffer line numbers |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
72 ADDR_WINDOWS, // window number |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
73 ADDR_ARGUMENTS, // argument number |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
74 ADDR_LOADED_BUFFERS, // buffer number of loaded buffer |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
75 ADDR_BUFFERS, // buffer number |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
76 ADDR_TABS, // tab page number |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
77 ADDR_TABS_RELATIVE, // Tab page that only relative |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
78 ADDR_QUICKFIX_VALID, // quickfix list valid entry number |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
79 ADDR_QUICKFIX, // quickfix list entry number |
16515
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
80 ADDR_UNSIGNED, // positive count or zero, defaults to 1 |
6e87a69b8e0c
patch 8.1.1261: no error for quickfix commands with negative range
Bram Moolenaar <Bram@vim.org>
parents:
16505
diff
changeset
|
81 ADDR_OTHER, // something else, use line number for '$', '%', etc. |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
82 ADDR_NONE // no range used |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
83 } cmd_addr_T; |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
84 #endif |
6398 | 85 |
7 | 86 #ifndef DO_DECLARE_EXCMD |
87 typedef struct exarg exarg_T; | |
88 #endif | |
89 | |
90 /* | |
91 * This array maps ex command names to command codes. | |
92 * The order in which command names are listed below is significant -- | |
93 * ambiguous abbreviations are always resolved to be the first possible match | |
94 * (e.g. "r" is taken to mean "read", not "rewind", because "read" comes | |
95 * before "rewind"). | |
96 * Not supported commands are included to avoid ambiguities. | |
97 */ | |
98 #ifdef DO_DECLARE_EXCMD | |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
99 # define EXCMD(a, b, c, d, e) {(char_u *)b, c, (long_u)(d), e} |
7 | 100 |
7807
1a5d34492798
commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents:
7726
diff
changeset
|
101 typedef void (*ex_func_T) (exarg_T *eap); |
7 | 102 |
103 static struct cmdname | |
104 { | |
16475
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
105 char_u *cmd_name; // name of the command |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
106 ex_func_T cmd_func; // function for this command |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
107 long_u cmd_argt; // flags declared above |
854fb0ad4be6
patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents:
16427
diff
changeset
|
108 cmd_addr_T cmd_addr_type; // flag for address type |
8163
d8a8e86f39ad
commit https://github.com/vim/vim/commit/e89ff0472bc33779583d48e8d38a5e794d05613a
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
109 } cmdnames[] = |
7 | 110 #else |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
111 # define EXCMD(a, b, c, d, e) a |
7 | 112 enum CMD_index |
113 #endif | |
114 { | |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
115 EXCMD(CMD_append, "append", ex_append, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
116 EX_BANG|EX_RANGE|EX_ZEROR|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
117 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
118 EXCMD(CMD_abbreviate, "abbreviate", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
119 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
120 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
121 EXCMD(CMD_abclear, "abclear", ex_abclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
122 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
123 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
124 EXCMD(CMD_aboveleft, "aboveleft", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
125 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
126 ADDR_NONE), |
24888
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
127 EXCMD(CMD_abstract, "abstract", ex_ni, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
128 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
129 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
130 EXCMD(CMD_all, "all", ex_all, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
131 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
132 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
133 EXCMD(CMD_amenu, "amenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
134 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
135 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
136 EXCMD(CMD_anoremenu, "anoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
137 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
138 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
139 EXCMD(CMD_args, "args", ex_args, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
140 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
141 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
142 EXCMD(CMD_argadd, "argadd", ex_argadd, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
143 EX_BANG|EX_RANGE|EX_ZEROR|EX_FILES|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
144 ADDR_ARGUMENTS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
145 EXCMD(CMD_argdelete, "argdelete", ex_argdelete, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
146 EX_BANG|EX_RANGE|EX_FILES|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
147 ADDR_ARGUMENTS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
148 EXCMD(CMD_argdo, "argdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
149 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
150 ADDR_ARGUMENTS), |
26719
2bdcce61a4e4
patch 8.2.3888: the argument list may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
26612
diff
changeset
|
151 EXCMD(CMD_argdedupe, "argdedupe", ex_argdedupe, |
2bdcce61a4e4
patch 8.2.3888: the argument list may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
26612
diff
changeset
|
152 EX_TRLBAR, |
2bdcce61a4e4
patch 8.2.3888: the argument list may contain duplicates
Bram Moolenaar <Bram@vim.org>
parents:
26612
diff
changeset
|
153 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
154 EXCMD(CMD_argedit, "argedit", ex_argedit, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
155 EX_BANG|EX_NEEDARG|EX_RANGE|EX_ZEROR|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
156 ADDR_ARGUMENTS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
157 EXCMD(CMD_argglobal, "argglobal", ex_args, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
158 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
159 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
160 EXCMD(CMD_arglocal, "arglocal", ex_args, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
161 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
162 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
163 EXCMD(CMD_argument, "argument", ex_argument, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
164 EX_BANG|EX_RANGE|EX_COUNT|EX_EXTRA|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
165 ADDR_ARGUMENTS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
166 EXCMD(CMD_ascii, "ascii", do_ascii, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
167 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
168 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
169 EXCMD(CMD_autocmd, "autocmd", ex_autocmd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
170 EX_BANG|EX_EXTRA|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
171 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
172 EXCMD(CMD_augroup, "augroup", ex_autocmd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
173 EX_BANG|EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
174 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
175 EXCMD(CMD_aunmenu, "aunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
176 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
177 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
178 EXCMD(CMD_buffer, "buffer", ex_buffer, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
179 EX_BANG|EX_RANGE|EX_BUFNAME|EX_BUFUNL|EX_COUNT|EX_EXTRA|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
180 ADDR_BUFFERS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
181 EXCMD(CMD_bNext, "bNext", ex_bprevious, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
182 EX_BANG|EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
183 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
184 EXCMD(CMD_ball, "ball", ex_buffer_all, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
185 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
186 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
187 EXCMD(CMD_badd, "badd", ex_edit, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
188 EX_NEEDARG|EX_FILE1|EX_CMDARG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
189 ADDR_NONE), |
22840
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22697
diff
changeset
|
190 EXCMD(CMD_balt, "balt", ex_edit, |
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22697
diff
changeset
|
191 EX_NEEDARG|EX_FILE1|EX_CMDARG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
7c1e2e3f2d8d
patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents:
22697
diff
changeset
|
192 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
193 EXCMD(CMD_bdelete, "bdelete", ex_bunload, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
194 EX_BANG|EX_RANGE|EX_BUFNAME|EX_COUNT|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
195 ADDR_BUFFERS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
196 EXCMD(CMD_behave, "behave", ex_behave, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
197 EX_BANG|EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
198 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
199 EXCMD(CMD_belowright, "belowright", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
200 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
201 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
202 EXCMD(CMD_bfirst, "bfirst", ex_brewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
203 EX_BANG|EX_RANGE|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
204 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
205 EXCMD(CMD_blast, "blast", ex_blast, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
206 EX_BANG|EX_RANGE|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
207 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
208 EXCMD(CMD_bmodified, "bmodified", ex_bmodified, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
209 EX_BANG|EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
210 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
211 EXCMD(CMD_bnext, "bnext", ex_bnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
212 EX_BANG|EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
213 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
214 EXCMD(CMD_botright, "botright", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
215 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
216 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
217 EXCMD(CMD_bprevious, "bprevious", ex_bprevious, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
218 EX_BANG|EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
219 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
220 EXCMD(CMD_brewind, "brewind", ex_brewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
221 EX_BANG|EX_RANGE|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
222 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
223 EXCMD(CMD_break, "break", ex_break, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
224 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
225 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
226 EXCMD(CMD_breakadd, "breakadd", ex_breakadd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
227 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
228 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
229 EXCMD(CMD_breakdel, "breakdel", ex_breakdel, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
230 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
231 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
232 EXCMD(CMD_breaklist, "breaklist", ex_breaklist, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
233 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
234 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
235 EXCMD(CMD_browse, "browse", ex_wrongmodifier, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
236 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
237 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
238 EXCMD(CMD_buffers, "buffers", buflist_list, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
239 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
240 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
241 EXCMD(CMD_bufdo, "bufdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
242 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
243 ADDR_BUFFERS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
244 EXCMD(CMD_bunload, "bunload", ex_bunload, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
245 EX_BANG|EX_RANGE|EX_BUFNAME|EX_COUNT|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
246 ADDR_LOADED_BUFFERS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
247 EXCMD(CMD_bwipeout, "bwipeout", ex_bunload, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
248 EX_BANG|EX_RANGE|EX_BUFNAME|EX_BUFUNL|EX_COUNT|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
249 ADDR_BUFFERS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
250 EXCMD(CMD_change, "change", ex_change, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
251 EX_BANG|EX_WHOLEFOLD|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
252 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
253 EXCMD(CMD_cNext, "cNext", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
254 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
255 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
256 EXCMD(CMD_cNfile, "cNfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
257 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
258 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
259 EXCMD(CMD_cabbrev, "cabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
260 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
261 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
262 EXCMD(CMD_cabclear, "cabclear", ex_abclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
263 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
264 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
265 EXCMD(CMD_cabove, "cabove", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
266 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
267 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
268 EXCMD(CMD_caddbuffer, "caddbuffer", ex_cbuffer, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
269 EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
270 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
271 EXCMD(CMD_caddexpr, "caddexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
272 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
273 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
274 EXCMD(CMD_caddfile, "caddfile", ex_cfile, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
275 EX_TRLBAR|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
276 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
277 EXCMD(CMD_cafter, "cafter", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
278 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
279 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
280 EXCMD(CMD_call, "call", ex_call, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
281 EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
282 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
283 EXCMD(CMD_catch, "catch", ex_catch, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
284 EX_EXTRA|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
285 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
286 EXCMD(CMD_cbuffer, "cbuffer", ex_cbuffer, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
287 EX_BANG|EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
288 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
289 EXCMD(CMD_cbefore, "cbefore", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
290 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
291 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
292 EXCMD(CMD_cbelow, "cbelow", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
293 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
294 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
295 EXCMD(CMD_cbottom, "cbottom", ex_cbottom, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
296 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
297 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
298 EXCMD(CMD_cc, "cc", ex_cc, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
299 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
300 ADDR_QUICKFIX), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
301 EXCMD(CMD_cclose, "cclose", ex_cclose, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
302 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
303 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
304 EXCMD(CMD_cd, "cd", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
305 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
306 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
307 EXCMD(CMD_cdo, "cdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
308 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
309 ADDR_QUICKFIX_VALID), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
310 EXCMD(CMD_center, "center", ex_align, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
311 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
312 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
313 EXCMD(CMD_cexpr, "cexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
314 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG|EX_BANG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
315 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
316 EXCMD(CMD_cfile, "cfile", ex_cfile, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
317 EX_TRLBAR|EX_FILE1|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
318 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
319 EXCMD(CMD_cfdo, "cfdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
320 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
321 ADDR_QUICKFIX_VALID), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
322 EXCMD(CMD_cfirst, "cfirst", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
323 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
324 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
325 EXCMD(CMD_cgetfile, "cgetfile", ex_cfile, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
326 EX_TRLBAR|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
327 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
328 EXCMD(CMD_cgetbuffer, "cgetbuffer", ex_cbuffer, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
329 EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
330 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
331 EXCMD(CMD_cgetexpr, "cgetexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
332 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
333 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
334 EXCMD(CMD_chdir, "chdir", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
335 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
336 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
337 EXCMD(CMD_changes, "changes", ex_changes, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
338 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
339 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
340 EXCMD(CMD_checkpath, "checkpath", ex_checkpath, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
341 EX_TRLBAR|EX_BANG|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
342 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
343 EXCMD(CMD_checktime, "checktime", ex_checktime, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
344 EX_RANGE|EX_BUFNAME|EX_COUNT|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
345 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
346 EXCMD(CMD_chistory, "chistory", qf_history, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
347 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
348 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
349 EXCMD(CMD_clist, "clist", qf_list, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
350 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
351 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
352 EXCMD(CMD_clast, "clast", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
353 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
354 ADDR_UNSIGNED), |
24836
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
355 EXCMD(CMD_class, "class", ex_ni, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
356 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
357 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
358 EXCMD(CMD_close, "close", ex_close, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
359 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
360 ADDR_WINDOWS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
361 EXCMD(CMD_clearjumps, "clearjumps", ex_clearjumps, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
362 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
363 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
364 EXCMD(CMD_cmap, "cmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
365 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
366 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
367 EXCMD(CMD_cmapclear, "cmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
368 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
369 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
370 EXCMD(CMD_cmenu, "cmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
371 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
372 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
373 EXCMD(CMD_cnext, "cnext", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
374 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
375 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
376 EXCMD(CMD_cnewer, "cnewer", qf_age, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
377 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
378 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
379 EXCMD(CMD_cnfile, "cnfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
380 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
381 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
382 EXCMD(CMD_cnoremap, "cnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
383 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
384 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
385 EXCMD(CMD_cnoreabbrev, "cnoreabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
386 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
387 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
388 EXCMD(CMD_cnoremenu, "cnoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
389 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
390 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
391 EXCMD(CMD_copy, "copy", ex_copymove, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
392 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
393 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
394 EXCMD(CMD_colder, "colder", qf_age, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
395 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
396 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
397 EXCMD(CMD_colorscheme, "colorscheme", ex_colorscheme, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
398 EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
399 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
400 EXCMD(CMD_command, "command", ex_command, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
401 EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
402 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
403 EXCMD(CMD_comclear, "comclear", ex_comclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
404 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
405 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
406 EXCMD(CMD_compiler, "compiler", ex_compiler, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
407 EX_BANG|EX_TRLBAR|EX_WORD1|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
408 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
409 EXCMD(CMD_continue, "continue", ex_continue, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
410 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
411 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
412 EXCMD(CMD_confirm, "confirm", ex_wrongmodifier, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
413 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
414 ADDR_NONE), |
20536
8fa783f2c69c
patch 8.2.0822: Vim9: code left over from discovery phase
Bram Moolenaar <Bram@vim.org>
parents:
20528
diff
changeset
|
415 EXCMD(CMD_const, "const", ex_let, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
416 EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
417 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
418 EXCMD(CMD_copen, "copen", ex_copen, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
419 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
420 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
421 EXCMD(CMD_cprevious, "cprevious", ex_cnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
422 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
423 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
424 EXCMD(CMD_cpfile, "cpfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
425 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
426 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
427 EXCMD(CMD_cquit, "cquit", ex_cquit, |
19069
e14feba578f1
patch 8.2.0095: cannot specify exit code for :cquit
Bram Moolenaar <Bram@vim.org>
parents:
18904
diff
changeset
|
428 EX_RANGE|EX_COUNT|EX_ZEROR|EX_TRLBAR|EX_BANG, |
19106
38d18056e6e6
patch 8.2.0113: "make cmdidxs" fails
Bram Moolenaar <Bram@vim.org>
parents:
19069
diff
changeset
|
429 ADDR_UNSIGNED), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
430 EXCMD(CMD_crewind, "crewind", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
431 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
432 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
433 EXCMD(CMD_cscope, "cscope", ex_cscope, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
434 EX_EXTRA|EX_NOTRLCOM|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
435 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
436 EXCMD(CMD_cstag, "cstag", ex_cstag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
437 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
438 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
439 EXCMD(CMD_cunmap, "cunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
440 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
441 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
442 EXCMD(CMD_cunabbrev, "cunabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
443 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
444 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
445 EXCMD(CMD_cunmenu, "cunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
446 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
447 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
448 EXCMD(CMD_cwindow, "cwindow", ex_cwindow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
449 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
450 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
451 EXCMD(CMD_delete, "delete", ex_operators, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
452 EX_RANGE|EX_WHOLEFOLD|EX_REGSTR|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
453 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
454 EXCMD(CMD_delmarks, "delmarks", ex_delmarks, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
455 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
456 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
457 EXCMD(CMD_debug, "debug", ex_debug, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
458 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
459 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
460 EXCMD(CMD_debuggreedy, "debuggreedy", ex_debuggreedy, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
461 EX_RANGE|EX_ZEROR|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
462 ADDR_OTHER), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
463 EXCMD(CMD_def, "def", ex_function, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
464 EX_EXTRA|EX_BANG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
465 ADDR_NONE), |
20528
489cb75c76b6
patch 8.2.0818: Vim9: using a discovery phase doesn't work well
Bram Moolenaar <Bram@vim.org>
parents:
20172
diff
changeset
|
466 EXCMD(CMD_defcompile, "defcompile", ex_defcompile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
467 EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK|EX_TRLBAR, |
20528
489cb75c76b6
patch 8.2.0818: Vim9: using a discovery phase doesn't work well
Bram Moolenaar <Bram@vim.org>
parents:
20172
diff
changeset
|
468 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
469 EXCMD(CMD_delcommand, "delcommand", ex_delcommand, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
470 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
471 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
472 EXCMD(CMD_delfunction, "delfunction", ex_delfunction, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
473 EX_BANG|EX_NEEDARG|EX_WORD1|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
474 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
475 EXCMD(CMD_display, "display", ex_display, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
476 EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
477 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
478 EXCMD(CMD_diffupdate, "diffupdate", ex_diffupdate, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
479 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
480 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
481 EXCMD(CMD_diffget, "diffget", ex_diffgetput, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
482 EX_RANGE|EX_EXTRA|EX_TRLBAR|EX_MODIFY, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
483 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
484 EXCMD(CMD_diffoff, "diffoff", ex_diffoff, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
485 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
486 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
487 EXCMD(CMD_diffpatch, "diffpatch", ex_diffpatch, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
488 EX_EXTRA|EX_FILE1|EX_TRLBAR|EX_MODIFY, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
489 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
490 EXCMD(CMD_diffput, "diffput", ex_diffgetput, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
491 EX_RANGE|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
492 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
493 EXCMD(CMD_diffsplit, "diffsplit", ex_diffsplit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
494 EX_EXTRA|EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
495 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
496 EXCMD(CMD_diffthis, "diffthis", ex_diffthis, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
497 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
498 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
499 EXCMD(CMD_digraphs, "digraphs", ex_digraphs, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
500 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
501 ADDR_NONE), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
502 EXCMD(CMD_disassemble, "disassemble", ex_disassemble, |
23717
e3720756acdc
patch 8.2.2400: Vim9: compiled functions are not profiled
Bram Moolenaar <Bram@vim.org>
parents:
23648
diff
changeset
|
503 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
504 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
505 EXCMD(CMD_djump, "djump", ex_findpat, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
506 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
507 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
508 EXCMD(CMD_dlist, "dlist", ex_findpat, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
509 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
510 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
511 EXCMD(CMD_doautocmd, "doautocmd", ex_doautocmd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
512 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
513 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
514 EXCMD(CMD_doautoall, "doautoall", ex_doautoall, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
515 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
516 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
517 EXCMD(CMD_drop, "drop", ex_drop, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
518 EX_FILES|EX_CMDARG|EX_NEEDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
519 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
520 EXCMD(CMD_dsearch, "dsearch", ex_findpat, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
521 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
522 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
523 EXCMD(CMD_dsplit, "dsplit", ex_findpat, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
524 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
525 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
526 EXCMD(CMD_edit, "edit", ex_edit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
527 EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
528 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
529 EXCMD(CMD_earlier, "earlier", ex_later, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
530 EX_TRLBAR|EX_EXTRA|EX_NOSPC|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
531 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
532 EXCMD(CMD_echo, "echo", ex_echo, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
533 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
534 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
535 EXCMD(CMD_echoerr, "echoerr", ex_execute, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
536 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
537 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
538 EXCMD(CMD_echohl, "echohl", ex_echohl, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
539 EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
540 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
541 EXCMD(CMD_echomsg, "echomsg", ex_execute, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
542 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
543 ADDR_NONE), |
24194
9f64c420f280
patch 8.2.2638: cannot write a message to the terminal from the GUI
Bram Moolenaar <Bram@vim.org>
parents:
24022
diff
changeset
|
544 EXCMD(CMD_echoconsole, "echoconsole", ex_execute, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
545 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
24194
9f64c420f280
patch 8.2.2638: cannot write a message to the terminal from the GUI
Bram Moolenaar <Bram@vim.org>
parents:
24022
diff
changeset
|
546 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
547 EXCMD(CMD_echon, "echon", ex_echo, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
548 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
549 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
550 EXCMD(CMD_else, "else", ex_else, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
551 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
552 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
553 EXCMD(CMD_elseif, "elseif", ex_else, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
554 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
555 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
556 EXCMD(CMD_emenu, "emenu", ex_emenu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
557 EX_NEEDARG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_RANGE|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
558 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
559 EXCMD(CMD_endif, "endif", ex_endif, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
560 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
561 ADDR_NONE), |
24888
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
562 EXCMD(CMD_endinterface, "endinterface", ex_ni, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
563 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
564 ADDR_NONE), |
24836
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
565 EXCMD(CMD_endclass, "endclass", ex_ni, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
566 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
567 ADDR_NONE), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
568 EXCMD(CMD_enddef, "enddef", ex_endfunction, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
569 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
570 ADDR_NONE), |
24836
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
571 EXCMD(CMD_endenum, "endenum", ex_ni, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
572 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
573 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
574 EXCMD(CMD_endfunction, "endfunction", ex_endfunction, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
575 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
576 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
577 EXCMD(CMD_endfor, "endfor", ex_endwhile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
578 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
579 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
580 EXCMD(CMD_endtry, "endtry", ex_endtry, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
581 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
582 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
583 EXCMD(CMD_endwhile, "endwhile", ex_endwhile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
584 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
585 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
586 EXCMD(CMD_enew, "enew", ex_edit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
587 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
588 ADDR_NONE), |
24836
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
589 EXCMD(CMD_enum, "enum", ex_ni, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
590 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
591 ADDR_NONE), |
17620
072efa9ca875
patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents:
17362
diff
changeset
|
592 EXCMD(CMD_eval, "eval", ex_eval, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
593 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17620
072efa9ca875
patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents:
17362
diff
changeset
|
594 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
595 EXCMD(CMD_ex, "ex", ex_edit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
596 EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
597 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
598 EXCMD(CMD_execute, "execute", ex_execute, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
599 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
600 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
601 EXCMD(CMD_exit, "exit", ex_exit, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
602 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
603 ADDR_LINES), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
604 EXCMD(CMD_export, "export", ex_export, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
605 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
606 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
607 EXCMD(CMD_exusage, "exusage", ex_exusage, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
608 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
609 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
610 EXCMD(CMD_file, "file", ex_file, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
611 EX_RANGE|EX_ZEROR|EX_BANG|EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
612 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
613 EXCMD(CMD_files, "files", buflist_list, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
614 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
615 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
616 EXCMD(CMD_filetype, "filetype", ex_filetype, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
617 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
618 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
619 EXCMD(CMD_filter, "filter", ex_wrongmodifier, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
620 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
621 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
622 EXCMD(CMD_find, "find", ex_find, |
19701
9412cc889072
patch 8.2.0407: no early check if :find and :sfind have an argument
Bram Moolenaar <Bram@vim.org>
parents:
19390
diff
changeset
|
623 EX_RANGE|EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_NEEDARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
624 ADDR_OTHER), |
22391
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
625 EXCMD(CMD_final, "final", ex_let, |
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
626 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
627 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
628 EXCMD(CMD_finally, "finally", ex_finally, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
629 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
630 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
631 EXCMD(CMD_finish, "finish", ex_finish, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
632 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
633 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
634 EXCMD(CMD_first, "first", ex_rewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
635 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
636 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
637 EXCMD(CMD_fixdel, "fixdel", do_fixdel, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
638 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
639 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
640 EXCMD(CMD_fold, "fold", ex_fold, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
641 EX_RANGE|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
642 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
643 EXCMD(CMD_foldclose, "foldclose", ex_foldopen, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
644 EX_RANGE|EX_BANG|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
645 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
646 EXCMD(CMD_folddoopen, "folddoopen", ex_folddo, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
647 EX_RANGE|EX_DFLALL|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
648 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
649 EXCMD(CMD_folddoclosed, "folddoclosed", ex_folddo, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
650 EX_RANGE|EX_DFLALL|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
651 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
652 EXCMD(CMD_foldopen, "foldopen", ex_foldopen, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
653 EX_RANGE|EX_BANG|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
654 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
655 EXCMD(CMD_for, "for", ex_while, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
656 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
657 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
658 EXCMD(CMD_function, "function", ex_function, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
659 EX_EXTRA|EX_BANG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
660 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
661 EXCMD(CMD_global, "global", ex_global, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
662 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_EXTRA|EX_DFLALL|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
663 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
664 EXCMD(CMD_goto, "goto", ex_goto, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
665 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
666 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
667 EXCMD(CMD_grep, "grep", ex_make, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
668 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
669 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
670 EXCMD(CMD_grepadd, "grepadd", ex_make, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
671 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
672 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
673 EXCMD(CMD_gui, "gui", ex_gui, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
674 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
675 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
676 EXCMD(CMD_gvim, "gvim", ex_gui, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
677 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
678 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
679 EXCMD(CMD_help, "help", ex_help, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
680 EX_BANG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
681 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
682 EXCMD(CMD_helpclose, "helpclose", ex_helpclose, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
683 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
684 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
685 EXCMD(CMD_helpfind, "helpfind", ex_helpfind, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
686 EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
687 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
688 EXCMD(CMD_helpgrep, "helpgrep", ex_helpgrep, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
689 EX_EXTRA|EX_NOTRLCOM|EX_NEEDARG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
690 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
691 EXCMD(CMD_helptags, "helptags", ex_helptags, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
692 EX_NEEDARG|EX_FILES|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
693 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
694 EXCMD(CMD_hardcopy, "hardcopy", ex_hardcopy, |
20172
1d84eaed0ec8
patch 8.2.0641: Vim9: not expanded in :hardcopy and syn-include
Bram Moolenaar <Bram@vim.org>
parents:
20075
diff
changeset
|
695 EX_RANGE|EX_COUNT|EX_EXTRA|EX_EXPAND|EX_TRLBAR|EX_DFLALL|EX_BANG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
696 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
697 EXCMD(CMD_highlight, "highlight", ex_highlight, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
698 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
699 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
700 EXCMD(CMD_hide, "hide", ex_hide, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
701 EX_BANG|EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
702 ADDR_WINDOWS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
703 EXCMD(CMD_history, "history", ex_history, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
704 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
705 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
706 EXCMD(CMD_insert, "insert", ex_append, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
707 EX_BANG|EX_RANGE|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
708 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
709 EXCMD(CMD_iabbrev, "iabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
710 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
711 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
712 EXCMD(CMD_iabclear, "iabclear", ex_abclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
713 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
714 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
715 EXCMD(CMD_if, "if", ex_if, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
716 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
717 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
718 EXCMD(CMD_ijump, "ijump", ex_findpat, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
719 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
720 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
721 EXCMD(CMD_ilist, "ilist", ex_findpat, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
722 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
723 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
724 EXCMD(CMD_imap, "imap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
725 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
726 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
727 EXCMD(CMD_imapclear, "imapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
728 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
729 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
730 EXCMD(CMD_imenu, "imenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
731 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
732 ADDR_OTHER), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
733 EXCMD(CMD_import, "import", ex_import, |
21707
8e224527391e
patch 8.2.1403: Vim9: Vim highlighting may fail in cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
21652
diff
changeset
|
734 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
735 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
736 EXCMD(CMD_inoremap, "inoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
737 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
738 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
739 EXCMD(CMD_inoreabbrev, "inoreabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
740 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
741 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
742 EXCMD(CMD_inoremenu, "inoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
743 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
744 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
745 EXCMD(CMD_intro, "intro", ex_intro, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
746 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
747 ADDR_NONE), |
24888
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
748 EXCMD(CMD_interface, "interface", ex_ni, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
749 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
750 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
751 EXCMD(CMD_isearch, "isearch", ex_findpat, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
752 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
753 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
754 EXCMD(CMD_isplit, "isplit", ex_findpat, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
755 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
756 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
757 EXCMD(CMD_iunmap, "iunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
758 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
759 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
760 EXCMD(CMD_iunabbrev, "iunabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
761 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
762 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
763 EXCMD(CMD_iunmenu, "iunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
764 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
765 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
766 EXCMD(CMD_join, "join", ex_join, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
767 EX_BANG|EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
768 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
769 EXCMD(CMD_jumps, "jumps", ex_jumps, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
770 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
771 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
772 EXCMD(CMD_k, "k", ex_mark, |
23978
54b2aa1f0d42
patch 8.2.2531: Vim9: the :k command is obscure
Bram Moolenaar <Bram@vim.org>
parents:
23938
diff
changeset
|
773 EX_RANGE|EX_WORD1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
774 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
775 EXCMD(CMD_keepmarks, "keepmarks", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
776 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
777 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
778 EXCMD(CMD_keepjumps, "keepjumps", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
779 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
780 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
781 EXCMD(CMD_keeppatterns, "keeppatterns", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
782 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
783 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
784 EXCMD(CMD_keepalt, "keepalt", ex_wrongmodifier, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
785 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
786 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
787 EXCMD(CMD_list, "list", ex_print, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
788 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
789 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
790 EXCMD(CMD_lNext, "lNext", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
791 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
792 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
793 EXCMD(CMD_lNfile, "lNfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
794 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
795 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
796 EXCMD(CMD_last, "last", ex_last, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
797 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
798 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
799 EXCMD(CMD_labove, "labove", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
800 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
801 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
802 EXCMD(CMD_language, "language", ex_language, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
803 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
804 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
805 EXCMD(CMD_laddexpr, "laddexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
806 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
807 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
808 EXCMD(CMD_laddbuffer, "laddbuffer", ex_cbuffer, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
809 EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
810 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
811 EXCMD(CMD_laddfile, "laddfile", ex_cfile, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
812 EX_TRLBAR|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
813 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
814 EXCMD(CMD_lafter, "lafter", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
815 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
816 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
817 EXCMD(CMD_later, "later", ex_later, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
818 EX_TRLBAR|EX_EXTRA|EX_NOSPC|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
819 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
820 EXCMD(CMD_lbuffer, "lbuffer", ex_cbuffer, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
821 EX_BANG|EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
822 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
823 EXCMD(CMD_lbefore, "lbefore", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
824 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
825 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
826 EXCMD(CMD_lbelow, "lbelow", ex_cbelow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
827 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
828 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
829 EXCMD(CMD_lbottom, "lbottom", ex_cbottom, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
830 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
831 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
832 EXCMD(CMD_lcd, "lcd", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
833 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
834 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
835 EXCMD(CMD_lchdir, "lchdir", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
836 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
837 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
838 EXCMD(CMD_lclose, "lclose", ex_cclose, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
839 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
840 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
841 EXCMD(CMD_lcscope, "lcscope", ex_cscope, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
842 EX_EXTRA|EX_NOTRLCOM|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
843 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
844 EXCMD(CMD_ldo, "ldo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
845 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
846 ADDR_QUICKFIX_VALID), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
847 EXCMD(CMD_left, "left", ex_align, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
848 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
849 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
850 EXCMD(CMD_leftabove, "leftabove", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
851 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
852 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
853 EXCMD(CMD_let, "let", ex_let, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
854 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
855 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
856 EXCMD(CMD_lexpr, "lexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
857 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG|EX_BANG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
858 ADDR_NONE), |
24531
3bfec39ce31c
patch 8.2.2805: Vim9: cannot use legacy syntax in Vim9 script
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
859 EXCMD(CMD_legacy, "legacy", ex_wrongmodifier, |
3bfec39ce31c
patch 8.2.2805: Vim9: cannot use legacy syntax in Vim9 script
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
860 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
3bfec39ce31c
patch 8.2.2805: Vim9: cannot use legacy syntax in Vim9 script
Bram Moolenaar <Bram@vim.org>
parents:
24194
diff
changeset
|
861 ADDR_NONE), |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
862 EXCMD(CMD_lfile, "lfile", ex_cfile, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
863 EX_TRLBAR|EX_FILE1|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
864 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
865 EXCMD(CMD_lfdo, "lfdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
866 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
867 ADDR_QUICKFIX_VALID), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
868 EXCMD(CMD_lfirst, "lfirst", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
869 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
870 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
871 EXCMD(CMD_lgetfile, "lgetfile", ex_cfile, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
872 EX_TRLBAR|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
873 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
874 EXCMD(CMD_lgetbuffer, "lgetbuffer", ex_cbuffer, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
875 EX_RANGE|EX_WORD1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
876 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
877 EXCMD(CMD_lgetexpr, "lgetexpr", ex_cexpr, |
26576
5ea6db641b5e
patch 8.2.3817: Vim9: Not using NL as command end does not work for :autocmd
Bram Moolenaar <Bram@vim.org>
parents:
26305
diff
changeset
|
878 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_EXPR_ARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
879 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
880 EXCMD(CMD_lgrep, "lgrep", ex_make, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
881 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
882 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
883 EXCMD(CMD_lgrepadd, "lgrepadd", ex_make, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
884 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
885 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
886 EXCMD(CMD_lhelpgrep, "lhelpgrep", ex_helpgrep, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
887 EX_EXTRA|EX_NOTRLCOM|EX_NEEDARG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
888 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
889 EXCMD(CMD_lhistory, "lhistory", qf_history, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
890 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
891 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
892 EXCMD(CMD_ll, "ll", ex_cc, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
893 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
894 ADDR_QUICKFIX), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
895 EXCMD(CMD_llast, "llast", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
896 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
897 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
898 EXCMD(CMD_llist, "llist", qf_list, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
899 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
900 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
901 EXCMD(CMD_lmap, "lmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
902 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
903 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
904 EXCMD(CMD_lmapclear, "lmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
905 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
906 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
907 EXCMD(CMD_lmake, "lmake", ex_make, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
908 EX_BANG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
909 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
910 EXCMD(CMD_lnoremap, "lnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
911 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
912 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
913 EXCMD(CMD_lnext, "lnext", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
914 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
915 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
916 EXCMD(CMD_lnewer, "lnewer", qf_age, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
917 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
918 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
919 EXCMD(CMD_lnfile, "lnfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
920 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
921 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
922 EXCMD(CMD_loadview, "loadview", ex_loadview, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
923 EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
924 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
925 EXCMD(CMD_loadkeymap, "loadkeymap", ex_loadkeymap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
926 EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
927 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
928 EXCMD(CMD_lockmarks, "lockmarks", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
929 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
930 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
931 EXCMD(CMD_lockvar, "lockvar", ex_lockvar, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
932 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
933 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
934 EXCMD(CMD_lolder, "lolder", qf_age, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
935 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
936 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
937 EXCMD(CMD_lopen, "lopen", ex_copen, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
938 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
939 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
940 EXCMD(CMD_lprevious, "lprevious", ex_cnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
941 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
942 ADDR_UNSIGNED), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
943 EXCMD(CMD_lpfile, "lpfile", ex_cnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
944 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
945 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
946 EXCMD(CMD_lrewind, "lrewind", ex_cc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
947 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
948 ADDR_UNSIGNED), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
949 EXCMD(CMD_ltag, "ltag", ex_tag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
950 EX_TRLBAR|EX_BANG|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
951 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
952 EXCMD(CMD_lunmap, "lunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
953 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
954 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
955 EXCMD(CMD_lua, "lua", ex_lua, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
956 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
957 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
958 EXCMD(CMD_luado, "luado", ex_luado, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
959 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
960 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
961 EXCMD(CMD_luafile, "luafile", ex_luafile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
962 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
963 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
964 EXCMD(CMD_lvimgrep, "lvimgrep", ex_vimgrep, |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22840
diff
changeset
|
965 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
966 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
967 EXCMD(CMD_lvimgrepadd, "lvimgrepadd", ex_vimgrep, |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22840
diff
changeset
|
968 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
969 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
970 EXCMD(CMD_lwindow, "lwindow", ex_cwindow, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
971 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
972 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
973 EXCMD(CMD_ls, "ls", buflist_list, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
974 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
975 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
976 EXCMD(CMD_move, "move", ex_copymove, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
977 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
978 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
979 EXCMD(CMD_mark, "mark", ex_mark, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
980 EX_RANGE|EX_WORD1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
981 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
982 EXCMD(CMD_make, "make", ex_make, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
983 EX_BANG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
984 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
985 EXCMD(CMD_map, "map", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
986 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
987 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
988 EXCMD(CMD_mapclear, "mapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
989 EX_EXTRA|EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
990 ADDR_NONE), |
18126
f89e2e720b5b
patch 8.1.2058: function for ex command is named inconsistently
Bram Moolenaar <Bram@vim.org>
parents:
17736
diff
changeset
|
991 EXCMD(CMD_marks, "marks", ex_marks, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
992 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
993 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
994 EXCMD(CMD_match, "match", ex_match, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
995 EX_RANGE|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
996 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
997 EXCMD(CMD_menu, "menu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
998 EX_RANGE|EX_ZEROR|EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
999 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1000 EXCMD(CMD_menutranslate, "menutranslate", ex_menutranslate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1001 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1002 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1003 EXCMD(CMD_messages, "messages", ex_messages, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1004 EX_EXTRA|EX_TRLBAR|EX_RANGE|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1005 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1006 EXCMD(CMD_mkexrc, "mkexrc", ex_mkrc, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1007 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1008 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1009 EXCMD(CMD_mksession, "mksession", ex_mkrc, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1010 EX_BANG|EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1011 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1012 EXCMD(CMD_mkspell, "mkspell", ex_mkspell, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1013 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1014 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1015 EXCMD(CMD_mkvimrc, "mkvimrc", ex_mkrc, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1016 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1017 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1018 EXCMD(CMD_mkview, "mkview", ex_mkrc, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1019 EX_BANG|EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1020 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1021 EXCMD(CMD_mode, "mode", ex_mode, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1022 EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1023 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1024 EXCMD(CMD_mzscheme, "mzscheme", ex_mzscheme, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1025 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1026 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1027 EXCMD(CMD_mzfile, "mzfile", ex_mzfile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1028 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1029 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1030 EXCMD(CMD_next, "next", ex_next, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1031 EX_RANGE|EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1032 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1033 EXCMD(CMD_nbkey, "nbkey", ex_nbkey, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1034 EX_EXTRA|EX_NEEDARG, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1035 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1036 EXCMD(CMD_nbclose, "nbclose", ex_nbclose, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1037 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1038 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1039 EXCMD(CMD_nbstart, "nbstart", ex_nbstart, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1040 EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1041 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1042 EXCMD(CMD_new, "new", ex_splitview, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1043 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1044 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1045 EXCMD(CMD_nmap, "nmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1046 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1047 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1048 EXCMD(CMD_nmapclear, "nmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1049 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1050 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1051 EXCMD(CMD_nmenu, "nmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1052 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1053 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1054 EXCMD(CMD_nnoremap, "nnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1055 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1056 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1057 EXCMD(CMD_nnoremenu, "nnoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1058 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1059 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1060 EXCMD(CMD_noremap, "noremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1061 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1062 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1063 EXCMD(CMD_noautocmd, "noautocmd", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1064 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1065 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1066 EXCMD(CMD_nohlsearch, "nohlsearch", ex_nohlsearch, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1067 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1068 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1069 EXCMD(CMD_noreabbrev, "noreabbrev", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1070 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1071 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1072 EXCMD(CMD_noremenu, "noremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1073 EX_RANGE|EX_ZEROR|EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1074 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1075 EXCMD(CMD_noswapfile, "noswapfile", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1076 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1077 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1078 EXCMD(CMD_normal, "normal", ex_normal, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1079 EX_RANGE|EX_BANG|EX_EXTRA|EX_NEEDARG|EX_NOTRLCOM|EX_CTRLV|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1080 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1081 EXCMD(CMD_number, "number", ex_print, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1082 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1083 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1084 EXCMD(CMD_nunmap, "nunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1085 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1086 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1087 EXCMD(CMD_nunmenu, "nunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1088 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1089 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1090 EXCMD(CMD_open, "open", ex_open, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1091 EX_RANGE|EX_BANG|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1092 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1093 EXCMD(CMD_oldfiles, "oldfiles", ex_oldfiles, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1094 EX_BANG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1095 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1096 EXCMD(CMD_omap, "omap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1097 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1098 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1099 EXCMD(CMD_omapclear, "omapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1100 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1101 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1102 EXCMD(CMD_omenu, "omenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1103 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1104 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1105 EXCMD(CMD_only, "only", ex_only, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1106 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1107 ADDR_WINDOWS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1108 EXCMD(CMD_onoremap, "onoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1109 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1110 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1111 EXCMD(CMD_onoremenu, "onoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1112 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1113 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1114 EXCMD(CMD_options, "options", ex_options, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1115 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1116 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1117 EXCMD(CMD_ounmap, "ounmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1118 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1119 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1120 EXCMD(CMD_ounmenu, "ounmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1121 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1122 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1123 EXCMD(CMD_ownsyntax, "ownsyntax", ex_ownsyntax, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1124 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1125 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1126 EXCMD(CMD_print, "print", ex_print, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1127 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1128 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1129 EXCMD(CMD_packadd, "packadd", ex_packadd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1130 EX_BANG|EX_FILE1|EX_NEEDARG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1131 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1132 EXCMD(CMD_packloadall, "packloadall", ex_packloadall, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1133 EX_BANG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1134 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1135 EXCMD(CMD_pclose, "pclose", ex_pclose, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1136 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1137 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1138 EXCMD(CMD_perl, "perl", ex_perl, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1139 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1140 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1141 EXCMD(CMD_perldo, "perldo", ex_perldo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1142 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1143 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1144 EXCMD(CMD_pedit, "pedit", ex_pedit, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1145 EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1146 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1147 EXCMD(CMD_pop, "pop", ex_tag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1148 EX_RANGE|EX_BANG|EX_COUNT|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1149 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1150 EXCMD(CMD_popup, "popup", ex_popup, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1151 EX_NEEDARG|EX_EXTRA|EX_BANG|EX_TRLBAR|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1152 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1153 EXCMD(CMD_ppop, "ppop", ex_ptag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1154 EX_RANGE|EX_BANG|EX_COUNT|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1155 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1156 EXCMD(CMD_preserve, "preserve", ex_preserve, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1157 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1158 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1159 EXCMD(CMD_previous, "previous", ex_previous, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1160 EX_EXTRA|EX_RANGE|EX_COUNT|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1161 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1162 EXCMD(CMD_promptfind, "promptfind", gui_mch_find_dialog, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1163 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1164 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1165 EXCMD(CMD_promptrepl, "promptrepl", gui_mch_replace_dialog, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1166 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1167 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1168 EXCMD(CMD_profile, "profile", ex_profile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1169 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1170 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1171 EXCMD(CMD_profdel, "profdel", ex_breakdel, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1172 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1173 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1174 EXCMD(CMD_psearch, "psearch", ex_psearch, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1175 EX_BANG|EX_RANGE|EX_WHOLEFOLD|EX_DFLALL|EX_EXTRA, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1176 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1177 EXCMD(CMD_ptag, "ptag", ex_ptag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1178 EX_RANGE|EX_BANG|EX_WORD1|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1179 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1180 EXCMD(CMD_ptNext, "ptNext", ex_ptag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1181 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1182 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1183 EXCMD(CMD_ptfirst, "ptfirst", ex_ptag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1184 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1185 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1186 EXCMD(CMD_ptjump, "ptjump", ex_ptag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1187 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1188 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1189 EXCMD(CMD_ptlast, "ptlast", ex_ptag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1190 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1191 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1192 EXCMD(CMD_ptnext, "ptnext", ex_ptag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1193 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1194 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1195 EXCMD(CMD_ptprevious, "ptprevious", ex_ptag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1196 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1197 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1198 EXCMD(CMD_ptrewind, "ptrewind", ex_ptag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1199 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1200 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1201 EXCMD(CMD_ptselect, "ptselect", ex_ptag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1202 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1203 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1204 EXCMD(CMD_put, "put", ex_put, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1205 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_REGSTR|EX_TRLBAR|EX_ZEROR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1206 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1207 EXCMD(CMD_pwd, "pwd", ex_pwd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1208 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1209 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1210 EXCMD(CMD_python, "python", ex_python, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1211 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1212 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1213 EXCMD(CMD_pydo, "pydo", ex_pydo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1214 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1215 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1216 EXCMD(CMD_pyfile, "pyfile", ex_pyfile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1217 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1218 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1219 EXCMD(CMD_py3, "py3", ex_py3, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1220 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1221 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1222 EXCMD(CMD_py3do, "py3do", ex_py3do, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1223 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1224 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1225 EXCMD(CMD_python3, "python3", ex_py3, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1226 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1227 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1228 EXCMD(CMD_py3file, "py3file", ex_py3file, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1229 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1230 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1231 EXCMD(CMD_pyx, "pyx", ex_pyx, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1232 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1233 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1234 EXCMD(CMD_pyxdo, "pyxdo", ex_pyxdo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1235 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1236 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1237 EXCMD(CMD_pythonx, "pythonx", ex_pyx, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1238 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1239 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1240 EXCMD(CMD_pyxfile, "pyxfile", ex_pyxfile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1241 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1242 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1243 EXCMD(CMD_quit, "quit", ex_quit, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1244 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1245 ADDR_WINDOWS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1246 EXCMD(CMD_quitall, "quitall", ex_quit_all, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1247 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1248 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1249 EXCMD(CMD_qall, "qall", ex_quit_all, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1250 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1251 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1252 EXCMD(CMD_read, "read", ex_read, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1253 EX_BANG|EX_RANGE|EX_WHOLEFOLD|EX_FILE1|EX_ARGOPT|EX_TRLBAR|EX_ZEROR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1254 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1255 EXCMD(CMD_recover, "recover", ex_recover, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1256 EX_BANG|EX_FILE1|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1257 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1258 EXCMD(CMD_redo, "redo", ex_redo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1259 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1260 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1261 EXCMD(CMD_redir, "redir", ex_redir, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1262 EX_BANG|EX_FILES|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1263 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1264 EXCMD(CMD_redraw, "redraw", ex_redraw, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1265 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1266 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1267 EXCMD(CMD_redrawstatus, "redrawstatus", ex_redrawstatus, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1268 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1269 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1270 EXCMD(CMD_redrawtabline, "redrawtabline", ex_redrawtabline, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1271 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1272 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1273 EXCMD(CMD_registers, "registers", ex_display, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1274 EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1275 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1276 EXCMD(CMD_resize, "resize", ex_resize, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1277 EX_RANGE|EX_TRLBAR|EX_WORD1|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1278 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1279 EXCMD(CMD_retab, "retab", ex_retab, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1280 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_DFLALL|EX_BANG|EX_WORD1|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1281 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1282 EXCMD(CMD_return, "return", ex_return, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1283 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1284 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1285 EXCMD(CMD_rewind, "rewind", ex_rewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1286 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1287 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1288 EXCMD(CMD_right, "right", ex_align, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1289 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1290 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1291 EXCMD(CMD_rightbelow, "rightbelow", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1292 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1293 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1294 EXCMD(CMD_runtime, "runtime", ex_runtime, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1295 EX_BANG|EX_NEEDARG|EX_FILES|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1296 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1297 EXCMD(CMD_ruby, "ruby", ex_ruby, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1298 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1299 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1300 EXCMD(CMD_rubydo, "rubydo", ex_rubydo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1301 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1302 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1303 EXCMD(CMD_rubyfile, "rubyfile", ex_rubyfile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1304 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1305 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1306 EXCMD(CMD_rundo, "rundo", ex_rundo, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1307 EX_NEEDARG|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1308 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1309 EXCMD(CMD_rviminfo, "rviminfo", ex_viminfo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1310 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1311 ADDR_NONE), |
21773
2f2e528c5782
patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents:
21707
diff
changeset
|
1312 EXCMD(CMD_substitute, "substitute", ex_substitute, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1313 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1314 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1315 EXCMD(CMD_sNext, "sNext", ex_previous, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1316 EX_EXTRA|EX_RANGE|EX_COUNT|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1317 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1318 EXCMD(CMD_sargument, "sargument", ex_argument, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1319 EX_BANG|EX_RANGE|EX_COUNT|EX_EXTRA|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1320 ADDR_ARGUMENTS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1321 EXCMD(CMD_sall, "sall", ex_all, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1322 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1323 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1324 EXCMD(CMD_sandbox, "sandbox", ex_wrongmodifier, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1325 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1326 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1327 EXCMD(CMD_saveas, "saveas", ex_write, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1328 EX_BANG|EX_FILE1|EX_ARGOPT|EX_CMDWIN|EX_LOCK_OK|EX_TRLBAR, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1329 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1330 EXCMD(CMD_sbuffer, "sbuffer", ex_buffer, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1331 EX_BANG|EX_RANGE|EX_BUFNAME|EX_BUFUNL|EX_COUNT|EX_EXTRA|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1332 ADDR_BUFFERS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1333 EXCMD(CMD_sbNext, "sbNext", ex_bprevious, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1334 EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1335 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1336 EXCMD(CMD_sball, "sball", ex_buffer_all, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1337 EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1338 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1339 EXCMD(CMD_sbfirst, "sbfirst", ex_brewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1340 EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1341 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1342 EXCMD(CMD_sblast, "sblast", ex_blast, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1343 EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1344 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1345 EXCMD(CMD_sbmodified, "sbmodified", ex_bmodified, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1346 EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1347 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1348 EXCMD(CMD_sbnext, "sbnext", ex_bnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1349 EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1350 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1351 EXCMD(CMD_sbprevious, "sbprevious", ex_bprevious, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1352 EX_RANGE|EX_COUNT|EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1353 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1354 EXCMD(CMD_sbrewind, "sbrewind", ex_brewind, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1355 EX_CMDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1356 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1357 EXCMD(CMD_scriptnames, "scriptnames", ex_scriptnames, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1358 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1359 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1360 EXCMD(CMD_scriptencoding, "scriptencoding", ex_scriptencoding, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1361 EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1362 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1363 EXCMD(CMD_scriptversion, "scriptversion", ex_scriptversion, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1364 EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1365 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1366 EXCMD(CMD_scscope, "scscope", ex_scscope, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1367 EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1368 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1369 EXCMD(CMD_set, "set", ex_set, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1370 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1371 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1372 EXCMD(CMD_setfiletype, "setfiletype", ex_setfiletype, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1373 EX_TRLBAR|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1374 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1375 EXCMD(CMD_setglobal, "setglobal", ex_set, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1376 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1377 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1378 EXCMD(CMD_setlocal, "setlocal", ex_set, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1379 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1380 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1381 EXCMD(CMD_sfind, "sfind", ex_splitview, |
19701
9412cc889072
patch 8.2.0407: no early check if :find and :sfind have an argument
Bram Moolenaar <Bram@vim.org>
parents:
19390
diff
changeset
|
1382 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_NEEDARG, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1383 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1384 EXCMD(CMD_sfirst, "sfirst", ex_rewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1385 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1386 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1387 EXCMD(CMD_shell, "shell", ex_shell, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1388 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1389 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1390 EXCMD(CMD_simalt, "simalt", ex_simalt, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1391 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1392 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1393 EXCMD(CMD_sign, "sign", ex_sign, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1394 EX_NEEDARG|EX_RANGE|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1395 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1396 EXCMD(CMD_silent, "silent", ex_wrongmodifier, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1397 EX_NEEDARG|EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1398 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1399 EXCMD(CMD_sleep, "sleep", ex_sleep, |
23648
b7d3c79075c5
patch 8.2.2366: when using ":sleep" the cursor is always displayed
Bram Moolenaar <Bram@vim.org>
parents:
23358
diff
changeset
|
1400 EX_BANG|EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1401 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1402 EXCMD(CMD_slast, "slast", ex_last, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1403 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1404 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1405 EXCMD(CMD_smagic, "smagic", ex_submagic, |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23185
diff
changeset
|
1406 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1407 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1408 EXCMD(CMD_smap, "smap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1409 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1410 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1411 EXCMD(CMD_smapclear, "smapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1412 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1413 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1414 EXCMD(CMD_smenu, "smenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1415 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1416 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1417 EXCMD(CMD_snext, "snext", ex_next, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1418 EX_RANGE|EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1419 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1420 EXCMD(CMD_snomagic, "snomagic", ex_submagic, |
23272
a84e7abb0c92
patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents:
23185
diff
changeset
|
1421 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1422 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1423 EXCMD(CMD_snoremap, "snoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1424 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1425 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1426 EXCMD(CMD_snoremenu, "snoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1427 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1428 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1429 EXCMD(CMD_source, "source", ex_source, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1430 EX_BANG|EX_FILE1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1431 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1432 EXCMD(CMD_sort, "sort", ex_sort, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1433 EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_BANG|EX_EXTRA|EX_NOTRLCOM|EX_MODIFY, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1434 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1435 EXCMD(CMD_split, "split", ex_splitview, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1436 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1437 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1438 EXCMD(CMD_spellgood, "spellgood", ex_spell, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1439 EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1440 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1441 EXCMD(CMD_spelldump, "spelldump", ex_spelldump, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1442 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1443 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1444 EXCMD(CMD_spellinfo, "spellinfo", ex_spellinfo, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1445 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1446 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1447 EXCMD(CMD_spellrepall, "spellrepall", ex_spellrepall, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1448 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1449 ADDR_NONE), |
17736
83a290940bd3
patch 8.1.1865: spellrare and spellrepall in the wrong order
Bram Moolenaar <Bram@vim.org>
parents:
17682
diff
changeset
|
1450 EXCMD(CMD_spellrare, "spellrare", ex_spell, |
83a290940bd3
patch 8.1.1865: spellrare and spellrepall in the wrong order
Bram Moolenaar <Bram@vim.org>
parents:
17682
diff
changeset
|
1451 EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, |
83a290940bd3
patch 8.1.1865: spellrare and spellrepall in the wrong order
Bram Moolenaar <Bram@vim.org>
parents:
17682
diff
changeset
|
1452 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1453 EXCMD(CMD_spellundo, "spellundo", ex_spell, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1454 EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1455 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1456 EXCMD(CMD_spellwrong, "spellwrong", ex_spell, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1457 EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1458 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1459 EXCMD(CMD_sprevious, "sprevious", ex_previous, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1460 EX_EXTRA|EX_RANGE|EX_COUNT|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1461 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1462 EXCMD(CMD_srewind, "srewind", ex_rewind, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1463 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1464 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1465 EXCMD(CMD_stop, "stop", ex_stop, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1466 EX_TRLBAR|EX_BANG|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1467 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1468 EXCMD(CMD_stag, "stag", ex_stag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1469 EX_RANGE|EX_BANG|EX_WORD1|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1470 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1471 EXCMD(CMD_startinsert, "startinsert", ex_startinsert, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1472 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1473 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1474 EXCMD(CMD_startgreplace, "startgreplace", ex_startinsert, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1475 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1476 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1477 EXCMD(CMD_startreplace, "startreplace", ex_startinsert, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1478 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1479 ADDR_NONE), |
24888
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
1480 EXCMD(CMD_static, "static", ex_ni, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
1481 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
b6ac4ed5e2d2
patch 8.2.2982: Vim9: future commands are not reserved yet
Bram Moolenaar <Bram@vim.org>
parents:
24836
diff
changeset
|
1482 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1483 EXCMD(CMD_stopinsert, "stopinsert", ex_stopinsert, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1484 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1485 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1486 EXCMD(CMD_stjump, "stjump", ex_stag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1487 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1488 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1489 EXCMD(CMD_stselect, "stselect", ex_stag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1490 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1491 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1492 EXCMD(CMD_sunhide, "sunhide", ex_buffer_all, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1493 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1494 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1495 EXCMD(CMD_sunmap, "sunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1496 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1497 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1498 EXCMD(CMD_sunmenu, "sunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1499 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1500 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1501 EXCMD(CMD_suspend, "suspend", ex_stop, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1502 EX_TRLBAR|EX_BANG|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1503 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1504 EXCMD(CMD_sview, "sview", ex_splitview, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1505 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1506 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1507 EXCMD(CMD_swapname, "swapname", ex_swapname, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1508 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1509 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1510 EXCMD(CMD_syntax, "syntax", ex_syntax, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1511 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1512 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1513 EXCMD(CMD_syntime, "syntime", ex_syntime, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1514 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1515 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1516 EXCMD(CMD_syncbind, "syncbind", ex_syncbind, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1517 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1518 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1519 EXCMD(CMD_smile, "smile", ex_smile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1520 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_SBOXOK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1521 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1522 EXCMD(CMD_t, "t", ex_copymove, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1523 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1524 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1525 EXCMD(CMD_tNext, "tNext", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1526 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1527 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1528 EXCMD(CMD_tag, "tag", ex_tag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1529 EX_RANGE|EX_BANG|EX_WORD1|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1530 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1531 EXCMD(CMD_tags, "tags", do_tags, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1532 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1533 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1534 EXCMD(CMD_tab, "tab", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1535 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1536 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1537 EXCMD(CMD_tabclose, "tabclose", ex_tabclose, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1538 EX_BANG|EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1539 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1540 EXCMD(CMD_tabdo, "tabdo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
1541 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1542 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1543 EXCMD(CMD_tabedit, "tabedit", ex_splitview, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1544 EX_BANG|EX_FILE1|EX_RANGE|EX_ZEROR|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1545 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1546 EXCMD(CMD_tabfind, "tabfind", ex_splitview, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1547 EX_BANG|EX_FILE1|EX_RANGE|EX_ZEROR|EX_CMDARG|EX_ARGOPT|EX_NEEDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1548 ADDR_TABS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1549 EXCMD(CMD_tabfirst, "tabfirst", ex_tabnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1550 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1551 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1552 EXCMD(CMD_tabmove, "tabmove", ex_tabmove, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1553 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1554 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1555 EXCMD(CMD_tablast, "tablast", ex_tabnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1556 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1557 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1558 EXCMD(CMD_tabnext, "tabnext", ex_tabnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1559 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1560 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1561 EXCMD(CMD_tabnew, "tabnew", ex_splitview, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1562 EX_BANG|EX_FILE1|EX_RANGE|EX_ZEROR|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1563 ADDR_TABS), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1564 EXCMD(CMD_tabonly, "tabonly", ex_tabonly, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1565 EX_BANG|EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1566 ADDR_TABS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1567 EXCMD(CMD_tabprevious, "tabprevious", ex_tabnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1568 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1569 ADDR_TABS_RELATIVE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1570 EXCMD(CMD_tabNext, "tabNext", ex_tabnext, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1571 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1572 ADDR_TABS_RELATIVE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1573 EXCMD(CMD_tabrewind, "tabrewind", ex_tabnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1574 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1575 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1576 EXCMD(CMD_tabs, "tabs", ex_tabs, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1577 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1578 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1579 EXCMD(CMD_tcd, "tcd", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1580 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1581 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1582 EXCMD(CMD_tchdir, "tchdir", ex_cd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1583 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1584 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1585 EXCMD(CMD_tcl, "tcl", ex_tcl, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1586 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1587 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1588 EXCMD(CMD_tcldo, "tcldo", ex_tcldo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1589 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1590 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1591 EXCMD(CMD_tclfile, "tclfile", ex_tclfile, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1592 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_LOCK_OK|EX_RESTRICT, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1593 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1594 EXCMD(CMD_tearoff, "tearoff", ex_tearoff, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1595 EX_NEEDARG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1596 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1597 EXCMD(CMD_terminal, "terminal", ex_terminal, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1598 EX_RANGE|EX_BANG|EX_FILES|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1599 ADDR_LINES), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1600 EXCMD(CMD_tfirst, "tfirst", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1601 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1602 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1603 EXCMD(CMD_throw, "throw", ex_throw, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1604 EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1605 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1606 EXCMD(CMD_tjump, "tjump", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1607 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1608 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1609 EXCMD(CMD_tlast, "tlast", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1610 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1611 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1612 EXCMD(CMD_tlmenu, "tlmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1613 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1614 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1615 EXCMD(CMD_tlnoremenu, "tlnoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1616 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1617 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1618 EXCMD(CMD_tlunmenu, "tlunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1619 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1620 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1621 EXCMD(CMD_tmenu, "tmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1622 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1623 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1624 EXCMD(CMD_tmap, "tmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1625 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1626 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1627 EXCMD(CMD_tmapclear, "tmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1628 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1629 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1630 EXCMD(CMD_tnext, "tnext", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1631 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1632 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1633 EXCMD(CMD_tnoremap, "tnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1634 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1635 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1636 EXCMD(CMD_topleft, "topleft", ex_wrongmodifier, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1637 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1638 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1639 EXCMD(CMD_tprevious, "tprevious", ex_tag, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1640 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1641 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1642 EXCMD(CMD_trewind, "trewind", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1643 EX_RANGE|EX_BANG|EX_TRLBAR|EX_ZEROR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1644 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1645 EXCMD(CMD_try, "try", ex_try, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1646 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1647 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1648 EXCMD(CMD_tselect, "tselect", ex_tag, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1649 EX_BANG|EX_TRLBAR|EX_WORD1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1650 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1651 EXCMD(CMD_tunmenu, "tunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1652 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1653 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1654 EXCMD(CMD_tunmap, "tunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1655 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1656 ADDR_NONE), |
24836
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
1657 EXCMD(CMD_type, "type", ex_ni, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
1658 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
10ae5832dec8
patch 8.2.2956: Vim9: need to plan for future additions
Bram Moolenaar <Bram@vim.org>
parents:
24533
diff
changeset
|
1659 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1660 EXCMD(CMD_undo, "undo", ex_undo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1661 EX_RANGE|EX_COUNT|EX_ZEROR|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1662 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1663 EXCMD(CMD_undojoin, "undojoin", ex_undojoin, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1664 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1665 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1666 EXCMD(CMD_undolist, "undolist", ex_undolist, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1667 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1668 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1669 EXCMD(CMD_unabbreviate, "unabbreviate", ex_abbreviate, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1670 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1671 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1672 EXCMD(CMD_unhide, "unhide", ex_buffer_all, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1673 EX_RANGE|EX_COUNT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1674 ADDR_OTHER), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1675 EXCMD(CMD_unlet, "unlet", ex_unlet, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1676 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1677 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1678 EXCMD(CMD_unlockvar, "unlockvar", ex_lockvar, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1679 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1680 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1681 EXCMD(CMD_unmap, "unmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1682 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1683 ADDR_NONE), |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1684 EXCMD(CMD_unmenu, "unmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1685 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1686 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1687 EXCMD(CMD_unsilent, "unsilent", ex_wrongmodifier, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1688 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1689 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1690 EXCMD(CMD_update, "update", ex_update, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1691 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1692 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1693 EXCMD(CMD_vglobal, "vglobal", ex_global, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1694 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_DFLALL|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1695 ADDR_LINES), |
22391
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
1696 EXCMD(CMD_var, "var", ex_var, |
26612
2586659245db
patch 8.2.3835: the inline-function example does not work
Bram Moolenaar <Bram@vim.org>
parents:
26576
diff
changeset
|
1697 EX_EXTRA|EX_NOTRLCOM|EX_EXPR_ARG|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
22391
a9fb7efa31d6
patch 8.2.1744: Vim9: using ":const!" is weird
Bram Moolenaar <Bram@vim.org>
parents:
22272
diff
changeset
|
1698 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1699 EXCMD(CMD_version, "version", ex_version, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1700 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1701 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1702 EXCMD(CMD_verbose, "verbose", ex_wrongmodifier, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1703 EX_NEEDARG|EX_RANGE|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1704 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1705 EXCMD(CMD_vertical, "vertical", ex_wrongmodifier, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1706 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1707 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1708 EXCMD(CMD_visual, "visual", ex_edit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1709 EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1710 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1711 EXCMD(CMD_view, "view", ex_edit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1712 EX_BANG|EX_FILE1|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1713 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1714 EXCMD(CMD_vimgrep, "vimgrep", ex_vimgrep, |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22840
diff
changeset
|
1715 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1716 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1717 EXCMD(CMD_vimgrepadd, "vimgrepadd", ex_vimgrep, |
22874
db1bc1ab5ec8
patch 8.2.1984: cannot use :vimgrep in omni completion
Bram Moolenaar <Bram@vim.org>
parents:
22840
diff
changeset
|
1718 EX_RANGE|EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_XFILE|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1719 ADDR_OTHER), |
23938
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23717
diff
changeset
|
1720 EXCMD(CMD_vim9cmd, "vim9cmd", ex_wrongmodifier, |
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23717
diff
changeset
|
1721 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN|EX_LOCK_OK, |
2a885d095bff
patch 8.2.2511: Vim9: cannot use Vim9 script syntax in some places
Bram Moolenaar <Bram@vim.org>
parents:
23717
diff
changeset
|
1722 ADDR_NONE), |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
1723 EXCMD(CMD_vim9script, "vim9script", ex_vim9script, |
23358
b3142fc0a414
patch 8.2.2222: Vim9: cannot keep script variables when reloading
Bram Moolenaar <Bram@vim.org>
parents:
23272
diff
changeset
|
1724 EX_WORD1|EX_CMDWIN|EX_LOCK_OK, |
19181
94eda51ba9ba
patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents:
19137
diff
changeset
|
1725 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1726 EXCMD(CMD_viusage, "viusage", ex_viusage, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1727 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1728 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1729 EXCMD(CMD_vmap, "vmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1730 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1731 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1732 EXCMD(CMD_vmapclear, "vmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1733 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1734 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1735 EXCMD(CMD_vmenu, "vmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1736 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1737 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1738 EXCMD(CMD_vnoremap, "vnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1739 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1740 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1741 EXCMD(CMD_vnew, "vnew", ex_splitview, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1742 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1743 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1744 EXCMD(CMD_vnoremenu, "vnoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1745 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1746 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1747 EXCMD(CMD_vsplit, "vsplit", ex_splitview, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1748 EX_BANG|EX_FILE1|EX_RANGE|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1749 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1750 EXCMD(CMD_vunmap, "vunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1751 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1752 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1753 EXCMD(CMD_vunmenu, "vunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1754 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1755 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1756 EXCMD(CMD_write, "write", ex_write, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1757 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1758 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1759 EXCMD(CMD_wNext, "wNext", ex_wnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1760 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1761 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1762 EXCMD(CMD_wall, "wall", do_wqall, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1763 EX_BANG|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1764 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1765 EXCMD(CMD_while, "while", ex_while, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1766 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1767 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1768 EXCMD(CMD_winsize, "winsize", ex_winsize, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1769 EX_EXTRA|EX_NEEDARG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1770 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1771 EXCMD(CMD_wincmd, "wincmd", ex_wincmd, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1772 EX_NEEDARG|EX_WORD1|EX_RANGE|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1773 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1774 EXCMD(CMD_windo, "windo", ex_listdo, |
26305
ce891b60bdcd
patch 8.2.3683: Vim9: cannot use in :...do commands
Bram Moolenaar <Bram@vim.org>
parents:
26103
diff
changeset
|
1775 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL|EX_EXPAND, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1776 ADDR_WINDOWS), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1777 EXCMD(CMD_winpos, "winpos", ex_winpos, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1778 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1779 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1780 EXCMD(CMD_wnext, "wnext", ex_wnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1781 EX_RANGE|EX_BANG|EX_FILE1|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1782 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1783 EXCMD(CMD_wprevious, "wprevious", ex_wnext, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1784 EX_RANGE|EX_BANG|EX_FILE1|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1785 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1786 EXCMD(CMD_wq, "wq", ex_exit, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1787 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1788 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1789 EXCMD(CMD_wqall, "wqall", do_wqall, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1790 EX_BANG|EX_FILE1|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1791 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1792 EXCMD(CMD_wundo, "wundo", ex_wundo, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1793 EX_BANG|EX_NEEDARG|EX_FILE1, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1794 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1795 EXCMD(CMD_wviminfo, "wviminfo", ex_viminfo, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1796 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1797 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1798 EXCMD(CMD_xit, "xit", ex_exit, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1799 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1800 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1801 EXCMD(CMD_xall, "xall", do_wqall, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1802 EX_BANG|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1803 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1804 EXCMD(CMD_xmap, "xmap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1805 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1806 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1807 EXCMD(CMD_xmapclear, "xmapclear", ex_mapclear, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1808 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1809 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1810 EXCMD(CMD_xmenu, "xmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1811 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1812 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1813 EXCMD(CMD_xnoremap, "xnoremap", ex_map, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1814 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1815 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1816 EXCMD(CMD_xnoremenu, "xnoremenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1817 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1818 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1819 EXCMD(CMD_xrestore, "xrestore", ex_xrestore, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1820 EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1821 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1822 EXCMD(CMD_xunmap, "xunmap", ex_unmap, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1823 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1824 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1825 EXCMD(CMD_xunmenu, "xunmenu", ex_menu, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1826 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1827 ADDR_NONE), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1828 EXCMD(CMD_yank, "yank", ex_operators, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1829 EX_RANGE|EX_WHOLEFOLD|EX_REGSTR|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1830 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1831 EXCMD(CMD_z, "z", ex_z, |
25729
0f93e9423890
patch 8.2.3400: ":z!" is not supported
Bram Moolenaar <Bram@vim.org>
parents:
25485
diff
changeset
|
1832 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_EXTRA|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1833 ADDR_LINES), |
7 | 1834 |
20075
516b10943fdb
patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
19701
diff
changeset
|
1835 // commands that don't start with a letter |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1836 EXCMD(CMD_bang, "!", ex_bang, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1837 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILES|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1838 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1839 EXCMD(CMD_pound, "#", ex_print, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1840 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1841 ADDR_LINES), |
21773
2f2e528c5782
patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents:
21707
diff
changeset
|
1842 EXCMD(CMD_and, "&", ex_substitute, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1843 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1844 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1845 EXCMD(CMD_star, "*", ex_at, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1846 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1847 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1848 EXCMD(CMD_lshift, "<", ex_operators, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1849 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1850 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1851 EXCMD(CMD_equal, "=", ex_equal, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1852 EX_RANGE|EX_TRLBAR|EX_DFLALL|EX_FLAGS|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1853 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1854 EXCMD(CMD_rshift, ">", ex_operators, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1855 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1856 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1857 EXCMD(CMD_at, "@", ex_at, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1858 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK|EX_NONWHITE_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1859 ADDR_LINES), |
24020
f7dbc9e81a19
patch 8.2.2552: Vim9: no reason to consider "{{{{{{{{" a command
Bram Moolenaar <Bram@vim.org>
parents:
23978
diff
changeset
|
1860 EXCMD(CMD_block, "{", ex_block, // not found normally |
25485
7d24fdd18672
patch 8.2.3279: Vim9: cannot use block in cmdline window
Bram Moolenaar <Bram@vim.org>
parents:
25372
diff
changeset
|
1861 EX_TRLBAR|EX_LOCK_OK|EX_CMDWIN, |
22555
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
1862 ADDR_NONE), |
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
1863 EXCMD(CMD_endblock, "}", ex_endblock, |
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
1864 EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
7d25264c246c
patch 8.2.1826: Vim9: cannot use a {} block at script level
Bram Moolenaar <Bram@vim.org>
parents:
22391
diff
changeset
|
1865 ADDR_NONE), |
21773
2f2e528c5782
patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents:
21707
diff
changeset
|
1866 EXCMD(CMD_tilde, "~", ex_substitute, |
23185
055fa9db6f39
patch 8.2.2138: Vim9: "exit_cb" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents:
22874
diff
changeset
|
1867 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_LOCK_OK|EX_MODIFY|EX_NONWHITE_OK, |
20075
516b10943fdb
patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
19701
diff
changeset
|
1868 ADDR_LINES), |
516b10943fdb
patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
19701
diff
changeset
|
1869 |
516b10943fdb
patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents:
19701
diff
changeset
|
1870 // commands that start with an uppercase letter |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1871 EXCMD(CMD_Next, "Next", ex_previous, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1872 EX_EXTRA|EX_RANGE|EX_COUNT|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1873 ADDR_OTHER), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1874 EXCMD(CMD_Print, "Print", ex_print, |
21487
5c92877092f9
patch 8.2.1294: Vim9: error when using vim9script in TextYankPost
Bram Moolenaar <Bram@vim.org>
parents:
20998
diff
changeset
|
1875 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1876 ADDR_LINES), |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1877 EXCMD(CMD_X, "X", ex_X, |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1878 EX_TRLBAR, |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1879 ADDR_NONE), |
7 | 1880 |
24533
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1881 // Commands that are recognized only in find_ex_command(). |
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1882 EXCMD(CMD_increment, "++", ex_incdec, |
25020
91f396f149d5
patch 8.2.3047: increment and decrement don't allow for next command
Bram Moolenaar <Bram@vim.org>
parents:
24888
diff
changeset
|
1883 EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
24533
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1884 ADDR_NONE), |
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1885 EXCMD(CMD_decrement, "--", ex_incdec, |
25020
91f396f149d5
patch 8.2.3047: increment and decrement don't allow for next command
Bram Moolenaar <Bram@vim.org>
parents:
24888
diff
changeset
|
1886 EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK, |
24533
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1887 ADDR_NONE), |
9c404d78d767
patch 8.2.2806: Vim9: using "++nr" as a command might not work
Bram Moolenaar <Bram@vim.org>
parents:
24531
diff
changeset
|
1888 |
17336
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1889 #undef EXCMD |
81705f4d9e03
patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents:
17178
diff
changeset
|
1890 |
7 | 1891 #ifndef DO_DECLARE_EXCMD |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1892 CMD_SIZE, // MUST be after all real commands! |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1893 CMD_USER = -1, // User-defined command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1894 CMD_USER_BUF = -2 // User-defined command local to buffer |
7 | 1895 #endif |
1896 }; | |
1897 | |
1898 #ifndef DO_DECLARE_EXCMD | |
1899 typedef enum CMD_index cmdidx_T; | |
1900 | |
1901 /* | |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1902 * Arguments used for an Ex command. |
7 | 1903 */ |
1904 struct exarg | |
1905 { | |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1906 char_u *arg; // argument of the command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1907 char_u *nextcmd; // next command (NULL if none) |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1908 char_u *cmd; // the name of the command (except for :make) |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1909 char_u **cmdlinep; // pointer to pointer of allocated cmdline |
20998
d387db9d9b68
patch 8.2.1050: missing change in struct
Bram Moolenaar <Bram@vim.org>
parents:
20536
diff
changeset
|
1910 #ifdef FEAT_EVAL |
d387db9d9b68
patch 8.2.1050: missing change in struct
Bram Moolenaar <Bram@vim.org>
parents:
20536
diff
changeset
|
1911 char_u *cmdline_tofree; // free later |
d387db9d9b68
patch 8.2.1050: missing change in struct
Bram Moolenaar <Bram@vim.org>
parents:
20536
diff
changeset
|
1912 #endif |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1913 cmdidx_T cmdidx; // the index for the command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1914 long argt; // flags for the command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1915 int skip; // don't execute the command, only parse it |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1916 int forceit; // TRUE if ! present |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1917 int addr_count; // the number of addresses given |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1918 linenr_T line1; // the first line number |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1919 linenr_T line2; // the second line number or count |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1920 cmd_addr_T addr_type; // type of the count/range |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1921 int flags; // extra flags after count: EXFLAG_ |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1922 char_u *do_ecmd_cmd; // +command arg to be used in edited file |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1923 linenr_T do_ecmd_lnum; // the line number in an edited file |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1924 int append; // TRUE with ":w >>file" command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1925 int usefilter; // TRUE with ":w !command" and ":r!command" |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1926 int amount; // number of '>' or '<' for shift command |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1927 int regname; // register name (NUL if none) |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1928 int force_bin; // 0, FORCE_BIN or FORCE_NOBIN |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1929 int read_edit; // ++edit argument |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1930 int force_ff; // ++ff= argument (first char of argument) |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1931 int force_enc; // ++enc= argument (index in cmd[]) |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1932 int bad_char; // BAD_KEEP, BAD_DROP or replacement byte |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1933 int useridx; // user command index |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1934 char *errmsg; // returned error message |
21883
a427f5f26419
patch 8.2.1491: Vim9: crash when compiling heredoc lines start with comment
Bram Moolenaar <Bram@vim.org>
parents:
21773
diff
changeset
|
1935 char_u *(*getline)(int, void *, int, getline_opt_T); |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1936 void *cookie; // argument for getline() |
7 | 1937 #ifdef FEAT_EVAL |
18904
2bdc2e1f6e1f
patch 8.2.0013: not using a typedef for condstack
Bram Moolenaar <Bram@vim.org>
parents:
18827
diff
changeset
|
1938 cstack_T *cstack; // condition stack for ":if" etc. |
7 | 1939 #endif |
1940 }; | |
1941 | |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1942 #define FORCE_BIN 1 // ":edit ++bin file" |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1943 #define FORCE_NOBIN 2 // ":edit ++nobin file" |
7 | 1944 |
17362
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1945 // Values for "flags" |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1946 #define EXFLAG_LIST 0x01 // 'l': list |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1947 #define EXFLAG_NR 0x02 // '#': number |
95f989e38810
patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents:
17336
diff
changeset
|
1948 #define EXFLAG_PRINT 0x04 // 'p': print |
169 | 1949 |
7 | 1950 #endif |