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
Issue #5756 is not fixed when DISPLAY is not set, because help.fish contains:
else if type -q xdg-open; and set -q -x DISPLAY
set fish_browser xdg-open
end
In this case /bin/open (the symlink to /bin/openvt on Debian stretch) is used, which results in the unhelpful error message "Couldn't get a file descriptor referring to the console".
Workaround: set BROWSER xdg-open
(or maybe use dpkg-divert to hide the open command, but I haven't tested that)
xdg-open works fine even without a DISPLAY variable, in my case it opens the help in "links".
Debian buster does no longer have /bin/open, so the error does not occur there.
The text was updated successfully, but these errors were encountered:
Even if $DISPLAY is unset, xdg-open can be useful, and on systems that
have xdg-open, "open" is most likely some god awful outdated thing
called "openvt" elsewhere.
Fixes#6739
[ci skip]
fish 3.1.0 on Debian stretch.
Issue #5756 is not fixed when DISPLAY is not set, because help.fish contains:
In this case /bin/open (the symlink to /bin/openvt on Debian stretch) is used, which results in the unhelpful error message "Couldn't get a file descriptor referring to the console".
Workaround:
set BROWSER xdg-open
(or maybe use dpkg-divert to hide the open command, but I haven't tested that)
xdg-open works fine even without a DISPLAY variable, in my case it opens the help in "links".
Debian buster does no longer have /bin/open, so the error does not occur there.
The text was updated successfully, but these errors were encountered: