folke / twilight.nvim

🌅 Twilight is a Lua plugin for Neovim 0.5 that dims inactive portions of the code you're editing using TreeSitter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Random nvim (nightly) crashes when started in a empty buffer

lbiaggi opened this issue · comments

Hi when using with neovim 0.6 release

NVIM v0.6.0-dev+402-g655e489e9
Build type: RelWithDebInfo
LuaJIT 2.1.0-beta3

along with

if !exists("g:twilight_autocommands")
     let g:twilight_autocommands=1
     augroup twilight_mode
         autocmd InsertEnter * :TwilightEnable
         autocmd InsertLeave * :TwilightDisable
     augroup END
endif

When creating a new file or empty buffer and trying to enter insert mode, I get a SIGEV in the neovim process, disabling the autocommand snippet resolved my issue. Until few days ago (3 or 4 days),
I did not have this kind of problem.

Is this the right place to open the issue?

Regards,
Lucas

I have the same issue with nvim 0.5.0 when nvim is starting with dashboard and I then try to open a file with telescope

Since I've updated to nvim 0.5.1 the problem seems to be fixed. The recent 0.6 nightly also has a fix for sigsegv in decor_free implemented, that was backlogged to 0.5.1

Since I've updated to nvim 0.5.1 the problem seems to be fixed. The recent 0.6 nightly also has a fix for sigsegv in decor_free implemented, that was backlogged to 0.5.1

Hi, thanks pointing this. Tested again with the most recent nightly build and everything is working as expected.