diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-16 11:28:05 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-16 11:47:56 -0400 |
commit | 1dcdac013e4beea2a327e1fb98ac4627bbe174ec (patch) | |
tree | 4a430c1a18bc73ea9b5d3c28642cc4fae2d088a8 /runtime | |
parent | be552c8340615a4c9e670bc77df5e6016214d4f4 (diff) | |
download | rneovim-1dcdac013e4beea2a327e1fb98ac4627bbe174ec.tar.gz rneovim-1dcdac013e4beea2a327e1fb98ac4627bbe174ec.tar.bz2 rneovim-1dcdac013e4beea2a327e1fb98ac4627bbe174ec.zip |
vim-patch:8.0.1649: no completion for argument list commands
Problem: No completion for argument list commands.
Solution: Add arglist completion. (Yegappan Lakshmanan, closes vim/vim#2706)
https://github.com/vim/vim/commit/cd43effecab02c6c28b1c4a3a14f91b8c3f26c0d
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 1 | ||||
-rw-r--r-- | runtime/doc/map.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 900f54c5b9..4d5a592190 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4079,6 +4079,7 @@ getcompletion({pat}, {type} [, {filtered}]) *getcompletion()* specifies what for. The following completion types are supported: + arglist file names in argument list augroup autocmd groups buffer buffer names behave :behave suboptions diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt index 44c6196d53..d630bf5652 100644 --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -1208,6 +1208,7 @@ By default, the arguments of user defined commands do not undergo completion. However, by specifying one or the other of the following attributes, argument completion can be enabled: + -complete=arglist file names in argument list -complete=augroup autocmd groups -complete=buffer buffer names -complete=behave :behave suboptions |