(Emacs/config)~org-capture template for bookmarks

Now we get completion (using the clipboard by default) for a URL,
which is set as a property for the bookmark.  It also gets a timestamp
and we can fill in other text.  This is a modification due to the
changes in org-bookmark.
This commit is contained in:
2024-06-11 17:24:51 +01:00
parent c64708aaaa
commit 3cb1a2b616

View File

@@ -3185,6 +3185,7 @@ what org-capture does.
:after org
:init
(setq
org-default-notes-file (concat org-directory "/todo.org")
org-capture-templates
'(("t" "Todo" entry
(file "")
@@ -3194,8 +3195,8 @@ what org-capture does.
("b" "Bookmark" entry
(file "bookmarks.org")
"* %? :bookmark:
"))
org-default-notes-file (concat org-directory "/todo.org"))
%^{url|%x}p
%T")))
:general
(leader
"C" #'org-capture)