Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to apply HTML code on highlighted text like in Zend Studio 5?

For example:

enter image description here

share|improve this question

1 Answer

up vote 1 down vote accepted

Open preferences -> Editor -> Macros

Add a new macro called something like "html-bold", then hightlight it. Paste this in the Macro Code section:

cut-to-clipboard "<b>" paste-from-clipboard "</b>"

Set a shortcut if you want. I tried it with CTRL+B and it worked fine.

Note that it will replace the current contents of your clipboard with the text you selected.

Btw, I'm using Netbeans 6.9.1, so the steps might be different on other versions.

To learn more about Netbeans macros, see What useful macros have you created in Netbeans?

share|improve this answer
That works thanks! – IMB Oct 13 '11 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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