Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
79980b00
Commit
79980b00
authored
Jan 04, 2021
by
Marc Cornellà
Browse files
fix(vi-mode): hide cursor-change logic behind `VI_MODE_SET_CURSOR` setting
Fixes #9570
parent
94ce46d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/vi-mode/README.md
View file @
79980b00
...
@@ -22,6 +22,13 @@ plugins=(... vi-mode)
...
@@ -22,6 +22,13 @@ plugins=(... vi-mode)
The default value is unset, unless
`vi_mode_prompt_info`
is used, in which case it'll
The default value is unset, unless
`vi_mode_prompt_info`
is used, in which case it'll
automatically be set to
`true`
.
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.
-
`MODE_INDICATOR`
: controls the string displayed when the shell is in normal mode.
See
[
Mode indicator
](
#mode-indicator
)
for details.
See
[
Mode indicator
](
#mode-indicator
)
for details.
...
...
plugins/vi-mode/vi-mode.plugin.zsh
View file @
79980b00
...
@@ -4,13 +4,21 @@
...
@@ -4,13 +4,21 @@
# This is especially true if the prompt does things like checking git status.
# This is especially true if the prompt does things like checking git status.
#
#
# Set to "true" to force the prompt to reset on each mode change.
# Set to "true" to force the prompt to reset on each mode change.
#
Set to "fal
se
"
to
force the prompt *not* to reset on each mode chang
e.
#
Unset or
se
t
to
any other value to do the opposit
e.
#
#
#
(
The default is not to reset, unless we're showing the mode in RPS1
)
.
# The default is not to reset, unless we're showing the mode in RPS1.
typeset
-g
VI_MODE_RESET_PROMPT_ON_MODE_CHANGE
typeset
-g
VI_MODE_RESET_PROMPT_ON_MODE_CHANGE
# Control whether to change the cursor style on mode change.
#
# Set to "true" to change the cursor on each mode change.
# Unset or set to any other value to do the opposite.
typeset
-g
VI_MODE_SET_CURSOR
typeset
-g
VI_KEYMAP
=
main
typeset
-g
VI_KEYMAP
=
main
function
_vi-mode-set-cursor-shape-for-keymap
()
{
function
_vi-mode-set-cursor-shape-for-keymap
()
{
[[
"
$VI_MODE_SET_CURSOR
"
=
true
]]
||
return
# https://vt100.net/docs/vt510-rm/DECSCUSR
# https://vt100.net/docs/vt510-rm/DECSCUSR
local
_shape
=
0
local
_shape
=
0
case
"
${
1
:-${
VI_KEYMAP
:-
main
}}
"
in
case
"
${
1
:-${
VI_KEYMAP
:-
main
}}
"
in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment