summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bog.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/bog.el b/bog.el
index 339ab80..c77100c 100644
--- a/bog.el
+++ b/bog.el
@@ -371,8 +371,9 @@ With prefix FILE, include only orphan citekeys from that file."
(let ((files (or (and file (list file))
(bog-notes)))
(heading-cks (bog-all-heading-citekeys))
+ (bufname "*Bog orphan citekeys*")
cks)
- (with-current-buffer (get-buffer-create "*Bog orphan citekeys*")
+ (with-current-buffer (get-buffer-create bufname)
(erase-buffer)
(insert "\n")
(-each files
@@ -386,7 +387,9 @@ With prefix FILE, include only orphan citekeys from that file."
(insert (format "* %s\n\n" (file-name-nondirectory f)))
(insert (concat cks "\n\n")))))
(org-mode)
- (show-all))))
+ (show-all)
+ (goto-char (point-min)))
+ (pop-to-buffer bufname)))
;;; Citekey-associated files