Sublime Forum

ALT + Shift + W is not working now

#1

I don’t know why the shortcut to wrap a text into html tag is not working now. My build is 3059. It’s may be because of any plugin but I don’t know which one I have many. Does anyone specifically know which plugin is causing this?

0 Likes

#2

In sublime’s console enter sublime.log_commands(True) to see which snippet/package has overtaken the shortcut.
You can also change the shortcut for good adding in the user’s sublime-keymap an override of:

{ "keys": "alt+shift+w"], "command": "insert_snippet", "args": { "name": "Packages/XML/long-tag.sublime-snippet" } },

with another key combination :wink:

0 Likes