mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 11:09:43 +00:00
8 lines
226 B
Bash
8 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
|