tags:

views:

34

answers:

1

So with eclipse I would instruct it to open html/css/js files in textmate, and pretty much just use if for the php side of things.

Would like to do a similar thing with nb if possible.

Any thoughts?

Best, Bob

+1  A: 

There exists a Path Tools plugin for Netbeans. It has a command "Edit path...". With this you can select a file in the tree, click "Edit path..." and the file will be opened in an external editor.

You can customize the external program which is called under "Tools" -> "Options" -> "Miscellaneous" -> "Path Tools" -> "Edit Commands For File" .

You can't assign it to specific file types, but at least you can open files without leaving Netbeans.

The webpage of the Path Tools plugin looks not very active, but it works in Netbeans 6.9.1 without problems (Works on My Machine).

It also has other useful actions:

  • Copy Paths Action Copy the full paths of the files/folder of selected node to the clipboard.
  • Explore Action Launch the OS File Explorer
  • Shell On Path Action Launch the OS shell
  • Edit Action Launch the editor

This plugin should be integrated to Netbeans.

Soundlink
Thanks for the answer. Was hoping there was functionality similar to eclipse though where I can tell it to open an *.html file or whatever with any editor I wanted. This is a stopgap I guess.
Bob Spryn