summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-27 22:57:00 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-27 22:57:00 +0200
commit67883b4909d0e9d4c024beb18f02750c6f7e3069 (patch)
tree83c332038f655ae91136103beb0a83b306907ec1 /src/ex_cmds.h
parenta2c45a17c174d815fd1d160f92ec6c277201e111 (diff)
downloadvim-git-67883b4909d0e9d4c024beb18f02750c6f7e3069.tar.gz
patch 8.0.0785: wildcards are not expanded for :terminalv8.0.0785
Problem: Wildcards are not expanded for :terminal. Solution: Add FILES to the command flags. (Yasuhiro Matsumoto, closes #1883) Also complete commands.
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index dd549816a..977b01a8c 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1484,7 +1484,7 @@ EX(CMD_tearoff, "tearoff", ex_tearoff,
NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN,
ADDR_LINES),
EX(CMD_terminal, "terminal", ex_terminal,
- RANGE|NOTADR|EXTRA|TRLBAR|CMDWIN,
+ RANGE|NOTADR|FILES|TRLBAR|CMDWIN,
ADDR_OTHER),
EX(CMD_tfirst, "tfirst", ex_tag,
RANGE|NOTADR|BANG|TRLBAR|ZEROR,