General clean-up and tiny bugfixes

This commit is contained in:
Henrik Lissner
2015-11-14 02:41:53 -05:00
parent c65cce0533
commit 71e7e0a53d
8 changed files with 22 additions and 26 deletions

View File

@@ -80,10 +80,13 @@
(use-package emmet-mode
:defer t
:diminish emmet-mode
:init (add-hook! (scss-mode web-mode html-mode haml-mode nxml-mode) 'emmet-mode)
:init
(add-hook! (scss-mode web-mode html-mode haml-mode nxml-mode) 'emmet-mode)
(defvar emmet-mode-keymap (make-sparse-keymap))
:config
(setq emmet-move-cursor-between-quotes t)
(bind! :map emmet-mode-keymap
:v "M-e" 'emmet-wrap-with-markup
:i "M-e" 'emmet-expand-yas
:i "M-E" 'emmet-expand-line))