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
0answers
11 views
Fish programming: Why are `bind` commands in config.fish not executed?
At end of /usr/share/fish/config.fish, I have the following commands:
bind \e\[1\;5C forward-word
bind \e\[1\;5D backward-word
echo foo
Afterwards I run fish, it prints "foo". I then run bind to ...
0
votes
0answers
9 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
55 views
unix: how to tell if a string matches a regex
Trying out fish shell, so I'm translating my bash functions. The problem is that in one case, I'm using bash regexes to check if a string matches a regex. I can't figure out how to translate this into ...
0
votes
0answers
20 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 ...
1
vote
1answer
27 views
Shell programming: How to use find in fish?
See the following command executed in fish and then bash:
tmp ) touch file1 file2 file3 file4
tmp ) find . -exec echo {} \;
tmp ) bash
^_^ ~/tmp > find . -exec echo {} \;
.
./file3
./file2
...
0
votes
0answers
73 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 ...
-3
votes
0answers
36 views
How to best code fish movement in javascript [closed]
I am trying to code a short program that will replicate random fish movements across cells in an environment. My goal is for the fish to have a certain probability of moving into adjacent cells based ...
0
votes
0answers
9 views
Fish function option/param parser
It seems that there is some work in progress to add support for this in the future:
https://github.com/fish-shell/fish-shell/issues/478
https://github.com/xiaq/fish-shell/tree/opt-parse
But in the ...
0
votes
1answer
26 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 ...
4
votes
1answer
322 views
Suppress or Customize Intro Message in Fish Shell
Is it possible to remove the intro message in fish shell:
Welcome to fish, the friendly interactive shell
Type help for instructions on how to use fish
0
votes
1answer
128 views
How to uninstall fish shell on mac [closed]
Currently fish shell is great environment but it doesn't support source command and it uses . command instead. But when I follow the tutorial ...
2
votes
1answer
162 views
On OS X, how do I change my shell from fishfish back to bash?
I'm kinda preferring bash lately to fishfish, and I'm wondering if I can change it back. I tried this command: chsh -s /bin/bash but closing the terminal and reopening it does not restore it to bash, ...
1
vote
0answers
313 views
How to remove fishfish shell? [closed]
I've installed through the .pkg-file on http://ridiculousfish.com/shell/beta.html
How do I remove ALL the files that fish installed?
0
votes
1answer
348 views
How to configure golang so it can access environment variables in OSX
I am developing on OSX 10.7.4.
I have been experiencing some problems getting the "go get" command to work. In the course of trying to figure out what the problem was, I realized that Go was having ...
2
votes
1answer
351 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
74 views
Listing directory in MATLAB does not work with fish
After I setup fish as the main shell chsh -s /usr/local/bin/fish, I've tried to use ls command in MATLAB, but I got the following error:
??? Error using ==> ls at 36
/usr/local/bin/fish: ...
2
votes
2answers
605 views
How to get virtualenv to work with fish shell
I'm trying to get virtualenv to work with the fish shell. I have virtualenv installed and it works fine with bash and zsh. However, running the following command returns fish: Unknown command ...
0
votes
1answer
223 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 ...
6
votes
2answers
356 views
Zsh color partial tab completions
Is it possible to color the completed part of the partial completion results in Zsh?
Fish does this by default (in Gentoo at least) as shown in the image below:
Full size image: ...
4
votes
1answer
453 views
problems with memo.lines.add
I am trying to make a chat application that will post a message into a memo in the form like this:
USERNAME-> Message
but it is posting to my memo like this:
USERNAME
Here is my code:
const
...
0
votes
0answers
83 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 ...
1
vote
3answers
3k views
Add a relative path to $PATH on fish startup
I want to add ./bin directory (which is relative to current shell directory) to $PATH on fish startup. Note that fish is a shell.
echo $PATH
set PATH ./bin $PATH
echo $PATH
If I place these lines ...
1
vote
2answers
1k views
Creating Gedit syntax files
I have started a new thread rather then reviving this one:
Creating your own syntax highlighting in GEdit?
Hope that was the right thing to do. I have created a syntax file for fish shell and placed ...
1
vote
2answers
140 views
Comparing game-concepts
im making a game (for the iphone) similiar to spore origins - You're a fish and you got to eat smaller fish to get bigger and be able to eat the bigger fish.
My question is: which game-concept should ...
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
326 views
Why is sbt quitting when using fish?
I'm trying to get sbt running using the fish shell.
#!/usr/local/bin/fish
java -Xmx512M -jar (dirname (status -f))/sbt-launch-0.7.4.jar "$argv"
When I call sbt I get the following
[info] ...
2
votes
2answers
264 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 ...
6
votes
4answers
2k views
How to define an alias in fish shell?
I would like to define some aliases in fish. Apparently it should be possible to define them in
~/.config/fish/functions
but they don't get auto loaded when I restart the shell. Any ideas?
p.s. ...
