1

我在阅读书籍、文章等(主要是人文学科)时使用 Emacs 记录笔记。我想知道 Emacs 是否可以自动构建我输入的主题标签列表(可能在单独的文件中)?此外,当我开始键入主题标签时,Emacs(从这个假设的列表中读取)是否可以提供增量(或选项卡)自动完成功能。我需要此功能才能获得一致的标记。

谢谢!

4

2 回答 2

0

另一种选择:您可以为此类笔记添加书签。如果您使用Bookmark+,那么您可以标记书签

您可以为书签使用任意数量的标签,标签可以是任何字符串(它们甚至可以具有关联的 Lisp 值)。默认情况下,书签(标记或不标记)在带书签的文本中不可见。但是(使用 Bookmark+)您可以通过各种方式突出显示它们。

于 2013-11-14T15:53:11.620 回答
0

您可以使用Exuberant ctags生成 TAGS 文件。例如,如果您的笔记处于 Org 模式,您可以这样做:

(require 'org-ctags)
(setq org-ctags-path-to-ctags "/path/to/ctags")

;; Regular expression for the hashtags.
;; Nnote that this would remove the existing definition and effectively disable 
;; the standard use of org-ctags which is to tag <<links>>. If you want to preserve old
;; behavior you need to combine the two regexes.
(setq org-ctags-tag-regexp "/(#[^+]+)/\\1/d,definition/")

(org-ctags-create-tags "directory")

现在您可以使用org-ctags-find-tag-interactive搜索声称具有自动完成功能的标签:

(add-hook 'org-mode-hook
    (lambda ()
      (define-key org-mode-map "\C-co" 'org-ctags-find-tag-interactive)))

但我更喜欢 Helm 完成,所以我只做M-x helm-etags-select. 您也可以忽略org-ctags并自己构建标签:

 ctags --langdef=orgmode --langmap=orgmode:.org
       --regex-orgmode="/(#[^+]+)/\1/d,definition/"
       -f /your/path/TAGS -e -R /your/path/*.org

(或创建一个方便的 emacs 函数来为您执行此操作)。

于 2013-11-14T18:40:24.617 回答