From: "Philip K." <philip@warpmail.net>
To: Dmitry Gutov <dgutov@yandex.ru>
Cc: 42386@debbugs.gnu.org
Subject: bug#42386: Acknowledgement ([PATCH] Handle symbols in project-kill-buffers-ignores)
Date: Sat, 18 Jul 2020 14:48:43 +0200 [thread overview]
Message-ID: <87mu3xdm50.fsf@warpmail.net> (raw)
In-Reply-To: <0c296186-702e-576d-a609-b3028d093def@yandex.ru> (message from Dmitry Gutov on Sat, 18 Jul 2020 01:21:47 +0300)
[-- Attachment #1: Type: text/plain, Size: 2317 bytes --]
Dmitry Gutov <dgutov@yandex.ru> writes:
> On 17.07.2020 20:16, Philip K. wrote:
>> Dmitry Gutov <dgutov@yandex.ru> writes:
>>
>>> On 17.07.2020 18:30, Philip K. wrote:
>>>> (defcustom project-kill-buffers-ignores
>>>> '("\\*Help\\*")
>>>
>>> You might as well update the default value.
>>
>> So what should be added, besides ERC?
>
> Probably nothing, unless you have something else to propose.
>
> At this point, you are the main driver of this feature. I like it in
> theory (a lot), but so far has done little to incorporate in my
> workflow, so you're the foremost person to hit the edge cases. I also
> don't do email/IRC/notes/etc in Emacs.
>
> Speaking of some ideas, though, if you are worried about more unknown
> modes needing the same treatment, we could flip the meaning of this var
> and go with the whitelist approach, like font-lock-global-modes does. It
> can still serve as a blacklist if the first element is `not`.
>
> To give an example:
>
> (defcustom project-kill-buffers-conditions
> '(buffer-file-name ; All file-visiting buffers are included.
> (derived-mode . compilation-mode)
> ;; Most of the temp buffers in the background:
> (major-mode . fundamental-mode)
> ;; A bit questionable (alternatively, include
> ;; xref--xref-buffer-mode, occur-mode,
> ;; vc-dir-mode, log-view-mode, log-edit-mode separately):
> (derived-mode . special-mode))
> "Conditions for buffers `project-kill-buffers' should kill.
> Each condition is either a regular expression matching a buffer
> name, or a predicate function that takes a buffer object as
> argument and returns non-nil if it matches, or a cons cell which <...>.
>
> Buffers that belong to the current project, and match any of the
> conditions, will be killed. If the list starts with `not',
> the meaning is negated."
> :type '(repeat (choice regexp function))
> :version "28.1"
> :package-version '(project . "0.6.0"))
>
> If this kind of list can be exhaustive enough, this can be a decent default.
>
> What do you think? If you're not sure, let's go with your patch now.
I like this idea a lot, the patch below should implement this +
backwards compatibility code. Thought this might be getting too
complicated, I also went ahead and added "and" and "or".
--
Philip K.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Replace-project-kill-buffers-ignores-with-.-kill-buf.patch --]
[-- Type: text/x-diff, Size: 6296 bytes --]
From 6a9c268a340025bca428b5ec7c35229a29b4a95f Mon Sep 17 00:00:00 2001
From: Philip K <philip@warpmail.net>
Date: Thu, 16 Jul 2020 10:03:35 +0200
Subject: [PATCH] Replace project-kill-buffers-ignores with
...-kill-buffer-conditions
---
lisp/progmodes/project.el | 119 ++++++++++++++++++++++++++++++++------
1 file changed, 100 insertions(+), 19 deletions(-)
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index 67ce3dc7d9..869401606a 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -843,16 +843,66 @@ project-switch-to-buffer
nil
predicate))))
-(defcustom project-kill-buffers-ignores
- '("\\*Help\\*")
- "Conditions for buffers `project-kill-buffers' should not kill.
-Each condition is either a regular expression matching a buffer
-name, or a predicate function that takes a buffer object as
-argument and returns non-nil if it matches. Buffers that match
-any of the conditions will not be killed."
- :type '(repeat (choice regexp function))
+(defcustom project-kill-buffer-conditions
+ '(buffer-file-name ; All file-visiting buffers are included.
+ ;; Most of the temp buffers in the background:
+ (major-mode . fundamental-mode)
+ ;; non-text buffer such as xref, occur, vc, log, ...
+ (derived-mode . special-mode)
+ (derived-mode . compilation-mode)
+ (derived-mode . dired-mode)
+ (derived-mode . diff-mode))
+ "Conditions for buffers `project-kill-buffers' should kill.
+Each condition is either:
+- a regular expression, to match a buffer name,
+- a predicate function that takes a buffer object as argument
+ and returns non-nil if the buffer should be killed,
+- a symbol, denoting a buffer local variable, where the buffer
+ is killed if it's value is non-nil. If the symbol also has a
+ function slot, it will be interpreted as a function first.
+- a cons-cell, where the car describes how to interpret the cdr.
+ The car can be one of the following:
+ * `major-mode': the buffer is killed if the buffers major
+ mode is eq to the cons-cell's cdr
+ * `defived-mode': the buffer is killed if the buffers major
+ mode is derived from the major mode denoted by the cons-cell's
+ cdr
+ * `not': the cdr is interpreted as a negation of a condition.
+ * `and': the cdr is a list of recursive conditions, that all have
+ to be met.
+ * `or': the cdr is a list of recursive conditions, of which at
+ least one has to be met.
+
+Buffers that match any of the conditions will not be killed."
+ :type '(repeat (choice regexp function symbol
+ (cons :tag "Major mode"
+ (const major-mode) symbol)
+ (cons :tag "Derived mode"
+ (const derived-mode) symbol)
+ (cons :tag "Negation"
+ (const not) sexp)
+ (cons :tag "Conjunction"
+ (const and) sexp)
+ (cons :tag "Disjunction"
+ (const or) sexp)))
:version "28.1"
- :package-version '(project . "0.5.0"))
+ :group 'project
+ :package-version '(project . "0.6.0"))
+
+(defcustom project-kill-buffers-ignores nil
+ "Conditions for buffers `project-kill-buffers' should not kill."
+ :type '(repeat choice regexp function)
+ :set (lambda (var val)
+ (add-to-list 'project-kill-buffer-conditions
+ (cons 'not val))
+ (custom-set-default var val))
+ :version "28.1"
+ :group 'project
+ :package-version '(project . "0.6.0")))
+
+(make-obsolete-variable 'project-kill-buffers-ignores
+ 'project-kill-buffer-conditions
+ "0.6.0")
(defun project--buffer-list (pr)
"Return the list of all buffers in project PR."
@@ -864,6 +914,41 @@ project--buffer-list
(push buf bufs)))
(nreverse bufs)))
+(defun project--kill-buffer-check (buf &optional conds)
+ "Throw"
+ (unless conds
+ (setq conds project-kill-buffer-conditions))
+ (catch (if (eq project-kill-buffer-conditions conds)
+ 'kill 'other)
+ (dolist (c conds)
+ (when (cond
+ ((stringp c)
+ (string-match-p c (buffer-name buf)))
+ ((and (functionp c)
+ (ignore-errors (funcall c buf))))
+ ((and (symbolp c) (boundp c))
+ (buffer-local-value c buf))
+ ((eq (car-safe c) 'major-mode)
+ (eq (buffer-local-value 'major-mode buf)
+ (cdr c)))
+ ((eq (car-safe c) 'derived-mode)
+ (provided-mode-derived-p
+ (buffer-local-value 'major-mode buf)
+ (cdr c)))
+ ((eq (car-safe c) 'not)
+ (not (project--kill-buffer-check buf (cdr c))))
+ ((eq (car-safe c) 'and)
+ (seq-every-p
+ (apply-partially #'project--kill-buffer-check
+ buf)
+ (cdr c)))
+ ((eq (car-safe c) 'or)
+ (seq-some
+ (apply-partially #'project--kill-buffer-check
+ buf)
+ (cdr c))))
+ (throw 'kill t)))))
+
;;;###autoload
(defun project-kill-buffers ()
"Kill all live buffers belonging to the current project.
@@ -873,17 +958,13 @@ project-kill-buffers
(interactive)
(let ((pr (project-current t)) bufs)
(dolist (buf (project--buffer-list pr))
- (unless (seq-some
- (lambda (c)
- (cond ((stringp c)
- (string-match-p c (buffer-name buf)))
- ((functionp c)
- (funcall c buf))))
- project-kill-buffers-ignores)
+ (when (project--kill-buffer-check buf)
(push buf bufs)))
- (when (yes-or-no-p (format "Kill %d buffers in %s? "
- (length bufs) (project-root pr)))
- (mapc #'kill-buffer bufs))))
+ (if (null bufs)
+ (message "No buffers to kill")
+ (when (yes-or-no-p (format "Kill %d buffers in %s? "
+ (length bufs) (project-root pr)))
+ (mapc #'kill-buffer bufs)))))
\f
;;; Project list
--
2.20.1
next prev parent reply other threads:[~2020-07-18 12:48 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-16 8:15 bug#42386: [PATCH] Handle symbols in project-kill-buffers-ignores Philip K.
[not found] ` <handler.42386.B.159488736413990.ack@debbugs.gnu.org>
2020-07-16 8:47 ` bug#42386: Acknowledgement ([PATCH] Handle symbols in project-kill-buffers-ignores) Philip K.
2020-07-16 15:14 ` Eli Zaretskii
2020-07-16 18:08 ` Philip K.
2020-07-16 18:16 ` Philip K.
2020-07-16 19:35 ` Eli Zaretskii
2020-07-16 22:22 ` Philip K.
2020-07-17 6:38 ` Eli Zaretskii
2020-07-17 8:16 ` Philip K.
2020-07-17 10:49 ` Eli Zaretskii
2020-07-17 11:17 ` Philip K.
2020-07-17 11:26 ` Eli Zaretskii
2020-07-17 15:30 ` Philip K.
2020-07-17 15:43 ` Dmitry Gutov
2020-07-17 17:16 ` Philip K.
2020-07-17 22:21 ` Dmitry Gutov
2020-07-18 12:48 ` Philip K. [this message]
2020-07-19 23:10 ` Dmitry Gutov
2020-07-20 12:07 ` Philip K.
2020-07-20 13:39 ` Dmitry Gutov
2020-07-21 9:11 ` Philip K.
2020-07-21 14:27 ` Eli Zaretskii
2020-07-21 18:35 ` Philip K.
2020-07-21 18:57 ` Eli Zaretskii
2020-07-21 20:47 ` Dmitry Gutov
2020-07-21 18:45 ` Dmitry Gutov
2020-07-21 18:51 ` Philip K.
2020-07-27 16:26 ` Dmitry Gutov
2020-07-27 18:33 ` Philip K.
2020-07-28 22:33 ` Dmitry Gutov
2020-07-16 18:41 ` Dmitry Gutov
2020-07-16 22:46 ` Juri Linkov
2020-07-17 0:23 ` Dmitry Gutov
2020-07-16 13:43 ` bug#42386: [PATCH] Handle symbols in project-kill-buffers-ignores Dmitry Gutov
2020-07-16 18:00 ` Philip K.
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=87mu3xdm50.fsf@warpmail.net \
--to=philip@warpmail.net \
--cc=42386@debbugs.gnu.org \
--cc=dgutov@yandex.ru \
/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.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
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).