(fix): support %i in org-roam-protocol (#1445)

master
Sean Farley 5 years ago committed by GitHub
parent 0b964ca428
commit 8ad57b1218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      org-roam-protocol.el

@ -72,11 +72,11 @@ It opens or creates a note with the given ref.
(orglink
(org-link-make-string ref (or (org-string-nw-p title) ref))))
(when org-roam-protocol-store-links
(push (list ref title) org-stored-links)
(org-link-store-props :type type
:link ref
:annotation orglink
:initial body))))
(push (list ref title) org-stored-links))
(org-link-store-props :type type
:link ref
:annotation orglink
:initial body)))
(let* ((org-roam-capture-templates org-roam-capture-ref-templates)
(org-roam-capture--context 'ref)
(org-roam-capture--info decoded-alist)

Loading…
Cancel
Save