Re: [Fish-users] How to make prog --opt $(cat FILE) in fish

2010-03-30 Thread David Frascone
Looks like CRLF (DOS files) cause it to barf. Here's a simple example, where I use vi to set it to dos (:se fileformat=dos), then back to unix (:se fileformat=unix) codemon...@daves-mbp ~/D/fio-bugreport-20100330_111841 cat file This is a file With multiple lines to test fish will it work?

[Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-03-30 Thread David Frascone
I had to quit using fish, due to constant script incompatibilities. I guess some script authors are too lazy to add hash-bang-bash to the top of their scripts . . . Has anyone had any success making fish their real new home? Oh -- and I also had some issues with the select bug that was posted

Re: [Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-03-30 Thread David Frascone
wrote: On 03/30/10 15:14, David Frascone wrote: I had to quit using fish, due to constant script incompatibilities. I guess some script authors are too lazy to add hash-bang-bash to the top of their scripts . . . what? -- script files don't run unless you start the file with #!/bin/bash

Re: [Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-03-30 Thread David Frascone
before type's output. On Tue, Mar 30, 2010 at 3:35 PM, David Frascone d...@frascone.com wrote: Ok . . .it's been a few months . . let me switch back, so I can provide details if I run into problems. I did love fish when I used it, but I ran into something that I don't remember, so I bailed

Re: [Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-03-30 Thread David Frascone
On Tue, Mar 30, 2010 at 3:55 PM, Isaac Dupree m...@isaac.cedarswampstudios.org wrote: On 03/30/10 15:48, David Frascone wrote: Ideas? The vi command does work, so I don't know why type does not return it. Or what the garbage is in the line before type's output. For myself, I don't use

Re: [Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-03-30 Thread David Frascone
m...@isaac.cedarswampstudios.org wrote: On 03/30/10 16:06, David Frascone wrote: That would work fine for me. But, since I don't know where vi is, because the type command doesn't work . . . use 'which' to find executable files on the PATH (though not to find functions/aliases/builtins

[Fish-users] Setting PATH?

2010-03-30 Thread David Frascone
Ok . . I'm trying to take the plunge, and I'm running into some strangnesses that I can't explain. So, I did a chsh to change my login shell to fish. And, when I first log in, things work really strangely. type, whereis, and a few other scripts do not function properly. BUT -- if I then exec,

Re: [Fish-users] Does anyone use fish as their #1 shell (OS/X)?

2010-04-01 Thread David Frascone
don't have any problems. But fish seems to have issues on BSD and on non-x86 non-32bit architectures On Tue, Mar 30, 2010 at 03:14:56PM -0400, David Frascone wrote: I had to quit using fish, due to constant script incompatibilities. I guess some script authors are too lazy to add hash

[Fish-users] Very cool stuff in functions

2010-04-01 Thread David Frascone
Ok -- I have to say, the behavior of ~/.config/fish/functions just rocks. I have this as my function for ls . . . and it overwrites itself after the first call to a simpler function: # # Sorted ls (by size) # # Set the proper ls based on the OS set OS (uname) switch $OS case Linux

Re: [Fish-users] pasteboard/clipboard in OSX

2010-04-01 Thread David Frascone
2010, at 21:18, David Frascone wrote: I'm not sure this would work as expected -- at least not in the normal terminal windows. It seems like ctrl-k is being processed by the terminal or os itself, not by fish. i.e. kill_add is *not* being called when I press ctrl-k. Strange... it does

Re: [Fish-users] pasteboard/clipboard in OSX

2010-04-01 Thread David Frascone
On Thu, Apr 1, 2010 at 7:40 PM, Michael Lachmann lachm...@eva.mpg.dewrote: That is strange. I'm using the regular terminal, too. On OS/X 10.5.8 As far as I understand, if kill-line is called, then kill_add() has to be called, too. Could it be because fish is my login shell? If what you say

Re: [Fish-users] pasteboard/clipboard in OSX

2010-04-01 Thread David Frascone
:21 PM, David Frascone d...@frascone.com wrote: On Thu, Apr 1, 2010 at 7:40 PM, Michael Lachmann lachm...@eva.mpg.dewrote: That is strange. I'm using the regular terminal, too. On OS/X 10.5.8 As far as I understand, if kill-line is called, then kill_add() has to be called, too. Could

[Fish-users] Fixing title setting in OS X

2010-04-01 Thread David Frascone
I'm not sure why it was limiting terminals with tty in the name -- that seems REALLY restrictive to me. This diff fixes things for OS X, but I'm sure I've broken something else. Any ideas? Maybe an environment variable override? Maybe if FISH_FORCE_TITLE is set? -- diff --git

Re: [Fish-users] seq cannot count backwards

2010-04-01 Thread David Frascone
I can get repeatable failed behavior . . but I can't seem to figure out where it's evaluating that option . . . it's very strange. codemon...@daves-mbp ~/W/fish fish -c 'seq 10 -1 5' fish: invalid option -- 1 codemon...@daves-mbp ~/W/fish fish -c 'seq -- 10 -1 5' open: No such file or directory

Re: [Fish-users] seq cannot count backwards

2010-04-01 Thread David Frascone
/535858658e81e38f5b5556cb5a64275c32e22322 -Dave On Fri, Apr 2, 2010 at 1:18 AM, David Frascone d...@frascone.com wrote: I can get repeatable failed behavior . . but I can't seem to figure out where it's evaluating that option . . . it's very strange. codemon...@daves-mbp ~/W/fish fish -c 'seq 10 -1

Re: [Fish-users] seq cannot count backwards

2010-04-02 Thread David Frascone
, with the arguments (10 -1 5), and it generates the error. I think when fish is invoked for a script, it shouldn't parse the arguments that are meant for the script... Michael On 2 Apr 2010, at 8:09, Isaac Dupree wrote: On 04/02/10 01:31, David Frascone wrote: Found and fixed. There were

Re: [Fish-users] seq cannot count backwards

2010-04-02 Thread David Frascone
, David Frascone wrote: Found and fixed. There were several issues. First, most people who type seq are really running seq on their host. Fish will only use the builtin if it doesn't find it locally. Use 'seq --version' to see what I mean. of course seq is /usr/bin/seq ! (or wherever

Re: [Fish-users] seq cannot count backwards

2010-04-02 Thread David Frascone
(Misaligned address error) ? On 2 Apr 2010, at 13:03, David Frascone wrote: Right. I was in the same boat. Use my patch and the fish installed seq will work for you. -Dave Sent from my iPhone On Apr 2, 2010, at 4:52 AM, Michael Lachmann lachm...@eva.mpg.de wrote: The seq

Re: [Fish-users] seq cannot count backwards

2010-04-02 Thread David Frascone
do a git pull now. -Dave Michael On 2 Apr 2010, at 15:53, David Frascone wrote: What OS are you using? Also, Ben has not pulled my changes yet, so, you can either apply my patches by hand, or pull from my tree: git clone git://github.com/CodeMonk/fish.git -Dave On Fri, Apr 2, 2010

Re: [Fish-users] Fixing title setting in OS X

2010-04-02 Thread David Frascone
On Fri, Apr 2, 2010 at 1:23 PM, Isaac Dupree m...@isaac.cedarswampstudios.org wrote: as you wish... I think conditional compilation for accessing Linux vs. Darwin /dev/ filenames makes a ton of sense. (Or use a C if() and a system-call that tells you which system it is, if you wish, if such

Re: [Fish-users] Fixing title setting in OS X

2010-04-02 Thread David Frascone
On Fri, Apr 2, 2010 at 2:17 PM, Isaac Dupree m...@isaac.cedarswampstudios.org wrote: On 04/02/10 13:34, David Frascone wrote: So, given the ttys difference -- think we should go with an env setting, or a quick fix that works for Darwin? just use the appropriate check for ttys in the code

Re: [Fish-users] Temporary functions?

2010-04-02 Thread David Frascone
On Fri, Apr 2, 2010 at 6:07 PM, Philip Ganchev phil.ganc...@gmail.comwrote: On Thu, Apr 1, 2010 at 10:08 AM, David Frascone d...@frascone.com wrote: I'd like to add a function to my config.fish to do some things over and over [...] But, I don't want this function to exist after

Re: [Fish-users] Uniquely add to path?

2010-04-02 Thread David Frascone
I like the third function . . .. but I'd do a -d $x, since it should be a directory :) -Dave On Fri, Apr 2, 2010 at 7:15 PM, Philip Ganchev phil.ganc...@gmail.comwrote: On Thu, Apr 1, 2010 at 9:46 AM, David Frascone d...@frascone.com wrote: There's a really cool feature in zsh that allows

Re: [Fish-users] seq cannot count backwards

2010-04-03 Thread David Frascone
A -- I just looked, and there is a /usr/bin/gseq, which does the same thing. So, it does exist, it's just named differently :) -Dave On Sat, Apr 3, 2010 at 3:17 PM, Isaac Dupree m...@isaac.cedarswampstudios.org wrote: On 04/03/10 10:10, David Frascone wrote: I'm not sure I understand

Re: [Fish-users] seq cannot count backwards

2010-04-03 Thread David Frascone
Seq was installed by fish, and has the bug unless you've grabbed my tree or applied my patches. -Dave Sent from my iPhone On Apr 3, 2010, at 8:04 PM, Rick Cogley rick.cog...@gmail.com wrote: On my OS X 10.6.3, doing a ‘which' it shows there’s a seq and a gseq. /opt/local/bin/seq

Re: [Fish-users] help in OSX

2010-04-04 Thread David Frascone
That's two seperate problems: 1) not properly quoting the URL so that the hash is interpreted as a comment 2) bad installation confused about the location of the help files. -Dave Sent from my iPhone On Apr 4, 2010, at 5:05 PM, Philip Ganchev phil.ganc...@gmail.com wrote: The problem is

[Fish-users] Globbage?

2010-04-06 Thread David Frascone
Am I the only one who likes filename globbing, ONLY when it works? One of my biggest annoyances with zsh was the default mode of globbing everything. And, zsh almost has me trained to glob properly with fish . . . almost. But, in zsh, there IS a way to turn it off -- is there in fish? For

[Fish-users] Fixed a little crash

2010-04-08 Thread David Frascone
fish set -x TERM # Kaboom -- constant crashes This patch fixes: codemon...@daves-mbp ~/W/fish git diff diff --git a/src/reader.c b/src/reader.c index d0da730..522b702 100644 --- a/src/reader.c +++ b/src/reader.c @@ -624,7 +624,7 @@ void reader_write_title() don't. Since we can't see

[Fish-users] How to contribute patches?

2010-04-08 Thread David Frascone
I've been e-mailing them here -- is that the preferred method? I'm not a darcs-head, so I don't know if I should be doing something different darcs wise :) -Dave -- Download Intel#174; Parallel Studio Eval Try the new

[Fish-users] This probably isn't a fish problem . . but . .

2010-04-17 Thread David Frascone
I have a path add function that displays a warning if it tried to add a path that does not exist. But, that warning causes rsync to fail, when doing rsync over ssh, because it can't parse the warning. Is there any simple way for me to tell, in my config.fish, that it is a non-interactive

Re: [Fish-users] Globbage?

2010-06-09 Thread David Frascone
On Sat, Jun 5, 2010 at 1:51 PM, Beni Cherniavsky-Paskin c...@users.sf.netwrote: a slight problem with this is that if the user expects a match, but the match fails because of a typo, then it will be quoted, but since the user didn't want quotes he or she has to go back to remove the quote

Re: [Fish-users] fishshell.org expired?

2010-09-23 Thread David Frascone
, and it looks like a caching thing. But, the web page is fine. -Dave P.S. I have no idea if the domain is going bye bye, though. On Thu, Sep 23, 2010 at 9:40 AM, Christopher Nilsson christop...@otherchirps.net wrote: On 23 September 2010 23:28, David Frascone d...@frascone.com wrote: Since it's

Re: [Fish-users] fishshell.org expired?

2010-09-23 Thread David Frascone
Oops -- my bad :) On Thu, Sep 23, 2010 at 10:14 AM, Jan Kanis j...@jankanis.nl wrote: Ah, I can connect now. There's a typo in Davids mail: 174.133.147.138 - 174.133.174.138 Jan -- Nokia and ATT present the 2010

Re: [Fish-users] wiki access (was: source code repos)

2010-10-13 Thread David Frascone
I'd be happy to host the domain with my hosting account. Let me know :) -Dave On Wed, Oct 13, 2010 at 12:58 AM, Martin Bähr mba...@email.archlab.tuwien.ac.at wrote: On Fri, Oct 08, 2010 at 04:12:28PM +0200, Jan Kanis wrote: As far as I'm aware the original owner of fish (Axel

[Fish-users] Anyone building on OS/x?

2010-11-03 Thread David Frascone
I've been building from Ben Hoskings repo over on github, but, I wanted to grab the current stuff, so I went over and cloned from gitorious. That repo doesn't seem to build for me -- configure can't seem to find iconv. Ideas? checking for library containing gettext... (cached) -lintl checking

Re: [Fish-users] Anyone building on OS/x?

2010-11-04 Thread David Frascone
will know. Come to think of it though, I think I did trip over some iconv errors like this, until I installed ncurses + doxygen. One of those must have pulled down the libc6-dev dependency for me. Have you got those installed as well? Cheers, Chris. On 4 November 2010 03:08, David

[Fish-users] Merge Request

2010-11-05 Thread David Frascone
I'm not sure of the right way to do it -- but I requested a merge on gitorious that will incorporate the changes I've made over the last year via github. Let me know if you need more comments / etc. -Dave -- The Next

Re: [Fish-users] Merge Request

2010-11-05 Thread David Frascone
Done -- there's a new merge request that can be line-item-veto'ed :) -Dave On Fri, Nov 5, 2010 at 9:02 AM, David Frascone d...@frascone.com wrote: I'll re-evaluate the larger one, and split it into smaller chunks, if I think the issues are still there. -Dave On Fri, Nov 5, 2010 at 8:54

Re: [Fish-users] Current state of fish in gitorius

2010-11-17 Thread David Frascone
On Wed, Nov 17, 2010 at 6:46 AM, SanskritFritz sanskritfr...@gmail.comwrote: Hi I'm a big fan of fish, and plan to create an Archlinux package from the gitorius head. My question is, is the current head of the gitorius repo considered stable enough for everyday use? Thought I ask before I

Re: [Fish-users] which not working

2010-12-15 Thread David Frascone
Why do you have to type /usr/bin/which? Is /usr/bin not in your path? If not, then that would describe your behavior. It works fine for me -- but -- /usr/bin IS in my path. -Dave On Tue, Dec 14, 2010 at 7:57 PM, i...@whywouldwe.com i...@whywouldwe.comwrote: which isn't working for me in

Re: [Fish-users] OSX terminal set tab title

2011-01-12 Thread David Frascone
the title of my terminal tab, not output to stdout. I think the problem is that fish doesn't interpret the -e option the same way bash does. Thanks On 12/01/2011 21:50, David Frascone wrote: From http://fishshell.com/user_doc/index.html function fish_title echo foo end

Re: [Fish-users] source code repos

2011-01-17 Thread David Frascone
On Mon, Jan 17, 2011 at 12:08 PM, Laird Shaw nos...@creativeandcritical.net wrote: On 18/01/11 03:26, Jan Kanis wrote: And how many messages does the list receive for moderation? I'd guesstimate at between 10 and 20 per day, over 99% of which are spam. Oops -- guess I should have been

[Fish-users] Strange problem with scp

2011-01-26 Thread David Frascone
I remember having issues like this a long time ago, but I thought I had fixed them. Sadly, I forgot what the fix was. Suddenly, scp and rsync have stopped working for me: dfrascone@daves-mbp ~/Downloads scp com.backup42.desktop.jar codemon...@somehost.net: TERM environment variable not set.

[Fish-users] Stupid PID question

2011-02-23 Thread David Frascone
My office just started doing DMZ nonsense, so I have to bounce through an intermediary host to grab a file, sort of like this: ssh -f -N -q -L :dmz_machine_ip:22 user@intermediary_machine_ip scp -P transformers.avi user@localhost:. So, my question is: How can I grab the PID of that

Re: [Fish-users] Stupid PID question

2011-02-25 Thread David Frascone
. i.e.: ProxyCommand ssh gateway_machine nc -w 1 %h 22 Thanks Steve On Thu, Feb 24, 2011 at 6:33 PM, David Frascone d...@frascone.com wrote: On Thu, Feb 24, 2011 at 10:40 AM, Jan Kanis j...@jankanis.nl wrote: On Thu, Feb 24, 2011 at 05:41, Martin Bähr mba

Re: [Fish-users] sudo vs fish - have to re-enter password

2011-03-07 Thread David Frascone
Same here -- works for me. And, iirc, it has always worked correctly for me. :) Try the current version(s). -Dave On Mon, Mar 7, 2011 at 9:25 AM, Myrddin Emrys myrd...@gmail.com wrote: I have to say that this has not been my experience. I am not using the latest fish however; I'm using the

Re: [Fish-users] moving forward, what needs to be done (was: Axel (Was: Fish Shell adoption)

2011-07-08 Thread David Frascone
On Fri, Jul 8, 2011 at 7:43 AM, Patrick Mc(avery patr...@spellingbeewinnars.org wrote: 4)There is some development being done on github but the site does not currently point there Please correct false statements... I believe the current repositories are on gitorious. -Dave

Re: [Fish-users] moving forward, what needs to be done

2011-07-09 Thread David Frascone
I think we should push a release. And, possibly, bump the version to a milestone of some kind to indicate the new ownership There have been several minor nits fixed. I need to document and/or fix a few more that I've noticed, where fish gets confused and spews text at me instead of completing

Re: [Fish-users] moving forward, what needs to be done (was: Axel (Was: Fish Shell adoption)

2011-07-11 Thread David Frascone
I'd be happy to add it to my hosting account. Costs me almost nothing (like $.82/month, for new shared domains) -Dave On Mon, Jul 11, 2011 at 12:56 AM, Terin Stock terinjo...@gmail.com wrote: I paid anynomously last year, which is why it hasn't gone to squatters yet. Gandi also allows

[Fish-users] Strange behavior, maybe?

2011-07-11 Thread David Frascone
So, I have several related functions that I've been storing in ~/.config/fish/functions: CreateCase.fish ArchiveCase.fish HostifyCase.fish Which contain functions CreateCase, ArchiveCase, and HostifyCase, respectively. And, I thought it would be much simpler to combine all three functions into

Re: [Fish-users] Strange behavior, maybe?

2011-07-12 Thread David Frascone
Nothing on this? Guess I can start browsing the source . . . On Mon, Jul 11, 2011 at 11:29 AM, David Frascone d...@frascone.com wrote: So, I have several related functions that I've been storing in ~/.config/fish/functions: CreateCase.fish ArchiveCase.fish HostifyCase.fish Which

Re: [Fish-users] disown command in fish

2011-07-26 Thread David Frascone
Disown seems like an implementation of nohup. Try just using the nohup command: nohup firefox (Then exit the shell) -Dave On Tue, Jul 26, 2011 at 1:04 AM, Philipp Middendorf pmid...@gmx.net wrote: I don't know what that is supposed to do, but on my machine, it opens the program (in the

Re: [Fish-users] fishshell.org

2011-10-20 Thread David Frascone
I vote squatters! On Thu, Oct 20, 2011 at 1:26 AM, SanskritFritz sanskritfr...@gmail.comwrote: On Thu, Oct 20, 2011 at 9:02 AM, Martin Bähr mba...@email.archlab.tuwien.ac.at wrote: of course the domain is of no use unless someone can fix the dns, but do we want to let it expire and risk

Re: [Fish-users] errors when doing cd -

2012-02-03 Thread David Frascone
I fixed this bug a while back. Be sure and pull from one of the repos. Seq was broken on mac. -Dave On Fri, Feb 3, 2012 at 7:11 AM, Peter Flood i...@whywouldwe.com wrote: $ seq 0 1 0 On 03/02/2012 19:02, Jan Kanis wrote: I can't reproduce this on linux. The 'prevd' function gets

Re: [Fish-users] errors when doing cd -

2012-02-03 Thread David Frascone
OS X, do you know which changeset you're using? Thx Peter On 03/02/2012 22:12, David Frascone wrote: I fixed this bug a while back. Be sure and pull from one of the repos. Seq was broken on mac. -Dave On Fri, Feb 3, 2012 at 7:11 AM, Peter Flood i...@whywouldwe.com wrote: $ seq 0

Re: [Fish-users] fish on raspberry pi

2012-02-06 Thread David Frascone
If fish works on other big endian platforms, then it should work find on ARM. Has anyone tried fish on PPC, etc? -Dave On Sun, Feb 5, 2012 at 9:12 AM, Peter Flood i...@whywouldwe.com wrote: When I get my hands on a Raspberry Pi I will, of course, want to install fish in an Ubuntu

Re: [Fish-users] .* expansion

2012-05-08 Thread David Frascone
That looks good. I usually just do .[a-zA-Z]* :) On Fri, May 4, 2012 at 2:41 AM, Maxim Gonchar gma...@gmail.com wrote: Hi fishers, I've noticed that it is very uncomfortable to use wild cards to work with 'hidden' files and folders, because when expanded it always produces '.' and '..'

Re: [Fish-users] .* expansion

2012-05-09 Thread David Frascone
Ahhh .. . didn't realize that. I just assumed it worked. :( -Dave On Wed, May 9, 2012 at 6:17 AM, Maxim Gonchar gma...@gmail.com wrote: Dave, do you want to say that your fish can expand character classes? Like [a-zA-Z]? Mine can not (: On Tue, 08 May 2012 22:07:56 +0400, David Frascone

Re: [Fish-users] Announcing Open Beta for our fancy new fish fork

2012-05-30 Thread David Frascone
Seems VERY VERY fast. Command line completion is very clean (so far), and simply screams. Testing now on linux -- will test on OS X soon. -Dave On Wed, May 30, 2012 at 7:01 AM, Patrick patr...@spellingbeewinnars.orgwrote: Hi Again So I have it installed and I am giving it a go. I like it

Re: [Fish-users] Announcing Open Beta for our fancy new fish fork

2012-05-30 Thread David Frascone
The autosuggestions take a bit to get used to . . . they're kind of distracting. BUT: They do guess correctly a lot -- which is nice. The only thing I don't like so far is when it guesses almost right, the tab acts funny. For example: If you are in a directory with five entries: 1234 1235

Re: [Fish-users] Announcing Open Beta for our fancy new fish fork

2012-05-30 Thread David Frascone
I built from source and did ./configure --prefix=/usr to avoid conflict with my old fish in /usr/local. On Wed, May 30, 2012 at 9:14 AM, Peter Flood i...@whywouldwe.com wrote: For anyone who hasn't yet, run `fish_config` on a system with a web browser. Nice. The osx installer seems to have

Re: [Fish-users] fish_fish

2012-05-30 Thread David Frascone
Yeah, all my functions work fine. I agree .. is broken, but, since I've never used that, it didn't matter to me :) cd .. works just fine. -Dave On Wed, May 30, 2012 at 9:02 AM, Peter Flood i...@whywouldwe.com wrote: I created a .. function in ~/.config/fish/functions (I already have ...,

Re: [Fish-users] default shell?

2012-06-12 Thread David Frascone
I've used it as my default shell for a couple of years now. The only issues I've seen are with globing (PEBKAC), and the old fish had some terminal / history weirdnesses. -Dave On Tue, Jun 12, 2012 at 1:57 AM, SanskritFritz sanskritfr...@gmail.comwrote: On Tue, Jun 12, 2012 at 8:45 AM, Gour

Re: [Fish-users] default shell?

2012-06-12 Thread David Frascone
On Tue, Jun 12, 2012 at 7:23 AM, Gour g...@atmarama.net wrote: On Tue, 12 Jun 2012 07:08:26 -0600 David Frascone d...@frascone.com wrote: I've used it as my default shell for a couple of years now. The only issues I've seen are with globing (PEBKAC), and the old fish had some terminal

Re: [Fish-users] newline in prompt

2012-06-13 Thread David Frascone
When I type funced fish_prompt, and press the up arrow, my fish exits. If I use the left arrow, and scroll a lot, this works. Strangely enough, this does *not* happen if I run a new fish (i.e. $ fish) then do the funced. Maybe login shells can't edit the prompt? -Dave On Wed, Jun 13, 2012 at

Re: [Fish-users] bzr completion (and other vcs?)

2012-06-21 Thread David Frascone
I'd love to see some mercurial toys, like the git and bzr ones I've seen . . . maybe I'll hack something together if I find some time. On Thu, Jun 21, 2012 at 6:16 PM, Dario Bertini berda...@gmail.com wrote: Hi, I recently started to use fishfish... I'm a bzr user (but obviously also an hg and

Re: [Fish-users] Can't figure out how to update my shell

2012-08-01 Thread David Frascone
Just installing on top worked for me. (No un-install, just install again) -Dave On Tue, Jul 31, 2012 at 12:54 PM, Ceasar Bautista cbautista2...@gmail.comwrote: I downloaded my shell (using the Mac installer) just before the patch to the prompt disappearing on multi-line commands (Issue #239)

Re: [Fish-users] Compilation on NetBSD

2012-08-17 Thread David Frascone
Looks good. On Fri, Aug 17, 2012 at 9:56 AM, Moritz Wilhelmy ml+f...@wzff.de wrote: Hello, During my work on the pkgsrc package of fish, I noticed the following problem: NetBSD has it's own curses implementation in which init_tabs evaluates to a macro expansion which is const. I therefore

Re: [Fish-users] Compilation on NetBSD

2012-08-17 Thread David Frascone
Except -- the fish version fixes init_tab . . . and now it will never be fixed. Was that side effect of the former version a requirement and/or optimization? -Dave On Fri, Aug 17, 2012 at 10:17 AM, David Frascone d...@frascone.com wrote: Looks good. On Fri, Aug 17, 2012 at 9:56 AM, Moritz

Re: [Fish-users] Copying and pasting long commands

2012-08-23 Thread David Frascone
And, for those not running osx: codemonkey@monkeytree ~/W/MonkeyTools alias pbcopy 'xsel --clipboard --input' codemonkey@monkeytree ~/W/MonkeyTools alias pbpaste 'xsel --clipboard --output' -Dave On Thu, Aug 23, 2012 at 3:56 AM, Jon Clayden jon.clay...@gmail.com wrote: Fair enough, but then

Re: [Fish-users] Send in your prompts!

2012-08-27 Thread David Frascone
Here's mine -- mostly stock, but adds last command return code: function fish_prompt --description 'Write out the prompt' # Save our status set -l last_status $status set -l last_status_string if [ $last_status -ne 0 ] printf %s(%d)%s (set_color red --bold) $last_status

Re: [Fish-users] Any chance for building/running Fish in Cygwin?

2013-05-22 Thread David Frascone
Oops -- forgot to cc list. On Wed, May 22, 2013 at 2:40 PM, David Frascone d...@frascone.com wrote: I used a bit more #ifdef logic . . . . Patch attached. On Wed, May 22, 2013 at 1:35 PM, Stestagg stest...@gmail.com wrote: Reposting to the list: Hi I've just downloaded cygwin

Re: [Fish-users] Any chance for building/running Fish in Cygwin?

2013-05-22 Thread David Frascone
Make fails the first time -- just run make again. Something to do with basename and the man pages. I tested on a FULL install of cygwin. with EVERYTHING installed, except the stuff that errored out. On Wed, May 22, 2013 at 3:16 PM, Costin Caraivan costincarai...@gmail.comwrote: Hello,

[Fish-users] Anyone seen this?

2013-05-23 Thread David Frascone
Generally happens once, the first time I run a command, like ls. (BTW - this is cygwin) David Frascone@Bearodactyl ~ $ fish Welcome to fish, the friendly interactive shell Type help for instructions on how to use fish David Frascone@Bearodactyl ~ ls fish: Requested redirection to something

[Fish-users] Need to start fishing again

2015-01-26 Thread David Frascone
(not sure if I have enough beer) I've moved some of my stuff from fish back to bash for several reasons. But, the biggest was probably going box to box and having inconsistent setups. However, I've stabilized my personal work flow a bit, and I want to start using (and committing) to it again.

Re: [Fish-users] Need to start fishing again

2015-01-26 Thread David Frascone
How hard was it to build? Do you have destructions? I figure I might as well be using source for when/if I find issues :) -Dave On Mon, Jan 26, 2015 at 10:12 AM, Andrew Schulman and...@utexas.edu wrote: (not sure if I have enough beer) I've moved some of my stuff from fish back to bash

Re: [Fish-users] disown (bash,zsh) equivalent in fish

2015-07-14 Thread David Frascone
Cool trick! On Tue, Jul 14, 2015 at 9:40 AM, Johnny Bravo n...@ifixit.no wrote: Greg Reagle wrote: On Mon, Jul 13, 2015, at 03:55 PM, Johnny Bravo wrote: As subject says, I want a equivalent to disown (detaches a process from its parent) as found i bash and zsh in fish. Is there such a

Re: [Fish-users] Fish Themes

2016-09-02 Thread David Frascone
I'm pretty happy with mine, with mercurial/git branch integration, and error return values, plus a pretty fish! [image: Inline image 1] On Fri, Sep 2, 2016 at 8:42 AM, charlie wrote: > I saw a friends z-shell theme the other day and thought it was really > slick,

Re: [Fish-users] Fish Themes

2016-09-02 Thread David Frascone
Sure . . . let me try to un-wind it from the rest of my crap and toss it up on github. On Fri, Sep 2, 2016 at 8:59 AM, charlie <charlie.f...@gmail.com> wrote: > Can you share it please :P ? > > On Fri, Sep 2, 2016 at 9:50 AM, David Frascone <d...@frascone.com> wrote: