[emacs] unbind C-j in emmet-mode-keymap
authorAmin Bandali <amin@gnu.org>
Sat, 15 Sep 2018 15:38:46 +0000 (11:38 -0400)
committerAmin Bandali <amin@gnu.org>
Sat, 15 Sep 2018 15:38:46 +0000 (11:38 -0400)
init.org

index 5ab27cb..597b6fb 100644 (file)
--- a/init.org
+++ b/init.org
@@ -1276,7 +1276,8 @@ instead.
 (use-package emmet-mode
   :bind* (("C-)" . emmet-next-edit-point)
           ("C-(" . emmet-prev-edit-point))
-  :init
+  :config
+  (unbind-key "C-j" emmet-mode-keymap)
   (setq emmet-move-cursor-between-quotes t)
   :hook (web-mode css-mode html-mode sgml-mode))
 #+end_src