comparison src/ex_cmds.h @ 11806:1c1cb1e9b7b3 v8.0.0785

patch 8.0.0785: wildcards are not expanded for :terminal commit https://github.com/vim/vim/commit/67883b4909d0e9d4c024beb18f02750c6f7e3069 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 27 22:57:00 2017 +0200 patch 8.0.0785: wildcards are not expanded for :terminal Problem: Wildcards are not expanded for :terminal. Solution: Add FILES to the command flags. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/1883) Also complete commands.
author Christian Brabandt <cb@256bit.org>
date Thu, 27 Jul 2017 23:00:05 +0200
parents f87c43fca41d
children a879814b8a37
comparison
equal deleted inserted replaced
11805:1688e47e334f 11806:1c1cb1e9b7b3
1482 ADDR_LINES), 1482 ADDR_LINES),
1483 EX(CMD_tearoff, "tearoff", ex_tearoff, 1483 EX(CMD_tearoff, "tearoff", ex_tearoff,
1484 NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN, 1484 NEEDARG|EXTRA|TRLBAR|NOTRLCOM|CMDWIN,
1485 ADDR_LINES), 1485 ADDR_LINES),
1486 EX(CMD_terminal, "terminal", ex_terminal, 1486 EX(CMD_terminal, "terminal", ex_terminal,
1487 RANGE|NOTADR|EXTRA|TRLBAR|CMDWIN, 1487 RANGE|NOTADR|FILES|TRLBAR|CMDWIN,
1488 ADDR_OTHER), 1488 ADDR_OTHER),
1489 EX(CMD_tfirst, "tfirst", ex_tag, 1489 EX(CMD_tfirst, "tfirst", ex_tag,
1490 RANGE|NOTADR|BANG|TRLBAR|ZEROR, 1490 RANGE|NOTADR|BANG|TRLBAR|ZEROR,
1491 ADDR_LINES), 1491 ADDR_LINES),
1492 EX(CMD_throw, "throw", ex_throw, 1492 EX(CMD_throw, "throw", ex_throw,