diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-03-24 11:22:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-24 11:22:13 +0000 |
commit | 454ce6737cadb82886f1fc0eb9e8666cc59ae42b (patch) | |
tree | cb8c34f9a6ebc380a2788eed0c0fc14cd4512ca7 /src/ex_cmds.h | |
parent | 98b7fe725ec342d28d7c86293098b233c57c4af9 (diff) | |
download | vim-git-454ce6737cadb82886f1fc0eb9e8666cc59ae42b.tar.gz |
patch 8.2.4617: no completion for :scriptnamesv8.2.4617
Problem: No completion for :scriptnames.
Solution: Implement :scriptnames completion. (Yegappan Lakshmanan,
closes #10005)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index c8ebcf6d9..e4f9bb05d 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1356,7 +1356,7 @@ EXCMD(CMD_sbrewind, "sbrewind", ex_brewind, EX_CMDARG|EX_TRLBAR, ADDR_NONE), EXCMD(CMD_scriptnames, "scriptnames", ex_scriptnames, - EX_BANG|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, + EX_BANG|EX_FILES|EX_RANGE|EX_COUNT|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, ADDR_OTHER), EXCMD(CMD_scriptencoding, "scriptencoding", ex_scriptencoding, EX_WORD1|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK, |