-
Notifications
You must be signed in to change notification settings - Fork 11
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
bug: loading issue on Neovim nightly #282
Comments
hi @Aumnescio thank you for the details and video of the issue. I am on the latest nightly build of Neovim and do not see the issue. I am wondering if some messages may be written and waiting for user input.
|
I should note that it did not happen 100% of the time. Just now for testing when I swapped to nightly, the first launch did not have the delay, but after that it started happening again. |
Okay, after some further testing/realizations, the issue might not be directly with this plugin, but rather a symptom of a I enabled the Edit: This input is somehow coming from Kitty itself, it seems. Other terminal emulators don't show this behaviour. |
Think I have resolved the issue for now, though I do not know why, when, or how this behaviour was changed. I had the settings: vim.opt.timeout = false
vim.opt.timeoutlen = 420
vim.opt.ttimeout = false
vim.opt.ttimeoutlen = 5000 With these settings, I was getting the After changing to: vim.opt.timeout = false -- Included for completeness.
vim.opt.timeoutlen = 420 -- Included for completeness.
vim.opt.ttimeout = true -- This being the critical part.
vim.opt.ttimeoutlen = 9999 -- This should effectively emulate "ttimeout = false". All problems seem to have been resolved, without any problematic side effects on my responsiveness settings. |
@Aumnescio interesting, I was able to reproduce it by adding vim.g.mapleader = [[\]]
vim.opt.timeout = false
vim.opt.timeoutlen = 420
vim.opt.ttimeout = false
vim.opt.ttimeoutlen = 5000
vim.fn.feedkeys([[\]]) to my kitty-scrollback.nvim config. I noticed in your config that it looks like you are using My guess at the moment is some plugin or autocmd may be sending the |
reproduce-kitty-scrollback-issue.mp4 |
kitty-scrollback
started misbehaving Neovim built from source. (Tested again and it's happening on commit "76dcc7029b200e1d85024d7ba4a34c602e730dbe" as well as whatever I previously tested on.)If the
close_threshold_seconds
inloading.py
is lowered,kitty-scrollback
starts up faster, but the content is not shown until some key is pressed.kitty-scrollback-loading.mp4
Issue occurring on an older version of kitty-scrollback as well as on the latest release. (v6.0.0)
The text was updated successfully, but these errors were encountered: