1
通过轮廓路径完成在点处插入组织ID链接
当前要插入内部org-mode org-id链接,我导航至标题或将其在议程视图中拉出(Ca s标题测试搜索RET),并将链接与Cl存储在一起(org-store-link),然后返回到我想插入链接,然后使用Cc Cl(org-insert-link)插入链接。 相反,我希望映射一个键,该键允许我使用类似于org-refile(Cc Cw)的制表符补全在当前点插入链接。预期结果将是以下形式的org-id内部链接: [[id:d7534b2f-c221-4dea-8566-d5ce3e4e1b78][Example Link]] 通过org-id.el查看,似乎org-id-get-with-outline-path-completion是为此目的而设计的。我试过了: (global-set-key "\C-ci" (lambda () (interactive) (org-id-get-with-outline-path-completion))) 但它没有按预期工作。 我的init.el文件中包含以下内容: ;; Use global IDs (require 'org-id) (setq org-id-link-to-org-use-id t) ;; Update ID file .org-id-locations on startup (org-id-update-id-locations) ;; Refile options (setq org-refile-targets (quote ((nil :maxlevel . 9) (org-agenda-files :maxlevel . 9)))) (setq org-refile-use-outline-path …
11
org-mode