vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / programs / foot / config.fish
blobc7d45211327fcc5d070d0f93643f7bfbbdcf7710
1 function update_cwd_osc --on-variable PWD --description 'Notify terminals when $PWD changes'
2     if status --is-command-substitution || set -q INSIDE_EMACS
3         return
4     end
5     printf \e\]7\;file://%s%s\e\\ $hostname (string escape --style=url $PWD)
6 end
8 update_cwd_osc # Run once since we might have inherited PWD from a parent shell
10 function mark_prompt_start --on-event fish_prompt
11     echo -en "\e]133;A\e\\"
12 end
14 function foot_cmd_start --on-event fish_preexec
15   echo -en "\e]133;C\e\\"
16 end
18 function foot_cmd_end --on-event fish_postexec
19   echo -en "\e]133;D\e\\"
20 end