chore(release): v0.40.0

This commit is contained in:
Aram Drevekenin 2024-04-16 09:15:13 +02:00
parent 41efc0db67
commit 45cc452b04
8 changed files with 22 additions and 6 deletions

View file

@ -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.40.0] - 2024-04-16
* feat(plugins): skip plugin cache flag when loading plugins (https://github.com/zellij-org/zellij/pull/2971) * feat(plugins): skip plugin cache flag when loading plugins (https://github.com/zellij-org/zellij/pull/2971)
* fix(grid): recover from various errors (https://github.com/zellij-org/zellij/pull/2972) * fix(grid): recover from various errors (https://github.com/zellij-org/zellij/pull/2972)
* fix(grid): flaky scroll with scroll region (https://github.com/zellij-org/zellij/pull/2935) * fix(grid): flaky scroll with scroll region (https://github.com/zellij-org/zellij/pull/2935)

View file

@ -114,7 +114,7 @@ keybinds {
bind "Ctrl s" { SwitchToMode "Scroll"; } bind "Ctrl s" { SwitchToMode "Scroll"; }
bind "d" { Detach; } bind "d" { Detach; }
bind "w" { bind "w" {
LaunchOrFocusPlugin "zellij:session-manager" { LaunchOrFocusPlugin "session-manager" {
floating true floating true
move_to_focused_tab true move_to_focused_tab true
}; };
@ -148,6 +148,8 @@ keybinds {
bind "Ctrl g" { SwitchToMode "Locked"; } bind "Ctrl g" { SwitchToMode "Locked"; }
bind "Ctrl q" { Quit; } bind "Ctrl q" { Quit; }
bind "Alt n" { NewPane; } bind "Alt n" { NewPane; }
bind "Alt i" { MoveTab "Left"; }
bind "Alt o" { MoveTab "Right"; }
bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; } bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; }
bind "Alt l" "Alt Right" { MoveFocusOrTab "Right"; } bind "Alt l" "Alt Right" { MoveFocusOrTab "Right"; }
bind "Alt j" "Alt Down" { MoveFocus "Down"; } bind "Alt j" "Alt Down" { MoveFocus "Down"; }
@ -184,11 +186,17 @@ keybinds {
} }
plugins { plugins {
tab-bar { path "tab-bar"; } tab-bar location="zellij:tab-bar"
status-bar { path "status-bar"; } status-bar location="zellij:status-bar"
strider { path "strider"; } strider location="zellij:strider"
compact-bar { path "compact-bar"; } compact-bar location="zellij:compact-bar"
session-manager { path "session-manager"; } session-manager location="zellij:session-manager"
welcome-screen location="zellij:session-manager" {
welcome_screen true
}
filepicker location="zellij:strider" {
cwd "/"
}
} }
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP // Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
@ -349,3 +357,9 @@ plugins {
// Default: true // Default: true
// //
// styled_underlines false // styled_underlines false
// Enable or disable writing of session metadata to disk (if disabled, other sessions might not know
// metadata info on this session)
// Default: false
//
// disable_session_metadata true