Emacs Org Mode: How To Stop Total in Column View Showing Number of Days?

前端 未结 2 718
你的背包
你的背包 2021-02-19 04:40

I\'m using Emacs 23.4.1 and Org-Mode 8.0.6

In my org file I have the estimated number of hours that a task will take using the Effort property of the associ

2条回答
  •  悲&欢浪女
    2021-02-19 05:18

    See the var org-time-clocksum-format:

    ;; format string used when creating CLOCKSUM lines and when generating a
    ;; time duration (avoid showing days)
    (setq org-time-clocksum-format
          '(:hours "%d" :require-hours t :minutes ":%02d" :require-minutes t))
    

提交回复
热议问题