Reputation: 177
how can I comment or uncomment multiple lines in Snowflake?
The docs says CTRL
+ /
but because I got a german keyboard the / is a capital 7. And CTRL
+ SHIFT
+ 7
is not working either.
Is there any way to comment and uncomment multiples lines in Snowflake if you dont use an US-Keyboardlayout?
Upvotes: 2
Views: 1416
Reputation: 1021
For Mac User: Select the multi-line and press 'command'& '/' keys
Upvotes: -1
Reputation: 466
Without using any keyboard shortcuts. You can enclose the lines with /* and */
/*
This is a comment
and another comment.
this one too.
*/
This is NOT a comment.
Upvotes: 2