-
does binary refinery supports fish shell? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi! I use Fish shell with Binary Refinery. It works great for me, but there are a few things to be aware of:
See the following information about special characters used in the Fish shell language: In practice the main one I've run into trouble with (like, once) is that curly braces, which are used by Binary Refinery are sometimes special in fish: |
Beta Was this translation helpful? Give feedback.
Hi! I use Fish shell with Binary Refinery. It works great for me, but there are a few things to be aware of:
The
emit
command in Binary Refinery collides with theemit
command in fish. Therefore, you may wish to install Binary Refinery with a prefix, as detailed in the README, or you may wish to aliasemit
. This issue has more details: #22There are some special characters that Binary Refinery uses, that fish also uses.
See the following information about special characters used in the Fish shell language:
https://fishshell.com/docs/current/language.html#escaping-characters:~:text=The%20special%20characters%20and%20their%20escape%20sequences%20are%3A
In practice the main one I've ru…