sublimetext3 - Keyboard shortcut to comment lines in Sublime Text 3 -


in sublime text 2 possible comment out line or block of lines ctrl+/ , ctrl+shift+/. according menu edit > comment these shortcuts should valid, in sublime text 3 (build 3047) no longer seem work. know right default keyboard shortcuts linux , macos? or bug?

it seems bug: http://www.sublimetext.com/forum/viewtopic.php?f=3&t=11157&start=0

as workaround, go preferences->key bindings - user , add these keybindings (if you're using linux):

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

update: works on windows 8 (see @sosi's comment)


Comments