summaryrefslogtreecommitdiff
path: root/bog.el
AgeCommit message (Collapse)Author
2016-01-24Move a few functionsKyle Meyer
2016-01-23bog--with-citekey-cache: Use uninterned symbolKyle Meyer
2016-01-22Don't assume font-lock-ensure is definedKyle Meyer
Fixes #5. Also, * Use font-lock-flush instead of font-lock-ensure, which wasn't removing Bog-related highlighting when turning off bog-mode. * Check that font-lock-mode is enabled before calling font-lock function.
2016-01-20bog-list-orphan-citekeys: Fix sorting in Emacs 25Kyle Meyer
2016-01-20bog-clear-citekey-cache: Fix indentationKyle Meyer
2016-01-20bog-clear-citekey-cache: CosmeticsKyle Meyer
2016-01-17Bump versionv1.1.0Kyle Meyer
2016-01-06Update copyright yearsKyle Meyer
2015-12-30Add command to find files with no heading citekeyKyle Meyer
2015-12-30Add command to rename existing citekey fileKyle Meyer
2015-12-13bog-list-orphan-citekeys: Remove unused variableKyle Meyer
2015-09-18bog--prepare-bib-file: Set dialectKyle Meyer
Otherwise, if this has not already been done globally (e.g., by visiting a .bib file), bibtex-entry-head is not set and bibtex-valid-entry fails with a type error.
2015-09-05goto-citekey-heading: Prefer current indirect bufferKyle Meyer
When in an indirect buffer for a file in bog-notes, jump to the heading in the indirect buffer instead of the base buffer.
2015-09-05bog-goto-citekey-heading-in-notes: CosmeticsKyle Meyer
2015-09-05bog-{previous,next}-non-heading-citekey: CosmeticsKyle Meyer
2015-09-04Fix Emacs 25 compilation warningsKyle Meyer
2015-09-04bog-create-combined-bib: Add option to avoid promptKyle Meyer
2015-09-04bog-create-combined-bib: Correct docstringKyle Meyer
2015-08-13bog-file-ask-on-conflict: Use base name in promptKyle Meyer
2015-08-13search: Ignore restriction locksKyle Meyer
2015-08-13bog-citekey-p: Use string, not line, boundsKyle Meyer
2015-05-22Pass alists directly to completing-readKyle Meyer
Doh, I didn't know you could do that. Also, use assoc-string instead of assoc.
2015-05-04Bump versionv1.0.0Kyle Meyer
2015-04-11bog-staged-files: Don't return backup filesKyle Meyer
2015-04-11Use rx to construct bog-citekey-formatKyle Meyer
2015-03-16Support highlighting citekeys in non-Org buffersKyle Meyer
2015-03-16Replace commander with prefix mapKyle Meyer
2015-03-16Make context-functions check if in Org modeKyle Meyer
This will allow commands that use the context functions to work outside of Org.
2015-03-16Autoload all commands in bog-mode-mapKyle Meyer
2015-03-06Move bog-goto-citekey-heading-in-notesKyle Meyer
Join helper functions that used to be positioned near bog-goto-citekey-heading-in-buffer [1] with bog-goto-citekey-heading-in-notes helper functions. [1] 6baf69ba88998595940daab8896724ba430a4d2a
2015-03-06Remove bog-goto-citekey-heading-in-bufferKyle Meyer
This command wasn't too useful because, within a buffer, a citekey heading can easily be jumped to with the standard org-goto interface. Also, bog-goto-citekey-heading-in-notes will check the current file first, so it behaves the same as bog-goto-citekey-heading-in-buffer, except that it prompts with all citekeys instead of just those in the current buffer. Because a prompt limited to citekeys from the current buffer can be useful, make this prompt available with a double C-u.
2015-03-06Avoid infinite recursion when exit Bog View modeKyle Meyer
2015-03-06Reorganize citekey methodsKyle Meyer
2015-03-04Update copyright yearKyle Meyer
2015-03-04bog-create-combined-bib: Fix citekey sortingKyle Meyer
Sort citekeys after they're collected from marked files so that the list is sorted alphabetically, order and then alphabetically. (This fixes behavior that was introduced in 87f4e2ce8.)
2015-02-26Add bog-rename-staged-file-to-citekey to commanderKyle Meyer
2015-02-19Add bog-search-notes-for-citekey to commanderKyle Meyer
2015-02-19Split line in citekey selection function docstringsKyle Meyer
2015-02-19Don't sort with directory-files if not user-facingKyle Meyer
2015-02-19Rework citekey sortingKyle Meyer
- Try to only sort citekeys once. - Make functions that return citekeys sort them by default.
2015-02-19Extend citekey cachingKyle Meyer
- Support bib and file citekeys. - Allow caching for specific citekey categories to be enabled. - Support clearning cache for a specific citekey category.
2015-02-19bog-bib-citekeys: Remove extensionKyle Meyer
Remove '.bib' from citekeys, which was introduced in 16b60db1.
2015-02-19bog-{,non-}heading-citekeys-in-file: Set default-directoryKyle Meyer
Set the default directory so that Org mode is able to read any setup files that are specified with a relative path.
2015-02-19Use cl-lib instead of dashKyle Meyer
2015-02-19Rewrite bog-create-combined-bibKyle Meyer
- Add numerical argument to pass to dired-get-marked-files. - Expand docstring. - When missing citekey bib, prompt with citekey instead of file name.
2015-02-17Add view mode for BogKyle Meyer
2015-02-17Use regexp for bog-citekey-file-name-separatorsKyle Meyer
Use regular expression to specify separators. This allows more flexibility in customizing citekey file names and is easily fed to directory-files.
2015-02-17bog-bib-citekeys: Rewrite with directory-filesKyle Meyer
2015-02-17Rewrite bog-clean-and-rename-staged-bibsKyle Meyer
2015-02-17bog-notes: Rewrite with directory-filesKyle Meyer