我最近开始学习 org-mode 并且一直在关注一些在线教程,例如:http ://www.linuxjournal.com/article/9116?page=0,2
我遇到了一个问题,即我的主 test.org 文档中列出的 TODO 项目没有显示在列表视图中:M-x org-todo-list
例如,test.org:
* Example
** TODO We have an issue
*** TODO What is the problem
M-x org-todo-list
显示:
Global list of TODO items of type: ALL
Available with `N r': (0)[ALL]
为什么全局列表中缺少我的 TODO 项目?有没有其他人遇到过这个问题?我目前正在运行:
GNU Emacs 24.3.1 (x86_64-apple-darwin10.8.0)
Org-mode version 8.0.6 (Elpa install)
MacOS 10.6.8 x86 64-bit
.init.el 文件的组织模式部分:
; Org-mode
(require 'org-install)
(package-initialize)
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
; Enable S-TAB MacOS
(add-hook 'term-setup-hook
(lambda () (define-key input-decode-map "\e[Z" [backtab])))
请注意,添加以下任一命令都不能解决问题:
(setq org-agenda-include-all-todo t)
(global-set-key "\C-ct" 'org-todo-list)