annotate src/ex_cmds.h @ 18478:94223687df0e

Added tag v8.1.2233 for changeset e93cab5d0f0f27fad7882f1f412927df055b090d
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Oct 2019 04:30:05 +0100
parents f89e2e720b5b
children f98368dd6615
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
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
56 #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
57 #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
58 #define EX_WORD1 (EX_EXTRA | EX_NOSPC) // one extra word allowed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
60 #ifndef DO_DECLARE_EXCMD
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
61 /*
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
62 * 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
63 */
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
64 typedef enum {
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
65 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
66 ADDR_WINDOWS, // window number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
67 ADDR_ARGUMENTS, // argument number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
68 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
69 ADDR_BUFFERS, // buffer number
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
70 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
71 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
72 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
73 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
74 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
75 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
76 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
77 } cmd_addr_T;
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
78 #endif
6398
5a76e36f07b1 updated for version 7.4.530
Bram Moolenaar <bram@vim.org>
parents: 6305
diff changeset
79
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 #ifndef DO_DECLARE_EXCMD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 typedef struct exarg exarg_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 * This array maps ex command names to command codes.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 * The order in which command names are listed below is significant --
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 * ambiguous abbreviations are always resolved to be the first possible match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 * (e.g. "r" is taken to mean "read", not "rewind", because "read" comes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 * before "rewind").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 * Not supported commands are included to avoid ambiguities.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 #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
93 # 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
94
7807
1a5d34492798 commit https://github.com/vim/vim/commit/d99df423c559d85c17779b3685426c489554908c
Christian Brabandt <cb@256bit.org>
parents: 7726
diff changeset
95 typedef void (*ex_func_T) (exarg_T *eap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 static struct cmdname
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 {
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16427
diff changeset
99 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
100 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
101 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
102 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
103 } cmdnames[] =
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 #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
105 # define EXCMD(a, b, c, d, e) a
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 enum CMD_index
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 {
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
109 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
110 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
111 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
112 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
113 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
114 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
115 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
116 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
117 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
118 EXCMD(CMD_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
119 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
120 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
121 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
122 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
123 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
124 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
125 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
126 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
127 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
128 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
129 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
130 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
131 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
132 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
133 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
134 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
135 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
136 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
137 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
138 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
139 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
140 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
141 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
142 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
143 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
144 ADDR_ARGUMENTS),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
145 EXCMD(CMD_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
146 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
147 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
148 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
149 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
150 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
151 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
152 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
153 ADDR_ARGUMENTS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
154 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
155 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
156 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
157 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
158 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
159 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
160 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
161 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
162 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
163 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
164 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
165 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
166 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
167 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
168 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
169 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
170 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
171 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
172 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
173 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
174 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
175 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
176 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
177 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
178 EXCMD(CMD_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
179 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
180 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
181 EXCMD(CMD_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
182 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
183 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
184 EXCMD(CMD_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
185 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
186 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
187 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
188 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
189 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
190 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
191 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
192 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
193 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
194 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
195 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
196 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
197 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
198 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
199 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
200 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
201 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
202 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
203 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
204 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
205 EXCMD(CMD_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
206 EX_BANG|EX_RANGE|EX_CMDARG|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
207 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
208 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
209 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
210 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
211 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
212 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
213 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
214 EXCMD(CMD_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
215 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
216 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
217 EXCMD(CMD_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
218 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
219 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
220 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
221 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
222 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
223 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
224 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
225 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
226 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
227 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
228 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
229 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
230 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
231 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
232 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
233 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
234 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
235 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
236 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
237 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
238 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
239 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
240 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
241 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
242 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
243 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
244 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
245 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
246 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
247 EXCMD(CMD_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
248 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
249 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
250 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
251 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
252 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
253 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
254 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
255 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
256 EXCMD(CMD_caddexpr, "caddexpr", ex_cexpr,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
257 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
258 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
259 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
260 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
261 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
262 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
263 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
264 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
265 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
266 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
267 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
268 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
269 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
270 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
271 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
272 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
273 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
274 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
275 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
276 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
277 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
278 EX_RANGE|EX_COUNT|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
279 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
280 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
281 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
282 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
283 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
284 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
285 ADDR_QUICKFIX),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
286 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
287 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
288 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
289 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
290 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
291 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
292 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
293 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
294 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
295 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
296 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
297 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
298 EXCMD(CMD_cexpr, "cexpr", ex_cexpr,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
299 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_TRLBAR|EX_BANG,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
300 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
301 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
302 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
303 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
304 EXCMD(CMD_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
305 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
306 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
307 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
308 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
309 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
310 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
311 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
312 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
313 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
314 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
315 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
316 EXCMD(CMD_cgetexpr, "cgetexpr", ex_cexpr,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
317 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
318 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
319 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
320 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
321 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
322 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
323 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
324 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
325 EXCMD(CMD_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
326 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
327 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
328 EXCMD(CMD_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
329 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
330 ADDR_OTHER),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
331 EXCMD(CMD_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
332 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
333 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
334 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
335 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
336 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
337 EXCMD(CMD_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
338 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
339 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
340 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
341 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
342 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
343 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
344 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
345 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
346 EXCMD(CMD_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
347 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
348 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
349 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
350 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
351 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
352 EXCMD(CMD_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
353 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
354 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
355 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
356 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
357 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
358 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
359 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
360 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
361 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
362 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
363 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
364 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
365 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
366 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
367 EXCMD(CMD_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
368 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
369 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
370 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
371 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
372 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
373 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
374 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
375 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
376 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
377 EX_RANGE|EX_COUNT|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
378 ADDR_UNSIGNED),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
379 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
380 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
381 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
382 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
383 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
384 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
385 EXCMD(CMD_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
386 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
387 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
388 EXCMD(CMD_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
389 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
390 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
391 EXCMD(CMD_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
392 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
393 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
394 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
395 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
396 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
397 EXCMD(CMD_const, "const", ex_const,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
398 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
399 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
400 EXCMD(CMD_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
401 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
402 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
403 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
404 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
405 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
406 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
407 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
408 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
409 EXCMD(CMD_cquit, "cquit", ex_cquit,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
410 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
411 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
412 EXCMD(CMD_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
413 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
414 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
415 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
416 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
417 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
418 EXCMD(CMD_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
419 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
420 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
421 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
422 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
423 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
424 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
425 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
426 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
427 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
428 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
429 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
430 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
431 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
432 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
433 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
434 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
435 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
436 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
437 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
438 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
439 EXCMD(CMD_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
440 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
441 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
442 EXCMD(CMD_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
443 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
444 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
445 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
446 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
447 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
448 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
449 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
450 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
451 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
452 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
453 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
454 EXCMD(CMD_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
455 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
456 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
457 EXCMD(CMD_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
458 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
459 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
460 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
461 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
462 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
463 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
464 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
465 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
466 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
467 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
468 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
469 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
470 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
471 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
472 EXCMD(CMD_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
473 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
474 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
475 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
476 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
477 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
478 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
479 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
480 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
481 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
482 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
483 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
484 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
485 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
486 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
487 EXCMD(CMD_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
488 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
489 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
490 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
491 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
492 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
493 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
494 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
495 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
496 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
497 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
498 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
499 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
500 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
501 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
502 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
503 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
504 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
505 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
506 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
507 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
508 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
509 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
510 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
511 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
512 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
513 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
514 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
515 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
516 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
517 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
518 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
519 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
520 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
521 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
522 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
523 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
524 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
525 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
526 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
527 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
528 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
529 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
530 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
531 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
532 EXCMD(CMD_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
533 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
534 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
535 EXCMD(CMD_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
536 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
537 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
538 EXCMD(CMD_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
539 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
540 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
541 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
542 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
543 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
544 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
545 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
546 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
547 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
548 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
549 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
550 EXCMD(CMD_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
551 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
552 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
553 EXCMD(CMD_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
554 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
555 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
556 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
557 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
558 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
559 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
560 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
561 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
562 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
563 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
564 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
565 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
566 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
567 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
568 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
569 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
570 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
571 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
572 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
573 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
574 EXCMD(CMD_find, "find", ex_find,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
575 EX_RANGE|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
576 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
577 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
578 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
579 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
580 EXCMD(CMD_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
581 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
582 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
583 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
584 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
585 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
586 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
587 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
588 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
589 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
590 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
591 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
592 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
593 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
594 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
595 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
596 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
597 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
598 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
599 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
600 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
601 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
602 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
603 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
604 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
605 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
606 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
607 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
608 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
609 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
610 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
611 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
612 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
613 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
614 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
615 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
616 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
617 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
618 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
619 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
620 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
621 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
622 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
623 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
624 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
625 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
626 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
627 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
628 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
629 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
630 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
631 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
632 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
633 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
634 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
635 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
636 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
637 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
638 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
639 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
640 EXCMD(CMD_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
641 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
642 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
643 EXCMD(CMD_hardcopy, "hardcopy", ex_hardcopy,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
644 EX_RANGE|EX_COUNT|EX_EXTRA|EX_TRLBAR|EX_DFLALL|EX_BANG,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
645 ADDR_LINES),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
646 EXCMD(CMD_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
647 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
648 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
649 EXCMD(CMD_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
650 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
651 ADDR_WINDOWS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
652 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
653 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
654 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
655 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
656 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
657 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
658 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
659 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
660 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
661 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
662 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
663 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
664 EXCMD(CMD_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
665 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
666 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
667 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
668 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
669 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
670 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
671 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
672 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
673 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
674 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
675 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
676 EXCMD(CMD_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
677 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
678 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
679 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
680 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
681 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
682 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
683 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
684 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
685 EXCMD(CMD_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
686 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
687 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
688 EXCMD(CMD_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
689 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
690 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
691 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
692 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
693 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
694 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
695 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
696 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
697 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
698 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
699 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
700 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
701 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
702 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
703 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
704 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
705 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
706 EXCMD(CMD_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
707 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
708 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
709 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
710 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
711 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
712 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
713 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
714 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
715 EXCMD(CMD_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
716 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
717 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
718 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
719 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
720 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
721 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
722 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
723 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
724 EXCMD(CMD_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
725 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
726 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
727 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
728 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
729 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
730 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
731 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
732 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
733 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
734 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
735 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
736 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
737 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
738 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
739 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
740 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
741 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
742 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
743 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
744 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
745 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
746 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
747 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
748 EXCMD(CMD_laddexpr, "laddexpr", ex_cexpr,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
749 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
750 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
751 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
752 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
753 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
754 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
755 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
756 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
757 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
758 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
759 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
760 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
761 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
762 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
763 EXCMD(CMD_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
764 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
765 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
766 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
767 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
768 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
769 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
770 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
771 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
772 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
773 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
774 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
775 EXCMD(CMD_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
776 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
777 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
778 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
779 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
780 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
781 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
782 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
783 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
784 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
785 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
786 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
787 EXCMD(CMD_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
788 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
789 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
790 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
791 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
792 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
793 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
794 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
795 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
796 EXCMD(CMD_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
797 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
798 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
799 EXCMD(CMD_lexpr, "lexpr", ex_cexpr,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
800 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|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
801 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
802 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
803 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
804 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
805 EXCMD(CMD_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
806 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
807 ADDR_QUICKFIX_VALID),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
808 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
809 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
810 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
811 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
812 EX_TRLBAR|EX_FILE1,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
813 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
814 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
815 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
816 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
817 EXCMD(CMD_lgetexpr, "lgetexpr", ex_cexpr,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
818 EX_NEEDARG|EX_WORD1|EX_NOTRLCOM|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
819 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
820 EXCMD(CMD_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
821 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
822 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
823 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
824 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
825 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
826 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
827 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
828 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
829 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
830 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
831 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
832 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
833 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
834 ADDR_QUICKFIX),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
835 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
836 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
837 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
838 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
839 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
840 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
841 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
842 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
843 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
844 EXCMD(CMD_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
845 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
846 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
847 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
848 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
849 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
850 EXCMD(CMD_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
851 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
852 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
853 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
854 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
855 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
856 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
857 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
858 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
859 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
860 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
861 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
862 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
863 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
864 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
865 EXCMD(CMD_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
866 EX_CMDWIN,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
867 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
868 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
869 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
870 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
871 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
872 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
873 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
874 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
875 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
876 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
877 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
878 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
879 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
880 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
881 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
882 ADDR_UNSIGNED),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
883 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
884 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
885 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
886 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
887 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
888 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
889 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
890 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
891 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
892 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
893 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
894 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
895 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
896 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
897 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
898 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
899 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
900 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
901 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
902 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
903 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
904 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
905 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
906 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
907 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
908 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
909 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
910 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
911 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
912 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
913 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
914 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
915 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
916 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
917 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
918 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
919 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
920 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
921 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
922 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
923 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
924 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
925 EXCMD(CMD_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
926 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
927 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
928 EXCMD(CMD_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
929 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
930 ADDR_NONE),
18126
f89e2e720b5b patch 8.1.2058: function for ex command is named inconsistently
Bram Moolenaar <Bram@vim.org>
parents: 17736
diff changeset
931 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
932 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
933 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
934 EXCMD(CMD_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
935 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
936 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
937 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
938 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
939 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
940 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
941 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
942 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
943 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
944 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
945 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
946 EXCMD(CMD_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
947 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
948 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
949 EXCMD(CMD_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
950 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
951 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
952 EXCMD(CMD_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
953 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
954 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
955 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
956 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
957 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
958 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
959 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
960 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
961 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
962 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
963 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
964 EXCMD(CMD_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
965 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
966 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
967 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
968 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
969 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
970 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
971 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
972 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
973 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
974 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
975 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
976 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
977 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
978 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
979 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
980 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
981 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
982 EXCMD(CMD_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
983 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
984 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
985 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
986 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
987 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
988 EXCMD(CMD_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
989 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
990 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
991 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
992 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
993 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
994 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
995 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
996 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
997 EXCMD(CMD_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
998 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
999 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1000 EXCMD(CMD_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
1001 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
1002 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1003 EXCMD(CMD_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
1004 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
1005 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1006 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
1007 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
1008 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1009 EXCMD(CMD_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
1010 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
1011 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1012 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
1013 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
1014 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
1015 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
1016 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
1017 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1018 EXCMD(CMD_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
1019 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
1020 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1021 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
1022 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
1023 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1024 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
1025 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
1026 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1027 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
1028 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
1029 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1030 EXCMD(CMD_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
1031 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
1032 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
1033 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
1034 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
1035 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1036 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
1037 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
1038 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1039 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
1040 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
1041 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1042 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
1043 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
1044 ADDR_OTHER),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1045 EXCMD(CMD_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
1046 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
1047 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
1048 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
1049 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
1050 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1051 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
1052 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
1053 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1054 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
1055 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1056 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1057 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
1058 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
1059 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1060 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
1061 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
1062 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1063 EXCMD(CMD_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
1064 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
1065 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1066 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
1067 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
1068 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1069 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
1070 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
1071 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1072 EXCMD(CMD_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
1073 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
1074 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1075 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
1076 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
1077 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1078 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
1079 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
1080 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1081 EXCMD(CMD_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
1082 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
1083 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1084 EXCMD(CMD_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
1085 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
1086 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1087 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
1088 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
1089 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1090 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
1091 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
1092 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1093 EXCMD(CMD_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
1094 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
1095 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
1096 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
1097 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1098 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1099 EXCMD(CMD_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
1100 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
1101 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
1102 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
1103 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
1104 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1105 EXCMD(CMD_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
1106 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
1107 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1108 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
1109 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
1110 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1111 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
1112 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
1113 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1114 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
1115 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
1116 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
1117 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
1118 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
1119 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1120 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
1121 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
1122 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1123 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
1124 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
1125 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1126 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
1127 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
1128 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1129 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
1130 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
1131 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1132 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
1133 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
1134 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
1135 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
1136 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
1137 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
1138 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
1139 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
1140 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
1141 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
1142 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
1143 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1144 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
1145 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
1146 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
1147 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
1148 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
1149 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1150 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
1151 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
1152 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
1153 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
1154 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
1155 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1156 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
1157 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
1158 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
1159 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
1160 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
1161 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1162 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
1163 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
1164 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1165 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
1166 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
1167 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1168 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
1169 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
1170 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
1171 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
1172 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
1173 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1174 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
1175 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
1176 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1177 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
1178 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
1179 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1180 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
1181 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
1182 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
1183 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
1184 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
1185 ADDR_WINDOWS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1186 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
1187 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
1188 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1189 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
1190 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
1191 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1192 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
1193 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
1194 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1195 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
1196 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
1197 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1198 EXCMD(CMD_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
1199 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
1200 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1201 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
1202 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
1203 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1204 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
1205 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
1206 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1207 EXCMD(CMD_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
1208 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
1209 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1210 EXCMD(CMD_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
1211 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
1212 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1213 EXCMD(CMD_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
1214 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
1215 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1216 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
1217 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
1218 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1219 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
1220 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
1221 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1222 EXCMD(CMD_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
1223 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
1224 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1225 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
1226 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
1227 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1228 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
1229 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
1230 ADDR_LINES),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1231 EXCMD(CMD_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
1232 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
1233 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1234 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
1235 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
1236 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1237 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
1238 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
1239 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1240 EXCMD(CMD_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
1241 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
1242 ADDR_LINES),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1243 EXCMD(CMD_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
1244 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
1245 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1246 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
1247 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
1248 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1249 EXCMD(CMD_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
1250 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
1251 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1252 EXCMD(CMD_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
1253 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
1254 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1255 EXCMD(CMD_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
1256 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
1257 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
1258 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
1259 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
1260 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
1261 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
1262 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
1263 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1264 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
1265 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
1266 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1267 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
1268 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
1269 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1270 EXCMD(CMD_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
1271 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
1272 ADDR_BUFFERS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1273 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
1274 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
1275 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1276 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
1277 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
1278 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1279 EXCMD(CMD_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
1280 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
1281 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1282 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
1283 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
1284 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1285 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
1286 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
1287 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1288 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
1289 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
1290 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
1291 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
1292 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
1293 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
1294 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
1295 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
1296 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1297 EXCMD(CMD_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
1298 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
1299 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1300 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
1301 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
1302 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1303 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
1304 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
1305 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1306 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
1307 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
1308 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1309 EXCMD(CMD_set, "set", ex_set,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1310 EX_TRLBAR|EX_EXTRA|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
1311 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1312 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
1313 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
1314 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1315 EXCMD(CMD_setglobal, "setglobal", ex_set,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1316 EX_TRLBAR|EX_EXTRA|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
1317 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1318 EXCMD(CMD_setlocal, "setlocal", ex_set,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1319 EX_TRLBAR|EX_EXTRA|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
1320 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1321 EXCMD(CMD_sfind, "sfind", ex_splitview,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1322 EX_BANG|EX_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
1323 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1324 EXCMD(CMD_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
1325 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
1326 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1327 EXCMD(CMD_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
1328 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
1329 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1330 EXCMD(CMD_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
1331 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
1332 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1333 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
1334 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
1335 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1336 EXCMD(CMD_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
1337 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
1338 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1339 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
1340 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
1341 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1342 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
1343 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
1344 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1345 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
1346 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
1347 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
1348 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
1349 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
1350 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1351 EXCMD(CMD_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
1352 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
1353 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1354 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
1355 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
1356 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1357 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
1358 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
1359 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
1360 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
1361 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
1362 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
1363 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
1364 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
1365 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1366 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
1367 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
1368 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1369 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
1370 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
1371 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1372 EXCMD(CMD_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
1373 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
1374 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1375 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
1376 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
1377 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
1378 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
1379 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
1380 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
1381 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
1382 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
1383 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1384 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
1385 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1386 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1387 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
1388 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1389 ADDR_NONE),
17736
83a290940bd3 patch 8.1.1865: spellrare and spellrepall in the wrong order
Bram Moolenaar <Bram@vim.org>
parents: 17682
diff changeset
1390 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
1391 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
1392 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
1393 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
1394 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
1395 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
1396 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
1397 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
1398 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
1399 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
1400 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
1401 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1402 EXCMD(CMD_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
1403 EX_EXTRA|EX_BANG|EX_CMDARG|EX_ARGOPT|EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1404 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1405 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
1406 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
1407 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1408 EXCMD(CMD_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
1409 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
1410 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
1411 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
1412 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
1413 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1414 EXCMD(CMD_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
1415 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
1416 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1417 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
1418 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
1419 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1420 EXCMD(CMD_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
1421 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
1422 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1423 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
1424 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
1425 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1426 EXCMD(CMD_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
1427 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
1428 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1429 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
1430 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
1431 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1432 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
1433 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
1434 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1435 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
1436 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
1437 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1438 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
1439 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
1440 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1441 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
1442 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
1443 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
1444 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
1445 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
1446 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1447 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
1448 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
1449 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1450 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
1451 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
1452 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1453 EXCMD(CMD_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
1454 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1455 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1456 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
1457 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
1458 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1459 EXCMD(CMD_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
1460 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
1461 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1462 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
1463 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
1464 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
1465 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
1466 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
1467 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
1468 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
1469 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
1470 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1471 EXCMD(CMD_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
1472 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
1473 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1474 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
1475 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
1476 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1477 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
1478 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
1479 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1480 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
1481 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
1482 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1483 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
1484 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
1485 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
1486 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
1487 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1488 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1489 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
1490 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
1491 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1492 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
1493 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1494 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1495 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
1496 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
1497 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1498 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
1499 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
1500 ADDR_TABS),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1501 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
1502 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
1503 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
1504 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
1505 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
1506 ADDR_TABS_RELATIVE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1507 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
1508 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
1509 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
1510 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
1511 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1512 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1513 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
1514 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
1515 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1516 EXCMD(CMD_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
1517 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
1518 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1519 EXCMD(CMD_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
1520 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
1521 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1522 EXCMD(CMD_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
1523 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
1524 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1525 EXCMD(CMD_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
1526 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
1527 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1528 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
1529 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
1530 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1531 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
1532 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
1533 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1534 EXCMD(CMD_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
1535 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
1536 ADDR_LINES),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1537 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
1538 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
1539 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1540 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
1541 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
1542 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1543 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
1544 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
1545 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1546 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
1547 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
1548 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1549 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
1550 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
1551 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
1552 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
1553 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
1554 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
1555 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
1556 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
1557 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1558 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
1559 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
1560 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
1561 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
1562 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
1563 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1564 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
1565 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
1566 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1567 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
1568 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
1569 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
1570 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
1571 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
1572 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1573 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
1574 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
1575 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1576 EXCMD(CMD_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
1577 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
1578 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1579 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
1580 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
1581 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
1582 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
1583 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
1584 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1585 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
1586 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
1587 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1588 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
1589 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
1590 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1591 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
1592 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
1593 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1594 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
1595 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
1596 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
1597 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
1598 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
1599 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1600 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
1601 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
1602 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1603 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
1604 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
1605 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1606 EXCMD(CMD_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
1607 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
1608 ADDR_OTHER),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1609 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
1610 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
1611 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1612 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
1613 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
1614 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1615 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
1616 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
1617 ADDR_NONE),
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1618 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
1619 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
1620 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1621 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
1622 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
1623 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1624 EXCMD(CMD_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
1625 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
1626 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
1627 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
1628 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
1629 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
1630 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
1631 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
1632 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1633 EXCMD(CMD_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
1634 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
1635 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
1636 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
1637 EX_NEEDARG|EX_EXTRA|EX_NOTRLCOM,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1638 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1639 EXCMD(CMD_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
1640 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
1641 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1642 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
1643 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
1644 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1645 EXCMD(CMD_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
1646 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
1647 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
1648 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
1649 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
1650 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
1651 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
1652 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1653 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1654 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
1655 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
1656 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1657 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
1658 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
1659 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1660 EXCMD(CMD_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
1661 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
1662 ADDR_OTHER),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1663 EXCMD(CMD_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
1664 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
1665 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1666 EXCMD(CMD_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
1667 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
1668 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
1669 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
1670 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
1671 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
1672 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
1673 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
1674 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
1675 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
1676 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
1677 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1678 EXCMD(CMD_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
1679 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
1680 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1681 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
1682 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
1683 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
1684 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
1685 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
1686 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
1687 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
1688 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
1689 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1690 EXCMD(CMD_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
1691 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
1692 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1693 EXCMD(CMD_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
1694 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
1695 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1696 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
1697 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
1698 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
1699 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
1700 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
1701 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
1702 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
1703 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
1704 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1705 EXCMD(CMD_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
1706 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
1707 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
1708 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
1709 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
1710 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
1711 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
1712 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
1713 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
1714 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
1715 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
1716 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1717 EXCMD(CMD_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
1718 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
1719 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1720 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
1721 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
1722 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1723 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
1724 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
1725 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
1726 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
1727 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
1728 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1729 EXCMD(CMD_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
1730 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
1731 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1732 EXCMD(CMD_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
1733 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
1734 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1735 EXCMD(CMD_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
1736 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
1737 ADDR_OTHER),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1738 EXCMD(CMD_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
1739 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
1740 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1741 EXCMD(CMD_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
1742 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
1743 ADDR_OTHER),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1744 EXCMD(CMD_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
1745 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
1746 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1747 EXCMD(CMD_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
1748 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
1749 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1750 EXCMD(CMD_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
1751 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
1752 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1753 EXCMD(CMD_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
1754 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
1755 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
1756 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
1757 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
1758 ADDR_LINES),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1760 // commands that don't start with a lowercase 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
1761 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
1762 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
1763 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
1764 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
1765 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
1766 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
1767 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
1768 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
1769 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
1770 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
1771 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
1772 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
1773 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
1774 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
1775 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
1776 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
1777 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
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_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
1780 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
1781 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
1782 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
1783 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
1784 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
1785 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
1786 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
1787 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
1788 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
1789 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
1790 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
1791 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
1792 EX_TRLBAR,
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1793 ADDR_NONE),
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1794 EXCMD(CMD_tilde, "~", do_sub,
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1795 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
1796 ADDR_LINES),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1797
17336
81705f4d9e03 patch 8.1.1667: flags for Ex commands may clash with other symbols
Bram Moolenaar <Bram@vim.org>
parents: 17178
diff changeset
1798 #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
1799
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1800 #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
1801 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
1802 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
1803 CMD_USER_BUF = -2 // User-defined command local to buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1804 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1805 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1806
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1807 #ifndef DO_DECLARE_EXCMD
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1808 typedef enum CMD_index cmdidx_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1810 /*
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1811 * Arguments used for an Ex command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1812 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1813 struct exarg
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1814 {
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1815 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
1816 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
1817 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
1818 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
1819 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
1820 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
1821 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
1822 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
1823 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
1824 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
1825 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
1826 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
1827 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
1828 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
1829 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
1830 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
1831 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
1832 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
1833 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
1834 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
1835 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
1836 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
1837 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
1838 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
1839 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
1840 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
1841 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
1842 void *cookie; // argument for getline()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1843 #ifdef FEAT_EVAL
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1844 struct condstack *cstack; // condition stack for ":if" etc.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1845 #endif
14536
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1846 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
1847 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
1848 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
1849 #ifdef HAVE_SANDBOX
4caa51067cb8 patch 8.1.0281: parsing command modifiers is not separated
Christian Brabandt <cb@256bit.org>
parents: 14323
diff changeset
1850 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
1851 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1852 };
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1854 #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
1855 #define FORCE_NOBIN 2 // ":edit ++nobin file"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1856
17362
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1857 // Values for "flags"
95f989e38810 patch 8.1.1680: the command table is not well aligned
Bram Moolenaar <Bram@vim.org>
parents: 17336
diff changeset
1858 #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
1859 #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
1860 #define EXFLAG_PRINT 0x04 // 'p': print
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 156
diff changeset
1861
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 #endif