branch: externals/consult
commit 734c60c2af86e3bdf4a70e48dad24c02a3560fcd
Author: Daniel Mendler <m...@daniel-mendler.de>
Commit: Daniel Mendler <m...@daniel-mendler.de>

    consult-buffer-list: Expand docstring
---
 consult.el | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/consult.el b/consult.el
index 67ebf6b992..a19da23392 100644
--- a/consult.el
+++ b/consult.el
@@ -229,10 +229,13 @@ buffers.  The regular expressions are matched case 
sensitively."
 
 (defcustom consult-buffer-list #'buffer-list
   "List of buffers to use for selection.
-By default, the function `buffer-list' is used which returns all
-buffers.  Set it to a custom function to configure buffer isolation."
+By default, the variable is set to the function `buffer-list', which
+returns all buffers from all frames.  Set it to
+`consult--frame-buffer-list' to only use buffers belonging to the
+current frame (or tab-bar tab).  Alternatively use a custom function for
+custom buffer isolation."
   :type `(choice (const :tag "All buffers" ,#'buffer-list)
-                 (const :tag "Frame buffers" ,#'consult--frame-buffer-list)
+                 (const :tag "Frame/Tab buffers" ,#'consult--frame-buffer-list)
                  (function :tag "Custom function")))
 
 (defcustom consult-buffer-sources

Reply via email to