diff options
author | Alan Pearce | 2016-07-04 08:17:30 +0200 |
---|---|---|
committer | Alan Pearce | 2016-07-04 08:17:43 +0200 |
commit | f0643fdce54e5172a369e29d00356cb9bc4f6c8b (patch) | |
tree | bc35c5678001fdab1a2861a34daad85fae9ad97e /tag-emacs | |
parent | 4409f5fcef18a2d9a385f21422aaba863485429c (diff) | |
download | nixfiles-f0643fdce54e5172a369e29d00356cb9bc4f6c8b.tar.lz nixfiles-f0643fdce54e5172a369e29d00356cb9bc4f6c8b.tar.zst nixfiles-f0643fdce54e5172a369e29d00356cb9bc4f6c8b.zip |
Emacs: Fix smartparens in web-mode
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index c13011c7..d89022e7 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1960,9 +1960,8 @@ of them as well. web-mode-comment-style 2 web-mode-enable-auto-pairing nil web-mode-enable-auto-quoting nil) - (with-eval-after-load 'smartparens - (sp-with-modes sp--html-modes - (sp-local-pair "<%" "%>"))))) + (sp-with-modes sp--html-modes + (sp-local-pair "<%" "%>")))) #+END_SRC I derived a mode for twig, in order to use its =mode-hook=. @@ -2241,7 +2240,7 @@ nice as the real version (bind-key "M-<down>" #'sp-splice-sexp-killing-forward smartparens-mode-map) (bind-key "C-M-S-k" #'sp-kill-hybrid-sexp smartparens-mode-map) (bind-key "C-S-<right>" #'sp-slurp-hybrid-sexp smartparens-mode-map) - (sp-with-modes '(web-mode twig-mode) + (sp-with-modes '(twig-mode) (sp-local-pair "{%" "%}") (sp-local-pair "{{" "}}")) (show-smartparens-global-mode t) |