Fixes #238 Smartparens-strict-mode not working

Previous commits was about Python, this commit should fix it
for all the other modes.
This commit is contained in:
syl20bnr 2014-12-11 22:24:18 -05:00
parent 2ac8658385
commit dafceb12e8

View file

@ -640,7 +640,14 @@ determine the state to enable when escaping from the insert state.")
(define-and-bind-text-object "|" "|" "|")
;; between percent signs:
(define-and-bind-text-object "%" "%" "%")
)))
;; support smart 1parens-strict-mode
(if (ht-contains? config-system-all-packages 'smartparens)
(defadvice evil-delete-backward-char-and-join
(around spacemacs/evil-delete-backward-char-and-join activate)
(if smartparens-strict-mode
(call-interactively 'sp-backward-delete-char)
ad-do-it))))))
(defun spacemacs/init-evil-args ()
(use-package evil-args