Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-vcm-dev] solution for hidding CVS folders in the packages view (JDT)

Hi,
 
For the time being until the metadata (files and folders) problem is fixed
you can do this:
 
Open the plugin.xml of the plugin org.eclipse.jdt.ui
 
there is a extension point javaElementFilters, now it says:
 
 <filter pattern = ".*" selected = "true">
 </filter>
 <filter pattern = "*$*.class" selected = "false">
 </filter>
 
add there just any pattern you want i use these:
 
 <filter pattern = "*CVS" selected = "true" >
 </filter>
 <filter pattern = ".cvsignore" selected = "true" >
 </filter>
(true can be false if you don't want to enabled them by default)
 
Now they are in the filters box..
 
johan
 

Back to the top