From 59ca0babafdc86b5cb945a8da623f0eca40857ae Mon Sep 17 00:00:00 2001 From: a-kenji Date: Thu, 11 Nov 2021 17:17:49 +0100 Subject: [PATCH] docs(changelog): overwriting options on cli --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 092959bf..e04d9537 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)