bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#65928: [PATCH] Introduce 'project-save-buffers'


From: Dmitry Gutov
Subject: bug#65928: [PATCH] Introduce 'project-save-buffers'
Date: Fri, 15 Sep 2023 19:39:21 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0

On 15/09/2023 09:32, Juri Linkov wrote:
Would something like
     (defalias 'project-save-buffers #'save-some-buffers-root)
do the job?
Rather something more like this will do the job:

```
(keymap-set project-prefix-map "S"
             (lambda (&optional arg)
               (interactive "P")
               (let ((save-some-buffers-default-predicate 
'save-some-buffers-root))
                 (save-some-buffers arg))))
```

Would you say that the added capability to only save certain buffers but not others, is something you found useful in practice?

More than once a year or so.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]