-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
fish_add_path is not persistent #9819
Comments
There has not been a change here, fish_add_path defaults to a universal fish_user_paths unless the variable exists. My guess is you have a global fish_user_paths from elsewhere, so: What does Alternatively you have something that resets $PATH. |
hmm, previously:
and now, without
in any case, things do seem to be working as expected, so this issue can be closed! Thank you! |
FYI the asdf issue that caused this has been solved in asdf v0.14.0. |
Adding a path to
$fish_user_paths
usingfish_add_path
with default (no) args no longer permanently adds the path, the path is only added for that session/instance. According to the documentation (and what has worked in the past), all that should be needed isfish_add_path /some/path
for/some/path
to be permanently added to$fish_user_paths
.ex:
open a new tab/terminal instance
do I now need to include
-g
or-U
when adding a path viafish_add_path
?Thank you!
The text was updated successfully, but these errors were encountered: