annotate src/ex_cmds.h @ 20595:3609e842f822 v8.2.0851

patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI Commit: https://github.com/vim/vim/commit/f4ae6b245a54f11dd967d06b80f30e5abf55fb82 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 30 19:52:46 2020 +0200 patch 8.2.0851: can't distinguish <M-a> from accented "a" in the GUI Problem: Can't distinguish <M-a> from accented "a" in the GUI. Solution: Use another way to make mapping <C-bslash> work. (closes https://github.com/vim/vim/issues/6163)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 May 2020 20:00:03 +0200
parents 8fa783f2c69c
children d387db9d9b68
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9980
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 * This file defines the Ex commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * When DO_DECLARE_EXCMD is defined, the table with ex command names and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 * options results.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 * When DO_DECLARE_EXCMD is NOT defined, the enum with all the Ex commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 * results.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 * This clever trick was invented by Ron Aaron.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 * When adding an Ex command:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 * 1. Add an entry in the table below. Keep it sorted on the shortest
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 * version of the command name that works. If it doesn't start with a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 * long name of the command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
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
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
50 #define EX_CMDWIN 0x80000 // allowed in cmdline window; when missing
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
51 // disallows editing another buffer when
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
52 // curbuf_lock is set
17336
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_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
54 #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
55 #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
56 #define EX_EXPAND 0x800000 // expands wildcards later
1d84eaed0ec8 patch 8.2.0641: Vim9: not expanded in :hardcopy and syn-include
Bram Moolenaar <Bram@vim.org>
parents: 20075
diff changeset
57
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
58 #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
59 #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
60 #define EX_WORD1 (EX_EXTRA | EX_NOSPC) // one extra word allowed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
62 #ifndef DO_DECLARE_EXCMD
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
63 /*
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
64 * 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
65 */
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
66 typedef enum {
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
67 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
68 ADDR_WINDOWS, // window number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
69 ADDR_ARGUMENTS, // argument number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
70 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
71 ADDR_BUFFERS, // buffer number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
72 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
73 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
74 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
75 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
76 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
77 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
78 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
79 } cmd_addr_T;
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
80 #endif
6398
5a76e36f07b1 updated for version 7.4.530
Bram Moolenaar <bram@vim.org>
parents: 6305
diff changeset
81
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 #ifndef DO_DECLARE_EXCMD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 typedef struct exarg exarg_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 * This array maps ex command names to command codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 * The order in which command names are listed below is significant --
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 * ambiguous abbreviations are always resolved to be the first possible match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 * (e.g. "r" is taken to mean "read", not "rewind", because "read" comes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 * before "rewind").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 * Not supported commands are included to avoid ambiguities.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 #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
95 # define EXCMD(a, b, c, d, e) {(char_u *)b, c, (long_u)(d), e}
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96
7807
1a5d34492798 commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents: 7726
diff changeset
97 typedef void (*ex_func_T) (exarg_T *eap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
99 static struct cmdname
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 {
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
101 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
102 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
103 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
104 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
105 } cmdnames[] =
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 #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
107 # define EXCMD(a, b, c, d, e) a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 enum CMD_index
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110 {
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
111 EXCMD(CMD_append, "append", ex_append,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
112 EX_BANG|EX_RANGE|EX_ZEROR|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
113 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
114 EXCMD(CMD_abbreviate, "abbreviate", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
115 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
116 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
117 EXCMD(CMD_abclear, "abclear", ex_abclear,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
118 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
119 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
120 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
121 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
122 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
123 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
124 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
125 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
126 EXCMD(CMD_amenu, "amenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
127 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
128 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
129 EXCMD(CMD_anoremenu, "anoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
130 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
131 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
132 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
133 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
134 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
135 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
136 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
137 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
138 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
139 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
140 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
141 EXCMD(CMD_argdo, "argdo", ex_listdo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
142 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
143 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
144 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
145 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
146 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
147 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
148 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
149 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
150 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
151 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
152 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
153 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
154 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
155 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
156 EXCMD(CMD_ascii, "ascii", do_ascii,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
157 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
158 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
159 EXCMD(CMD_autocmd, "autocmd", ex_autocmd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
160 EX_BANG|EX_EXTRA|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
161 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
162 EXCMD(CMD_augroup, "augroup", ex_autocmd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
163 EX_BANG|EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
164 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
165 EXCMD(CMD_aunmenu, "aunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
166 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
167 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
168 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
169 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
170 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
171 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
172 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
173 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
174 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
175 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
176 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
177 EXCMD(CMD_badd, "badd", ex_edit,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
178 EX_NEEDARG|EX_FILE1|EX_CMDARG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
179 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
180 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
181 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
182 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
183 EXCMD(CMD_behave, "behave", ex_behave,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
184 EX_BANG|EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
185 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
186 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
187 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
188 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
189 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
190 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
191 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
192 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
193 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
194 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
195 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
196 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
197 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
198 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
199 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
200 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
201 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
202 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
203 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
204 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
205 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
206 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
207 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
208 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
209 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
210 EXCMD(CMD_break, "break", ex_break,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
211 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
212 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
213 EXCMD(CMD_breakadd, "breakadd", ex_breakadd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
214 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
215 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
216 EXCMD(CMD_breakdel, "breakdel", ex_breakdel,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
217 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
218 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
219 EXCMD(CMD_breaklist, "breaklist", ex_breaklist,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
220 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
221 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
222 EXCMD(CMD_browse, "browse", ex_wrongmodifier,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
223 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
224 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
225 EXCMD(CMD_buffers, "buffers", buflist_list,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
226 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
227 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
228 EXCMD(CMD_bufdo, "bufdo", ex_listdo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
229 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
230 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
231 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
232 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
233 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
234 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
235 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
236 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
237 EXCMD(CMD_change, "change", ex_change,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
238 EX_BANG|EX_WHOLEFOLD|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
239 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
240 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
241 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
242 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
243 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
244 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
245 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
246 EXCMD(CMD_cabbrev, "cabbrev", ex_abbreviate,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
247 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
248 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
249 EXCMD(CMD_cabclear, "cabclear", ex_abclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
250 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
251 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
252 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
253 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
254 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
255 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
256 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
257 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
258 EXCMD(CMD_caddexpr, "caddexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
259 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
260 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
261 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
262 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
263 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
264 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
265 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
266 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
267 EXCMD(CMD_call, "call", ex_call,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
268 EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
269 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
270 EXCMD(CMD_catch, "catch", ex_catch,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
271 EX_EXTRA|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
272 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
273 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
274 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
275 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
276 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
277 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
278 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
279 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
280 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
281 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
282 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
283 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
284 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
285 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
286 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
287 ADDR_QUICKFIX),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
288 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
289 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
290 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
291 EXCMD(CMD_cd, "cd", ex_cd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
292 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
293 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
294 EXCMD(CMD_cdo, "cdo", ex_listdo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
295 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
296 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
297 EXCMD(CMD_center, "center", ex_align,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
298 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
299 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
300 EXCMD(CMD_cexpr, "cexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
301 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_BANG,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
302 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
303 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
304 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
305 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
306 EXCMD(CMD_cfdo, "cfdo", ex_listdo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
307 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
308 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
309 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
310 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
311 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
312 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
313 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
314 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
315 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
316 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
317 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
318 EXCMD(CMD_cgetexpr, "cgetexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
319 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
320 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
321 EXCMD(CMD_chdir, "chdir", ex_cd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
322 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
323 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
324 EXCMD(CMD_changes, "changes", ex_changes,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
325 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
326 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
327 EXCMD(CMD_checkpath, "checkpath", ex_checkpath,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
328 EX_TRLBAR|EX_BANG|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
329 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
330 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
331 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
332 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
333 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
334 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
335 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
336 EXCMD(CMD_clist, "clist", qf_list,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
337 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
338 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
339 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
340 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
341 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
342 EXCMD(CMD_close, "close", ex_close,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
343 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
344 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
345 EXCMD(CMD_clearjumps, "clearjumps", ex_clearjumps,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
346 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
347 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
348 EXCMD(CMD_cmap, "cmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
349 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
350 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
351 EXCMD(CMD_cmapclear, "cmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
352 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
353 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
354 EXCMD(CMD_cmenu, "cmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
355 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
356 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
357 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
358 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
359 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
360 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
361 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
362 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
363 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
364 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
365 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
366 EXCMD(CMD_cnoremap, "cnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
367 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
368 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
369 EXCMD(CMD_cnoreabbrev, "cnoreabbrev", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
370 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
371 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
372 EXCMD(CMD_cnoremenu, "cnoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
373 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
374 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
375 EXCMD(CMD_copy, "copy", ex_copymove,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
376 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
377 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
378 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
379 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
380 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
381 EXCMD(CMD_colorscheme, "colorscheme", ex_colorscheme,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
382 EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
383 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
384 EXCMD(CMD_command, "command", ex_command,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
385 EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
386 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
387 EXCMD(CMD_comclear, "comclear", ex_comclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
388 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
389 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
390 EXCMD(CMD_compiler, "compiler", ex_compiler,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
391 EX_BANG|EX_TRLBAR|EX_WORD1|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
392 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
393 EXCMD(CMD_continue, "continue", ex_continue,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
394 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
395 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
396 EXCMD(CMD_confirm, "confirm", ex_wrongmodifier,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
397 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
398 ADDR_NONE),
20536
8fa783f2c69c patch 8.2.0822: Vim9: code left over from discovery phase
Bram Moolenaar <Bram@vim.org>
parents: 20528
diff changeset
399 EXCMD(CMD_const, "const", ex_let,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
400 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
401 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
402 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
403 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
404 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
405 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
406 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
407 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
408 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
409 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
410 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
411 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
412 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
413 ADDR_UNSIGNED),
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
414 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
415 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
416 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
417 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
418 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
419 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
420 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
421 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
422 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
423 EXCMD(CMD_cunmap, "cunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
424 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
425 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
426 EXCMD(CMD_cunabbrev, "cunabbrev", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
427 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
428 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
429 EXCMD(CMD_cunmenu, "cunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
430 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
431 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
432 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
433 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
434 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
435 EXCMD(CMD_delete, "delete", ex_operators,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
436 EX_RANGE|EX_WHOLEFOLD|EX_REGSTR|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
437 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
438 EXCMD(CMD_delmarks, "delmarks", ex_delmarks,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
439 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
440 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
441 EXCMD(CMD_debug, "debug", ex_debug,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
442 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
443 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
444 EXCMD(CMD_debuggreedy, "debuggreedy", ex_debuggreedy,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
445 EX_RANGE|EX_ZEROR|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
446 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
447 EXCMD(CMD_def, "def", ex_function,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
448 EX_EXTRA|EX_BANG|EX_SBOXOK|EX_CMDWIN,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
449 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
450 EXCMD(CMD_defcompile, "defcompile", ex_defcompile,
489cb75c76b6 patch 8.2.0818: Vim9: using a discovery phase doesn't work well
Bram Moolenaar <Bram@vim.org>
parents: 20172
diff changeset
451 EX_SBOXOK|EX_CMDWIN|EX_TRLBAR,
489cb75c76b6 patch 8.2.0818: Vim9: using a discovery phase doesn't work well
Bram Moolenaar <Bram@vim.org>
parents: 20172
diff changeset
452 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
453 EXCMD(CMD_delcommand, "delcommand", ex_delcommand,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
454 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
455 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
456 EXCMD(CMD_delfunction, "delfunction", ex_delfunction,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
457 EX_BANG|EX_NEEDARG|EX_WORD1|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
458 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
459 EXCMD(CMD_display, "display", ex_display,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
460 EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
461 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
462 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
463 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
464 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
465 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
466 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
467 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
468 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
469 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
470 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
471 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
472 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
473 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
474 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
475 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
476 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
477 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
478 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
479 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
480 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
481 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
482 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
483 EXCMD(CMD_digraphs, "digraphs", ex_digraphs,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
484 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
485 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
486 EXCMD(CMD_disassemble, "disassemble", ex_disassemble,
19390
e4b326c9424a patch 8.2.0253: crash when using :disassamble without argument
Bram Moolenaar <Bram@vim.org>
parents: 19181
diff changeset
487 EX_EXTRA|EX_NEEDARG|EX_TRLBAR|EX_CMDWIN,
19181
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
488 ADDR_NONE),
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
489 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
490 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
491 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
492 EXCMD(CMD_dlist, "dlist", ex_findpat,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
493 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
494 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
495 EXCMD(CMD_doautocmd, "doautocmd", ex_doautocmd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
496 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
497 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
498 EXCMD(CMD_doautoall, "doautoall", ex_doautoall,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
499 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
500 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
501 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
502 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
503 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
504 EXCMD(CMD_dsearch, "dsearch", ex_findpat,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
505 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
506 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
507 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
508 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
509 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
510 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
511 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
512 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
513 EXCMD(CMD_earlier, "earlier", ex_later,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
514 EX_TRLBAR|EX_EXTRA|EX_NOSPC|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
515 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
516 EXCMD(CMD_echo, "echo", ex_echo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
517 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
518 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
519 EXCMD(CMD_echoerr, "echoerr", ex_execute,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
520 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
521 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
522 EXCMD(CMD_echohl, "echohl", ex_echohl,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
523 EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
524 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
525 EXCMD(CMD_echomsg, "echomsg", ex_execute,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
526 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
527 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
528 EXCMD(CMD_echon, "echon", ex_echo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
529 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
530 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
531 EXCMD(CMD_else, "else", ex_else,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
532 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
533 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
534 EXCMD(CMD_elseif, "elseif", ex_else,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
535 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
536 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
537 EXCMD(CMD_emenu, "emenu", ex_emenu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
538 EX_NEEDARG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_RANGE|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
539 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
540 EXCMD(CMD_endif, "endif", ex_endif,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
541 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
542 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
543 EXCMD(CMD_enddef, "enddef", ex_endfunction,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
544 EX_TRLBAR|EX_CMDWIN,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
545 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
546 EXCMD(CMD_endfunction, "endfunction", ex_endfunction,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
547 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
548 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
549 EXCMD(CMD_endfor, "endfor", ex_endwhile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
550 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
551 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
552 EXCMD(CMD_endtry, "endtry", ex_endtry,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
553 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
554 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
555 EXCMD(CMD_endwhile, "endwhile", ex_endwhile,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
556 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
557 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
558 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
559 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
560 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
561 EXCMD(CMD_eval, "eval", ex_eval,
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17362
diff changeset
562 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
072efa9ca875 patch 8.1.1807: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents: 17362
diff changeset
563 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
564 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
565 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
566 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
567 EXCMD(CMD_execute, "execute", ex_execute,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
568 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
569 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
570 EXCMD(CMD_exit, "exit", ex_exit,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
571 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
572 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
573 EXCMD(CMD_export, "export", ex_export,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
574 EX_EXTRA|EX_NOTRLCOM,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
575 ADDR_NONE),
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
576 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
577 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
578 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
579 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
580 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
581 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
582 EXCMD(CMD_files, "files", buflist_list,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
583 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
584 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
585 EXCMD(CMD_filetype, "filetype", ex_filetype,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
586 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
587 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
588 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
589 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
590 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
591 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
592 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
593 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
594 EXCMD(CMD_finally, "finally", ex_finally,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
595 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
596 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
597 EXCMD(CMD_finish, "finish", ex_finish,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
598 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
599 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
600 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
601 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
602 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
603 EXCMD(CMD_fixdel, "fixdel", do_fixdel,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
604 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
605 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
606 EXCMD(CMD_fold, "fold", ex_fold,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
607 EX_RANGE|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
608 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
609 EXCMD(CMD_foldclose, "foldclose", ex_foldopen,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
610 EX_RANGE|EX_BANG|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
611 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
612 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
613 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
614 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
615 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
616 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
617 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
618 EXCMD(CMD_foldopen, "foldopen", ex_foldopen,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
619 EX_RANGE|EX_BANG|EX_WHOLEFOLD|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
620 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
621 EXCMD(CMD_for, "for", ex_while,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
622 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
623 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
624 EXCMD(CMD_function, "function", ex_function,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
625 EX_EXTRA|EX_BANG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
626 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
627 EXCMD(CMD_global, "global", ex_global,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
628 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_EXTRA|EX_DFLALL|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
629 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
630 EXCMD(CMD_goto, "goto", ex_goto,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
631 EX_RANGE|EX_COUNT|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
632 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
633 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
634 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
635 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
636 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
637 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
638 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
639 EXCMD(CMD_gui, "gui", ex_gui,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
640 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
641 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
642 EXCMD(CMD_gvim, "gvim", ex_gui,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
643 EX_BANG|EX_FILES|EX_CMDARG|EX_ARGOPT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
644 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
645 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
646 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
647 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
648 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
649 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
650 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
651 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
652 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
653 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
654 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
655 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
656 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
657 EXCMD(CMD_helptags, "helptags", ex_helptags,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
658 EX_NEEDARG|EX_FILES|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
659 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
660 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
661 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
662 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
663 EXCMD(CMD_highlight, "highlight", ex_highlight,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
664 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
665 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
666 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
667 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
668 ADDR_WINDOWS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
669 EXCMD(CMD_history, "history", ex_history,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
670 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
671 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
672 EXCMD(CMD_insert, "insert", ex_append,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
673 EX_BANG|EX_RANGE|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
674 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
675 EXCMD(CMD_iabbrev, "iabbrev", ex_abbreviate,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
676 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
677 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
678 EXCMD(CMD_iabclear, "iabclear", ex_abclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
679 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
680 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
681 EXCMD(CMD_if, "if", ex_if,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
682 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
683 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
684 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
685 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
686 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
687 EXCMD(CMD_ilist, "ilist", ex_findpat,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
688 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
689 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
690 EXCMD(CMD_imap, "imap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
691 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
692 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
693 EXCMD(CMD_imapclear, "imapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
694 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
695 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
696 EXCMD(CMD_imenu, "imenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
697 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
698 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
699 EXCMD(CMD_import, "import", ex_import,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
700 EX_EXTRA|EX_NOTRLCOM,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
701 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
702 EXCMD(CMD_inoremap, "inoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
703 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
704 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
705 EXCMD(CMD_inoreabbrev, "inoreabbrev", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
706 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
707 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
708 EXCMD(CMD_inoremenu, "inoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
709 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
710 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
711 EXCMD(CMD_intro, "intro", ex_intro,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
712 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
713 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
714 EXCMD(CMD_isearch, "isearch", ex_findpat,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
715 EX_BANG|EX_RANGE|EX_DFLALL|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
716 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
717 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
718 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
719 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
720 EXCMD(CMD_iunmap, "iunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
721 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
722 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
723 EXCMD(CMD_iunabbrev, "iunabbrev", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
724 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
725 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
726 EXCMD(CMD_iunmenu, "iunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
727 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
728 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
729 EXCMD(CMD_join, "join", ex_join,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
730 EX_BANG|EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
731 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
732 EXCMD(CMD_jumps, "jumps", ex_jumps,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
733 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
734 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
735 EXCMD(CMD_k, "k", ex_mark,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
736 EX_RANGE|EX_WORD1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
737 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
738 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
739 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
740 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
741 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
742 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
743 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
744 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
745 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
746 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
747 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
748 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
749 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
750 EXCMD(CMD_list, "list", ex_print,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
751 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
752 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
753 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
754 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
755 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
756 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
757 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
758 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
759 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
760 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
761 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
762 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
763 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
764 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
765 EXCMD(CMD_language, "language", ex_language,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
766 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
767 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
768 EXCMD(CMD_laddexpr, "laddexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
769 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
770 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
771 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
772 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
773 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
774 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
775 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
776 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
777 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
778 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
779 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
780 EXCMD(CMD_later, "later", ex_later,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
781 EX_TRLBAR|EX_EXTRA|EX_NOSPC|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
782 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
783 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
784 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
785 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
786 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
787 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
788 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
789 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
790 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
791 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
792 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
793 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
794 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
795 EXCMD(CMD_lcd, "lcd", ex_cd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
796 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
797 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
798 EXCMD(CMD_lchdir, "lchdir", ex_cd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
799 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
800 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
801 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
802 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
803 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
804 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
805 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
806 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
807 EXCMD(CMD_ldo, "ldo", ex_listdo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
808 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
809 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
810 EXCMD(CMD_left, "left", ex_align,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
811 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
812 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
813 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
814 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
815 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
816 EXCMD(CMD_let, "let", ex_let,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
817 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
818 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
819 EXCMD(CMD_lexpr, "lexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
820 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_BANG,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
821 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
822 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
823 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
824 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
825 EXCMD(CMD_lfdo, "lfdo", ex_listdo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
826 EX_BANG|EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
827 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
828 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
829 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
830 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
831 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
832 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
833 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
834 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
835 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
836 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
837 EXCMD(CMD_lgetexpr, "lgetexpr", ex_cexpr,
18827
f98368dd6615 patch 8.1.2401: :cexpr does not handle | in expression
Bram Moolenaar <Bram@vim.org>
parents: 18126
diff changeset
838 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
839 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
840 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
841 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
842 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
843 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
844 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
845 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
846 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
847 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
848 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
849 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
850 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
851 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
852 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
853 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
854 ADDR_QUICKFIX),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
855 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
856 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
857 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
858 EXCMD(CMD_llist, "llist", qf_list,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
859 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
860 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
861 EXCMD(CMD_lmap, "lmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
862 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
863 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
864 EXCMD(CMD_lmapclear, "lmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
865 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
866 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
867 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
868 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
869 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
870 EXCMD(CMD_lnoremap, "lnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
871 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
872 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
873 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
874 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
875 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
876 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
877 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
878 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
879 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
880 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
881 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
882 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
883 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
884 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
885 EXCMD(CMD_loadkeymap, "loadkeymap", ex_loadkeymap,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
886 EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
887 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
888 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
889 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
890 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
891 EXCMD(CMD_lockvar, "lockvar", ex_lockvar,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
892 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
893 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
894 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
895 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
896 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
897 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
898 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
899 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
900 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
901 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
902 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
903 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
904 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
905 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
906 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
907 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
908 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
909 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
910 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
911 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
912 EXCMD(CMD_lunmap, "lunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
913 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
914 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
915 EXCMD(CMD_lua, "lua", ex_lua,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
916 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
917 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
918 EXCMD(CMD_luado, "luado", ex_luado,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
919 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
920 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
921 EXCMD(CMD_luafile, "luafile", ex_luafile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
922 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
923 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
924 EXCMD(CMD_lvimgrep, "lvimgrep", ex_vimgrep,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
925 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
926 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
927 EXCMD(CMD_lvimgrepadd, "lvimgrepadd", ex_vimgrep,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
928 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
929 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
930 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
931 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
932 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
933 EXCMD(CMD_ls, "ls", buflist_list,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
934 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
935 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
936 EXCMD(CMD_move, "move", ex_copymove,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
937 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
938 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
939 EXCMD(CMD_mark, "mark", ex_mark,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
940 EX_RANGE|EX_WORD1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
941 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
942 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
943 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
944 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
945 EXCMD(CMD_map, "map", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
946 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
947 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
948 EXCMD(CMD_mapclear, "mapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
949 EX_EXTRA|EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
950 ADDR_NONE),
18126
f89e2e720b5b patch 8.1.2058: function for ex command is named inconsistently
Bram Moolenaar <Bram@vim.org>
parents: 17736
diff changeset
951 EXCMD(CMD_marks, "marks", ex_marks,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
952 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
953 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
954 EXCMD(CMD_match, "match", ex_match,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
955 EX_RANGE|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
956 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
957 EXCMD(CMD_menu, "menu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
958 EX_RANGE|EX_ZEROR|EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
959 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
960 EXCMD(CMD_menutranslate, "menutranslate", ex_menutranslate,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
961 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
962 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
963 EXCMD(CMD_messages, "messages", ex_messages,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
964 EX_EXTRA|EX_TRLBAR|EX_RANGE|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
965 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
966 EXCMD(CMD_mkexrc, "mkexrc", ex_mkrc,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
967 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
968 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
969 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
970 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
971 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
972 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
973 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
974 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
975 EXCMD(CMD_mkvimrc, "mkvimrc", ex_mkrc,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
976 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
977 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
978 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
979 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
980 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
981 EXCMD(CMD_mode, "mode", ex_mode,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
982 EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
983 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
984 EXCMD(CMD_mzscheme, "mzscheme", ex_mzscheme,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
985 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_CMDWIN|EX_SBOXOK|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
986 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
987 EXCMD(CMD_mzfile, "mzfile", ex_mzfile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
988 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
989 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
990 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
991 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
992 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
993 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
994 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
995 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
996 EXCMD(CMD_nbclose, "nbclose", ex_nbclose,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
997 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
998 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
999 EXCMD(CMD_nbstart, "nbstart", ex_nbstart,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1000 EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1001 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
1002 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
1003 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
1004 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
1005 EXCMD(CMD_nmap, "nmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1006 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1007 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
1008 EXCMD(CMD_nmapclear, "nmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1009 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1010 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1011 EXCMD(CMD_nmenu, "nmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1012 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1013 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
1014 EXCMD(CMD_nnoremap, "nnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1015 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1016 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
1017 EXCMD(CMD_nnoremenu, "nnoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1018 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1019 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1020 EXCMD(CMD_noremap, "noremap", ex_map,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1021 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1022 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
1023 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
1024 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
1025 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
1026 EXCMD(CMD_nohlsearch, "nohlsearch", ex_nohlsearch,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1027 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1028 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
1029 EXCMD(CMD_noreabbrev, "noreabbrev", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1030 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1031 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
1032 EXCMD(CMD_noremenu, "noremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1033 EX_RANGE|EX_ZEROR|EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1034 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
1035 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
1036 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
1037 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1038 EXCMD(CMD_normal, "normal", ex_normal,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1039 EX_RANGE|EX_BANG|EX_EXTRA|EX_NEEDARG|EX_NOTRLCOM|EX_CTRLV|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1040 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1041 EXCMD(CMD_number, "number", ex_print,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1042 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1043 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1044 EXCMD(CMD_nunmap, "nunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1045 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1046 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1047 EXCMD(CMD_nunmenu, "nunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1048 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1049 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
1050 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
1051 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
1052 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
1053 EXCMD(CMD_oldfiles, "oldfiles", ex_oldfiles,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1054 EX_BANG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1055 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
1056 EXCMD(CMD_omap, "omap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1057 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1058 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
1059 EXCMD(CMD_omapclear, "omapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1060 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1061 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1062 EXCMD(CMD_omenu, "omenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1063 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1064 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
1065 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
1066 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
1067 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
1068 EXCMD(CMD_onoremap, "onoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1069 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1070 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
1071 EXCMD(CMD_onoremenu, "onoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1072 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1073 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1074 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
1075 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1076 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1077 EXCMD(CMD_ounmap, "ounmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1078 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1079 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1080 EXCMD(CMD_ounmenu, "ounmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1081 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1082 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
1083 EXCMD(CMD_ownsyntax, "ownsyntax", ex_ownsyntax,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1084 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1085 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1086 EXCMD(CMD_print, "print", ex_print,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1087 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_SBOXOK,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1088 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1089 EXCMD(CMD_packadd, "packadd", ex_packadd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1090 EX_BANG|EX_FILE1|EX_NEEDARG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1091 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
1092 EXCMD(CMD_packloadall, "packloadall", ex_packloadall,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1093 EX_BANG|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1094 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1095 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
1096 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
1097 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
1098 EXCMD(CMD_perl, "perl", ex_perl,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1099 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1100 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1101 EXCMD(CMD_perldo, "perldo", ex_perldo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1102 EX_RANGE|EX_EXTRA|EX_DFLALL|EX_NEEDARG|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1103 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1104 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
1105 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
1106 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
1107 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
1108 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
1109 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1110 EXCMD(CMD_popup, "popup", ex_popup,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1111 EX_NEEDARG|EX_EXTRA|EX_BANG|EX_TRLBAR|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1112 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
1113 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
1114 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
1115 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
1116 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
1117 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1118 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
1119 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
1120 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
1121 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
1122 EXCMD(CMD_promptfind, "promptfind", gui_mch_find_dialog,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1123 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1124 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
1125 EXCMD(CMD_promptrepl, "promptrepl", gui_mch_replace_dialog,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1126 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1127 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1128 EXCMD(CMD_profile, "profile", ex_profile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1129 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1130 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1131 EXCMD(CMD_profdel, "profdel", ex_breakdel,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1132 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1133 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1134 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
1135 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
1136 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
1137 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
1138 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
1139 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1140 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
1141 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
1142 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1143 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
1144 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
1145 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1146 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
1147 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
1148 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1149 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
1150 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
1151 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1152 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
1153 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
1154 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
1155 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
1156 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
1157 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
1158 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
1159 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
1160 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
1161 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
1162 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
1163 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
1164 EXCMD(CMD_put, "put", ex_put,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1165 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_REGSTR|EX_TRLBAR|EX_ZEROR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1166 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
1167 EXCMD(CMD_pwd, "pwd", ex_pwd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1168 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1169 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1170 EXCMD(CMD_python, "python", ex_python,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1171 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1172 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
1173 EXCMD(CMD_pydo, "pydo", ex_pydo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1174 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1175 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1176 EXCMD(CMD_pyfile, "pyfile", ex_pyfile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1177 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1178 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
1179 EXCMD(CMD_py3, "py3", ex_py3,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1180 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1181 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1182 EXCMD(CMD_py3do, "py3do", ex_py3do,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1183 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1184 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1185 EXCMD(CMD_python3, "python3", ex_py3,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1186 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1187 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1188 EXCMD(CMD_py3file, "py3file", ex_py3file,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1189 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1190 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
1191 EXCMD(CMD_pyx, "pyx", ex_pyx,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1192 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1193 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1194 EXCMD(CMD_pyxdo, "pyxdo", ex_pyxdo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1195 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1196 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1197 EXCMD(CMD_pythonx, "pythonx", ex_pyx,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1198 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1199 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1200 EXCMD(CMD_pyxfile, "pyxfile", ex_pyxfile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1201 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1202 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
1203 EXCMD(CMD_quit, "quit", ex_quit,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1204 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1205 ADDR_WINDOWS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1206 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
1207 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
1208 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
1209 EXCMD(CMD_qall, "qall", ex_quit_all,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1210 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1211 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
1212 EXCMD(CMD_read, "read", ex_read,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1213 EX_BANG|EX_RANGE|EX_WHOLEFOLD|EX_FILE1|EX_ARGOPT|EX_TRLBAR|EX_ZEROR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1214 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1215 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
1216 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
1217 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
1218 EXCMD(CMD_redo, "redo", ex_redo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1219 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1220 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1221 EXCMD(CMD_redir, "redir", ex_redir,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1222 EX_BANG|EX_FILES|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1223 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1224 EXCMD(CMD_redraw, "redraw", ex_redraw,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1225 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1226 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
1227 EXCMD(CMD_redrawstatus, "redrawstatus", ex_redrawstatus,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1228 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1229 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1230 EXCMD(CMD_redrawtabline, "redrawtabline", ex_redrawtabline,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1231 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1232 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
1233 EXCMD(CMD_registers, "registers", ex_display,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1234 EX_EXTRA|EX_NOTRLCOM|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1235 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1236 EXCMD(CMD_resize, "resize", ex_resize,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1237 EX_RANGE|EX_TRLBAR|EX_WORD1|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1238 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1239 EXCMD(CMD_retab, "retab", ex_retab,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1240 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_DFLALL|EX_BANG|EX_WORD1|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1241 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1242 EXCMD(CMD_return, "return", ex_return,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1243 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1244 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1245 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
1246 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
1247 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1248 EXCMD(CMD_right, "right", ex_align,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1249 EX_TRLBAR|EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1250 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
1251 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
1252 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
1253 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1254 EXCMD(CMD_runtime, "runtime", ex_runtime,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1255 EX_BANG|EX_NEEDARG|EX_FILES|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1256 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
1257 EXCMD(CMD_ruby, "ruby", ex_ruby,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1258 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1259 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1260 EXCMD(CMD_rubydo, "rubydo", ex_rubydo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1261 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1262 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
1263 EXCMD(CMD_rubyfile, "rubyfile", ex_rubyfile,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1264 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1265 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1266 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
1267 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
1268 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
1269 EXCMD(CMD_rviminfo, "rviminfo", ex_viminfo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1270 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1271 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
1272 EXCMD(CMD_substitute, "substitute", do_sub,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1273 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1274 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1275 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
1276 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
1277 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
1278 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
1279 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
1280 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
1281 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
1282 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
1283 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1284 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
1285 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
1286 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1287 EXCMD(CMD_saveas, "saveas", ex_write,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1288 EX_BANG|EX_FILE1|EX_ARGOPT|EX_CMDWIN|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1289 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1290 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
1291 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
1292 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1293 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
1294 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
1295 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1296 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
1297 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
1298 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1299 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
1300 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
1301 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1302 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
1303 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
1304 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
1305 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
1306 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
1307 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1308 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
1309 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
1310 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
1311 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
1312 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
1313 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
1314 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
1315 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
1316 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
1317 EXCMD(CMD_scriptnames, "scriptnames", ex_scriptnames,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1318 EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1319 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1320 EXCMD(CMD_scriptencoding, "scriptencoding", ex_scriptencoding,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1321 EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1322 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1323 EXCMD(CMD_scriptversion, "scriptversion", ex_scriptversion,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1324 EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1325 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1326 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
1327 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
1328 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
1329 EXCMD(CMD_set, "set", ex_set,
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 19106
diff changeset
1330 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_SBOXOK,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1331 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
1332 EXCMD(CMD_setfiletype, "setfiletype", ex_setfiletype,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1333 EX_TRLBAR|EX_EXTRA|EX_NEEDARG|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1334 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
1335 EXCMD(CMD_setglobal, "setglobal", ex_set,
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 19106
diff changeset
1336 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_SBOXOK,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1337 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
1338 EXCMD(CMD_setlocal, "setlocal", ex_set,
19137
69f0e9b5c107 patch 8.2.0128: cannot list options one per line
Bram Moolenaar <Bram@vim.org>
parents: 19106
diff changeset
1339 EX_BANG|EX_TRLBAR|EX_EXTRA|EX_CMDWIN|EX_SBOXOK,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1340 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1341 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
1342 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
1343 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1344 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
1345 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
1346 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1347 EXCMD(CMD_shell, "shell", ex_shell,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1348 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1349 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1350 EXCMD(CMD_simalt, "simalt", ex_simalt,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1351 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1352 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
1353 EXCMD(CMD_sign, "sign", ex_sign,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1354 EX_NEEDARG|EX_RANGE|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1355 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1356 EXCMD(CMD_silent, "silent", ex_wrongmodifier,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1357 EX_NEEDARG|EX_EXTRA|EX_BANG|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1358 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1359 EXCMD(CMD_sleep, "sleep", ex_sleep,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1360 EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1361 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1362 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
1363 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
1364 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1365 EXCMD(CMD_smagic, "smagic", ex_submagic,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1366 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1367 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
1368 EXCMD(CMD_smap, "smap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1369 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1370 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
1371 EXCMD(CMD_smapclear, "smapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1372 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1373 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1374 EXCMD(CMD_smenu, "smenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1375 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1376 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1377 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
1378 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
1379 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
1380 EXCMD(CMD_snomagic, "snomagic", ex_submagic,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1381 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1382 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
1383 EXCMD(CMD_snoremap, "snoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1384 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1385 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
1386 EXCMD(CMD_snoremenu, "snoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1387 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1388 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1389 EXCMD(CMD_source, "source", ex_source,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1390 EX_BANG|EX_FILE1|EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1391 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
1392 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
1393 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
1394 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1395 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
1396 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
1397 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
1398 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
1399 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
1400 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
1401 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
1402 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
1403 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
1404 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
1405 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1406 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
1407 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
1408 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1409 ADDR_NONE),
17736
83a290940bd3 patch 8.1.1865: spellrare and spellrepall in the wrong order
Bram Moolenaar <Bram@vim.org>
parents: 17682
diff changeset
1410 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
1411 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
1412 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
1413 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
1414 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
1415 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
1416 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
1417 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
1418 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
1419 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
1420 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
1421 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1422 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
1423 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
1424 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
1425 EXCMD(CMD_stop, "stop", ex_stop,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1426 EX_TRLBAR|EX_BANG|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1427 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
1428 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
1429 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
1430 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
1431 EXCMD(CMD_startinsert, "startinsert", ex_startinsert,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1432 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1433 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1434 EXCMD(CMD_startgreplace, "startgreplace", ex_startinsert,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1435 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1436 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
1437 EXCMD(CMD_startreplace, "startreplace", ex_startinsert,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1438 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1439 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
1440 EXCMD(CMD_stopinsert, "stopinsert", ex_stopinsert,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1441 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1442 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1443 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
1444 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
1445 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
1446 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
1447 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
1448 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1449 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
1450 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
1451 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1452 EXCMD(CMD_sunmap, "sunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1453 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1454 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1455 EXCMD(CMD_sunmenu, "sunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1456 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1457 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1458 EXCMD(CMD_suspend, "suspend", ex_stop,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1459 EX_TRLBAR|EX_BANG|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1460 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1461 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
1462 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
1463 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
1464 EXCMD(CMD_swapname, "swapname", ex_swapname,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1465 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1466 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1467 EXCMD(CMD_syntax, "syntax", ex_syntax,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1468 EX_EXTRA|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1469 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1470 EXCMD(CMD_syntime, "syntime", ex_syntime,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1471 EX_NEEDARG|EX_WORD1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1472 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
1473 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
1474 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1475 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1476 EXCMD(CMD_smile, "smile", ex_smile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1477 EX_TRLBAR|EX_CMDWIN|EX_SBOXOK,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1478 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
1479 EXCMD(CMD_t, "t", ex_copymove,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1480 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1481 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1482 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
1483 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
1484 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
1485 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
1486 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
1487 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
1488 EXCMD(CMD_tags, "tags", do_tags,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1489 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1490 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
1491 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
1492 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
1493 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
1494 EXCMD(CMD_tabclose, "tabclose", ex_tabclose,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1495 EX_BANG|EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1496 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1497 EXCMD(CMD_tabdo, "tabdo", ex_listdo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1498 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1499 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1500 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
1501 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
1502 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1503 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
1504 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
1505 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
1506 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
1507 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1508 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1509 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
1510 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
1511 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1512 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
1513 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1514 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1515 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
1516 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
1517 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1518 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
1519 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
1520 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1521 EXCMD(CMD_tabonly, "tabonly", ex_tabonly,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1522 EX_BANG|EX_RANGE|EX_ZEROR|EX_EXTRA|EX_NOSPC|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1523 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
1524 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
1525 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
1526 ADDR_TABS_RELATIVE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1527 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
1528 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
1529 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
1530 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
1531 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1532 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
1533 EXCMD(CMD_tabs, "tabs", ex_tabs,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1534 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1535 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
1536 EXCMD(CMD_tcd, "tcd", ex_cd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1537 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1538 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1539 EXCMD(CMD_tchdir, "tchdir", ex_cd,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1540 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1541 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
1542 EXCMD(CMD_tcl, "tcl", ex_tcl,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1543 EX_RANGE|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1544 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1545 EXCMD(CMD_tcldo, "tcldo", ex_tcldo,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1546 EX_RANGE|EX_DFLALL|EX_EXTRA|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1547 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1548 EXCMD(CMD_tclfile, "tclfile", ex_tclfile,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1549 EX_RANGE|EX_FILE1|EX_NEEDARG|EX_CMDWIN|EX_RESTRICT,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1550 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1551 EXCMD(CMD_tearoff, "tearoff", ex_tearoff,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1552 EX_NEEDARG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1553 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
1554 EXCMD(CMD_terminal, "terminal", ex_terminal,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1555 EX_RANGE|EX_BANG|EX_FILES|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1556 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1557 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
1558 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
1559 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1560 EXCMD(CMD_throw, "throw", ex_throw,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1561 EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1562 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1563 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
1564 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
1565 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1566 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
1567 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
1568 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1569 EXCMD(CMD_tlmenu, "tlmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1570 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1571 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
1572 EXCMD(CMD_tlnoremenu, "tlnoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1573 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1574 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
1575 EXCMD(CMD_tlunmenu, "tlunmenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1576 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1577 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1578 EXCMD(CMD_tmenu, "tmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1579 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1580 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
1581 EXCMD(CMD_tmap, "tmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1582 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1583 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
1584 EXCMD(CMD_tmapclear, "tmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1585 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1586 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1587 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
1588 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
1589 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
1590 EXCMD(CMD_tnoremap, "tnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1591 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1592 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1593 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
1594 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
1595 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
1596 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
1597 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
1598 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1599 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
1600 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
1601 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
1602 EXCMD(CMD_try, "try", ex_try,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1603 EX_TRLBAR|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1604 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1605 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
1606 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
1607 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1608 EXCMD(CMD_tunmenu, "tunmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1609 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1610 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1611 EXCMD(CMD_tunmap, "tunmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1612 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1613 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
1614 EXCMD(CMD_undo, "undo", ex_undo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1615 EX_RANGE|EX_COUNT|EX_ZEROR|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1616 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
1617 EXCMD(CMD_undojoin, "undojoin", ex_undojoin,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1618 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1619 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
1620 EXCMD(CMD_undolist, "undolist", ex_undolist,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1621 EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1622 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
1623 EXCMD(CMD_unabbreviate, "unabbreviate", ex_abbreviate,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1624 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1625 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1626 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
1627 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
1628 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1629 EXCMD(CMD_unlet, "unlet", ex_unlet,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1630 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1631 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
1632 EXCMD(CMD_unlockvar, "unlockvar", ex_lockvar,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1633 EX_BANG|EX_EXTRA|EX_NEEDARG|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1634 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1635 EXCMD(CMD_unmap, "unmap", ex_unmap,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1636 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1637 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1638 EXCMD(CMD_unmenu, "unmenu", ex_menu,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1639 EX_BANG|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1640 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
1641 EXCMD(CMD_unsilent, "unsilent", ex_wrongmodifier,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1642 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1643 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
1644 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
1645 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
1646 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
1647 EXCMD(CMD_vglobal, "vglobal", ex_global,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1648 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_DFLALL|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1649 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
1650 EXCMD(CMD_version, "version", ex_version,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1651 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1652 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
1653 EXCMD(CMD_verbose, "verbose", ex_wrongmodifier,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1654 EX_NEEDARG|EX_RANGE|EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1655 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
1656 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
1657 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
1658 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
1659 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
1660 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
1661 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
1662 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
1663 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
1664 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
1665 EXCMD(CMD_vimgrep, "vimgrep", ex_vimgrep,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1666 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
1667 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
1668 EXCMD(CMD_vimgrepadd, "vimgrepadd", ex_vimgrep,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1669 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
1670 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
1671 EXCMD(CMD_vim9script, "vim9script", ex_vim9script,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
1672 0,
94eda51ba9ba patch 8.2.0149: maintaining a Vim9 branch separately is more work
Bram Moolenaar <Bram@vim.org>
parents: 19137
diff changeset
1673 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
1674 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
1675 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1676 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
1677 EXCMD(CMD_vmap, "vmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1678 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1679 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
1680 EXCMD(CMD_vmapclear, "vmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1681 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1682 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
1683 EXCMD(CMD_vmenu, "vmenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1684 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1685 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
1686 EXCMD(CMD_vnoremap, "vnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1687 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1688 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
1689 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
1690 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
1691 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
1692 EXCMD(CMD_vnoremenu, "vnoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1693 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1694 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
1695 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
1696 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
1697 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
1698 EXCMD(CMD_vunmap, "vunmap", ex_unmap,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1699 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1700 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
1701 EXCMD(CMD_vunmenu, "vunmenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1702 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1703 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
1704 EXCMD(CMD_write, "write", ex_write,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1705 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1706 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
1707 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
1708 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
1709 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
1710 EXCMD(CMD_wall, "wall", do_wqall,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1711 EX_BANG|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1712 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
1713 EXCMD(CMD_while, "while", ex_while,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1714 EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1715 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
1716 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
1717 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
1718 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
1719 EXCMD(CMD_wincmd, "wincmd", ex_wincmd,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1720 EX_NEEDARG|EX_WORD1|EX_RANGE|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1721 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
1722 EXCMD(CMD_windo, "windo", ex_listdo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1723 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM|EX_RANGE|EX_DFLALL,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1724 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
1725 EXCMD(CMD_winpos, "winpos", ex_winpos,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1726 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1727 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
1728 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
1729 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
1730 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
1731 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
1732 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
1733 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
1734 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
1735 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
1736 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
1737 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
1738 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
1739 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
1740 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
1741 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
1742 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
1743 EXCMD(CMD_wviminfo, "wviminfo", ex_viminfo,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1744 EX_BANG|EX_FILE1|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1745 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
1746 EXCMD(CMD_xit, "xit", ex_exit,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1747 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILE1|EX_ARGOPT|EX_DFLALL|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1748 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
1749 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
1750 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
1751 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
1752 EXCMD(CMD_xmap, "xmap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1753 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1754 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
1755 EXCMD(CMD_xmapclear, "xmapclear", ex_mapclear,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1756 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1757 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
1758 EXCMD(CMD_xmenu, "xmenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1759 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1760 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
1761 EXCMD(CMD_xnoremap, "xnoremap", ex_map,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1762 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1763 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
1764 EXCMD(CMD_xnoremenu, "xnoremenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1765 EX_RANGE|EX_ZEROR|EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1766 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
1767 EXCMD(CMD_xrestore, "xrestore", ex_xrestore,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1768 EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1769 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
1770 EXCMD(CMD_xunmap, "xunmap", ex_unmap,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1771 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1772 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
1773 EXCMD(CMD_xunmenu, "xunmenu", ex_menu,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1774 EX_EXTRA|EX_TRLBAR|EX_NOTRLCOM|EX_CTRLV|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1775 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
1776 EXCMD(CMD_yank, "yank", ex_operators,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1777 EX_RANGE|EX_WHOLEFOLD|EX_REGSTR|EX_COUNT|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1778 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
1779 EXCMD(CMD_z, "z", ex_z,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1780 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_FLAGS|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1781 ADDR_LINES),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1782
20075
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1783 // 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
1784 EXCMD(CMD_bang, "!", ex_bang,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1785 EX_RANGE|EX_WHOLEFOLD|EX_BANG|EX_FILES|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1786 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
1787 EXCMD(CMD_pound, "#", ex_print,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1788 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1789 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
1790 EXCMD(CMD_and, "&", do_sub,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1791 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1792 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
1793 EXCMD(CMD_star, "*", ex_at,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1794 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1795 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
1796 EXCMD(CMD_lshift, "<", ex_operators,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1797 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1798 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
1799 EXCMD(CMD_equal, "=", ex_equal,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1800 EX_RANGE|EX_TRLBAR|EX_DFLALL|EX_FLAGS|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1801 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
1802 EXCMD(CMD_rshift, ">", ex_operators,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1803 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN|EX_MODIFY,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1804 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
1805 EXCMD(CMD_at, "@", ex_at,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1806 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1807 ADDR_LINES),
20075
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1808 EXCMD(CMD_tilde, "~", do_sub,
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1809 EX_RANGE|EX_WHOLEFOLD|EX_EXTRA|EX_CMDWIN|EX_MODIFY,
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1810 ADDR_LINES),
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1811
516b10943fdb patch 8.2.0593: finding a user command is not optimal
Bram Moolenaar <Bram@vim.org>
parents: 19701
diff changeset
1812 // 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
1813 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
1814 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
1815 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
1816 EXCMD(CMD_Print, "Print", ex_print,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1817 EX_RANGE|EX_WHOLEFOLD|EX_COUNT|EX_FLAGS|EX_TRLBAR|EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1818 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
1819 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
1820 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1821 ADDR_NONE),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1822
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1823 #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
1824
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1825 #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
1826 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
1827 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
1828 CMD_USER_BUF = -2 // User-defined command local to buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1829 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1830 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1831
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1832 #ifndef DO_DECLARE_EXCMD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1833 typedef enum CMD_index cmdidx_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1834
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835 /*
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1836 * Arguments used for an Ex command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1837 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 struct exarg
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1839 {
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1840 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
1841 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
1842 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
1843 char_u **cmdlinep; // pointer to pointer of allocated cmdline
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1844 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
1845 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
1846 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
1847 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
1848 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
1849 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
1850 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
1851 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
1852 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
1853 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
1854 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
1855 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
1856 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
1857 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
1858 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
1859 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
1860 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
1861 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
1862 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
1863 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
1864 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
1865 char *errmsg; // returned error message
17178
40c4cb095d53 patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents: 17079
diff changeset
1866 char_u *(*getline)(int, void *, int, int);
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1867 void *cookie; // argument for getline()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1868 #ifdef FEAT_EVAL
18904
2bdc2e1f6e1f patch 8.2.0013: not using a typedef for condstack
Bram Moolenaar <Bram@vim.org>
parents: 18827
diff changeset
1869 cstack_T *cstack; // condition stack for ":if" etc.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 #endif
14536
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1871 long verbose_save; // saved value of p_verbose
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1872 int save_msg_silent; // saved value of msg_silent
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1873 int did_esilent; // how many times emsg_silent was incremented
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1874 #ifdef HAVE_SANDBOX
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1875 int did_sandbox; // when TRUE did ++sandbox
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1876 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1878
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1879 #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
1880 #define FORCE_NOBIN 2 // ":edit ++nobin file"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1881
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1882 // Values for "flags"
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1883 #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
1884 #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
1885 #define EXFLAG_PRINT 0x04 // 'p': print
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 156
diff changeset
1886
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1887 #endif