Hotkey for QT Editor to put /* */ pair
-
Is there such feature?
-
Is there such feature?
@kapabahwuk
If you highlight an in-line (C++) text then Ctrl+/ will surround it with inline comment markers.
If it's a whole line/block that is marked you will get end-of-line comment markers instead. -
it worked, but I toggled something and it has other effects
it puts // before selected text
how can I switch to /* */ -
it worked, but I toggled something and it has other effects
it puts // before selected text
how can I switch to /* */@kapabahwuk
I answered that. It should be working as I stated. -
Thank you for anwser, but when I use the keyboard I get // for each selected line :)
Must be a way to roll back -
Thank you for anwser, but when I use the keyboard I get // for each selected line :)
Must be a way to roll backWhat roll back? If you press again, it uncomments again. Either
//or/*...*/when I use the keyboard I get // for each selected line
If you select the whole line, it's the same. If you select parts of one line/expression, you'll get
/*...*/in between.