fix(data): correct XML closing tag insertion

`nxml-slash-auto-complete-flag` inserts the rest of the closing tag when
`</` is inserted, but smartparens also defines `(sp-local-pair "<" ">")`
for `sp--html-modes`, so two `>` are inserted for closing tags. Apply
the upstream developer’s suggested fix.

Fix: https://github.com/doomemacs/doomemacs/issues/6331
Ref: https://github.com/Fuco1/smartparens/issues/397
This commit is contained in:
Liam Hupfer 2023-09-27 00:18:32 -05:00 committed by Yann Esposito (Yogsototh)
parent 0efca9afd4
commit f2e6ae4516
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -7,6 +7,9 @@
:config
(setq nxml-slash-auto-complete-flag t
nxml-auto-insert-xml-declaration-flag t)
;; https://github.com/Fuco1/smartparens/issues/397#issuecomment-501059014
(after! smartparens
(sp-local-pair 'nxml-mode "<" ">" :post-handlers '(("[d1]" "/"))))
(set-company-backend! 'nxml-mode '(company-nxml company-yasnippet))
(setq-hook! 'nxml-mode-hook tab-width nxml-child-indent)
(set-formatter! 'xmllint '("xmllint" "--format" "-") :modes '(nxml-mode)))