在组织模式下完全隐藏:PROPERTIES:抽屉

时间:2013-07-04 21:24:14

标签: emacs org-mode

有人可以给我一些帮助来完全隐藏:PROPERTIES:抽屉,包括:PROPERTIES:行。

* TASKS (with deadines)

    ** Next Action [#A] Ask the geniuses how to do this.  :lawlist:
       DEADLINE: <2013-07-04 Thu >
         :PROPERTIES:
         :ToodledoID: 330686790
         :ToodledoFolder: TASKS
         :Hash:     afa88f17317bbe2ce0ce661333cdcfb4
         :END:
       This line is for notes, which appears underneath the properties drawer.

* UNDATED (without deadlines)

    ** Someday [#A] Close but no cigar -- keep trying.  :lawlist:
          :PROPERTIES:
          :ToodledoID: 330686680
          :ToodledoFolder: TASKS
          :Hash:     eb0b8d360b5b1453dd66ed0c5698e135
          :END:
       This line is for notes, which appears underneath the properties drawer.

我没有通过谷歌搜索看到这个功能,所以我猜测需要一些特殊的代码行才能使这个功能请求成为现实。 [换句话说,我不认为这是一个超级用户的问题,因为这需要用一些特殊的代码来发明。]

3 个答案:

答案 0 :(得分:16)

以下答案完全隐藏了从:PROPERTIES::END:的所有内容。可以通过评估(org-cycle-hide-drawers 'children)(org-cycle-hide-drawers 'all)或结合与轮廓视图循环相关的其他功能来测试它。 org-mode系列中包含的标准功能包括所有工作 - 例如show-all; org-show-subtree;等

  
(require 'org)

(defun org-cycle-hide-drawers (state)
  "Re-hide all drawers after a visibility state change."
  (when (and (derived-mode-p 'org-mode)
             (not (memq state '(overview folded contents))))
    (save-excursion
      (let* ((globalp (memq state '(contents all)))
             (beg (if globalp
                    (point-min)
                    (point)))
             (end (if globalp
                    (point-max)
                    (if (eq state 'children)
                      (save-excursion
                        (outline-next-heading)
                        (point))
                      (org-end-of-subtree t)))))
        (goto-char beg)
        (while (re-search-forward org-drawer-regexp end t)
          (save-excursion
            (beginning-of-line 1)
            (when (looking-at org-drawer-regexp)
              (let* ((start (1- (match-beginning 0)))
                     (limit
                       (save-excursion
                         (outline-next-heading)
                           (point)))
                     (msg (format
                            (concat
                              "org-cycle-hide-drawers:  "
                              "`:END:`"
                              " line missing at position %s")
                            (1+ start))))
                (if (re-search-forward "^[ \t]*:END:" limit t)
                  (outline-flag-region start (point-at-eol) t)
                  (user-error msg))))))))))

对于对所有各种观点之间的标签循环感兴趣的任何人(包括揭示:PROPERTIES:抽屉内的内容,可以通过添加附加条件轻松修改org-cycle-internal-local (t ;; Default action: hide the subtree. . . .

((eq org-cycle-subtree-status 'subtree)
  (org-show-subtree)
  (org-unlogged-message "ALL")
  (setq org-cycle-subtree-status 'all))

截图 - 隐藏的抽屉:

https://www.lawlist.com/images/org_mode_properties_a.png


截图 - 抽屉可见:

https://www.lawlist.com/images/org_mode_properties_b.png

答案 1 :(得分:1)

现在根本不可能,至少没有(很多?)额外编码......

问题是:你怎么取消隐藏它?你会看到“......”吗?

答案 2 :(得分:0)

这使您可以切换当前所在标题的属性。

(defun org-toggle-properties ()
  ;; toggle visibility of properties in current header if it exists
  (save-excursion
    (when (not (org-at-heading-p))
      (org-previous-visible-heading 1))
    (when (org-header-property-p)
      (let* ((a (re-search-forward "\n\\:" nil t)))
        (if (outline-invisible-p (point))
            (outline-show-entry)
          (org-cycle-hide-drawers 'all))))))