mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-22 07:09:47 +00:00
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:
parent
eb40091929
commit
18dca3478a
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user