Nick
Nick

Reputation: 9051

How to comment out code in SQLiteStudio SQL editor?

Is there a way to temporary comment out some of code in SQLiteStudio? I have to add -- or /* ... */ each time and remove them manually. It will be greate if we can trigger comment using a button or shortcut like Ctrl-/. How do you tackle this problem when using SQLiteStudio?

(SQLiteStudio 3.0.7 on Windows 7)

Upvotes: 2

Views: 3837

Answers (1)

Ahmad Hoghooghi
Ahmad Hoghooghi

Reputation: 155

Now it is available via these notations:

-- for one line comments

/*
for several
line comments
*/

Edit:
Ctrl + / : comments the line which cursor is on it, also this hot key adds several line comment notation to the start and end point of selected area.

Upvotes: 2

Related Questions