mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-22 12:39:02 +00:00
7 lines
226 B
Bash
7 lines
226 B
Bash
# Foot terminal uses this sequence to identify a command execution
|
|
# that way it's possible to use ctrl+shift+z/x to jump between commands
|
|
if [ "$TERM" = "foot" ]; then
|
|
precmd() {
|
|
print -Pn "\e]133;A\e\\"
|
|
}
|
|
fi
|