diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/builtin.txt | 4 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 0ae615ac3f..92cedbdc80 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -2354,7 +2354,9 @@ getcompletion({pat}, {type} [, {filtered}]) *getcompletion()* color color schemes command Ex command compiler compilers - diff_buffer |:diffget| and |:diffput| completion + custom,{func} custom completion, defined via {func} + customlist,{func} custom completion, defined via {func} + diff_buffer |:diffget| and |:diffput| completion dir directory names environment environment variable names event autocommand events diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 030f268f81..300210b296 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -2871,7 +2871,9 @@ function vim.fn.getcmdwintype() end --- color color schemes --- command Ex command --- compiler compilers ---- diff_buffer |:diffget| and |:diffput| completion +--- custom,{func} custom completion, defined via {func} +--- customlist,{func} custom completion, defined via {func} +--- diff_buffer |:diffget| and |:diffput| completion --- dir directory names --- environment environment variable names --- event autocommand events |