From 5cbde371daefb21eafc47ca087317f12f30645dd Mon Sep 17 00:00:00 2001 From: cage Date: Sun, 2 May 2021 13:49:20 +0200 Subject: [PATCH] - improved docstring for tour-mode. --- src/ui-goodies.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ui-goodies.lisp b/src/ui-goodies.lisp index 2a1e2c2..944d8e1 100644 --- a/src/ui-goodies.lisp +++ b/src/ui-goodies.lisp @@ -1891,7 +1891,11 @@ gemini://gemini.circumlunar.space/docs/companion/subscription.gmi (defun tour-mode-link () "Enable \"tour mode\". Ask for link indices, each link corresponding to the index will be saved in a special queue that - can be opened using `next-tour-link' in a last-in last-out way." + can be opened using `next-tour-link' in a last-in last-out way. + + If user input is made by a single word only (i.e. a string with no + spaces), the input is used as a regular expression to collect + matching links (matching name or URI)." (with-accessors ((links open-message-link-window::links)) *open-message-link-window* (ask-string-input (tour-mode-on-input-completed-clsr links) :prompt (format nil (_ "link indices: ")))))