update of packages

This commit is contained in:
2023-11-04 19:26:41 +01:00
parent e162a12b58
commit 3b54a3236d
726 changed files with 297673 additions and 34585 deletions

View File

@@ -353,7 +353,12 @@ Return Org Roam node or nil."
If optional NODE is nil, return the citekey for node at point.
ASSERT will be passed to `org-roam-node-at-point'. If it is
non-nil, an error will be thrown if there is no node at point."
(when-let ((node (or node (org-roam-node-at-point assert)))
(when-let ((node (or node
;; try to get node at point only in Org mode;
;; can brake other things if not in Org mode, see e.g.
;; https://github.com/org-roam/org-roam-bibtex/issues/268
(and (derived-mode-p 'org-mode)
(org-roam-node-at-point assert))))
(node-refs (cdr (assoc-string
"ROAM_REFS"
(org-roam-node-properties node) t))))

View File

@@ -1,8 +1,11 @@
(define-package "org-roam-bibtex" "20221104.2139" "Org Roam meets BibTeX"
(define-package "org-roam-bibtex" "20230628.2036" "Org Roam meets BibTeX"
'((emacs "27.1")
(org-roam "2.2.0")
(bibtex-completion "2.0.0"))
:commit "3810ddcd9d69ab27a40d5ba88b553df8db1b4884" :authors
:commit "f90ac12b7ae5ba7bcdebfe53796fd0417946e5e1" :authors
'(("Mykhailo Shevchuk" . "mail@mshevchuk.com")
("Leo Vivier" . "leo.vivier+dev@gmail.com"))
:maintainers
'(("Mykhailo Shevchuk" . "mail@mshevchuk.com")
("Leo Vivier" . "leo.vivier+dev@gmail.com"))
:maintainer

View File

@@ -588,7 +588,7 @@ created. PROPS are additional properties for `org-roam-capture-'."
;; (by setting `org-capture-entry'), and Org-roam converts the
;; whole template list, we must do the conversion of the entry
;; ourselves
(props (--> (or props (list :finalize 'find-file))
(props (--> props
(plist-put it :call-location (point-marker))))
(org-capture-entry
(org-roam-capture--convert-template template props))