-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sorry for this breaking change, but I wanted to get the foundations right before tagging 1.0. This completely restructures the core of citar so that now: - the API in general is (again) citekey-based - the note API is improved, and configured by plist - the cache auto-invalidates when files change See documentation for details. As a result, we remove some redundant code: - citar-filenotify.el - the rebuild cache hook, etc. There are also a number of code refinements. Co-authored-by: Bruce D'Arcus <[email protected]>
- Loading branch information
1 parent
b6cd49f
commit ce51325
Showing
20 changed files
with
1,780 additions
and
1,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
((emacs-lisp-mode | ||
(fill-column . 110) | ||
(indent-tabs-mode . nil) | ||
(elisp-lint-indent-specs . ((describe . 1) | ||
(it . 1) | ||
(thread-first . 0) | ||
(cl-flet . 1) | ||
(sentence-end-double-space . nil) | ||
(cl-flet* . 1))))) | ||
;;; Directory Local Variables | ||
;;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((emacs-lisp-mode . ((sentence-end-double-space . nil) | ||
(fill-column . 110) | ||
(indent-tabs-mode . nil) | ||
(elisp-lint-indent-specs . ((describe . 1) | ||
(it . 1) | ||
(thread-first . 0) | ||
(cl-flet . 1) | ||
(cl-flet* . 1)))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.