mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(blink): allow user to overwrite <Tab> mapping
This commit is contained in:
parent
ef9102677f
commit
deca4b250c
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ return {
|
||||||
end
|
end
|
||||||
|
|
||||||
-- fix super-tab completion
|
-- fix super-tab completion
|
||||||
if opts.keymap.preset == "super-tab" then
|
if opts.keymap.preset == "super-tab" and not opts.keymap["<Tab>"] then
|
||||||
opts.keymap["<Tab>"] = {
|
opts.keymap["<Tab>"] = {
|
||||||
function(cmp)
|
function(cmp)
|
||||||
if cmp.snippet_active() then
|
if cmp.snippet_active() then
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue