You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> xdg-open ~/mydirectory
(lf opens)
> open ~/mydirectory
(nothing happens and I'm still at a fish prompt)
> open ~/myfile.txt
(nothing happens and I'm still at a fish prompt)
> xdg-open ~/myfile.txt
(hx opens)
Furthermore, I tried copying the basic behavior of open.fish, and the following occurs:
> function opentest
for i in $argv
xdg-open $i
end
end
> opentest somedir/
(lf is opened correctly)
sh -c 'env HOME=$(mktemp -d) XDG_CONFIG_HOME= fish') and experienced the same behaviorExpected behavior
Current behavior
Furthermore, I tried copying the basic behavior of
open.fish, and the following occurs:I see mention of a possible issue in the code comment here : https://github.com/fish-shell/fish-shell/blob/4ab34f2e86f91e90e732302446f1382cc122f07c/share/functions/open.fish#L33C48-L33C48 : could that be relevant?