How Do I "open folder in explorer" in Netbeans PHP
I'm attempting the conversion from Eclipse PDT to Netbeans PHP, and so far I'm really impressed. What would make things perfect is being able to open up a file structure in the standard windows explorer.
Say I want to copy in a data file I've just tweaked in another app, or downloaded from a remote server, I have to navigate manually to the folder structure that I already have open in the IDE.
It's just about the only thing from Eclipse that I miss in Ne开发者_JAVA技巧tbeans. Any suggestions how I can reproduce the functionality?
You can use Path Tools plugin (you have to download it from the site and install by manually adding it in downloaded section in NetBeans plugin menu)
There is also more recent plugin QuickOpener for newer NetBeans versions.
Other nice plugin that offers this functionality is CoolEditorActions, available through update center in Infrastuture
category.
I am using the QuickOpener plugin. It is available directly in the Tool->Plugin menu in NetBeans.
Then I go to Tools->Options->Keymap and add the alternate CTRL+L shorcut to 'Open in the OS file system browser'
Your all set after this!
You should use QuickOpener plugin since Netbeans 7.2. Path Tools do not work on it.
In Netbeans 12, the plugin is not available. Fortunately, NetBeans already has a default command for it. Open Tools => Options, Keymap. Search for Open in System. Assign Shortcut, for example, Alt+S
. Click Apply or OK.
If you select a package or a folder then press the shortcut, it will open the folder in explorer.
精彩评论