Fish is a shell replacement that is available on *nix systems, including Mac OS X and various flavors of Linux. Features that differentiate it from other shells include rich syntax coloring, autocompletion and a high-performance, multithreaded implementation.
0
votes
1answer
28 views
How can I change the startup directory of fish fish shell?
I have bound fish shell to a keyboard shortcut Ctrl + ~ and on startup it opens the directory /usr/lib/lightdm/lightdm. This is quite annoying, because I have no business with lightdm, and I usually ...
0
votes
1answer
234 views
fish runs some functions in .config/fish/config.fish while sourcing
I'm trying the fish shell, and it seems to run some functions I've defined in it's config file when I open a new fish tab. For example, if I have this function:
function foo
cd ~/
end
fish will go ...
0
votes
0answers
83 views
Unable to change shell from bash to fish
I just downloaded and installed fish and I want to use that as my default shell, but for some reason, I am not able to change the default shell from bash to fish.
I have tried the following:
sudo ...
0
votes
0answers
85 views
Fish (shell) 'exec' can't launch anything interactive?
I'm fairly new to the fish shell (and shell scripting in general), but I thought I'd try to do something pretty basic: create a function to conditionally launch ruby or irb. Below is the complete ...