From 72b38c78bbd70e1e496541abe49700740a1ca72b Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Wed, 1 May 2019 09:26:24 +0200 Subject: [PATCH] Modified menu function prompt. --- elpher.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elpher.el b/elpher.el index 12ef1c8..a910317 100644 --- a/elpher.el +++ b/elpher.el @@ -680,7 +680,7 @@ The result is stored as a string in the variable ‘elpher-selector-string’." (let* ((link-map (elpher-build-link-map))) (if link-map (let ((key (let ((completion-ignore-case t)) - (completing-read "Menu item: " link-map nil t)))) + (completing-read "Directory entry/link (tab to autocomplete): " link-map nil t)))) (if (and key (> (length key) 0)) (let ((b (cdr (assoc key link-map)))) (goto-char (button-start b)) -- 2.20.1