diff --git a/README.md b/README.md index 79414639..2c439695 100644 --- a/README.md +++ b/README.md @@ -319,6 +319,7 @@ The following plugins are nice additions to your Neovim and Kitty setup. - Kitty [custom kitten](https://sw.kovidgoyal.net/kitty/kittens/custom/) documentation - [baleia.nvim](https://github.com/m00qek/baleia.nvim) - very nice plugin to colorize Neovim buffer containing ANSI escape sequences. I plan to add integration with this plugin 🤝 - [kovidgoyal/kitty#719 Feature Request: Ability to select text with the keyboard (vim-like)](https://github.com/kovidgoyal/kitty/issues/719) - ideas for passing the scrollback buffer to Neovim + - [kovidgoyal/kitty#719 Comment 952039731 ](https://github.com/kovidgoyal/kitty/issues/719#issuecomment-952039731) - very detailed solution to opening the Kitty scrollback buffer in Neovim. In particular, I used the `set title` escape code to hide the `[Process exited]` message - [kovidgoyal/kitty#2426 'Failed to open controlling terminal' error when trying to remote control from vim](https://github.com/kovidgoyal/kitty/issues/2426) - workaround for issuing kitty remote commands without a tty `listen_on unix:/tmp/mykitty` - [kovidgoyal/kitty#6485 Vi mode for kitty](https://github.com/kovidgoyal/kitty/discussions/6485) - inspiration to leverage Neovim's terminal for the scrollback buffer - [tokyonight.nvim](https://github.com/folke/tokyonight.nvim) - referenced for color darkening, thank you folke! @@ -331,6 +332,8 @@ The following plugins are nice additions to your Neovim and Kitty setup. - [bob](https://github.com/MordechaiHadad/bob) - easy Neovim version management to check backward compatibility ## 🐶 Alternatives +- [kitty+page.lua](https://gist.github.com/galaxia4Eva/9e91c4f275554b4bd844b6feece16b3d) - Open Kitty's scrollback buffer in Neovim via `scrollback_pager` +- [Neovim scrollback pager by page-down](https://github.com/kovidgoyal/kitty/issues/719#issuecomment-952039731) - Linux only solution to open Kitty scrollback buffer in Neovim - [kitty_grab](https://github.com/yurikhan/kitty_grab) - Keyboard-driven screen grabber for Kitty - [kitty-kitten-search](https://github.com/trygveaa/kitty-kitten-search) - Kitten for the kitty terminal emulator providing live incremental search in the terminal history. diff --git a/doc/kitty-scrollback.nvim.txt b/doc/kitty-scrollback.nvim.txt index d1835332..62225f8a 100644 --- a/doc/kitty-scrollback.nvim.txt +++ b/doc/kitty-scrollback.nvim.txt @@ -1,4 +1,4 @@ -*kitty-scrollback.nvim.txt* For NVIM v0.10+ Last change: 2023 October 15 +*kitty-scrollback.nvim.txt* For NVIM v0.10+ Last change: 2023 October 16 ============================================================================== Table of Contents *kitty-scrollback.nvim-table-of-contents* @@ -401,6 +401,7 @@ ACKNOWLEDGEMENTS *kitty-scrollback.nvim-acknowledgements* - Kitty custom kitten documentation - baleia.nvim - very nice plugin to colorize Neovim buffer containing ANSI escape sequences. I plan to add integration with this plugin - kovidgoyal/kitty#719Feature Request: Ability to select text with the keyboard (vim-like) - ideas for passing the scrollback buffer to Neovim + - kovidgoyal/kitty#719 Comment 952039731 - very detailed solution to opening the Kitty scrollback buffer in Neovim. In particular, I used the `set title` escape code to hide the `[Process exited]` message - kovidgoyal/kitty#2426 'Failed to open controlling terminal' error when trying to remote control from vim - workaround for issuing kitty remote commands without a tty `listen_on unix:/tmp/mykitty` - kovidgoyal/kitty#6485 Vi mode for kitty - inspiration to leverage Neovim’s terminal for the scrollback buffer - tokyonight.nvim - referenced for color darkening, thank you folke! @@ -415,6 +416,8 @@ ACKNOWLEDGEMENTS *kitty-scrollback.nvim-acknowledgements* ALTERNATIVES *kitty-scrollback.nvim-alternatives* +- kitty+page.lua - Open Kitty’s scrollback buffer in Neovim via `scrollback_pager` +- Neovim scrollback pager by page-down - Linux only solution to open Kitty scrollback buffer in Neovim - kitty_grab - Keyboard-driven screen grabber for Kitty - kitty-kitten-search - Kitten for the kitty terminal emulator providing live incremental search in the terminal history.