summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-02-15Change own email addressHEADmasterBasil L. Contovounesios
2024-01-23* .github/workflows/test.yml: Add Emacs 29.2.Basil L. Contovounesios
2024-01-14* .github/workflows/test.yml: Update CI versions.Basil L. Contovounesios
2023-05-21Release version 1.3.3v1.3.3Kyle Meyer
2023-04-11* README.org: Replace Travis with GitHub CI badge.Basil L. Contovounesios
2023-04-11Merge branch 'blc/github' [#16]Basil L. Contovounesios
2023-04-11Replace Travis with GitHub CI.Basil L. Contovounesios
* .github/workflows/test.yml: New file. * .travis.yml: Delete file.
2023-04-11Merge branch 'blc/org' [#15]Basil L. Contovounesios
2023-04-10Replace deprecated org-show-contextBasil L. Contovounesios
* bog.el: Update copyright years. (bog--fold-show-context): New compatibility shim for org-show-context, deprecated alias of org-fold-show-context new in Org 9.6 / Emacs 29. (bog-goto-citekey-heading-in-notes, bog-next-non-heading-citekey) (bog-previous-non-heading-citekey): Use it in place of org-show-context.
2022-08-19Merge branch 'blc/loaddefs' [#14]Basil L. Contovounesios
2022-08-18Makefile: Use loaddefs-generate in Emacs 29Basil L. Contovounesios
What will become Emacs 29 has obsoleted and no longer preloads autoload.el, which defines update-file-autoloads. * Makefile (bog-autoloads.el): When available, prefer the new loaddefs-generate over update-file-autoloads.
2020-10-29Merge branch 'blc/orphan' [#13]Kyle Meyer
2020-10-29Clean up orphan and duplicate listing commandsBasil L. Contovounesios
* bog.el (bog-list-orphan-citekeys): Inform user when there are no orphan citekeys, rather than popping up an empty buffer. Remove newline at BOB. (bog-list-duplicate-heading-citekeys): End buffer on a new line. (bog-list-orphan-files): Remove newline at BOB. (bog-list-orphan-bibs): Move newline at BOB to EOB.
2020-07-19Release version 1.3.2v1.3.2Kyle Meyer
2020-06-26bog-create-combined-bib: Fix typo in docstringBasil L. Contovounesios
2020-06-26Merge branch 'blc/lex' [#12]Basil L. Contovounesios
2020-06-26Update copyright notices for 2020Basil L. Contovounesios
2020-06-26bog--with-search-lprops: Simplify using cl-letfBasil L. Contovounesios
2020-06-25bog-citekey-face: Use modern face spec syntaxBasil L. Contovounesios
2020-06-25bog.el: Use defalias for compatibility shimsBasil L. Contovounesios
Using defalias avoids byte-compiler warnings and is less intrusive.
2020-06-25bog-mode: Modify org-font-lock-hook buffer-locallyBasil L. Contovounesios
2020-06-25Reindent codeBasil L. Contovounesios
Fix indentation and flatten the progn in bog-mode.
2020-06-25Use lexical-binding and byte-compile testsBasil L. Contovounesios
* Makefile (test, clean): Byte-compile test suite to catch more errors. * bog-tests.el: Use lexical-binding. Remove the need for cl-lib by replacing single cl-gensym with make-symbol. Declare 'citekey' as a special variable. Add footer line. (bog-tests-with-temp-dir): Replace cl-gensym with make-symbol. (bog-tests-with-temp-text): Allow instrumenting for debugging. Evaluate arguments only once. Don't assume 'citekey' is bound. Pass non-nil FIXEDCASE and LITERAL arguments to replace-match. Simplify with buffer rather than string manipulation. (bog-file-citekeys/multiple-variants): Fix typo caught by byte-compilation. * bog.el: Use lexical-binding. Quote function symbols as such. (bog--with-citekey-cache): Allow instrumenting for debugging. Replace cl-gensym with make-symbol. (bog-selection-method): Simplify and reindent. (bog--agenda-map): New keymap. (bog--with-search-lprops): Use it instead of generating it on the fly. Allow instrumenting for debugging. Don't use org-let which calls eval without lexical-binding. Bind uninterned symbol around body. Use unwind-protect to ensure org-lprops are restored. (bog-search-notes, bog-agenda-redo): Unquote body passed to bog--with-search-lprops now that it no longer uses org-let. (bog-command-map): Make docstring consistent with that of other keymaps.
2020-06-25Makefile: Allow specifying Emacs version with varBasil L. Contovounesios
2020-04-25travis: Update stale setupKyle Meyer
The last Travis run didn't get out of the setup phase: https://travis-ci.org/github/kyleam/bog/builds/679436803 This updated .travis.yml is modified from Magit-annex's, which was modified from Magit's. Note that this goes from testing just Emacs 24 to testing the latest Emacs release (26.3) and master. We could of course do more---in terms of both Emacs and Org versions---but, given the currently dormant state of this project, two runs with different Emacs versions and their built-in Orgs will do.
2020-04-25README: Replace Gmane links with message-id-based onesKyle Meyer
There are two problems with these links: (1) the web Gmane interface has of course been down a long time and (2) they use article numbers that are specific for and tied to the Gmane NNTP service. Replace those links with ones to <https://yhetil.org/orgmode>. That host happens to be up right now, and, _when_ it goes down, people at least have a message-id to chase.
2018-08-15Merge pull request #10 from basil-conto/blc/httpsKyle Meyer
2018-08-15Merge pull request #9 from basil-conto/blc/file-errorKyle Meyer
2018-08-15Use HTTPS URLs where applicableBasil L. Contovounesios
2018-08-15bog.el: Fix typos in docsBasil L. Contovounesios
Also add trailing space to y-or-n-p prompt as per its docstring.
2018-08-15bog-file-ask-on-conflict: Narrow error conditionBasil L. Contovounesios
Be more specific about the type of error that can be handled.
2018-08-15README.org: Fix non-existent symbol namesBasil L. Contovounesios
2018-01-13Bump versionv1.3.1Kyle Meyer
2018-01-12Typo fix and minor aestheticsBasil L. Contovounesios
Suggest the equivalent 'infty in place of nil for bibtex-autokey-titleword-length as per the variable's custom-type.
2018-01-12Minor optimisationsBasil L. Contovounesios
2018-01-12Touch-up regexpsBasil L. Contovounesios
Fix quoting; remove redundancies; and prefer bos and eos to bol and eol anchors, respectively, for filenames.
2017-11-26Merge branch 'bc/readme' [#6]Kyle Meyer
2017-11-26README.org: Quote bog-mode as a functionBasil L. Contovounesios
2017-11-26README.org: Fix grammarBasil L. Contovounesios
2017-11-26README.org: Update MELPA URLBasil L. Contovounesios
2016-11-09Bump versionv1.3.0Kyle Meyer
2016-10-24Add bog-clean-bib-hookKyle Meyer
2016-07-25bog-file-secondary-name: Use period instead of hyphenKyle Meyer
A hyphen is considered a word character according to bog-citekey-syntax-table, which makes bog-list-orphan-files falsely recognize secondary files as orphans. This has been an issue since 0e685a3 (Specify syntax table around all citekey regexp uses, 2016-05-23).
2016-06-14bog-select-citekey: Add citekey history listKyle Meyer
2016-06-14bog-select-citekey: Require matchKyle Meyer
2016-06-13bog-file-ask-on-conflict: Remove bogus read-string argumentKyle Meyer
2016-05-23Add bog-citekey-format-allow-at optionKyle Meyer
2016-05-23bog-citekey-format: Clarify allowed boundariesKyle Meyer
2016-05-23Add quote to docstring variableKyle Meyer
2016-05-23bog-citekey-syntax-table: Inherit text-mode-syntax-tableKyle Meyer
Org mode makes its syntax table modifications in the body of the define-derived-mode call. As a result, if bog-citekey-syntax-table inherits org-mode-syntax-table, bog-citekey-syntax-table will be different depending on whether the function org-mode has been called (which in most cases corresponds to whether an Org buffer has been visited). To avoid this, use text-mode-syntax-table directly, mirroring Org's modifications.