diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-15 06:20:01 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-01-15 07:59:45 +0800 |
commit | f2056e4045a667447392f5e17c27b0f72ec7b8e0 (patch) | |
tree | d9c9360f83f137e9429f0389084085b1129002c3 /src/nvim/vim.h | |
parent | 89f45dc155d24e797c144b32de109b64368f20ea (diff) | |
download | rneovim-f2056e4045a667447392f5e17c27b0f72ec7b8e0.tar.gz rneovim-f2056e4045a667447392f5e17c27b0f72ec7b8e0.tar.bz2 rneovim-f2056e4045a667447392f5e17c27b0f72ec7b8e0.zip |
vim-patch:8.2.4565: no command line completion for :breakadd and :breakdel
Problem: No command line completion for :breakadd and :breakdel.
Solution: Add completion for :breakadd and :breakdel. (Yegappan Lakshmanan,
closes vim/vim#9950)
https://github.com/vim/vim/commit/6e2e2cc95b913e33145047e0fade5193da6e4379
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index c395eb438c..0ab9d96173 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -154,6 +154,7 @@ enum { EXPAND_MAPCLEAR, EXPAND_ARGLIST, EXPAND_DIFF_BUFFERS, + EXPAND_BREAKPOINT, EXPAND_CHECKHEALTH, EXPAND_LUA, }; |