On 8/24/06, Jason Grossman <[EMAIL PROTECTED]> wrote: > Hi, all. Fantastic program. Thanks!
Hi, glad you like fish. > > Two issues: > > > 1. The latest tarball seems to be missing a dependancy which it needs > for MacOS. Previous versions didn't have this problem (at least > since 1.21.8). configure && make says: > > > ... > > signal.c: In function 'signal_set_handlers': > > signal.c:573: error: 'SIGWINCH' undeclared (first use in this > > function) > > signal.c:573: error: (Each undeclared identifier is reported only once > > signal.c:573: error: for each function it appears in.) > > make: *** [signal.o] Error 1 > > > (This is in MacOS 10.4.7, which is nearly the latest version. As far > as configure is concerned, this is powerpc-apple-darwin8.7.0.) > Try removing '-D_POSIX_C_SOURCE=200112L' from line 53 of the Makefile. I am contemplating the proper way to fix this issue, hopefully the next fish version will compile out of the box again. > > 2. On my rather slow old Macintosh, I'd like to turn off most of the > completions to improve responsiveness. I can see how to do this in > the various config files, but I'm not sure which way of doing it is > the most elegant (e.g., comment out lots of bits of the config files, > and/or delete completion list files). Any advice, please? If you want to disable _all_ command specific completions, I would simply change the $fish_complete_path variable. Try adding 'set fish_complete_path' to your ~/.fish file. If you want to disable the completions for an individual command, create the directory '~/.fish.d/completions'. Now, to disable completions for e.g. the ls command, type 'touch ~/.fish.d/completions/ls.fish'. > > Jason -- Axel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
