Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-22 | Give clearer names to helper functions | Kyle Meyer | |
Previously, the names were minor variants of the corresponding interactive function names. Rename to make it clear which functions are internal helper functions. | |||
2014-11-22 | Add some missing docstrings | Kyle Meyer | |
2014-11-22 | Remove an unhelpful let binding | Kyle Meyer | |
2014-11-12 | Restructure search functions | Kyle Meyer | |
Use `bog-search-notes' in `bog-search-notes-for-citekey' instead of repeating logic. The STRING argument added to `bog-search-notes' follows `org-search-view'. | |||
2014-11-12 | bog-search-notes-for-citekey: Use fallback prompt | Kyle Meyer | |
2014-11-12 | Shorten commentary | Kyle Meyer | |
2014-11-11 | Stop quoting lambdas | Kyle Meyer | |
2014-11-01 | Use org-before-first-heading-p | Kyle Meyer | |
2014-11-01 | Remove some useless let bindings | Kyle Meyer | |
2014-11-01 | Replace some cond instances with case | Kyle Meyer | |
2014-11-01 | bog-citekey-from-property: Cosmetic changes | Kyle Meyer | |
2014-11-01 | bog-citekeys-in-file: Replace add-to-list with push | Kyle Meyer | |
2014-11-01 | Rework citekey collection | Kyle Meyer | |
- Split into two functions instead of having no-sort argument. - Use push instead of add-to-list. | |||
2014-11-01 | Rewrite some functions to avoid find-file-noselect | Kyle Meyer | |
Several functions relied on find-file-noselect. I hadn't realized that it's a bad idea to use this non-interactively [1]. [1] http://emacs.stackexchange.com/questions/145/what-are-some-built-in-packages-with-nice-source-code/151#151 | |||
2014-10-29 | Fix bog-citekey-at-point for hyphenated citekeys | Kyle Meyer | |
Because bog-citekey-at-point used "(thing-at-point 'word)", it didn't handle hyphenated citekeys properly. Now the function relies on a set of characters that are allowed to precede citekeys. | |||
2014-10-16 | bog-citekey-from-heading-title: Cover edge case | Kyle Meyer | |
Don't throw error if point is before first heading. | |||
2014-10-16 | Use org-with-wide-buffer macro | Kyle Meyer | |
2014-10-15 | Restrict keywords to built-in keywords | Kyle Meyer | |
2014-10-15 | Add command bog-insert-heading-citekey | Kyle Meyer | |
2014-10-15 | Use cache for bog-all{-heading}-citekeys | Kyle Meyer | |
2014-10-15 | bog-selection-method: Add docstring | Kyle Meyer | |
2014-10-15 | bog-root-directory: Simplify docstring | Kyle Meyer | |
2014-10-15 | bog-rename-staged-file-to-citekey: Fix docstring | Kyle Meyer | |
2014-10-15 | Replace some 'error' instances with 'user-error' | Kyle Meyer | |
2014-06-05 | Note limitation of goto functions | Kyle Meyer | |
2014-06-05 | Simplify bog-citekey-p | Kyle Meyer | |
2014-06-05 | Rename bog-citekey-only-p to bog-citekey-p | Kyle Meyer | |
Old `bog-citekey-p' was not being used. | |||
2014-06-05 | Remove bog-citekey-function | Kyle Meyer | |
Before, citekeys could be listed as either heading titles or properties, but these two styles could not be mixed. Now, they can, and the following method is used to find the citekey. 1. Take the citekey from title of the current heading. 2. Take the citekey from the property of the current heading. 3. If no citekey found, go to parent heading and repeat. The process stops as soon as a citekey is found or a top-level heading is reached. | |||
2014-05-28 | Add URL to commentary | Kyle Meyer | |
2014-05-24 | Move default notes directory to subdirectory | Kyle Meyer | |
2014-05-07 | Use marker directly instead of extracting position | Kyle Meyer | |
2014-05-07 | Add bog-citekey-tree-to-indirect-buffer | Kyle Meyer | |
2014-05-07 | Fix lowercase org in docstring for consistency | Kyle Meyer | |
2014-05-06 | Widen if needed in goto-heading functions | Kyle Meyer | |
Widen the buffer if the heading is outside the currently narrowed region. | |||
2014-05-01 | Remove Bog agenda command | Kyle Meyer | |
2014-05-01 | Add Bog commander | Kyle Meyer | |
2014-05-01 | Hook up other functions to citekey selection | Kyle Meyer | |
2014-05-01 | Citekey selection macros | Kyle Meyer | |
2014-05-01 | Functions for collecting citekeys from notes | Kyle Meyer | |
For bigger Org files, these will probably be pretty slow, in which case I can look into caching the results. | |||
2014-05-01 | Use find-buffer-visiting to check if buffer open | Kyle Meyer | |
2014-05-01 | Correct misplaced save-excursion | Kyle Meyer | |
2014-05-01 | Fix bog-bib-citekeys when bog-bib-file is non-nil | Kyle Meyer | |
2014-05-01 | Fix docstring typo | Kyle Meyer | |
2014-05-01 | Remove leftover debugging message | Kyle Meyer | |
2014-04-30 | Add bog-refile to the keymap | Kyle Meyer | |
Steal "w" from `bog-search-citekey-on-web' to be consistent with `org-refile'. | |||
2014-04-30 | Define keymap in alphabetical order | Kyle Meyer | |
2014-04-30 | Fix reference to README in commentary | Kyle Meyer | |
This should've been updated with 9eb2776. | |||
2014-04-26 | Clarify some docstrings | Kyle Meyer | |
2014-04-26 | Generalize PDF functions to any file type | Kyle Meyer | |
2014-04-26 | Prompt with bib citekeys in bog-find-citekey-bib | Kyle Meyer | |
When a prefix argument is given to `bog-find-citekey-bib', `bog-pdf-citekeys` was being used to generate the collection of available citekeys instead of`bog-bib-citekeys'. |