Compare commits

..

No commits in common. "1ac4e44f86057374176500fc2f1de672392b21e0" and "7e2860a9d96f4afa3eef68722680778162a70c7f" have entirely different histories.

2 changed files with 7 additions and 14 deletions

View File

@ -294,19 +294,13 @@ In ~%s~:
;;; Refiling
(defun db/verify-refile-target ()
"Verify that a certain location is eligible as a refile target."
"Verify that a certain location is eligible as a refile target.
In other words, exclude tasks with a done state and those with
tag PERIODIC."
(and
;; Exclude DONE state tasks from refile targets (from bh)
(not (member (nth 2 (org-heading-components))
org-done-keywords))
;; Exclude NOTE entries in `db/org-default-org-file', as those are project
;; notes that should not have proper tasks as children (use links to connect
;; those tasks to the project notes instead)
(not (and (member "NOTE" (org-get-tags))
(not (null (buffer-file-name)))
(not (null db/org-default-org-file))
(file-equal-p (buffer-file-name)
db/org-default-org-file)))))
org-done-keywords))))
;;; Reset checklists

View File

@ -443,9 +443,8 @@ Does not replace CRLF with CRCRLF, and so on."
(defun db/sync-magit-repos-from-projectile ()
"Update repositories known to magit from projectile's."
(interactive)
(eval-when-compile ; to silence the byte compiler
(require 'projectile)
(require 'magit))
(require 'projectile)
(require 'magit)
(setq magit-repository-directories
(mapcar
(lambda (dir)
@ -465,7 +464,7 @@ Does not replace CRLF with CRCRLF, and so on."
(delete-trailing-whitespace))
;;; Base45 Decoding
;; Base45 Decoding
;; This is based on https://datatracker.ietf.org/doc/draft-faltstrom-base45/,
;; which in turned may be used in data encoded for QR codes.