In Eclipse 3.5 (and with Aptana plugins), how do I get a view that I can use to display my project, including dot files?

I managed to get the browser view of various projects to show point files such as .htaccess, but if I ever close the project and close it again, dot files will no longer appear in the view. Am I missing a view that allows me to show point files or is there some kind of configuration parameter that I can switch? I have tried several things in the last few days, but I'm not sure what they were, since I really did not track.

Suggestions?

+3
source share
2 answers

I managed to get various views of the project explorer to show point files:

alt text http://www.gentleware.com/fileadmin/media/archives/userguides/apolloforeclipse_userguide/images/filter.png

This is usually done by viewing the filters in the package explorer by deactivating the resource filter ( .*). <w> This is usually stored in the ui preferences file:

<workspace>\.metadata\.plugins\org.eclipse.core.runtime\.settings\org.eclipse.jdt.ui.prefs

Can you check if this file is updated correctly when changing its settings?

I confirm that these settings are in the file org.eclipse.jdt.ui.prefs, on the line:

CustomFiltersActionGroup.org.eclipse.jdt.ui.PackageExplorer.userDefinedPatterns=*.contrib, *.bak, *.launch, *.zip, *.rar, *.pmd, *.log

(these are approximate values ​​for the filter)

: eclipse , . eclipse.
, , , org.eclipse.jdt.ui.prefs.

/ .
, org.eclipse.jdt.ui.prefs, , ( eclipse) , ?

+2

Source: https://habr.com/ru/post/1711627/


All Articles