2

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)

Nick
  • 8,451
  • 13
  • 57
  • 106
  • 1
    SQLiteStudio's author here. There's no such shortcut in 3.0.7, but this is a neat feature and I've scheduled it for 3.0.8 to be implemented. – Googie May 16 '16 at 08:42
  • That's great, next version must be very exciting. Thank you for creating this wonderful software and share it with us! – Nick May 17 '16 at 00:53

1 Answers1

2

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.