A search via Google shows Alt+Shift+W as the keyboard shortcut for Wrap Selection With Tag, which is found in the Edit menu, Tag submenu. The menu shows no such shortcut, and Alt+Shift+W does nothing, as far as I can tell. I tried this for
tagging in my sublime-keymap file:{ "keys": "alt+shift+q"], "command": "insert_snippet", "args": {"contents": "<pre>${0:$SELECTION}</pre>" } }
which is fine for a specific tag, but not the same as Wrap Selection With Tag, which inserts P tags and selects both the opening and closing tag. I also tried:
{ "keys": "ctrl+shift+a"], "command": "wrap_selection", "args": {"with": "tag"} }
but that doesn’t seem to work, and I can’t find any command in the documentation for wrapping. I appreciate any assistance you can provide. Thank you.
Michael Blaustein