Open djmtype opened 8 years ago
This doesn't seem to work with Emmet. I want to create a shortcut for HTML formatting. For example, underline.
With Emmet, ctrl-w wraps text in an abbreviation.
ctrl-w
So, the keystrokes that would make underline possible is, ctrl-w u enter
ctrl-w u enter
Here is my configuration which fails:
// config.cson "keystroke": commands: [ { name: "underline-text" keystroke: "ctrl-w u enter" } ]
// keymap.cson 'atom-text-editor': 'alt-cmd-u': 'keystroke:underline-text'
This doesn't seem to work with Emmet.
I want to create a shortcut for HTML formatting. For example, underline.
With Emmet,
ctrl-w
wraps text in an abbreviation.So, the keystrokes that would make underline possible is,
ctrl-w u enter
Here is my configuration which fails: