Re: [Fish-users] Migrating from 1.X to 2.0

2014-01-07 Thread Mike Miller
On 01/06/2014 11:42 PM, David Adam wrote: >> +++ b/.config/fish/functions/fps.fish >> @@ -1,3 +1,3 @@ >>function fps >> -ps -ef | grep -v grep | grip $argv; >> +ps -ef | /bin/grep -v grep | /bin/grep -i $argv; >>end > > As long as I run binaries in my path, this still seems to work

Re: [Fish-users] Migrating from 1.X to 2.0

2014-01-06 Thread David Adam
On Sun, 5 Jan 2014, Mike Miller wrote: > Hi, > > I've recently migrated to 2.0. Below are two issues I'm having. > > First is that many aliases (functions) aren't working anymore because they > now > need full paths to binaries. Is this by design? Other shells (including > bash > and fish

Re: [Fish-users] Migrating from 1.X to 2.0

2014-01-05 Thread SanskritFritz
On Sun, Jan 5, 2014 at 8:39 PM, Mike Miller wrote: > First is that many aliases (functions) aren't working anymore because they > now > need full paths to binaries. Is this by design? Yes. This has been changed from fish 1.x. > Other shells (including bash > and fish 1.X) don't work like thi

Re: [Fish-users] Migrating from 1.X to 2.0

2014-01-05 Thread Mike Miller
Hi, I've recently migrated to 2.0. Below are two issues I'm having. First is that many aliases (functions) aren't working anymore because they now need full paths to binaries. Is this by design? Other shells (including bash and fish 1.X) don't work like this, they can use aliases of aliases,