You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Kurt Guenther <ku...@serent.com> on 2004/12/14 16:45:00 UTC

bash tab completion & .svn dirs

Does anybody know a way to have bash ignore the '.svn' directories for 
tab completion?

--Kurt


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: bash tab completion & .svn dirs

Posted by Rich Doughty <ri...@opusvl.com>.
On 14 Dec 2004, Kurt Guenther wrote:
> 
> Does anybody know a way to have bash ignore the '.svn' directories for 
> tab completion?

in your .bashrc:
	bind 'set match-hidden-files off'

or in .inputrc
	set match-hidden-files off

will disable filename completion on all files beginning with '.' unless you
explicitly specify it.

To only ignore .svn directories, you might be able to set the $FIGNORE
variable, but i'm not too sure

  - Rich Doughty

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: bash tab completion & .svn dirs

Posted by David Blacka <da...@verisignlabs.com>.
Kurt Guenther wrote:
> 
> Does anybody know a way to have bash ignore the '.svn' directories for 
> tab completion?

   export FIGNORE=.svn

actually, mine looks like:

   export FIGNORE=CVS:\~:.o:.svn

which will exclude both CVS and .svn directories, and files ending in .o 
or '~'.

-- 
David Blacka    <da...@verisignlabs.com>
Sr. Engineer    VeriSign Applied Research

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org