[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/bufferlo a777218a3c 34/37: Stylistic improvements
From: |
ELPA Syncer |
Subject: |
[elpa] externals/bufferlo a777218a3c 34/37: Stylistic improvements |
Date: |
Sun, 5 Nov 2023 09:57:34 -0500 (EST) |
branch: externals/bufferlo
commit a777218a3c384f22c05b8a6eeb455906f291456e
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Florian Rommel <mail@florommel.de>
Stylistic improvements
As suggested on the emacs-devel mailing list:
https://lists.gnu.org/archive/html/emacs-devel/2023-10/msg00730.html
---
bufferlo.el | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/bufferlo.el b/bufferlo.el
index 3bc92b5030..1021555136 100644
--- a/bufferlo.el
+++ b/bufferlo.el
@@ -1,4 +1,5 @@
;;; bufferlo.el --- Manage frame/tab-local buffer lists -*- lexical-binding: t
-*-
+
;; Copyright (C) 2021-2023 Free Software Foundation, Inc.
;; Author: Florian Rommel <mail@florommel.de>
@@ -69,46 +70,39 @@ This is also required to make `next-buffer' and
`previous-buffer'
work as expected.
Changes to this variable must be made before enabling
`bufferlo-mode' in order to take effect."
- :group 'bufferlo
:type 'boolean)
(defcustom bufferlo-include-buried-buffers t
"Include buried buffers in the local list (`bufferlo-buffer-list').
Use `bufferlo-bury' to remove and bury a buffer if this is set to t."
- :group 'bufferlo
:type 'boolean)
(defcustom bufferlo-include-buffer-filters nil
"Buffers that should always get included in a new tab or frame.
This is a list of regular expressions that match buffer names.
This overrides buffers excluded by `bufferlo-exclude-buffer-filters.'"
- :group 'bufferlo
:type '(repeat string))
(defcustom bufferlo-exclude-buffer-filters '(".*")
"Buffers that should always get excluded in a new tab or frame.
This is a list of regular expressions that match buffer names.
Buffers included by `bufferlo-include-buffer-filters' take precedence."
- :group 'bufferlo
:type '(repeat string))
(defcustom bufferlo-hidden-buffers nil
- "Buffers that should be hidden in the local buffer lists,
-even if they are displayed in the current frame or tab.
-This is a list of regular expressions that match buffer names."
- :group 'bufferlo
+ "List of regexps matching names of buffers to hide in the local buffer lists.
+They are hidden even if they are displayed in the current frame
+or tab."
:type '(repeat string))
(defcustom bufferlo-kill-buffers-exclude-filters
'("\\` " "\\`\\*Messages\\*\\'" "\\`\\*scratch\\*\\'")
"Buffers that should not be killed by `bufferlo-kill-buffers'.
This is a list of regular expressions that match buffer names."
- :group 'bufferlo
:type '(repeat string))
(defcustom bufferlo-ibuffer-bind-local-buffer-filter t
"If this is true bind the local buffer filter to \"/ l\" in ibuffer."
- :group 'bufferlo
:type '(repeat string))
(defvar bufferlo--desktop-advice-active nil)
@@ -120,7 +114,6 @@ This is a list of regular expressions that match buffer
names."
(define-minor-mode bufferlo-mode
"Manage frame/tab-local buffers."
:global t
- :group 'bufferlo
:require 'bufferlo
:init-value nil
:lighter nil
- [elpa] externals/bufferlo 2fc945a81b 10/37: Update README, (continued)
- [elpa] externals/bufferlo 2fc945a81b 10/37: Update README, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 79eba76029 06/37: Include buried buffers, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo ecae697601 18/37: Fix local ibuffer buffer name, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 2bcbde24be 29/37: Update documentation, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 6d27fbd704 37/37: Add COPYING to elpaignore, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 1c16e19694 25/37: Fix frame predicate to include hidden buffers, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 795ef9e937 13/37: Fix README, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 1660b52975 24/37: Cleanup documentation, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 93154c1bc1 05/37: Add interactive auxiliary functions, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo ef806d7155 19/37: Fix bug when switching to a tab with empty local buffer list, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo a777218a3c 34/37: Stylistic improvements,
ELPA Syncer <=
- [elpa] externals/bufferlo 521339ae25 20/37: Fix window-state-put, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 43e03ee793 33/37: Add .elpaignore, ELPA Syncer, 2023/11/05