forked from org-roam/org-roam
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(internal): make lint errors fail CI, and disable spellcheck during l…
…inting (org-roam#561) - make lint errors fail CI - disable indentation linting - disable package linting for org-roam-macs.el - disable spellcheck for checkdoc - fixes compilation errors
- Loading branch information
1 parent
a723199
commit 7df50c1
Showing
12 changed files
with
57 additions
and
54 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
;;; org-roam-dialies.el --- Roam Research replica with Org-mode -*- coding: utf-8; lexical-binding: t -*- | ||
;;; org-roam-dailies.el --- Roam Research replica with Org-mode -*- coding: utf-8; lexical-binding: t -*- | ||
;;; | ||
;; Copyright © 2020 Jethro Kuan <[email protected]> | ||
|
||
|
@@ -52,7 +52,7 @@ | |
(org-roam-capture--info (list (cons 'time time))) | ||
(org-roam-capture--context 'dailies)) | ||
(add-hook 'org-capture-after-finalize-hook #'org-roam-capture--find-file-h) | ||
(org-roam--capture))) | ||
(org-roam-capture--capture))) | ||
|
||
(defun org-roam-dailies-today () | ||
"Create and find the daily note for today." | ||
|
@@ -69,7 +69,7 @@ With numeric argument N, use N days in the future." | |
"Create and find the file for yesterday. | ||
With numeric argument N, use N days in the past." | ||
(interactive "p") | ||
(org-roam-tomorrow (- n))) | ||
(org-roam-dailies-tomorrow (- n))) | ||
|
||
(defun org-roam-dailies-date () | ||
"Create the file for any date using the calendar interface." | ||
|
@@ -78,4 +78,5 @@ With numeric argument N, use N days in the past." | |
(org-roam-dailies--file-for-time time))) | ||
|
||
(provide 'org-roam-dailies) | ||
|
||
;;; org-roam-dailies.el ends here |
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