Need help recreating the demo video workflow #192
-
Thanks for this cool plugin! This was exactly what I needed in my workflow, thanks a ton for creating it! I'm trying to do something similar to the workflow shown in the main demo video. So far I've managed to make it work to the point where whenever I select something in visual mode and yank with To solve this, I tried to yank to some random register, upon which it didn't exit but also didn't open the paste window. So I used At this point I stopped, as it seems like a case of misconfiguration at my end. Could you please share the configuration required to make the exact workflow shown in the main video work? Here is my configuration in lazy: return {
-- open kitty scrollback in nvim
"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 = "^4.0.0", -- pin major version, include fixes and features that do not have breaking changes
config = function()
require("kitty-scrollback").setup()
end,
} And in kitty I have:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hey @aksh1618 thanks for letting me know.
This sounds like a bug. My best guess is that you may have some keymaps that are conflicting with kitty-scrollback.nvim. Could you try updating the
Then reload your Kitty config with The args Please let me know if this works. If this works, then we can try to hunt down the conflicting keymaps. |
Beta Was this translation helpful? Give feedback.
-
Thanks for pointing me in the right direction! It indeed worked with a clean nvim, and the I managed to figure out the culprit: It was an autosave plugin. I tried disabling it based on |
Beta Was this translation helpful? Give feedback.
Hey @aksh1618 thanks for letting me know.
This sounds like a bug. My best guess is that you may have some keymaps that are conflicting with kitty-scrollback.nvim.
Could you try updating the
action_alias
line inkitty.conf
to:Then reload your Kitty config with
ctrl+shift+f5
(⌃ + ⌘ + ,
on macOS)The args
--nvim-args --clean --noplugin -n
will open a clean nvim w…