vote up 5 vote down star
4

Hi all,

I've recently gotten quite fond of netbeans for my php work because of the XDebug integration. It has made me all but forget about textmate (which imho still beats netbeans for the little things)

What do you think is the one awesome netbeans feature I should know about, and more importantly why and how do I use it?

I'm asking this to optimize my skills in the use of the IDE and based on the idea that what works well for others might just work for me (and hopefully others).

flag

71% accept rate
the question is for netbeans as a whole or PHP plugin only? – dfa May 29 at 18:43
@dfa: I'm using it for php at the moment but if you have an awesome suggestion that would make me able to do mono development using netbeans, or... – Kris May 29 at 19:17

13 Answers

vote up 9 vote down check

The Subversion Integration directly on the IDE and the Local History are of my must-use, favorite features.

link|flag
3  
as well as mercurial, CVS and mercurial plugins – dfa May 29 at 18:44
Yes!, versioncontrol.netbeans.org – CMS May 29 at 18:48
@CMS definately a "good thing™" but somewhat taken for granted already. @dfa: yes, subversion integration rules. is mercurial worth looking into? – Kris May 29 at 19:15
NetBeans even integrates with ClearCase, which we use at work. – Thomas Owens Oct 2 at 19:38
vote up 4 vote down

Awesome Vi bindings via the jVi plugin.

link|flag
Okay, but Why would I want VI bindings in Netbeans? (The VI manual is bigger than my refrigerator and all I read into it is ":q!") – Kris May 29 at 19:21
2  
I know it isn't everyone's cup of tea, but I find that I work much faster with Vi bindings. You should give them a try sometime. – moshen May 29 at 20:06
vote up 4 vote down

This link has a lot of keyboard shortcuts that comes in handy. I have a copy of it printed out and pinned to the wall next to my computer. Sadly, I don't see any special PHP shortcuts though.

link|flag
I love keyboard shortcuts, that is totally awesome. – Kris Jun 7 at 8:31
vote up 3 vote down

If you consider Netbeans 6.7 it has a sync feature a bit like Dreamweaver

In the way that you can add a custom ftp, import it to the project and when you save the files locally they are also uploaded to the server so you have a semi backup system in place.

(trust me it's better than working directly onto a ftp tree and realizing that the transfer failed somehow between the current tmp file and the server file and you lost your work because you closed the file window :) )

link|flag
You have to be careful when running FTP support on existing pages though and the download/upload-selection is actually quite weird to control (right click and search box). I suggest adding multiple run configurations; one for making local changes (manual upload) and one for working live on your development server (upload on save). You can instantly switch between these configurations in the main toolbar. Furthermore, if are working on FTP with NB you can easily initialize a Mercurial repository and have a full revision control at your hand with just a few clicks. – Energiequant Aug 24 at 20:35
vote up 2 vote down

Ctrl + Space is my favorite and most used feature when programming in java, I think it is enabled for PHP as well. But if you like net beans you most likely know about it already, if not try it out discover what it does.

Also navigating to the relevant source code by Ctrl + Clicking on anything from variables, to method calls, to class references is a nice feature.

Additionally, the popup menus that are displayed when right clicking in source code contain many useful tools for everything from refactoring to code generation.

link|flag
Yeah that works for PHP and it does rule. Not just for built-in functions, but everything (even type safe if you hint properly) – Kris May 29 at 19:19
vote up 2 vote down

Some features definitely worth looking out for, including the ones mentioned above:

  1. Version control Integration, including Local History
  2. IDE wide search box
  3. Integration with Tomcat/Apache, GlassFish can be helpful when you are looking to work with PHP and other server side technologies, like JSP
  4. Very good integration with MySQL- essential to wAMP/LAMP development
link|flag
actually, i couldn't get the MySQL stuff to work, it kept screwing up my carefully encoded UTF8, so i still use the normal commandline tools for that. – Kris Jun 5 at 0:07
In that case, why don;t you report the relevant problems to the mailing list? That way, they can surely be fixed :) – Amit Jun 5 at 4:16
vote up 2 vote down

I find the single most useful feature in Netbeans for PHP work is that it understands PHPDoc (in the same way that it understands Javadoc).

Type /** before a function definition, hit return and it'll create a PHPDoc template.

/**                              <-- I typed this
 * @param <type> $otherOjb       <-- Netbeans added this
 * @return <type>                <--
 */                              <--
public function exampleFunction($otherObj)
{
    $myObj = new MyClass($otherObj);
    return $myObj;
}

Replace the <type> placemarkers with the appropriate types:

/**      
 * @param OtherClass $otherObj
 * @return MyClass
 */
public function exampleFunction($otherObj)
{
    $myObj = new MyClass($otherObj);
    return $myObj;
}

And voila, you'll get type completion (and pop-up documentation) with Ctrl-space.

link|flag
vote up 1 vote down

The ability to create quick on the fly macros.

For example , here is one that will put a semi-colon at the end of the current line and places your cursor back where it was before the macro started.

";" delete-previous caret-end-line ";" jump-list-last-edit jump-list-last-edit (I know this is present in other language implementations by default. But it does not work by default in PHP Netbeans.)

As someone who tends to stick with IDE for a long time, I love being able to customize little things to make me more efficient.

link|flag
That seems potentially very usefull, but I'm not getting it to work just yet, at least not automated and easier than command + right-arrow then semicolon – Kris May 29 at 19:24
I bound this to ctrl+semi-colon. The benefit to this, is that when you are complete, it returns your cursor back to its original position before the key combo was pressed. As with anything, what works best is usually what you are used too :) – Gailin May 29 at 19:44
@Galin: netbeans works better than what i was used to, just hoping to squeeze even more out of it. P.S. limited amount of votes sucks – Kris May 29 at 19:52
I would also suggest that you make use of the code templates (Tools->Options->Code Templates). When you are familiar with them, they can greatly enhance your work flow. Also, Alt+Ins performs code insertion. When you have a PHP class with class wide vars you can automatically create getters/setters to your class. It has the added benefit, of when you add more vars to the class, that you can generate getters/setters for the newly added variable. I switched to Netbeans about 3-4 months ago from PDT and previous to that phpEclipse. I have not regretted the decision. Poke around and enjoy! – Gailin May 30 at 1:52
@Gailin: the only code template i'm currently using is one I defined myself, "prop" creates a protected field, getter and setter with type hint and PHPDoc descriptions. basically 12 lines of code with five keystrokes. – Kris Jun 8 at 19:45
vote up 1 vote down

maybe the search box, to find anything in the source code`?

link|flag
i do like the incremental search, but the actual find dialog is weird in that it needs two distinct "enter" presses to start the search – Kris Jun 5 at 0:09
vote up 1 vote down

TextMate is a great slick little editor I use all the time on my Mac, but not an IDE. I haven't enjoyed Netbeans on Mac very much being so non-native, but on Windows or Linux I prefer it over Eclipse.

  • The Swing GUI designer with Java has been huge in getting projects done rapidly.
  • Other people have said it, but integrated Subversion is awesome. If I've been working with a project from the terminal in Linux it figures out I've got SVN checked out on that directory and handles it fine.
  • I love the code formatting (right click in the editor), especially when team members write poorly spaced/indented code with nano, xemacs, or something like that.
link|flag
Yeah the non-nativeness gets to me from time to time especially in the keyboard based text navigation department. But it comes with so many more awesome things I can mostly live with it. P.S. the code format shortcut is control+shift+f – Kris Jun 8 at 19:43
vote up 1 vote down

I've found another great snip of genius i wanted to share:

you can do custom code folding (not really related to php, just netbeans)

just put this into a code file:

// <editor-fold defaultstate="collapsed" desc="getters and setters">

some boring code you don't need to see every time here

// </editor-fold>

That'll behave similar to #regions in visual studio or pragma marks in xcode. but unlike regions, it doesn't screw up the working of your code, it's really just a comment!

link|flag
vote up 0 vote down

I've personally used Eclipse a couple of years ago for Java development, and ever since i knew Netbeans at version 3.5, it has gotten really good with the integration of server technologies as TomCat for J2EE application deployment, subversion, uml and plenty of plug-ins for different tecnologies, not just java now.

  • Database integration (MySQL, Jdb, SQL editor).
  • Continuous progress in PHP integration and features.
  • Subversion integration...it does help A LOT!
  • Code indent, custom color highlighting.
  • If you are a PHP developer, Ruby on Rails integration can be of help too, if you want to expand your expertise on web apps.
link|flag
vote up 0 vote down

Netbeans has always been known for delivering support for experimental (not-yet-released) technologies, such as Java 6 EE preview, JDK7 support, ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.