Date: Tue, 9 Jan 2001 10:46:29 -0800 (PST) From: Matt Dillon <dillon@earth.backplane.com> To: Jon Parise <jon@csh.rit.edu> Cc: Archie Cobbs <archie@dellroad.org>, freebsd-current@FreeBSD.ORG Subject: Re: proposed small change to .cshrc Message-ID: <200101091846.f09IkTr49535@earth.backplane.com> References: <200101091745.f09HjEB51427@curve.dellroad.org> <20010109124858.E23533@csh.rit.edu>
next in thread | previous in thread | raw e-mail | index | archive | help
:On Tue, Jan 09, 2001 at 09:45:14AM -0800, Archie Cobbs wrote: : :> + if ( `basename $SHELL` == "tcsh" ) then :> + bindkey ^W backward-delete-word :> + endif : :I generally test for tcsh like this: : : if ( $?tcsh ) then : bindkey ^W backward-delete-word : endif : :-- :Jon Parise (jon@csh.rit.edu) . Rochester Inst. of Technology How about this: if ( $?tcsh ) then bindkey "^W" backward-delete-word bindkey -k up history-search-backward bindkey -k down history-search-forward endif For personal use I also do (for tcsh): set prompt = "%m:%/%# " But the Amiga-style integrated history search is the feature I use the most. Having a multi-thousand line history actually becomes useful. -Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200101091846.f09IkTr49535>