kiwanami / emacs-calfw

A calendar framework for Emacs
1.17k stars 100 forks source link

Display time logged in calendar. #97

Open chase-dwelle opened 7 years ago

chase-dwelle commented 7 years ago

Is it possible to show time logged, from a tasks LOGBOOK, in the calendar view? I would appreciate being able to quickly glance at the calendar and scan for what I was working on for a specific day, for example.

kiwanami commented 7 years ago

I think it may be little difficult. In the current implementation, the org contents are collected by org-element-parse-buffer function. Then, the calendar items which should be displayed on calfw view are chosen and transformed from the collected org contents. To display time logged, we need to pull the time stamp property with org functions during transformation org to calfw. I'm not sure about those org API, so it is difficult for me to do it.

I'm sorry for my late response and little org knowledge...