GNU bug report logs -
#32896
27.0.50; wishlist: Delete matching pairs
Previous Next
Reported by: Alex Branham <alex.branham <at> gmail.com>
Date: Mon, 1 Oct 2018 14:35:02 UTC
Severity: wishlist
Found in version 27.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
Message #13 received at 32896-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Mon 08 Oct 2018 at 17:15, Juri Linkov <juri <at> linkov.net> wrote:
> Fortunately, Emacs already has such a command named ‘delete-pair’:
> it deletes the parens around the let function as in your first
> example as well as the quotes in your second example. It makes
> sense to bind this command to e.g. ‘C-x M-(’ to be the inverse of
> ‘M-(’ (insert-pair)
Yay! I didn't know about that command (and I really did search before
reporting this bug, no idea how I missed it!). It doesn't work backward
though as far as I can tell:
(let (message "%s" "foobar")|)
M-x delete-pair there does nothing. I was hopeful about
`electric-pair-delete-pair' but it only works if the pair is adjacent.
I guess this is closer to what I wanted:
(defun my/delete-pair ()
"Call `delete-pair', perhaps also calling `backward-up-list'."
(interactive)
(condition-case nil (delete-pair)
(t (progn (backward-up-list)
(delete-pair)))))
Anyway, thanks for the response!
Alex
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 6 years and 223 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.