Remove workarounds for Emacs ansi-term

I'm not sure if it's worth supporting a terminal that mishandles unknown OSC
and CSI sequences. Better to fix the terminal.  Note that there are Emacs
terminals available that don't have this problems; for example "vterm".
This commit is contained in:
Johannes Altmanninger 2024-04-03 13:06:17 +02:00
parent af1b599818
commit 9870faa8be
2 changed files with 15 additions and 18 deletions

View File

@ -232,7 +232,7 @@ end" >$__fish_config_dir/config.fish
or test "$TERM_PROGRAM" = iTerm.app
end
function __update_cwd_osc --on-variable PWD --description 'Notify capable terminals when $PWD changes'
if status --is-command-substitution || set -q INSIDE_EMACS
if status --is-command-substitution
return
end
printf \e\]7\;file://%s%s\a $hostname (string escape --style=url $PWD)

View File

@ -1,6 +1,4 @@
function fish_title
# emacs' "term" is basically the only term that can't handle it.
if not set -q INSIDE_EMACS; or string match -vq '*,term:*' -- $INSIDE_EMACS
# If we're connected via ssh, we print the hostname.
set -l ssh
set -q SSH_TTY
@ -18,4 +16,3 @@ function fish_title
echo -- $ssh (string sub -l 20 -- $command) (prompt_pwd -d 1 -D 1)
end
end
end