Schnurres
Schnurres

Reputation: 177

Comment/Uncomment multiple lines in Snowflake (German keyboard)

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

Answers (2)

FKayani
FKayani

Reputation: 1021

For Mac User: Select the multi-line and press 'command'& '/' keys

Upvotes: -1

Clark Perucho
Clark Perucho

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

Related Questions