1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00

fix(vi-mode): hide cursor-change logic behind VI_MODE_SET_CURSOR setting

Fixes #9570
This commit is contained in:
Marc Cornellà
2021-01-04 16:41:59 +01:00
parent 94ce46d48b
commit 79980b00fb
2 changed files with 17 additions and 2 deletions

View File

@@ -22,6 +22,13 @@ plugins=(... vi-mode)
The default value is unset, unless `vi_mode_prompt_info` is used, in which case it'll
automatically be set to `true`.
- `VI_MODE_SET_CURSOR`: controls whether the cursor style is changed when switching
to a different input mode. Set it to `true` to enable it (default: unset):
```zsh
VI_MODE_SET_CURSOR=true
```
- `MODE_INDICATOR`: controls the string displayed when the shell is in normal mode.
See [Mode indicator](#mode-indicator) for details.