mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
fish_vi_cursor: add support for alternative foot terminfos
Foot has several terminfos: * foot - the default one * foot-direct - 24-bit color terminfo, similar to xterm-direct (used by e.g. emacs) * foot-extra - alternative to the ncurses provided terminfo, with a couple of extra, non-standard capabilities * foot-extra-direct - 24-bit color version of the above There may also be other distro-custom terminfo names (serving the same purpose as foot-extra*)
This commit is contained in:
parent
c5530421f7
commit
bfedb3608f
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ function fish_vi_cursor -d 'Set cursor shape for different vi modes'
|
|||
and not string match -q 'xterm-kitty*' -- $TERM
|
||||
and not string match -q 'rxvt*' -- $TERM
|
||||
and not string match -q 'alacritty*' -- $TERM
|
||||
and not string match -q 'foot' -- $TERM
|
||||
and not string match -q 'foot*' -- $TERM
|
||||
return
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue