Browse Source

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.
Nicolas Goaziou 3 years ago
parent
commit
18dca3478a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/oc.el

+ 1 - 1
lisp/oc.el

@@ -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.