Replies: 2 comments 2 replies
-
Hi @ciscohack
You can save the buffer like any other buffer in Neovim. For example,
That error indicates that the command is not found. Most likely kitty-scrollback.nvim is lazy loaded and not actually loaded. Does you {
'mikesmithgh/kitty-scrollback.nvim',
enabled = true,
lazy = true,
cmd = { 'KittyScrollbackGenerateKittens', 'KittyScrollbackCheckHealth' },
event = { 'User KittyScrollbackLaunch' },
-- version = '*', -- latest stable version, may have breaking changes if major version changed
-- version = '^3.0.0', -- pin major version, include fixes and features that do not have breaking changes
config = function()
require('kitty-scrollback').setup()
end,
} There is a similar bug reported LazyVim/LazyVim#1237. Are you still seeing this error?
I have some details on this in the following comments: |
Beta Was this translation helpful? Give feedback.
-
@mikesmithgh thanks for the response... here is my config
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Expert,
I am new to this tool. trying my best. I have one query can we store or redirect the kitty buffer history in some text file to use it for later analysis? and how to use "kitty-scrollback.nvim configuration file" table mentioned in "https://github.com/mikesmithgh/kitty-scrollback.nvim?tab=readme-ov-file#:~:text=the%20scrollback%20buffer.-,kitty-scrollback.nvim%20configuration,in%20the%20terminal%20history.,-About"
I am also getting the below error while running a health check. I don't know if my config is causing the problem or something else it was working sometime back.

Beta Was this translation helpful? Give feedback.
All reactions