1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
492 views
by gary-t-8719 (15.1k points)

1 Answer

0 votes
When using the Custom Code in QIE if you would like to easialy commment out lines of code there are two commands that can be used. Note the + in the shortcut que is used as a seperator for the different keys being used, and is not part of the key combiniation.

1. Commenting out a single line of code use: CTRL + /

Note: The single line of code can be used on multiple lines by highlighting all of the lines of code you want to comment out. This will use the single line of code format (e.g. //) for each line.

// code

// code

2. For commenting out multiple lines of code use: CTRL + SHIFT + /

Note: This format will comment out all lines of code that are highlighted by using a begin comment e.g. /* on the first line and and end comment e.g. */ on the last line.

*/

code

code
*/
by gary-t-8719 (15.1k points)
edited by gary-t-8719
...