diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-29 13:56:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-29 13:56:33 +0100 |
commit | ae7dba896975051a3f0b7123faa08dac5635972d (patch) | |
tree | 4535b38de33959b00eccc8a18194fe6e83d3f353 /src/usercmd.c | |
parent | e20e68b40d9572393bb3577d6a0b52e960950b57 (diff) | |
download | vim-git-ae7dba896975051a3f0b7123faa08dac5635972d.tar.gz |
patch 8.2.0054: :diffget and :diffput don't have good completionv8.2.0054
Problem: :diffget and :diffput don't have good completion.
Solution: Add proper completion. (Dominique Pelle, closes #5409)
Diffstat (limited to 'src/usercmd.c')
-rw-r--r-- | src/usercmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usercmd.c b/src/usercmd.c index 5db6f48be..1a6fbeebc 100644 --- a/src/usercmd.c +++ b/src/usercmd.c @@ -57,6 +57,7 @@ static struct {EXPAND_USER_DEFINED, "custom"}, {EXPAND_USER_LIST, "customlist"}, #endif + {EXPAND_DIFF_BUFFERS, "diff_buffer"}, {EXPAND_DIRECTORIES, "dir"}, {EXPAND_ENV_VARS, "environment"}, {EXPAND_EVENTS, "event"}, |