mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-20 06:13:47 +08:00
18 lines
291 B
Fish
18 lines
291 B
Fish
|
#!/usr/bin/fish
|
||
|
# Remove the sorts of escape sequences interactive fish prints.
|
||
|
|
||
|
# First the enable sequences
|
||
|
set -l escapes "\e\[\?2004h"\
|
||
|
"\e\[>4;1m"\
|
||
|
"\e\[>5u"\
|
||
|
"\e="\
|
||
|
# or
|
||
|
"|"\
|
||
|
# the disable sequences
|
||
|
"\e\[\?2004l"\
|
||
|
"\e\[>4;0m"\
|
||
|
"\e\[<1u"\
|
||
|
"\e>"
|
||
|
|
||
|
cat | string replace -ra -- $escapes ''
|