Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タスクを組織クロックインしている間、タスク名がモードラインに表示されます。しかし、一部のタスク名が長すぎます。モードラインで表示名を切り詰める機能はありますか?
ありがとう。
好みに応じてこれを調整できます。
(setq org-clock-heading-function (lambda () (let ((str (nth 4 (org-heading-components)))) (if (> (length str) 6) (substring str 0 6)))))