fix(luasnip): don't set remap=true for <tab>. Fixes #44
This commit is contained in:
@@ -20,7 +20,7 @@ return {
|
||||
function()
|
||||
return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
|
||||
end,
|
||||
expr = true, remap = true, silent = true, mode = "i",
|
||||
expr = true, silent = true, mode = "i",
|
||||
},
|
||||
{ "<tab>", function() require("luasnip").jump(1) end, mode = "s" },
|
||||
{ "<s-tab>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } },
|
||||
|
||||
@@ -2,7 +2,7 @@ local Util = require("lazy.core.util")
|
||||
|
||||
local M = {}
|
||||
|
||||
M.root_patterns = { ".git", "/lua" }
|
||||
M.root_patterns = { ".git", "lua" }
|
||||
|
||||
---@param on_attach fun(client, buffer)
|
||||
function M.on_attach(on_attach)
|
||||
|
||||
Reference in New Issue
Block a user