[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/bufferlo 795ef9e937 13/37: Fix README
From: |
ELPA Syncer |
Subject: |
[elpa] externals/bufferlo 795ef9e937 13/37: Fix README |
Date: |
Sun, 5 Nov 2023 09:57:32 -0500 (EST) |
branch: externals/bufferlo
commit 795ef9e937ef4d44a62e5250d1059903f58d596a
Author: Florian Rommel <mail@florommel.de>
Commit: Florian Rommel <mail@florommel.de>
Fix README
---
README.org | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/README.org b/README.org
index 09359512fe..f8935d6227 100644
--- a/README.org
+++ b/README.org
@@ -50,7 +50,7 @@ Use the bufferlo buffer-list commands as an alternative to the
respective global commands:
- ~bufferlo-switch-to-buffer~:
The ~switch-to-buffer~ command filtered for local buffers.
- Call it with the prefix argument to get the lobal list (all buffers).
+ Call it with the prefix argument to get the global list (all buffers).
- ~bufferlo-ibuffer~:
~ibuffer~ filtered for local buffers.
@@ -112,7 +112,7 @@ This is an example configuration:
#+end_src
[[./img/consult1.svg]]
-Fig1: All buffers are shown; the local buffers are grouped separately.
+Fig.1: All buffers are shown; the local buffers are grouped separately.
You can also configure consult-buffer to hide the non-local buffers by default:
#+begin_src emacs-lisp
@@ -158,15 +158,18 @@ Fig.2: By entering 'a'+<space>, the global buffer list is
shown ("All Buffers").
#+begin_src emacs-lisp
(defun ivy-bufferlo-switch-buffer ()
- "Switch to another local buffer."
- (interactive)
- (ivy-read "Switch to local buffer: " #'internal-complete-buffer
- :predicate (lambda (b) (bufferlo-local-buffer-p (cdr b)))
- :keymap ivy-switch-buffer-map
- :preselect (buffer-name (other-buffer (current-buffer)))
- :action #'ivy--switch-buffer-action
- :matcher #'ivy--switch-buffer-matcher
- :caller 'ivy-switch-buffer))
+ "Switch to another local buffer.
+ If the prefix arument is given, include all buffers."
+ (interactive)
+ (if current-prefix-arg
+ (ivy-switch-buffer)
+ (ivy-read "Switch to local buffer: " #'internal-complete-buffer
+ :predicate (lambda (b) (bufferlo-local-buffer-p (cdr b)))
+ :keymap ivy-switch-buffer-map
+ :preselect (buffer-name (other-buffer (current-buffer)))
+ :action #'ivy--switch-buffer-action
+ :matcher #'ivy--switch-buffer-matcher
+ :caller 'ivy-switch-buffer)))
#+end_src
- [elpa] externals/bufferlo 598e20cf3b 31/37: Fix tab duplication on emacs < 29, (continued)
- [elpa] externals/bufferlo 598e20cf3b 31/37: Fix tab duplication on emacs < 29, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 6f3b79369f 02/37: Add README, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo 83586af819 07/37: Fix empty buffer list, ELPA Syncer, 2023/11/05
- [elpa] externals/bufferlo d74f2c1ece 21/37: Add bufferlo-remove-non-exclusive-buffers, ELPA Syncer, 2023/11/05
- [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 <=
- [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, 2023/11/05
- [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