« ^ »

タスクを管理する

所要時間: 約 1分

次にやる事だけを見る

(defun org-agenda-my-next-task ()
  "look only what to do next" 
  (interactive)
  (unless org-agenda-buffer
    (org-agenda-list))
  
  (with-current-buffer org-agenda-buffer
    (save-excursion
      (goto-char (point-min))
      (next-line 3)
      (narrow-to-region (point-min) (point)))))

https://github.com/TakesxiSximada/emacs.d/commit/8c6cb0fef4234dafbbdb2b698e6b7eeef6cb4ddc

プロジェクトの進行に偏りがないようにする

(defun org-agenda-spin-project ()
  "Rearrange the order of the agenda file to keep the project running evenly"
  (interactive)
  (setq org-agenda-files
	(append (cdr org-agenda-files)
		(list (car org-agenda-files)))))

https://github.com/TakesxiSximada/emacs.d/commit/8770964b07d3d946a9385a7680c67d943f2b9e0d

タスクを一覧で見る

M-x org-todo-list

今日の一覧をプロジェクト別に見る

M-x org-agenda-list