-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Error detected while processing TextChangedI Autocommands for "*": #80
Comments
Is it related to #78 ? |
I don't think this is related to 78, no. Can you share your reproduction steps (i.e. what do you type when this happens and which snippets are you using?). Thanks. |
have the similar issue after updating plugins, had to remove im running neovim version v0.7.2 |
Please share your reproduction steps: when does this occur, which snippet are you expanding when this happens? Otherwise, we can't do anything to resolve this. |
sure, actually no steps are needed to reproduce, in my case the error happens any time I try typing anything in the insert mode or altering the text in any way.
the error should occur immediately, at least in my case it did |
@quangnguyen30192 Due to the way I changed my plugins and lazy-loading, I can't get For anyone else that wants to help debug this issue (@fastndead, @eyalk11), here's what you can do:
|
Sure, I will take it |
Hey @fastndead I couldn't reproduce the issue. Could you share your config again? the link you sent is dead |
Hey @quangnguyen30192, i switched completely to vsnip for the time being, so I won't help with debugging, sorry. im gonna just dump my whole config below, it's the version in which i got the errors
|
@SingularisArt Since you also encountered this issue, can you please help us debug this issue by performing the steps I outlined in this comment: #80 (comment). Thanks. |
@smjonas Sure. Here's what I get when I type
|
I figured out why I was having this issue. I'm currently using local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath,
})
end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
require("lazy").setup({
"folke/lazy.nvim",
{
"SirVer/ultisnips",
config = function()
vim.g.UltiSnipsRemoveSelectModeMappings = 0
vim.g.UltiSnipsEditSplit = "tabdo"
vim.g.UltiSnipsSnippetDirectories = {
"~/.config/nvim/UltiSnips", "UltiSnips"
}
end,
event = "InsertEnter",
},
{
"hrsh7th/nvim-cmp",
config = function()
local cmp = require("cmp")
-- ...
end,
dependencies = {
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-nvim-lua",
"quangnguyen30192/cmp-nvim-ultisnips",
"hrsh7th/cmp-buffer",
"hrsh7th/cmp-calc",
"hrsh7th/cmp-path",
-- ...
},
event = "InsertEnter",
},
-- ...
}, {
defaults = { lazy = true, version = "*" },
install = {},
checker = { enabled = false },
performance = {
rtp = {
disabled_plugins = {
"gzip",
"matchit",
"matchparen",
"netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
},
}) When I changed the line from |
Great that you finally make it works, hopefully, it would be useful for you. Thank you for choosing it. |
@SingularisArt thanks for helping with this! Honestly this error ( Maybe there are some Python experts that come across this - if so please enlighten me ;) |
Getting a similar error:
This happens when I type the word all. |
I'm getting errors again, I opened up an issue in SirVer/ultisnips#1546
|
It happens in tex files when I type things. Especially things that trigger ltex.
I updated nvim-cmp to latest version.
The text was updated successfully, but these errors were encountered: