oc: Upon inserting citations, add a space between keys

* lisp/oc.el (org-cite-make-insert-processor): Add a space in addition
to the semicolon.
This commit is contained in:
Nicolas Goaziou 2021-10-11 11:38:18 +02:00
parent eb40091929
commit 18dca3478a
1 changed files with 1 additions and 1 deletions

View File

@ -1598,7 +1598,7 @@ The generated function inserts or edit a citation at point. More specifically,
(concat "/" style)
""))
"")
(mapconcat (lambda (k) (concat "@" k)) keys ";"))))))))
(mapconcat (lambda (k) (concat "@" k)) keys "; "))))))))
(defun org-cite-insert (arg)
"Insert a citation at point.