[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote 5758f2d718 1/2: Use a completion table with file
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote 5758f2d718 1/2: Use a completion table with file category for denote-silo-extras--directory-prompt |
Date: |
Wed, 3 Jul 2024 04:00:05 -0400 (EDT) |
branch: externals/denote
commit 5758f2d7182e027eac263e35dedaf38d35bb7232
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Use a completion table with file category for
denote-silo-extras--directory-prompt
---
denote-silo-extras.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/denote-silo-extras.el b/denote-silo-extras.el
index 1e4cfd5155..c28c235b92 100644
--- a/denote-silo-extras.el
+++ b/denote-silo-extras.el
@@ -61,8 +61,8 @@ as the variable `denote-directory'."
(let ((default (car denote-silo-extras-directory-history)))
(completing-read
(format-prompt "Select a silo" default)
- denote-silo-extras-directories nil :require-match
- nil 'denote-silo-extras-directory-history)))
+ (denote--completion-table 'file denote-silo-extras-directories)
+ nil :require-match nil 'denote-silo-extras-directory-history)))
;;;###autoload
(defun denote-silo-extras-create-note (silo)