docs(changelog): overwriting options on cli

This commit is contained in:
a-kenji 2021-11-11 17:17:49 +01:00
parent bd8c834d7c
commit 59ca0babaf

View file

@ -5,6 +5,35 @@ 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/)
## [Unreleased]
* Fix: handling and overwriting options through the cli (https://github.com/zellij-org/zellij/pull/859)
THIS IS A BREAKING CHANGE:
Previously it was only possible to turn off certain features through the cli,
now it also is possible to overwrite this behavior - for that the following changed:
- renamed and inverted:
```
disable_mouse_mode -> mouse_mode
no_pane_frames -> pane_frames
```
- cli options added:
```
mouse-mode [bool]
pane-frames [bool]
simplified-ui [bool]
```
- cli flag removed:
```
simplified-ui
```
Now the cli options can optionally be toggled on, even if the config
turns it off, example:
```
zellij options --mouse-mode true
```
## [0.20.1] - 2021-11-10
* Add: initial session name to layout template (https://github.com/zellij-org/zellij/pull/789)