zellij/zellij-client/src
a-kenji bd8c834d7c
fix(options): handling and overwriting cli opts (#859)
* fix(options): handling ond verwriting cli opts

* previously it was only possible to turn off certain features with a
  command line option, now it is possible to also overwrite this
  behavior in a sane way, for that some breaking changes happened:

  following options got renamed and inverted:
  ```
  disable_mouse_mode -> mouse_mode
  no_pane_frames -> pane_frames
  ```

  following cli options got added:
  ```
  mouse-mode [bool]
  pane-frames [bool]
  simplified-ui [bool]
  ```

  the following cli flag got removed:
  ```
  simplified-ui
  ```

  They can be specified in the following way:
  ```
  zellij options --mouse-mode true
  ```
  in order to enable the mouse mode, even if it is turned off in the
  config file:
  ```
  mouse_mode: false
  ```

  The order is now as follows:
  1. corresponding flag (`disable-mouse-mode`)
  2. corresponding option (`mouse-mode`)
  3. corresponding config option (`mouse_mode`)

* add: options and flags for the same value conflict

* example:
  ```
  zellij options --mouse-mode true --disable-mouse-mode`
  ```
  ```
  $ error: The argument '--mouse-mode <mouse-mode>' cannot be used with '--disable-mouse-mode'
  ```
2021-11-11 17:13:34 +01:00
..
unit fix(input): properly handle bracketed paste (#810) 2021-10-27 19:20:43 +02:00
command_is_executing.rs Big refactor: separate crates for client, server and utilities 2021-05-16 21:41:56 +05:30
input_handler.rs fix(options): handling and overwriting cli opts (#859) 2021-11-11 17:13:34 +01:00
lib.rs fix(input): properly query bracketed paste mode in terminals (#858) 2021-11-10 17:41:19 +01:00
os_input_output.rs hotfix(stdin): poll for mouse hold in the stdin thread (#752) 2021-09-30 10:25:48 +02:00
stdin_handler.rs fix(input): properly query bracketed paste mode in terminals (#858) 2021-11-10 17:41:19 +01:00