Bläddra i källkod

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 år sedan
förälder
incheckning
18dca3478a
1 ändrade filer med 1 tillägg och 1 borttagningar
  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.