GNU bug report logs -
#9932
24.0.90; electric pair mode is getting enabled globally , not just for a buffer.
Previous Next
Full log
Message #8 received at 9932 <at> debbugs.gnu.org (full text, mbox):
> Electric pair mode enables globally. I would rather prefer it to be
> buffer local.
> I think it would be good to have an electric-pair-mode for a single
> buffer and an electric-pair-global-mode/global-electric-pair-mode for
> enabling the feature globally.
How 'bout a way to turn it off buffer-locally, so you can have it
enabled globally but can also disable it in some modes?
E.g. the patch below would be enough for that, after which you could do
(add-hook 'text-mode-hook
(lambda () (set (make-local-variable 'electric-pair-mode) nil)))
to turn if off in all modes derived from text-mode.
We could easily provide this in 24.1, whereas what you suggest would
have to wait for 24.2.
Stefan
=== modified file 'lisp/electric.el'
--- lisp/electric.el 2011-10-19 21:57:06 +0000
+++ lisp/electric.el 2011-11-09 04:21:51 +0000
@@ -284,6 +284,7 @@
(defun electric-pair-post-self-insert-function ()
(let* ((syntax (and (eq (char-before) last-command-event) ; Sanity check.
+ electric-pair-mode
(let ((x (assq last-command-event electric-pair-pairs)))
(cond
(x (if (eq (car x) (cdr x)) ?\" ?\())
This bug report was last modified 13 years and 194 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.