fix(luasnip): don't set remap=true for <tab>. Fixes #44

This commit is contained in:
Folke Lemaitre 2023-01-11 21:19:52 +01:00
parent 46dba8f67e
commit 87c37f287b
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 2 additions and 2 deletions

View file

@ -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)