组织模式。
我有一个很大的任务树,我想在缓冲区中只选择 1 个(仅为它写注释)并在编辑时隐藏其他任务。
我怎样才能做到这一点?
task-1
subtask-1.1
subtask-1.2
task-2
subtask2.1
...
...
例如,我只想为我显示:
subtask-1.2
(notes for this subtask)
在任务中使用narrow-to-defun
或org-narrow-to-subtree
命令。(widen
移回整个缓冲区内容)。
默认快捷键:
C-x n s # org-narrow-to-subtree (bound in org-mode)
C-x n d # narrow-to-defun
C-x n w # widen
您还拥有org-tree-to-indirect-buffer
, or C-c C-x b
,它将仅使用此子树创建一个新缓冲区,并将一个缓冲区中的任何更改反映到另一个缓冲区中。