mirror of
https://github.com/neovim/neovim.git
synced 2025-12-08 07:32:40 +00:00
feat(complete): support f flag for complete buffer part
This commit is contained in:
@@ -195,6 +195,8 @@ The following new APIs and features were added.
|
||||
|
||||
• Added |vim.snippet| for snippet expansion support.
|
||||
|
||||
• 'complete' option supports "f" flag for completing buffer names.
|
||||
|
||||
==============================================================================
|
||||
CHANGED FEATURES *news-changed*
|
||||
|
||||
|
||||
@@ -1458,6 +1458,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
|i_CTRL-X_CTRL-D|
|
||||
] tag completion
|
||||
t same as "]"
|
||||
f scan the buffer names (as opposed to buffer contents)
|
||||
|
||||
Unloaded buffers are not loaded, thus their autocmds |:autocmd| are
|
||||
not executed, this may lead to unexpected completions from some files
|
||||
|
||||
1
runtime/lua/vim/_meta/options.lua
generated
1
runtime/lua/vim/_meta/options.lua
generated
@@ -998,6 +998,7 @@ vim.bo.cms = vim.bo.commentstring
|
||||
--- `i_CTRL-X_CTRL-D`
|
||||
--- ] tag completion
|
||||
--- t same as "]"
|
||||
--- f scan the buffer names (as opposed to buffer contents)
|
||||
---
|
||||
--- Unloaded buffers are not loaded, thus their autocmds `:autocmd` are
|
||||
--- not executed, this may lead to unexpected completions from some files
|
||||
|
||||
Reference in New Issue
Block a user