diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-14 19:24:46 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-14 19:24:46 +0000 |
commit | 6e2e2cc95b913e33145047e0fade5193da6e4379 (patch) | |
tree | 6f4755e77b8e86590b6313bdb89f52968894c11f /src/usercmd.c | |
parent | 129e33e44bdbd91d6d7cd49d96268cbed4a05f07 (diff) | |
download | vim-git-6e2e2cc95b913e33145047e0fade5193da6e4379.tar.gz |
patch 8.2.4565: no command line completion for :breakadd and :breakdelv8.2.4565
Problem: No command line completion for :breakadd and :breakdel.
Solution: Add completion for :breakadd and :breakdel. (Yegappan Lakshmanan,
closes #9950)
Diffstat (limited to 'src/usercmd.c')
-rw-r--r-- | src/usercmd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/usercmd.c b/src/usercmd.c index 1ff4d0d49..70dbbb03b 100644 --- a/src/usercmd.c +++ b/src/usercmd.c @@ -90,6 +90,9 @@ static struct {EXPAND_TAGS_LISTFILES, "tag_listfiles"}, {EXPAND_USER, "user"}, {EXPAND_USER_VARS, "var"}, +#if defined(FEAT_EVAL) + {EXPAND_BREAKPOINT, "breakpoint"}, +#endif {0, NULL} }; |