Skip to content

Commit

Permalink
fix: wrong mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
loctvl842 committed Mar 22, 2023
1 parent 6fc9647 commit ced1839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/tvl/core/resources/coding.lua
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ return {
["<CR>"] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
["<Tab>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }),
["<S-Tab>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }),
["Esc"] = cmp.mapping(function(fallback)
["<Esc>"] = cmp.mapping(function(fallback)
require("luasnip").unlink_current()
fallback()
end),
Expand Down

0 comments on commit ced1839

Please sign in to comment.