chore(release): v0.19.0
This commit is contained in:
parent
e5b0e28a41
commit
aa53a03726
5 changed files with 91 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.19.0] - 2021-10-20
|
||||||
* Fix: Prevent text overwrite when scrolled up (https://github.com/zellij-org/zellij/pull/655)
|
* Fix: Prevent text overwrite when scrolled up (https://github.com/zellij-org/zellij/pull/655)
|
||||||
* Add: Treat empty config files as empty yaml documents (https://github.com/zellij-org/zellij/pull/720)
|
* Add: Treat empty config files as empty yaml documents (https://github.com/zellij-org/zellij/pull/720)
|
||||||
* Fix: Commands that don't interact with the config file don't throw errors on malformed config files (https://github.com/zellij-org/zellij/pull/765)
|
* Fix: Commands that don't interact with the config file don't throw errors on malformed config files (https://github.com/zellij-org/zellij/pull/765)
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,4 +1,10 @@
|
||||||
---
|
---
|
||||||
|
# Configuration for zellij.
|
||||||
|
|
||||||
|
# In order to troubleshoot your configuration try using the following command:
|
||||||
|
# `zellij setup --check`
|
||||||
|
# It should show current config locations and features that are enabled.
|
||||||
|
|
||||||
keybinds:
|
keybinds:
|
||||||
unbind: true
|
unbind: true
|
||||||
normal:
|
normal:
|
||||||
|
|
@ -14,6 +20,8 @@ keybinds:
|
||||||
key: [Ctrl: 's',]
|
key: [Ctrl: 's',]
|
||||||
- action: [SwitchToMode: Session,]
|
- action: [SwitchToMode: Session,]
|
||||||
key: [Ctrl: 'o',]
|
key: [Ctrl: 'o',]
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [Quit,]
|
- action: [Quit,]
|
||||||
key: [Ctrl: 'q',]
|
key: [Ctrl: 'q',]
|
||||||
- action: [NewPane: ]
|
- action: [NewPane: ]
|
||||||
|
|
@ -46,6 +54,8 @@ keybinds:
|
||||||
key: [Ctrl: 's']
|
key: [Ctrl: 's']
|
||||||
- action: [SwitchToMode: Session,]
|
- action: [SwitchToMode: Session,]
|
||||||
key: [Ctrl: 'o',]
|
key: [Ctrl: 'o',]
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [Quit]
|
- action: [Quit]
|
||||||
key: [Ctrl: 'q']
|
key: [Ctrl: 'q']
|
||||||
- action: [Resize: Left,]
|
- action: [Resize: Left,]
|
||||||
|
|
@ -83,6 +93,8 @@ keybinds:
|
||||||
key: [Ctrl: 's']
|
key: [Ctrl: 's']
|
||||||
- action: [SwitchToMode: Session,]
|
- action: [SwitchToMode: Session,]
|
||||||
key: [Ctrl: 'o',]
|
key: [Ctrl: 'o',]
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [Quit,]
|
- action: [Quit,]
|
||||||
key: [Ctrl: 'q',]
|
key: [Ctrl: 'q',]
|
||||||
- action: [MoveFocus: Left,]
|
- action: [MoveFocus: Left,]
|
||||||
|
|
@ -111,6 +123,45 @@ keybinds:
|
||||||
key: [ Alt: '[',]
|
key: [ Alt: '[',]
|
||||||
- action: [FocusNextPane,]
|
- action: [FocusNextPane,]
|
||||||
key: [ Alt: ']',]
|
key: [ Alt: ']',]
|
||||||
|
move:
|
||||||
|
- action: [SwitchToMode: Locked,]
|
||||||
|
key: [Ctrl: 'g']
|
||||||
|
- action: [SwitchToMode: Pane,]
|
||||||
|
key: [Ctrl: 'p',]
|
||||||
|
- action: [SwitchToMode: Tab,]
|
||||||
|
key: [Ctrl: 't',]
|
||||||
|
- action: [SwitchToMode: Resize,]
|
||||||
|
key: [Ctrl: 'n',]
|
||||||
|
- action: [SwitchToMode: Normal,]
|
||||||
|
key: [Ctrl: 'h', Char: "\n", Char: ' ',]
|
||||||
|
- action: [SwitchToMode: Scroll,]
|
||||||
|
key: [Ctrl: 's']
|
||||||
|
- action: [SwitchToMode: Session,]
|
||||||
|
key: [Ctrl: 'o',]
|
||||||
|
- action: [Quit]
|
||||||
|
key: [Ctrl: 'q']
|
||||||
|
- action: [MovePane: Left,]
|
||||||
|
key: [Char: 'h', Left,]
|
||||||
|
- action: [MovePane: Down,]
|
||||||
|
key: [Char: 'j', Down,]
|
||||||
|
- action: [MovePane: Up,]
|
||||||
|
key: [Char: 'k', Up, ]
|
||||||
|
- action: [MovePane: Right,]
|
||||||
|
key: [Char: 'l', Right,]
|
||||||
|
- action: [NewPane: ,]
|
||||||
|
key: [ Alt: 'n',]
|
||||||
|
- action: [MoveFocus: Left,]
|
||||||
|
key: [ Alt: 'h',]
|
||||||
|
- action: [MoveFocus: Right,]
|
||||||
|
key: [ Alt: 'l',]
|
||||||
|
- action: [MoveFocus: Down,]
|
||||||
|
key: [ Alt: 'j',]
|
||||||
|
- action: [MoveFocus: Up,]
|
||||||
|
key: [ Alt: 'k',]
|
||||||
|
- action: [FocusPreviousPane,]
|
||||||
|
key: [ Alt: '[',]
|
||||||
|
- action: [FocusNextPane,]
|
||||||
|
key: [ Alt: ']',]
|
||||||
tab:
|
tab:
|
||||||
- action: [SwitchToMode: Locked,]
|
- action: [SwitchToMode: Locked,]
|
||||||
key: [Ctrl: 'g']
|
key: [Ctrl: 'g']
|
||||||
|
|
@ -122,6 +173,8 @@ keybinds:
|
||||||
key: [Ctrl: 't', Char: "\n", Char: ' ',]
|
key: [Ctrl: 't', Char: "\n", Char: ' ',]
|
||||||
- action: [SwitchToMode: Scroll,]
|
- action: [SwitchToMode: Scroll,]
|
||||||
key: [Ctrl: 's']
|
key: [Ctrl: 's']
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [SwitchToMode: Session,]
|
- action: [SwitchToMode: Session,]
|
||||||
key: [Ctrl: 'o',]
|
key: [Ctrl: 'o',]
|
||||||
- action: [SwitchToMode: RenameTab, TabNameInput: [0],]
|
- action: [SwitchToMode: RenameTab, TabNameInput: [0],]
|
||||||
|
|
@ -180,6 +233,8 @@ keybinds:
|
||||||
key: [Ctrl: 'g',]
|
key: [Ctrl: 'g',]
|
||||||
- action: [SwitchToMode: Pane,]
|
- action: [SwitchToMode: Pane,]
|
||||||
key: [Ctrl: 'p',]
|
key: [Ctrl: 'p',]
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [SwitchToMode: Session,]
|
- action: [SwitchToMode: Session,]
|
||||||
key: [Ctrl: 'o',]
|
key: [Ctrl: 'o',]
|
||||||
- action: [SwitchToMode: Resize,]
|
- action: [SwitchToMode: Resize,]
|
||||||
|
|
@ -238,6 +293,8 @@ keybinds:
|
||||||
key: [Ctrl: 'n',]
|
key: [Ctrl: 'n',]
|
||||||
- action: [SwitchToMode: Pane,]
|
- action: [SwitchToMode: Pane,]
|
||||||
key: [Ctrl: 'p',]
|
key: [Ctrl: 'p',]
|
||||||
|
- action: [SwitchToMode: Move,]
|
||||||
|
key: [Ctrl: 'h',]
|
||||||
- action: [SwitchToMode: Tab,]
|
- action: [SwitchToMode: Tab,]
|
||||||
key: [Ctrl: 't',]
|
key: [Ctrl: 't',]
|
||||||
- action: [SwitchToMode: Normal,]
|
- action: [SwitchToMode: Normal,]
|
||||||
|
|
@ -262,3 +319,35 @@ plugins:
|
||||||
# - detach (Default)
|
# - detach (Default)
|
||||||
# - quit
|
# - quit
|
||||||
#on_force_close: quit
|
#on_force_close: quit
|
||||||
|
|
||||||
|
# Send a request for a simplified ui (without arrow fonts) to plugins
|
||||||
|
# Options:
|
||||||
|
# - true
|
||||||
|
# - false (Default)
|
||||||
|
#simplified_ui: true
|
||||||
|
|
||||||
|
# Choose the path to the default shell that zellij will use for opening new panes
|
||||||
|
# Default: $SHELL
|
||||||
|
# default_shell: fish
|
||||||
|
|
||||||
|
# Toggle between having pane frames around the panes
|
||||||
|
# Options:
|
||||||
|
# - true
|
||||||
|
# - false (default)
|
||||||
|
#no_pane_frames: true
|
||||||
|
|
||||||
|
# Choose the theme that is specified in the themes section.
|
||||||
|
# Default: default
|
||||||
|
#theme: default
|
||||||
|
|
||||||
|
# Choose the mode that zellij uses when starting up.
|
||||||
|
# Default: normal
|
||||||
|
#default_mode: locked
|
||||||
|
|
||||||
|
# Toggle enabling the mouse mode.
|
||||||
|
# On certain configurations, or terminals this could
|
||||||
|
# potentially interfere with copying text.
|
||||||
|
# Options:
|
||||||
|
# - true
|
||||||
|
# - false (default)
|
||||||
|
#disable_mouse_mode: true
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue