nvim: remove redundant pass through function definition
This commit is contained in:
parent
38eb78f0bd
commit
c38b32415b
1 changed files with 1 additions and 3 deletions
|
@ -39,9 +39,7 @@ local make_keymap = function(cmp)
|
|||
-- I want <tab> to start completion on the command line, but not in Insert.
|
||||
local keymap = {
|
||||
["<tab>"] = {
|
||||
i = if_visible(cmp.mapping.confirm { select = true }, function(fallback)
|
||||
fallback()
|
||||
end),
|
||||
i = if_visible(cmp.mapping.confirm { select = true }),
|
||||
c = if_visible(cmp.mapping.confirm { select = true }, cmp.mapping.complete()),
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue