The fish shell is an alternate shell for *nix systems (including Mac OS X). Its claims to fame include enhanced syntax highlighting, completion (with autosuggestions) and high performance.
0
votes
1answer
15 views
Creating autocomplete script with sub commands
I'm trying to create an autocomplete script for use with fish; i'm porting over a bash completion script for the same program.
The program has three top level commands, say foo, bar, and baz and each ...
0
votes
1answer
24 views
How to get user confirmation in fish shell?
I'm trying to gather user input in a fish shellscript, particularly of the following oft-seen form:
This command will delete some files. Proceed (y/N)?
After some searching around, I am still not ...
0
votes
0answers
25 views
Fish interactive shell rebind keys
is there a way to remap the "right" key to another one?
ls /var/www
(/var/www is the guess from fishshell) currently i press right to get the completion, i would prefer to press <ctrl>+f ...
0
votes
1answer
53 views
Fish $EDITOR interaction
How can I launch the currently configured editor from the fish shell? That is the editor associated with $EDITOR.
What would a function look like that takes input from the pipeline and opens it in ...
1
vote
0answers
92 views
Fish Shell function that works with piped input or with argument based input
I'm trying to create a fish shell function that will trim new lines from the input and then copy the input to the clipboard.
How can I write this function so that it will;
Process pipeline input ...
2
votes
1answer
356 views
Test for string equality / string comparison in Fish shell?
This is such a basic question that I'm probably missing something obvious, but I can't figure out how to compare two strings in Fish (like "abc" == "def" in other languages).
So far, I've used a ...
0
votes
1answer
224 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 ...
1
vote
0answers
245 views
Splitting a command over multiple lines in fish-shell
I'm trying to split my list of additional paths on to multiple lines in my fish config:
# Path additions
for i in \
~/Library/Haskell/ghc-7.0.2/lib/gtk2hs-buildtools-0.12.0/bin \
...
2
votes
1answer
328 views
String manipulation in fish shell
i wish to write a fish shell script to automatically initialize JAVA_HOME to current configured java-alternative.
In bash it would look like this (sorry for the ugly double dirname)
...
2
votes
2answers
266 views
Directory of running script in Fish shell
I'm trying to get SBT running using the Fish shell. Below is the equivalent Bash script of what I'm trying to achieve:
java -Xmx512M -jar `dirname $0`/sbt-launch.jar "$@"
I see in the Fish ...
1
vote
1answer
102 views
2
votes
2answers
377 views
cannot understand command substitute in fish shell
In sh:
~$ `echo ls`
bin/ Desktop/
But in fish:
fish: Illegal command name “(echo ls)”
~% (echo ls)
(Note that the error message appears above the command line.)
~% echo (echo ls)
ls
~% eval ...
2
votes
1answer
731 views
Writing A Fish Shell Script With an Optional Argument
I have a fish shell script whose default behavior is to send an email when complete. I'd like to modify it to respond to a nomail argument from the command line. So, for example, running the script ...
1
vote
1answer
110 views
Retrieve the path of the current source file with fish
In a fish shell script, is it possible to obtain the path where the shell script lives? In bash, you can use the BASH_SOURCE variable to do this.
3
votes
1answer
450 views
Compiling fish shell under Cygwin?
Has anyone been able to correctly compile fish under Cygwin? I found this post about modifying configure.ac but I'm getting all sorts of errors. The usual configure, make, make install isn't working ...
2
votes
2answers
761 views
Fish Interactive Shell full path
Is there a way in the Fish Interactive shell for the full path to be displayed. Currently when I navigate to a directory I get the following shell.
millermj@Dodore ~/o/workspace
but I would rather ...
3
votes
6answers
2k views
How can I set fish shell as my default shell on Mac?
I do not like to write fish again and again when I start terminal. I want fish on by default.
