commit | 454ce6737cadb82886f1fc0eb9e8666cc59ae42b | [log] [tgz] |
---|---|---|
author | Yegappan Lakshmanan <yegappan@yahoo.com> | Thu Mar 24 11:22:13 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Mar 24 11:22:13 2022 +0000 |
tree | cb8c34f9a6ebc380a2788eed0c0fc14cd4512ca7 | |
parent | 98b7fe725ec342d28d7c86293098b233c57c4af9 [diff] [blame] |
patch 8.2.4617: no completion for :scriptnames Problem: No completion for :scriptnames. Solution: Implement :scriptnames completion. (Yegappan Lakshmanan, closes #10005)
diff --git a/src/usercmd.c b/src/usercmd.c index 40d951f..0e9d712 100644 --- a/src/usercmd.c +++ b/src/usercmd.c
@@ -93,6 +93,7 @@ {EXPAND_USER_VARS, "var"}, #if defined(FEAT_EVAL) {EXPAND_BREAKPOINT, "breakpoint"}, + {EXPAND_SCRIPTNAMES, "scriptnames"}, #endif {0, NULL} };