mirror of
https://github.com/zellij-org/zellij.git
synced 2024-12-23 17:22:28 +03:00
chore(release): v0.34.0
This commit is contained in:
parent
62eaea1583
commit
66593ec41a
@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.34.0] - 2022-12-09
|
||||||
|
|
||||||
* (BREAKING CHANGE) performance: change plugin data flow to improve render speed (https://github.com/zellij-org/zellij/pull/1934)
|
* (BREAKING CHANGE) performance: change plugin data flow to improve render speed (https://github.com/zellij-org/zellij/pull/1934)
|
||||||
* (BREAKING CHANGE) performance: various render pipeline improvements (https://github.com/zellij-org/zellij/pull/1960)
|
* (BREAKING CHANGE) performance: various render pipeline improvements (https://github.com/zellij-org/zellij/pull/1960)
|
||||||
* feat: support text input from clipboard (https://github.com/zellij-org/zellij/pull/1926)
|
* feat: support text input from clipboard (https://github.com/zellij-org/zellij/pull/1926)
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -9,10 +9,14 @@ keybinds {
|
|||||||
}
|
}
|
||||||
resize {
|
resize {
|
||||||
bind "Ctrl n" { SwitchToMode "Normal"; }
|
bind "Ctrl n" { SwitchToMode "Normal"; }
|
||||||
bind "h" "Left" { Resize "Left"; }
|
bind "h" "Left" { Resize "Increase Left"; }
|
||||||
bind "j" "Down" { Resize "Down"; }
|
bind "j" "Down" { Resize "Increase Down"; }
|
||||||
bind "k" "Up" { Resize "Up"; }
|
bind "k" "Up" { Resize "Increase Up"; }
|
||||||
bind "l" "Right" { Resize "Right"; }
|
bind "l" "Right" { Resize "Increase Right"; }
|
||||||
|
bind "H" { Resize "Decrease Left"; }
|
||||||
|
bind "J" { Resize "Decrease Down"; }
|
||||||
|
bind "K" { Resize "Decrease Up"; }
|
||||||
|
bind "L" { Resize "Decrease Right"; }
|
||||||
bind "=" "+" { Resize "Increase"; }
|
bind "=" "+" { Resize "Increase"; }
|
||||||
bind "-" { Resize "Decrease"; }
|
bind "-" { Resize "Decrease"; }
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user