diff --git a/zsh-vi-mode.zsh b/zsh-vi-mode.zsh index bcad852..885698b 100644 --- a/zsh-vi-mode.zsh +++ b/zsh-vi-mode.zsh @@ -3134,10 +3134,10 @@ function zvm_cursor_style() { case $term in # For xterm and rxvt and their derivatives use the same escape - # sequences as the VT520 terminal. And screen, konsole, alacritty - # and st implement a superset of VT100 and VT100, they support + # sequences as the VT520 terminal. And screen, konsole, alacritty, + # st and foot implement a superset of VT100 and VT100, they support # 256 colors the same way xterm does. - xterm*|rxvt*|screen*|tmux*|konsole*|alacritty*|st*) + xterm*|rxvt*|screen*|tmux*|konsole*|alacritty*|st*|foot*) case $style in $ZVM_CURSOR_BLOCK) style='\e[2 q';; $ZVM_CURSOR_UNDERLINE) style='\e[4 q';;