We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-- I have rustaceanvim in runtimepath; it doesn't need setup local cmp = require("cmp") cmp.setup({ mapping = { ["<CR>"] = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = true }), ["<S-Tab>"] = cmp.mapping(function(fallback) local luasnip = require("luasnip") if cmp.visible() then cmp.select_prev_item() elseif luasnip.jumpable(-1) then luasnip.jump(-1) else fallback() end end, { "i", "s" }), ["<Tab>"] = cmp.mapping(function(fallback) local luasnip = require("luasnip") if cmp.visible() then cmp.select_next_item() elseif luasnip.expandable() then luasnip.expand() elseif luasnip.expand_or_jumpable() then luasnip.expand_or_jump() -- elseif check_backspace() then -- fallback() else fallback() end end, { "i", "s" }), }, snippet = { expand = function(args) require("luasnip").lsp_expand(args.body) end, }, sources = { { name = "nvim_lsp" } }, }) require("luasnip").config.setup({})
Note: I did reproduce this with this config but didn't update the gif
DoubleEndedSearcher
Doub
DoubleEndedIterator
Should not overwrite the text
I'm using 99290b3ec1322070bcfb9e846450a46f6efa50f0 and ed31156
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FAQ
Announcement
Minimal reproducible full config
Note: I did reproduce this with this config but didn't update the gif
Description
DoubleEndedSearcher
, typeDoub
and tab (it's not the first option) toDoubleEndedIterator
(in the prelude), it overwrites tooSteps to reproduce
Expected behavior
Should not overwrite the text
Actual behavior
Additional context
I'm using 99290b3ec1322070bcfb9e846450a46f6efa50f0 and ed31156
The text was updated successfully, but these errors were encountered: