From 9b0f0049bd11961b5de8210b50a6ee3d81943c77 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 29 Feb 2016 17:30:42 -0800 Subject: [PATCH] switch tasks to next when clocking --- emacs_el/configuration/org-mode-configuration.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/emacs_el/configuration/org-mode-configuration.el b/emacs_el/configuration/org-mode-configuration.el index a9f394c..356c99f 100644 --- a/emacs_el/configuration/org-mode-configuration.el +++ b/emacs_el/configuration/org-mode-configuration.el @@ -462,6 +462,8 @@ Maildir, or by Message-ID." (ditaa . t) (dot . t) )) +;; use graphviz-dot for dot things +(add-to-list 'org-src-lang-modes '("dot" . graphviz-dot)) ;; org-babel-by-backend (defmacro org-babel-by-backend (&rest body) `(case (if (boundp 'backend) @@ -833,7 +835,8 @@ Skip project and sub-project tasks, habits, and loose non-project tasks." ;; Resume clocking task on clock-in if the clock is open (setq org-clock-in-resume t) ;; Change tasks to NEXT when clocking in -(setq org-clock-in-switch-to-state 'bh/clock-in-to-next) +;; (setq org-clock-in-switch-to-state 'bh/clock-in-to-next) +(setq org-clock-in-switch-to-state "NEXT") ;; Separate drawers for clocking and logs (setq org-drawers (quote ("PROPERTIES" "LOGBOOK"))) ;; Save clock data and state changes and notes in the LOGBOOK drawer -- 2.39.5