mirror of
https://github.com/protesilaos/denote.git
synced 2026-09-10 07:16:20 -04:00
Make denote-link--map-over-notes less strict about what it matches
This is in response to issue 503, where Oliver Epper encountered an error while trying to link files which are not plain text: <https://github.com/protesilaos/denote/issues/503>.
This commit is contained in:
parent
8e8b43b3cc
commit
9b2cf81054
|
|
@ -5163,8 +5163,8 @@ inserts links with just the identifier."
|
|||
nil t))))
|
||||
|
||||
(defun denote-link--map-over-notes ()
|
||||
"Return list of `denote-file-is-note-p' from Dired marked items."
|
||||
(seq-filter #'denote-file-is-note-p (dired-get-marked-files)))
|
||||
"Return list of `denote-file-has-denoted-filename-p' from Dired marked items."
|
||||
(seq-filter #'denote-file-has-denoted-filename-p (dired-get-marked-files)))
|
||||
|
||||
;;;###autoload
|
||||
(defun denote-link-dired-marked-notes (files buffer &optional id-only)
|
||||
|
|
|
|||
Loading…
Reference in a new issue