comparison src/usercmd.c @ 28183:2b595cee4c85 v8.2.4617

patch 8.2.4617: no completion for :scriptnames Commit: https://github.com/vim/vim/commit/454ce6737cadb82886f1fc0eb9e8666cc59ae42b Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Mar 24 11:22:13 2022 +0000 patch 8.2.4617: no completion for :scriptnames Problem: No completion for :scriptnames. Solution: Implement :scriptnames completion. (Yegappan Lakshmanan, closes #10005)
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Mar 2022 12:30:08 +0100
parents 2961a18f9cbf
children add09d468c0d
comparison
equal deleted inserted replaced
28182:2846627df454 28183:2b595cee4c85
91 {EXPAND_TAGS_LISTFILES, "tag_listfiles"}, 91 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
92 {EXPAND_USER, "user"}, 92 {EXPAND_USER, "user"},
93 {EXPAND_USER_VARS, "var"}, 93 {EXPAND_USER_VARS, "var"},
94 #if defined(FEAT_EVAL) 94 #if defined(FEAT_EVAL)
95 {EXPAND_BREAKPOINT, "breakpoint"}, 95 {EXPAND_BREAKPOINT, "breakpoint"},
96 {EXPAND_SCRIPTNAMES, "scriptnames"},
96 #endif 97 #endif
97 {0, NULL} 98 {0, NULL}
98 }; 99 };
99 100
100 /* 101 /*