• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Does anyone here use SublimeText 2/3?

Damon

Check my status to contact me :)
Joined
Mar 26, 2011
Messages
6,214
Solutions
1
Reaction score
2,033
Location
Germany
Heya,
So I wanna use Sublimes "Toggle Comment" shortcut but Ctrl+/ doesnt work for me (I use a EU keyboard).
Does anyone know what the equivalent with the EU keyboard would be?

Kind regards,
Damon

@HalfAway
 
If you go into Preferences->Key Bindings - Default, you can find all the shortcuts, below are the lines for commenting.

Code:
{ "keys": ["ctrl+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+/"], "command": "toggle_comment", "args": { "block": true } },

edit: change the keys to what your preferences are, or try:
ctrl+shift+# to toggle block a comment or ctrl+# to toggle a line comment
 
Last edited:
If you go into Preferences->Key Bindings - Default, you can find all the shortcuts, below are the lines for commenting.

Code:
{ "keys": ["ctrl+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+/"], "command": "toggle_comment", "args": { "block": true } },

edit: change the keys to what your preferences are, or try:
ctrl+shift+# to toggle block a comment or ctrl+# to toggle a line comment
Will try that thanks :)

Edit: It worked :)
 
Last edited:

Similar threads

Back
Top