19

私は通常、組織モードを使用して TODO を追跡します。次のようなファイルがあります。

* Misc.
** TODO Task 1
** TODO Task 2
* Project 1
** TODO Task 1
** TODO Task 2

Project 1意図したとおりに動作するようにサブツリー全体をアーカイブしている間、アーカイブ ファイルが次のようになるように移動Task 1することはできませんMisc.(この例では PROPERTIES を無視します)。

* Misc
** DONE Task 1

つまり、タスクが属するすべてのセクションを保持したいのです。これを行う簡単な方法はありますか?

4

3 に答える 3

29

:ARCHIVE:親の見出しにプロパティを設定することをお勧めします。

見出し固有のorg-archive-location設定が可能です。(マニュアルを参照)

たとえば、アーカイブファイルが次のように設定されている%s_archive場合、元のファイルは次のようになります。

* Misc.
  :PROPERTIES:
  :ARCHIVE:  %s_archive::* Misc
  :END:
** TODO Task 1
** TODO Task 2
* Project 1
  :PROPERTIES:
  :ARCHIVE:  %s_archive::* Project 1
  :END:
** TODO Task 1
** TODO Task 2

* Miscこれにより、すべてのサブツリーがアーカイブファイルの* Miscヘッドラインに送信され、のサブツリーと同等の処理が行われますProject 1(ツリー全体を一度にアーカイブする場合を除く)。サブツリーの後に親ツリーをアーカイブすると、宛先の下に追加の小見出しとして追加されます。複数のレベルをサポートしていないため、この種の複雑な設定が必要な場合は、アーカイブファイルの見出しを事前に設定して、希望どおりに出力されるようにする必要があります。

このプロパティを使用して、特定のツリーをアーカイブしてファイルを分離することもできます(エクスポート/公開/共有の目的で)。

于 2012-04-13T16:46:31.467 に答える
11
;; org-archive-subtree-hierarchical.el
;; modified from https://lists.gnu.org/archive/html/emacs-orgmode/2014-08/msg00109.html

;; In orgmode
;; * A
;; ** AA
;; *** AAA
;; ** AB
;; *** ABA
;; Archiving AA will remove the subtree from the original file and create
;; it like that in archive target:

;; * AA
;; ** AAA

;; And this give you
;; * A
;; ** AA
;; *** AAA


(require 'org-archive)

(defun org-archive-subtree-hierarchical--line-content-as-string ()
  "Returns the content of the current line as a string"
  (save-excursion
    (beginning-of-line)
    (buffer-substring-no-properties
     (line-beginning-position) (line-end-position))))

(defun org-archive-subtree-hierarchical--org-child-list ()
  "This function returns all children of a heading as a list. "
  (interactive)
  (save-excursion
    ;; this only works with org-version > 8.0, since in previous
    ;; org-mode versions the function (org-outline-level) returns
    ;; gargabe when the point is not on a heading.
    (if (= (org-outline-level) 0)
        (outline-next-visible-heading 1)
      (org-goto-first-child))
    (let ((child-list (list (org-archive-subtree-hierarchical--line-content-as-string))))
      (while (org-goto-sibling)
        (setq child-list (cons (org-archive-subtree-hierarchical--line-content-as-string) child-list)))
      child-list)))

(defun org-archive-subtree-hierarchical--org-struct-subtree ()
  "This function returns the tree structure in which a subtree
belongs as a list."
  (interactive)
  (let ((archive-tree nil))
    (save-excursion
      (while (org-up-heading-safe)
        (let ((heading
               (buffer-substring-no-properties
                (line-beginning-position) (line-end-position))))
          (if (eq archive-tree nil)
              (setq archive-tree (list heading))
            (setq archive-tree (cons heading archive-tree))))))
    archive-tree))

(defun org-archive-subtree-hierarchical ()
  "This function archives a subtree hierarchical"
  (interactive)
  (let ((org-tree (org-archive-subtree-hierarchical--org-struct-subtree))
        (this-buffer (current-buffer))
        (file (abbreviate-file-name
               (or (buffer-file-name (buffer-base-buffer))
                   (error "No file associated to buffer")))))
    (save-excursion
      (setq location (org-get-local-archive-location)
            afile (org-extract-archive-file location)
            heading (org-extract-archive-heading location)
            infile-p (equal file (abbreviate-file-name (or afile ""))))
      (unless afile
        (error "Invalid `org-archive-location'"))
      (if (> (length afile) 0)
          (setq newfile-p (not (file-exists-p afile))
                visiting (find-buffer-visiting afile)
                buffer (or visiting (find-file-noselect afile)))
        (setq buffer (current-buffer)))
      (unless buffer
        (error "Cannot access file \"%s\"" afile))
      (org-cut-subtree)
      (set-buffer buffer)
      (org-mode)
      (goto-char (point-min))
      (while (not (equal org-tree nil))
        (let ((child-list (org-archive-subtree-hierarchical--org-child-list)))
          (if (member (car org-tree) child-list)
              (progn
                (search-forward (car org-tree) nil t)
                (setq org-tree (cdr org-tree)))
            (progn
              (goto-char (point-max))
              (newline)
              (org-insert-struct org-tree)
              (setq org-tree nil)))))
      (newline)
      (org-yank)
      (when (not (eq this-buffer buffer))
        (save-buffer))
      (message "Subtree archived %s"
               (concat "in file: " (abbreviate-file-name afile))))))

(defun org-insert-struct (struct)
  "TODO"
  (interactive)
  (when struct
    (insert (car struct))
    (newline)
    (org-insert-struct (cdr struct))))

(defun org-archive-subtree ()
  (org-archive-subtree-hierarchical)
  )

このハックは、まったく同じ親構造体を使用してアーカイブ ファイルに再ファイルするように機能します:PROPERTIES:。ここにはアーカイブはありません。

ここの要点としても: https://gist.github.com/CodeFalling/87b116291aa87fde72cb

于 2016-02-18T08:03:16.857 に答える
5

org-modeアーカイブ ファイル内の現在のコンテキストを直接ミラーリングすることはサポートされていないと思います。

org-archive-locationアーカイブされたアイテムを配置する単一の見出しを指定するために使用できる関連する変数がありますが、ツリー内の複数のレベルはサポートされていません。このページorg-archive-subtreeには、それで十分な2 つのアドバイスがあります。サイトがなくなった場合に備えて、ここで最初のものを複製しています。

(defadvice org-archive-subtree (around my-org-archive-subtree activate)
  (let ((org-archive-location
         (if (save-excursion (org-back-to-heading)
                             (> (org-outline-level) 1))
             (concat (car (split-string org-archive-location "::"))
                     "::* "
                     (car (org-get-outline-path)))
           org-archive-location)))
    ad-do-it))

2 番目のより複雑な方法では、最上位の見出しにあるタグも保持されます。

On last thing that may come in handy is the custom variable org-archive-save-context-info. If this list contains the symbol 'olpath, the archived entry will contain :ARCHIVE_OLPATH: property, which is set to the outline path of the archived entry (e.g. Projects/Misc. Maybe you can do some post processing on the org-archive-subtree and relocate the archived entry to its original outline path using this.

于 2012-04-13T16:07:50.173 に答える