summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2021-11-11 17:17:49 +0100
committera-kenji <aks.kenji@protonmail.com>2021-11-11 17:17:49 +0100
commit59ca0babafdc86b5cb945a8da623f0eca40857ae (patch)
tree14176bdbb020a93dcae7e2c798490c9db03bdc2d
parentbd8c834d7cbf08049214e10c3bcd652226d0aa2d (diff)
docs(changelog): overwriting options on cli
-rw-r--r--CHANGELOG.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 092959bf0..e04d9537d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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)