Re: [Fish-users] Create a group of aliases

2014-01-28 Thread Andrew Stevenson
On Sat, 25 Jan 2014, mgdelacr...@gmail.com wrote: set gvmPrograms gaiden gradle grails griffon groovy groovyserv lazybones springboot vertx for program in $gvmPrograms     function $program     gw $program $argv     end end If you haven't already got a reply then I will suggest you proba

Re: [Fish-users] Environment variables

2013-12-13 Thread Andrew Stevenson
On 13 Dec 2013, at 15:33, Jürgen Haas wrote: > set -g PHP_IDE_CONFIG "serverName=localhost" > set -g XDEBUG_CONFIG "idekey=something” I think its set -x to set an environment variable (though I can’t check just now but check the docs if its not right). I don’t think its -g. > and when I start

[Fish-users] Debugging in Xcode

2013-11-30 Thread Andrew Stevenson
Hello, Are there any instructions about debugging fish with Xcode? There is already a project file so I’m assuming there is a way to make this easy. It builds OK but running the resulting binary I get: Standard input: fishd ^ /tmp/fishd.log.andrew ^ fish: Could not connect to u

Re: [Fish-users] difference between bash and fish when installing emacs with homebrew

2013-11-30 Thread Andrew Stevenson
I don't see anything obviously wrong but there seems to be 2 likely possibilities. Either the code somehow assumes the users shell is Bourne like - a terrible assumption that presumably breaks under tcsh et al as well - or it is relying on something in your environment that happens to be differe

[Fish-users] Word expansion modifiers

2013-11-23 Thread Andrew Stevenson
Hi, I am wondering what the fish equivalent of tcsh's (and other shells) word expansion modifiers? By word expansion modifiers I am talking about the ability to do things like: set version 5.9 set major $version:r set minor $version:e set roman $version:s/1/I/:s/2/II/:s/3/III/:s/4/IV/ for exam