Skip to content

Commit

Permalink
chore(release): 6.0.0
Browse files Browse the repository at this point in the history
# [6.0.0](v5.0.2...v6.0.0) (2024-11-15)

* feat!: exit kitty-scrollback.nvim with q key instead of esc ([#272](#272)) ([1ae369b](1ae369b))

### BREAKING CHANGES

* Change the default keymap for quitting kitty-scrollback.nvim from `<Esc>` to `q`.

If you prefer the previous behavior of using `<Esc>` to exit kitty-scrollback.nvim, this can be reconfigured by
adding the following to your kitty-scrollback.nvim setup.

```lua
vim.keymap.set({ 'n' }, '<Esc>', '<Plug>(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' }, '<Esc>', '<Plug>(KsbCloseOrQuitAll)', {}) -- quit kitty-scrollback.nvim with Esc key
      -- vim.keymap.set({ 'n' }, 'q', '<Plug>(KsbCloseOrQuitAll)', {}) -- uncomment if you would like to also quit with the q key
      require('kitty-scrollback').setup()
    end,
  },
}
```
  • Loading branch information
semantic-release-bot committed Nov 15, 2024
1 parent 1ae369b commit d52825b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<Esc>` to `q`.

If you prefer the previous behavior of using `<Esc>` to exit kitty-scrollback.nvim, this can be reconfigured by
adding the following to your kitty-scrollback.nvim setup.

```lua
vim.keymap.set({ 'n' }, '<Esc>', '<Plug>(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' }, '<Esc>', '<Plug>(KsbCloseOrQuitAll)', {}) -- quit kitty-scrollback.nvim with Esc key
-- vim.keymap.set({ 'n' }, 'q', '<Plug>(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)


Expand Down

0 comments on commit d52825b

Please sign in to comment.