-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not compatible with fish shell #2
Comments
Also incompatible with windows openssh server:
|
The integration script is missing fish and Windows command support, inspiration and/or pull request are welcome. |
you can put this function in function update_coreshell_cwd --argument-names cwd --on-event fish_prompt
# Identify the directory using a "file:" scheme URL, including
# the host name to disambiguate local vs. remote paths.
# Percent-encode the pathname.
test -n "$cwd" || set --local cwd (pwd)
set --local url_path (string escape --style=url -- $cwd)
if test -n "$TMUX"
printf '\ePtmux;\e\e]7;%s\a\e\\' "file://""$HOSTNAME""$url_path"
else
printf '\e]7;%s\a' "file://""$HOSTNAME""$url_path"
end
end
if test -n "$TMUX"
set --local fish (which fish)
tmux set-hook -g window-pane-changed 'run-shell "'$fish' -c \'update_coreshell_cwd \'#{pane_current_path}\'\'"'
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: