UPDATE:
- <2024-12-04> 关于本文的更新,学习和讨论,请访问:https://giveupenglish.com/fllma.html
- <2023-03-21 Tue 15:00> 排版优化中……目前进度 1409/2212
- 优化工具:Emacs Org-mode with Eighty Column Rule
TODO:
UPDATE:
TODO:
Instructions are modified from emacs-w64 Wiki page by zklhp. Many thanks for sharing!
Download the latest MSYS2 from this download page.
Install MSYS2 to, for example, C:\msys2
(make sure no space in path to avoid unwanted problems).
Optionally prettify the MSYS2 console mintty
with ~/.minttyrc
to make it more pleasing to eyes. Thanks to this awesome theme!
(require 'org-clock) | |
(defun clocktable-by-tag/shift-cell (n) | |
(let ((str "")) | |
(dotimes (i n) | |
(setq str (concat str "| "))) | |
str)) | |
(defun clocktable-by-tag/insert-tag (files params) | |
(let ((tag (plist-get params :tags)) |
;; START: my :workday: todo task schedule update | |
(require 'org) | |
(require 'calendar) | |
(defun my-is-repeating-workday-task-p () | |
"Check if the current TODO task is a repeating workday task. | |
A repeating workday task is defined as a task that has the tag :workday: | |
and a SCHEDULED property with a repeater interval of +1d/++1d/.+1d." | |
(save-excursion | |
(org-back-to-heading t) |