branch: externals/denote commit 6fe68be094def712e25eb25008c56d29d4a3e34a Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Fix denote-sequence-file-prompt indentation --- denote-sequence.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/denote-sequence.el b/denote-sequence.el index b6984977bc..3378dfafb3 100644 --- a/denote-sequence.el +++ b/denote-sequence.el @@ -247,13 +247,13 @@ Return selected type as a symbol." "Prompt for file with sequence in variable `denote-directory'. A sequence is a Denote signature that conforms with `denote-sequence-p'." (if-let* ((relative-files (mapcar #'denote-get-file-name-relative-to-denote-directory - (denote-sequence-get-all-files))) - (prompt "Select FILE with sequence: ") - (input (completing-read - prompt - (denote--completion-table 'file relative-files) - nil :require-match - nil 'denote-sequence-file-history))) + (denote-sequence-get-all-files))) + (prompt "Select FILE with sequence: ") + (input (completing-read + prompt + (denote--completion-table 'file relative-files) + nil :require-match + nil 'denote-sequence-file-history))) (concat (denote-directory) input) (error "There are no sequence notes in the `denote-directory'")))