Skip to content

Commit

Permalink
cosmetic adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevoke committed Dec 27, 2021
1 parent ac0fc94 commit 5cabdd7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
9 changes: 8 additions & 1 deletion dev/.emacs
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,24 @@

(use-package camcorder :quelpa t)

(use-package command-log-mode :quelpa t)

(show-paren-mode)

(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(camcorder-window-id-offset 2)
'(command-log-mode-auto-show t)
'(command-log-mode-is-global t)
'(command-log-mode-open-log-turns-on-mode t)
'(command-log-mode-window-size 40)
'(package-selected-packages '(camcorder org-gtd quelpa-use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
'(default ((t (:family "Source Code Pro")))))
11 changes: 6 additions & 5 deletions org-gtd-inbox-processing.el
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
;;;###autoload
(define-minor-mode org-gtd-process-mode
"Minor mode for org-gtd."
nil " GPR" org-gtd-process-map
nil " GPM" org-gtd-process-map
:global nil
(if org-gtd-process-mode
(setq-local
header-line-format
(substitute-command-keys
"\\<org-gtd-process-map>Clarify item. Finish `\\[org-gtd-choose]'."))
"\\<org-gtd-process-map>Clarify item. Let Org GTD store it with `\\[org-gtd-choose]'."))
(setq-local header-line-format nil)))


Expand All @@ -50,11 +50,12 @@ Note that this function is intended to be used only during inbox processing.
Each action continues inbox processing, so you may put your emacs in an
undefined state."
["Actionable"
[("p" "Project (multi-step)" org-gtd--project)]
[("q" "Quick action" org-gtd--quick-action)
("s" "Single action" org-gtd--single-action)]
[("d" "Delegate" org-gtd--delegate)
("c" "Calendar" org-gtd--calendar)]
[("q" "Quick action" org-gtd--quick-action)
("s" "Single action" org-gtd--single-action)]]
[("p" "Project (multi-step)" org-gtd--project)]
]
["Non-actionable"
[("i" "Incubate" org-gtd--incubate)
("a" "Archive this knowledge" org-gtd--archive)]
Expand Down

0 comments on commit 5cabdd7

Please sign in to comment.