summaryrefslogtreecommitdiff
path: root/bog.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2016-10-24 21:23:07 -0400
committerKyle Meyer <kyle@kyleam.com>2016-10-24 21:28:42 -0400
commita6b566a4eca0dcc89a7d2af42e057b4e2561189d (patch)
treeaff82f1be9951f98f71501300391c21084ddb3c2 /bog.el
parentfc71c376546ed01060200de91d007f2a179bc601 (diff)
downloadbog-a6b566a4eca0dcc89a7d2af42e057b4e2561189d.tar.gz
Add bog-clean-bib-hook
Diffstat (limited to 'bog.el')
-rw-r--r--bog.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/bog.el b/bog.el
index 4c5ae25..dd90bbc 100644
--- a/bog.el
+++ b/bog.el
@@ -272,6 +272,13 @@ Like `org-mode-syntax-table', but hyphens and underscores are
treated as word characters. '@' will be considered a word
character if `bog-citekey-format-allow-at' is non-nil.")
+(defcustom bog-clean-bib-hook nil
+ "Hook run during `bog-clean-and-rename-staged-bibs' call.
+After each bib file is processed, functions in this hook will be
+called in a buffer visiting the bib file."
+ :package-version '(bog . "1.3.0")
+ :type 'hook)
+
;;; Citekey methods
@@ -870,7 +877,8 @@ one entry per BibTeX file."
(let ((dir (file-name-directory bib-file)))
(unless (file-exists-p dir)
(make-directory dir)))
- (write-file bib-file))
+ (write-file bib-file)
+ (run-hooks 'bog-clean-bib-hook))
;; If a buffer was visiting the original bib file, point it to the
;; new file.
(let ((file-buf (find-buffer-visiting file)))