From 412063f452237894b295e7d8e6cabaa81f2257c5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 12 Nov 2018 02:35:53 -0500 Subject: [PATCH] lang/web: fix 'pair was never defined' error Caused by recent change upstream, in smartparens --- modules/lang/web/+html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/web/+html.el b/modules/lang/web/+html.el index 31db91490..610deca66 100644 --- a/modules/lang/web/+html.el +++ b/modules/lang/web/+html.el @@ -36,7 +36,7 @@ (defun +web-is-auto-close-style-3 (_id action _context) (and (eq action 'insert) (eq web-mode-auto-close-style 3))) - (sp-local-pair 'web-mode "<" nil :unless '(:add +web-is-auto-close-style-3)) + (sp-local-pair 'web-mode "<" ">" :unless '(:add +web-is-auto-close-style-3)) ;; let smartparens handle these (setq web-mode-enable-auto-quoting nil