답변:
org-agenda-files
현재 버퍼 파일에 동적으로 바인딩 org-todo-list
하여 거기서 호출 할 수 있습니다.
(defun org-todo-list-current-file (&optional arg)
"Like `org-todo-list', but using only the current buffer's file."
(interactive "P")
(let ((org-agenda-files (list (buffer-file-name (current-buffer)))))
(if (null (car org-agenda-files))
(error "%s is not visiting a file" (buffer-name (current-buffer)))
(org-todo-list arg))))