Keep org links after insertion

This commit is contained in:
Daniel - 2020-09-12 09:50:47 +02:00
parent 93f5389d39
commit a02fc189ab
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 1 deletions

View File

@ -757,7 +757,6 @@ With given ARG, display files in `db/important-document-path."
(use-package org
:pin "gnu"
:commands (org-store-link)
:bind (:map org-mode-map
([remap org-return] . org-return-indent))
:init (progn
@ -933,6 +932,10 @@ With given ARG, display files in `db/important-document-path."
;; This is different in the original implementation
(org-entry-get pom property))))))
(use-package ol
:init (setq org-link-keep-stored-after-insertion t)
:commands (org-store-link))
(use-package org-id
:custom (org-id-link-to-org-use-id 'create-if-interactive-and-no-custom-id))