chore(release): v0.38.0
This commit is contained in:
parent
8031d6bf64
commit
11fe4b3fb7
8 changed files with 13 additions and 0 deletions
|
|
@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.38.0] - 2023-08-28
|
||||||
* fix(tab-bar,compact-bar): tab switching with mouse sometimes not working (https://github.com/zellij-org/zellij/pull/2587)
|
* fix(tab-bar,compact-bar): tab switching with mouse sometimes not working (https://github.com/zellij-org/zellij/pull/2587)
|
||||||
* fix(rendering): occasional glitches while resizing (https://github.com/zellij-org/zellij/pull/2621)
|
* fix(rendering): occasional glitches while resizing (https://github.com/zellij-org/zellij/pull/2621)
|
||||||
* fix(rendering): colored paneframes in mirrored sessions (https://github.com/zellij-org/zellij/pull/2625)
|
* fix(rendering): colored paneframes in mirrored sessions (https://github.com/zellij-org/zellij/pull/2625)
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,9 @@ keybinds {
|
||||||
bind "n" { NewTab; SwitchToMode "Normal"; }
|
bind "n" { NewTab; SwitchToMode "Normal"; }
|
||||||
bind "x" { CloseTab; SwitchToMode "Normal"; }
|
bind "x" { CloseTab; SwitchToMode "Normal"; }
|
||||||
bind "s" { ToggleActiveSyncTab; SwitchToMode "Normal"; }
|
bind "s" { ToggleActiveSyncTab; SwitchToMode "Normal"; }
|
||||||
|
bind "b" { BreakPane; SwitchToMode "Normal"; }
|
||||||
|
bind "]" { BreakPaneRight; SwitchToMode "Normal"; }
|
||||||
|
bind "[" { BreakPaneLeft; SwitchToMode "Normal"; }
|
||||||
bind "1" { GoToTab 1; SwitchToMode "Normal"; }
|
bind "1" { GoToTab 1; SwitchToMode "Normal"; }
|
||||||
bind "2" { GoToTab 2; SwitchToMode "Normal"; }
|
bind "2" { GoToTab 2; SwitchToMode "Normal"; }
|
||||||
bind "3" { GoToTab 3; SwitchToMode "Normal"; }
|
bind "3" { GoToTab 3; SwitchToMode "Normal"; }
|
||||||
|
|
@ -110,6 +113,13 @@ keybinds {
|
||||||
bind "Ctrl o" { SwitchToMode "Normal"; }
|
bind "Ctrl o" { SwitchToMode "Normal"; }
|
||||||
bind "Ctrl s" { SwitchToMode "Scroll"; }
|
bind "Ctrl s" { SwitchToMode "Scroll"; }
|
||||||
bind "d" { Detach; }
|
bind "d" { Detach; }
|
||||||
|
bind "w" {
|
||||||
|
LaunchOrFocusPlugin "zellij:session-manager" {
|
||||||
|
floating true
|
||||||
|
move_to_focused_tab true
|
||||||
|
};
|
||||||
|
SwitchToMode "Normal"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tmux {
|
tmux {
|
||||||
bind "[" { SwitchToMode "Scroll"; }
|
bind "[" { SwitchToMode "Scroll"; }
|
||||||
|
|
@ -178,6 +188,7 @@ plugins {
|
||||||
status-bar { path "status-bar"; }
|
status-bar { path "status-bar"; }
|
||||||
strider { path "strider"; }
|
strider { path "strider"; }
|
||||||
compact-bar { path "compact-bar"; }
|
compact-bar { path "compact-bar"; }
|
||||||
|
session-manager { path "session-manager"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
|
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue