fxbois / web-mode

web template editing mode for emacs
https://web-mode.org
GNU General Public License v3.0
1.63k stars 262 forks source link

A problem with electric-pair-mode #1284

Closed kjnez closed 7 months ago

kjnez commented 9 months ago

When using the Django engine in web-mode and electric-pair-mode, there's an extra }. For example, initially the cursor is just after %:

{%I}

And when hitting the Space key, it becomes

{% I %}}
fxbois commented 9 months ago

It is related to an other minor mode I think

kjnez commented 9 months ago

Made an edit, before hitting Space, it should be {%I}.

kjnez commented 7 months ago

This can be partially solved with (add-hook 'web-mode-hook (lambda () (electric-pair-local-mode -1))), which disables electric-pair-local-mode in web-mode.