Since some of you use Eclipse, I was wondering if any of you found a way to have the Java perspective ignore the CVS directories?
Only thing i found on the eclipse newsgroups (thanks eclipse for not having it public so google can search it!! but anyway...).
======= snip =============================
Create a small plug-in. Let's call it org.xyz.hidecvs, you can call it whatever you want. Define it like this:
<?xml version="1.0" encoding="UTF-8"?> <plugin id="org.xyz.hidecvs" name="Hide CVS" version="1.0" provider-name="Your Company"> <requires> <import plugin="org.eclipse.jdt.ui"/> </requires>
<extension point="org.eclipse.jdt.ui.javaElementFilters">
<filter
selected="true"
pattern="CVS"/>
<filter
selected="true"
pattern="*.CVS"/>
</extension>
</plugin>======= snip =============================
In the meantime I'll just ignore it ;)
danny
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
