-
Notifications
You must be signed in to change notification settings - Fork 54
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 shell support #425
fish shell support #425
Conversation
@@ -1,4 +1,6 @@ | |||
#!/bin/bash | |||
# | |||
# THIS FILE IS GENERATED; DO NOT MODIFY |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changes from running hermit init
. Let me know if I should remove
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope this is fine!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is awesome!
Can you also add fish to this table to add Fish support to the integration tests?
@@ -1,4 +1,6 @@ | |||
#!/bin/bash | |||
# | |||
# THIS FILE IS GENERATED; DO NOT MODIFY |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nope this is fine!
Actually this is going to be a bit more work than that, let's just get it in as-is. |
Adds native support for fish shell.
Since fish isn't POSIX compliant, all scripts were translated to fish syntax (mostly by ChatGPT). There's now a new
bin/activate-hermit.fish
script that needs to be added to hermit repos to enable fish support, which hermit will add only if you runhermit init
again.I'm new to fish, so there might be some errors in the scripts. But both activate and deactivate seem to work fine in all the repos I tested in.
Closes #417.