2014-01-20 14:19:41 +08:00
|
|
|
function fish_vi_cursor -d 'Set cursor shape for different vi modes'
|
2023-11-15 01:09:04 +08:00
|
|
|
# if stdin is not a tty, there is effectively no bind mode.
|
|
|
|
if not test -t 0
|
2018-06-02 02:26:54 +08:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2019-05-05 23:31:33 +08:00
|
|
|
# This is hard to test in expect, since the exact sequences depend on the environment.
|
|
|
|
# Instead disable it.
|
|
|
|
if set -q FISH_UNIT_TESTS_RUNNING
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2020-05-15 04:24:52 +08:00
|
|
|
# If this variable is set, skip all checks
|
|
|
|
if not set -q fish_vi_force_cursor
|
2016-12-03 20:25:46 +08:00
|
|
|
|
2020-05-15 04:24:52 +08:00
|
|
|
# Emacs Makes All Cursors Suck
|
|
|
|
if set -q INSIDE_EMACS
|
|
|
|
return
|
|
|
|
end
|
2016-12-03 20:25:46 +08:00
|
|
|
|
2020-05-15 04:24:52 +08:00
|
|
|
# vte-based terms set $TERM = xterm*, but only gained support in 2015.
|
|
|
|
# From https://bugzilla.gnome.org/show_bug.cgi?id=720821, it appears it was version 0.40.0
|
|
|
|
if set -q VTE_VERSION
|
|
|
|
and test "$VTE_VERSION" -lt 4000 2>/dev/null
|
|
|
|
return
|
|
|
|
end
|
2019-04-28 17:59:11 +08:00
|
|
|
|
2020-05-15 04:24:52 +08:00
|
|
|
# Similarly, genuine XTerm can do it since v280.
|
|
|
|
if set -q XTERM_VERSION
|
|
|
|
and not test (string replace -r "XTerm\((\d+)\)" '$1' -- "$XTERM_VERSION") -ge 280 2>/dev/null
|
|
|
|
return
|
|
|
|
end
|
2016-10-27 16:16:57 +08:00
|
|
|
|
2020-05-15 04:24:52 +08:00
|
|
|
# We need one of these terms.
|
|
|
|
# It would be lovely if we could rely on terminfo, but:
|
|
|
|
# - The "Ss" entry isn't a thing in macOS' old and crusty terminfo
|
|
|
|
# - It is set for xterm, and everyone and their dog claims to be xterm
|
|
|
|
#
|
|
|
|
# So we just don't care about $TERM, unless it is one of the few terminals that actually have their own entry.
|
|
|
|
if not set -q KONSOLE_PROFILE_NAME
|
2020-05-20 02:41:47 +08:00
|
|
|
and not test -n "$KONSOLE_VERSION" -a "$KONSOLE_VERSION" -ge 200400 # konsole, but new.
|
2020-05-15 04:24:52 +08:00
|
|
|
and not set -q ITERM_PROFILE
|
|
|
|
and not set -q VTE_VERSION # which version is already checked above
|
2020-05-13 05:10:57 +08:00
|
|
|
and not set -q WT_PROFILE_ID
|
2020-05-15 04:24:52 +08:00
|
|
|
and not set -q XTERM_VERSION
|
2021-11-23 11:55:15 +08:00
|
|
|
and not string match -q Apple_Terminal -- $TERM_PROGRAM
|
2020-05-15 04:24:52 +08:00
|
|
|
and not string match -rq '^st(-.*)$' -- $TERM
|
|
|
|
and not string match -q 'xterm-kitty*' -- $TERM
|
|
|
|
and not string match -q 'rxvt*' -- $TERM
|
|
|
|
and not string match -q 'alacritty*' -- $TERM
|
2021-11-09 03:01:43 +08:00
|
|
|
and not string match -q 'foot*' -- $TERM
|
2022-06-20 23:37:22 +08:00
|
|
|
and not begin
|
|
|
|
set -q TMUX
|
|
|
|
and string match -qr '^screen|^tmux' -- $TERM
|
|
|
|
end
|
2020-05-15 04:24:52 +08:00
|
|
|
return
|
|
|
|
end
|
2019-05-05 19:01:02 +08:00
|
|
|
end
|
|
|
|
|
2016-05-30 22:36:25 +08:00
|
|
|
set -l terminal $argv[1]
|
|
|
|
set -q terminal[1]
|
|
|
|
or set terminal auto
|
2014-01-20 14:19:41 +08:00
|
|
|
|
2023-04-01 02:06:09 +08:00
|
|
|
set -l function __fish_cursor_xterm
|
2014-01-20 14:19:41 +08:00
|
|
|
|
2016-05-30 22:36:25 +08:00
|
|
|
set -q fish_cursor_unknown
|
2022-06-07 20:25:03 +08:00
|
|
|
or set -g fish_cursor_unknown block
|
2014-01-20 20:07:32 +08:00
|
|
|
|
2016-05-30 22:36:25 +08:00
|
|
|
echo "
|
2023-11-15 01:31:35 +08:00
|
|
|
function fish_vi_cursor_handle --on-variable fish_bind_mode --on-event fish_postexec --on-event fish_focus_in --on-event fish_read
|
2016-05-30 22:36:25 +08:00
|
|
|
set -l varname fish_cursor_\$fish_bind_mode
|
|
|
|
if not set -q \$varname
|
|
|
|
set varname fish_cursor_unknown
|
|
|
|
end
|
|
|
|
$function \$\$varname
|
|
|
|
end
|
|
|
|
" | source
|
2016-09-05 07:20:12 +08:00
|
|
|
|
|
|
|
echo "
|
|
|
|
function fish_vi_cursor_handle_preexec --on-event fish_preexec
|
2023-03-14 17:50:20 +08:00
|
|
|
set -l varname fish_cursor_external
|
|
|
|
if not set -q \$varname
|
|
|
|
set varname fish_cursor_default
|
|
|
|
end
|
2016-09-05 07:20:12 +08:00
|
|
|
if not set -q \$varname
|
|
|
|
set varname fish_cursor_unknown
|
|
|
|
end
|
|
|
|
$function \$\$varname
|
|
|
|
end
|
|
|
|
" | source
|
2014-01-20 14:19:41 +08:00
|
|
|
end
|