Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
21 lines
581 B
Fish
21 lines
581 B
Fish
function update_cwd_osc --on-variable PWD --description 'Notify terminals when $PWD changes'
|
|
if status --is-command-substitution || set -q INSIDE_EMACS
|
|
return
|
|
end
|
|
printf \e\]7\;file://%s%s\e\\ $hostname (string escape --style=url $PWD)
|
|
end
|
|
|
|
update_cwd_osc # Run once since we might have inherited PWD from a parent shell
|
|
|
|
function mark_prompt_start --on-event fish_prompt
|
|
echo -en "\e]133;A\e\\"
|
|
end
|
|
|
|
function foot_cmd_start --on-event fish_preexec
|
|
echo -en "\e]133;C\e\\"
|
|
end
|
|
|
|
function foot_cmd_end --on-event fish_postexec
|
|
echo -en "\e]133;D\e\\"
|
|
end
|