ide - Finding Shortcuts in Aptana Studio 3.0 to Comment Code -


i can't find shortcuts comment code in aptana studio 3.0. need shortcuts both comment individual lines , commenting selected blocks of code.

some have told me try comment shortcut win + / on windows os not appear workable.

it depends on language you're writing in (is css, javascript, html?)

for javascript:

  • ctrl-/ add or remove // single line of code, or multiple selected lines.

the standard java commenting shortcuts are:

  • ctrl-/ add/remove // single line of code, or multiple selected lines.
  • ctrl-shift-/ add /* */ around selected code.
  • ctrl-shift-j add javadoc comments.

you can find out shortcuts hitting ctrl-shift-l, bring list of available shortcuts. change depending on if have selected, type of file you're editing, etc. "add comments", "toggle block comments", "toggle js comments", , forth.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -