我想要的是能够制作一个“标题”,在该标题下我可以拥有加密数据。我应该能够在 emacs 中的同一个文件中有多个标题。
我有这个工作,但不幸的是我不记得我需要做什么来加密数据。作为参考,这是我必须添加到我的 .emacs 以使其正常工作的内容:
(require 'org-crypt)
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance (quote ("crypt")))
;; GPG key to use for encryption
;; Either the Key ID or set to nil to use symmetric encryption.
(setq org-crypt-key nil)
到目前为止我已经尝试过::crypt:
在我的标题之前使用,在标题上运行M-x org-encrypt-entry
。