unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Sergey Organov <sorganov@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: help-gnu-emacs@gnu.org
Subject: Re: How to revert buffer from "Save file?" prompt?
Date: Thu, 10 Jun 2021 20:14:56 +0300	[thread overview]
Message-ID: <87y2bhvdyn.fsf@osv.gnss.ru> (raw)
In-Reply-To: <83sg1se53s.fsf@gnu.org> (Eli Zaretskii's message of "Tue, 08 Jun 2021 18:41:27 +0300")

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Sergey Organov <sorganov@gmail.com>

[...]

>> As I've asked in another mail: is there a practical way to add
>> keybindings to this prompt? I'd then opt for adding "C-M-g: revert the
>> buffer" and be finally done with it.
>
> See save-some-buffers-action-alist.

Here is customization I came up with:

(nconc
 save-some-buffers-action-alist
 '((?\C-\M-g
    (lambda (buf)
      (with-current-buffer buf
        (revert-buffer)))
    "revert this buffer")))

Seems to work as expected. Does it look correct?

What about all the ,( tricks in the original (that didn't work for me)?
Should I somehow adopt them? See:

(defvar save-some-buffers-action-alist
  `((?\C-r
     ,(lambda (buf)
        (if (not enable-recursive-minibuffers)
            (progn (display-buffer buf)
                   (setq other-window-scroll-buffer buf))
          (view-buffer buf (lambda (_) (exit-recursive-edit)))
          (recursive-edit))
        ;; Return nil to ask about BUF again.
        nil)
     ,(purecopy "view this buffer"))))

Thanks,
-- Sergey Organov



  parent reply	other threads:[~2021-06-10 17:14 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07 14:24 How to revert buffer from "Save file?" prompt? Sergey Organov
2021-06-07 14:28 ` Eli Zaretskii
2021-06-08 15:18   ` Sergey Organov
2021-06-08 15:41     ` Eli Zaretskii
2021-06-08 17:15       ` Sergey Organov
2021-06-10 17:14       ` Sergey Organov [this message]
2021-06-08 15:51     ` Stefan Möding
2021-06-08 17:56       ` Sergey Organov
2021-06-07 15:23 ` Óscar Fuentes
2021-06-07 15:42   ` Sergey Organov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87y2bhvdyn.fsf@osv.gnss.ru \
    --to=sorganov@gmail.com \
    --cc=eliz@gnu.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).