From d52825b2a076586d1af156a066db2d18cd1fd8cb Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 15 Nov 2024 16:49:20 +0000 Subject: [PATCH] chore(release): 6.0.0 # [6.0.0](https://github.com/mikesmithgh/kitty-scrollback.nvim/compare/v5.0.2...v6.0.0) (2024-11-15) * feat!: exit kitty-scrollback.nvim with q key instead of esc ([#272](https://github.com/mikesmithgh/kitty-scrollback.nvim/issues/272)) ([1ae369b](https://github.com/mikesmithgh/kitty-scrollback.nvim/commit/1ae369be4186857bddeeb49561d3dccafc13b801)) ### BREAKING CHANGES * Change the default keymap for quitting kitty-scrollback.nvim from `` to `q`. If you prefer the previous behavior of using `` to exit kitty-scrollback.nvim, this can be reconfigured by adding the following to your kitty-scrollback.nvim setup. ```lua vim.keymap.set({ 'n' }, '', '(KsbCloseOrQuitAll)', {}) ``` For example, if you are using lazy.nvim, it would look something like this ```lua return { { 'mikesmithgh/kitty-scrollback.nvim', lazy = true, cmd = { 'KittyScrollbackGenerateKittens', 'KittyScrollbackCheckHealth' }, event = { 'User KittyScrollbackLaunch' }, config = function() vim.keymap.set({ 'n' }, '', '(KsbCloseOrQuitAll)', {}) -- quit kitty-scrollback.nvim with Esc key -- vim.keymap.set({ 'n' }, 'q', '(KsbCloseOrQuitAll)', {}) -- uncomment if you would like to also quit with the q key require('kitty-scrollback').setup() end, }, } ``` --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddb80ce6..d971edab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,38 @@ +# [6.0.0](https://github.com/mikesmithgh/kitty-scrollback.nvim/compare/v5.0.2...v6.0.0) (2024-11-15) + + +* feat!: exit kitty-scrollback.nvim with q key instead of esc ([#272](https://github.com/mikesmithgh/kitty-scrollback.nvim/issues/272)) ([1ae369b](https://github.com/mikesmithgh/kitty-scrollback.nvim/commit/1ae369be4186857bddeeb49561d3dccafc13b801)) + + +### BREAKING CHANGES + +* Change the default keymap for quitting kitty-scrollback.nvim from `` to `q`. + +If you prefer the previous behavior of using `` to exit kitty-scrollback.nvim, this can be reconfigured by +adding the following to your kitty-scrollback.nvim setup. + +```lua +vim.keymap.set({ 'n' }, '', '(KsbCloseOrQuitAll)', {}) +``` + +For example, if you are using lazy.nvim, it would look something like this + +```lua +return { + { + 'mikesmithgh/kitty-scrollback.nvim', + lazy = true, + cmd = { 'KittyScrollbackGenerateKittens', 'KittyScrollbackCheckHealth' }, + event = { 'User KittyScrollbackLaunch' }, + config = function() + vim.keymap.set({ 'n' }, '', '(KsbCloseOrQuitAll)', {}) -- quit kitty-scrollback.nvim with Esc key + -- vim.keymap.set({ 'n' }, 'q', '(KsbCloseOrQuitAll)', {}) -- uncomment if you would like to also quit with the q key + require('kitty-scrollback').setup() + end, + }, +} +``` + ## [5.0.2](https://github.com/mikesmithgh/kitty-scrollback.nvim/compare/v5.0.1...v5.0.2) (2024-11-14)