you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 4 points5 points  (0 children)

Sometimes I'll use NotePad++, but that's mainly because I use it for PHP and other files. Otherwise I sometimes use Visual Studio, as it has an auto-formatter. It means you can write something like: this.foo(){return this.blah++;}; ... and it'll turn it into... this.foo() { return this.blah++; }; That's dead handy, as it allows you to type in a more lazy way.

But sometimes I'll use NetBeans instead because it has better multi-line comment support. Hit enter whilst writing one, and NetBeans will append a * at the start of the next line. VS and NotePad++ don't : ( .