Sublime Forum

toggle_comment not working in build 3059

#1

I just upgraded to build 3059 and regardless of what command i bind to run it toggle_comment doesn’t work for me. Anyone else having this issue?

0 Likes

#2

What if you go to “Edit -> Comment -> Toggle Comment”? Is there a key binding listed there? It’s possible some other key is overriding the key binding. It’s also possible something is wrong with where comments are defined. Finally, there could be a bug preventing the toggle comment “plugin” from loading. You may also want to try checking the console for errors. If there are none, you may also want to try entering “sublime.log_commands(True)” in the console.

0 Likes

#3

Apparently Ctrl-Shift-number was changed to command ‘move_to_group’ in ST3, thereby breaking the assigned keys for toggle comment.
I added { “keys”: “ctrl+alt+7”], “command”: “toggle_comment”} to my user keyboard file.

0 Likes