Fix jump behaviour
This commit is contained in:
parent
0186df077c
commit
90087512e4
@ -20,6 +20,10 @@ return {
|
|||||||
-- loads vscode style snippets from installed plugins (e.g. friendly-snippets)
|
-- loads vscode style snippets from installed plugins (e.g. friendly-snippets)
|
||||||
require("luasnip.loaders.from_vscode").lazy_load()
|
require("luasnip.loaders.from_vscode").lazy_load()
|
||||||
require("luasnip.loaders.from_vscode").load({paths = { "~/.config/nvim/my_snippets" }})
|
require("luasnip.loaders.from_vscode").load({paths = { "~/.config/nvim/my_snippets" }})
|
||||||
|
luasnip.setup({
|
||||||
|
region_check_events = { "CursorMoved" },
|
||||||
|
delete_check_events = { "TextChanged" },
|
||||||
|
})
|
||||||
|
|
||||||
-- luasnip.filetype_extend("htmldjango", { "html" })
|
-- luasnip.filetype_extend("htmldjango", { "html" })
|
||||||
|
|
||||||
@ -49,22 +53,29 @@ return {
|
|||||||
["<C-Space>"] = cmp.mapping.complete(), -- show completion suggestions
|
["<C-Space>"] = cmp.mapping.complete(), -- show completion suggestions
|
||||||
["<C-q>"] = cmp.mapping.abort(), -- close completion window
|
["<C-q>"] = cmp.mapping.abort(), -- close completion window
|
||||||
["<CR>"] = cmp.mapping.confirm({ select = false }), -- autocomplete if selected
|
["<CR>"] = cmp.mapping.confirm({ select = false }), -- autocomplete if selected
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
-- Mapping for Tab key
|
||||||
if cmp.visible() then
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
cmp.confirm({ behavior = cmp.ConfirmBehavior.Insert, select = true })
|
if cmp.visible() then
|
||||||
elseif require("luasnip").expand_or_jumpable() then
|
cmp.confirm({ behavior = cmp.ConfirmBehavior.Insert, select = true })
|
||||||
require("luasnip").expand_or_jump()
|
elseif require("luasnip").expandable() then
|
||||||
else
|
-- Expands snippet if possible
|
||||||
fallback()
|
require("luasnip").expand()
|
||||||
end
|
else
|
||||||
end, { "i", "s" }),
|
-- Otherwise, fallback (insert a tab character)
|
||||||
["<S-Tab>"] = cmp.mapping(function(fallback)
|
fallback()
|
||||||
if require("luasnip").jumpable(-1) then
|
end
|
||||||
require("luasnip").jump(-1)
|
end, { "i", "s" }),
|
||||||
else
|
|
||||||
fallback()
|
-- Mapping for jumping in snippets)
|
||||||
end
|
["<C-p>"] = cmp.mapping(function(fallback)
|
||||||
end, { "i", "s" }),
|
if require("luasnip").jumpable() then
|
||||||
|
-- Jump backwards if inside a snippet
|
||||||
|
require("luasnip").jump()
|
||||||
|
else
|
||||||
|
-- Otherwise, fallback (insert a tab character)
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
end, { "i", "s" })
|
||||||
}),
|
}),
|
||||||
|
|
||||||
-- sources for autocompletion
|
-- sources for autocompletion
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
return {
|
return {
|
||||||
'L3MON4D3/LuaSnip',
|
'L3MON4D3/LuaSnip',
|
||||||
config = function()
|
-- config = function()
|
||||||
local luasnip = require('luasnip')
|
-- local luasnip = require('luasnip')
|
||||||
|
-- -- luasnip.setup({
|
||||||
require("luasnip.loaders.from_vscode").load({paths = "~/.config/nvim/my_snippets"})
|
-- -- region_check_events = "CursorMoved",
|
||||||
end
|
-- -- delete_check_events = "TextChanged",
|
||||||
|
-- -- })
|
||||||
|
--
|
||||||
|
-- require("luasnip.loaders.from_vscode").load({paths = "~/.config/nvim/my_snippets"})
|
||||||
|
-- end
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user