Tracking file in Netbeans IDE Projects window

ⅰ亾dé卋堺 提交于 2019-12-02 07:45:15

问题


Just getting hands on with NetBeans 8.0.2. Wondering if the IDE has similar features as Eclipse or Visual Studio like

  1. Track current file in Projects explorer - When working with large projects, with lots of files open, if I want to navigate to current file in projects window it is getting difficult.

  2. On top of it, the project explorer is showing the folders/files in a case sensitive manner resulting difficult to locate the exact file/folder.

Is there a settings or two to control this behavior?


回答1:


For the first part:

use the option "View -> Synchronized Editor with views" to automatically select the current file in the editor in the project window.

Alternatively (what I prefer) use "Navigate -> Select in Projects" to manually select the current editor file in the project window .

You can find more information about navigating in the IDE in the manual:
http://docs.oracle.com/cd/E50453_01/doc.80/e50452/work_java_code.htm#CIAGADFI

Regarding the second part: Java is case sensitive. MyClass is something different than MyCLASS so it has to treat the file names as case sensitive.



来源:https://stackoverflow.com/questions/27444260/tracking-file-in-netbeans-ide-projects-window

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!