mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 17:06:30 +00:00
Merge pull request #33667 from glepnir/vim-9.1.1341
vim-patch: 9.1.{1341,1344}
This commit is contained in:
@@ -4634,6 +4634,33 @@ local options = {
|
||||
type = 'boolean',
|
||||
immutable = true,
|
||||
},
|
||||
{
|
||||
abbreviation = 'ise',
|
||||
cb = 'did_set_isexpand',
|
||||
defaults = '',
|
||||
deny_duplicates = true,
|
||||
desc = [=[
|
||||
Defines characters and patterns for completion in insert mode. Used by
|
||||
the |complete_match()| function to determine the starting position for
|
||||
completion. This is a comma-separated list of triggers. Each trigger
|
||||
can be:
|
||||
- A single character like "." or "/"
|
||||
- A sequence of characters like "->", "/*", or "/**"
|
||||
|
||||
Note: Use "\\," to add a literal comma as trigger character, see
|
||||
|option-backslash|.
|
||||
|
||||
Examples: >vim
|
||||
set isexpand=.,->,/*,\\,
|
||||
<
|
||||
]=],
|
||||
full_name = 'isexpand',
|
||||
list = 'onecomma',
|
||||
scope = { 'global', 'buf' },
|
||||
short_desc = N_('Defines characters and patterns for completion in insert mode'),
|
||||
type = 'string',
|
||||
varname = 'p_ise',
|
||||
},
|
||||
{
|
||||
abbreviation = 'isf',
|
||||
cb = 'did_set_isopt',
|
||||
|
Reference in New Issue
Block a user