aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2026-04-23 00:03:58 -0400
committerBardofSprites <[email protected]>2026-04-23 00:03:58 -0400
commita5f0ec3c8f2c516d73b95b8518d2453103fc5e67 (patch)
treebdef52974be7d72f65136098a05df61982ae612a
parent9775e5a7898fc975a1dcab2349715ca19f04908b (diff)
update tmr section
-rw-r--r--config.org5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.org b/config.org
index 54117c8..b24047b 100644
--- a/config.org
+++ b/config.org
@@ -1096,7 +1096,10 @@ For a long time I really struggled with Emacs tab completion. It still only kind
("Asia/Tokyo" "Tokyo")))
(setq world-clock-time-format "%Y-%m-%d %B (%A) %R %Z")
+#+end_src
+*** Timer (tmr)
+#+begin_src emacs-lisp :tangle bard-emacs-modules/bard-emacs-essentials.el :mkdirp yes
;; timer package
(use-package tmr
:ensure t
@@ -1109,7 +1112,7 @@ For a long time I really struggled with Emacs tab completion. It still only kind
(setq tmr-descriptions-list 'tmr-description-history)
(define-key global-map (kbd "C-c t l") 'tmr-tabulated-view)
(define-key global-map (kbd "C-c t t") #'tmr)
- (define-key global-map (kbd "C-c t T") #'tmr-with-description)
+ (define-key global-map (kbd "C-c t T") #'tmr-with-details)
(define-key global-map (kbd "C-c t l") #'tmr-tabulated-view)
(define-key global-map (kbd "C-c t c") #'tmr-clone)
(define-key global-map (kbd "C-c t k") #'tmr-cancel)