diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-12-30 18:06:05 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-12-30 18:06:05 -0500 |
commit | a10e67dbfff0df878fc4b3b0f0b690afc1fbfc8d (patch) | |
tree | 426ee81dc02bcec2b7acb857aa50857dd973b906 /bog.el | |
parent | df93878aa8c590579774593b747a5000cbb35c42 (diff) | |
download | bog-a10e67dbfff0df878fc4b3b0f0b690afc1fbfc8d.tar.gz |
Add command to find files with no heading citekey
Diffstat (limited to 'bog.el')
-rw-r--r-- | bog.el | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -730,6 +730,30 @@ Generate a file name with the form (directory-files bog-stage-directory t directory-files-no-dot-files-regexp))) +;;;###autoload +(defun bog-list-orphan-files () + "Find files in `bog-file-directory' without a citekey heading." + (interactive) + (let ((head-cks (bog-all-heading-citekeys))) + (with-current-buffer (get-buffer-create "*Bog orphan files*") + (erase-buffer) + (setq default-directory bog-root-directory) + (insert ?\n) + (dolist (ck-file (bog-all-citekey-files)) + (let ((base-name (file-name-nondirectory ck-file)) + (case-fold-search nil)) + (unless (and (string-match (concat "\\`" bog-citekey-format) + base-name) + (member (match-string-no-properties 0 base-name) + head-cks)) + (insert (format "- [[file:%s]]\n" (file-relative-name ck-file)))))) + (goto-char (point-min)) + (org-mode) + (if (/= (buffer-size) 1) + (pop-to-buffer (current-buffer)) + (message "No orphans found") + (kill-buffer))))) + ;;; BibTeX-related |