Eddie Cao
Eddie Cao
I also wrote a general wrapper to bring almost any bash utility to fish shell: https://github.com/edc/bass. It works flawlessly with nvm using syntax like `bass source ~/.nvm/nvm.sh \; nvm --version`....
@passcod I only tested it on OS X. Should work on Linux. It probably does not work on Windows.
Sorry about the late response. Could you please add a quick test? Thanks!
Thanks for documenting this. Can we close this then?
Not a straight answer to this question, but you might find [virtualfish](https://virtualfish.readthedocs.io/en/latest/usage.html) a great replacement. I find it even better than the bash equivalent in certain aspects like the `connect`...
This is very interesting. I looked into it, and this seems hard to fix because we intentionally set `$1` etc to mimic running the script: ``` $ cat a.sh echo...
According to the `-c` section of bash [manual](https://www.gnu.org/software/bash/manual/bash.html#Invoking-Bash): > Read and execute commands from the first non-option argument command_string, then exit. If there are arguments after the command_string, the first...
Unfortunately, this is a side effect of Bass recently moving from using a temp file to using FIFO pipe for reading all environment variables. On MacOS, the pipe buffer is...
I don't have plan to implement that in the short to medium term, especially because Bass does not really parse flags properly. But I definitely welcome patches.
I merged #83. Thanks for the fix!