add maybe tag
This commit is contained in:
parent
4085e676e6
commit
77ee6ee87f
7
conf.org
7
conf.org
|
@ -1130,7 +1130,7 @@ By default, the tag selection window obliterates all but the current window...ho
|
||||||
((#'delete-other-windows :override #'ignore)
|
((#'delete-other-windows :override #'ignore)
|
||||||
;; pretty sure I just got lucky here...
|
;; pretty sure I just got lucky here...
|
||||||
(#'split-window-vertically :override #'(lambda (&optional size)
|
(#'split-window-vertically :override #'(lambda (&optional size)
|
||||||
(split-window-below (or size -9)))))
|
(split-window-below (or size -10)))))
|
||||||
(unwind-protect (funcall orig-fn current inherited table todo-table))))
|
(unwind-protect (funcall orig-fn current inherited table todo-table))))
|
||||||
|
|
||||||
(advice-add #'org-fast-tag-selection :around #'nd/org-tag-window-advice)
|
(advice-add #'org-fast-tag-selection :around #'nd/org-tag-window-advice)
|
||||||
|
@ -1359,9 +1359,12 @@ I use tags for agenda filtering (primarily for GTD contexts, see below). Each ta
|
||||||
;; denotes reference information
|
;; denotes reference information
|
||||||
("%note" . ?n)
|
("%note" . ?n)
|
||||||
|
|
||||||
;; incubator
|
;; incubator (the someday/maybe list)
|
||||||
("%inc" . ?i)
|
("%inc" . ?i)
|
||||||
|
|
||||||
|
;; maybe (for things I might want to do, to be used with %inc)
|
||||||
|
("%maybe" . ?m)
|
||||||
|
|
||||||
;; denotes tasks that need further subdivision to turn into true project
|
;; denotes tasks that need further subdivision to turn into true project
|
||||||
("%subdiv" . ?s)
|
("%subdiv" . ?s)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue