Closed Ypot closed 4 months ago
I'm unable to reproduce on my end. Doss the issue occur if you evaluate the following in your scratch buffer?
(progn
(require 'org-capture)
(let ((org-capture-templates
'(("t" "test" entry (file "")
"* %^{1 client}-%^{2 ot}\n$Contract_%\\2"
:immediate-finish t
:jump-to-captured t))))
(org-capture nil "t")))
Note your example is missing a backslash before the "2". elisp interprets a single backslash as an escape character in a string literal. "\2" vs "\\2".
I'll consider this closed for now. Feel free to comment if you're still having the issue and you are sure it's related to doct. Thanks.
Describe the problem
When I use
_
before the ‘%\N’ (the text entered at the Nth ‘%^{PROMPT}’) the_
dissapears.Directions to reproduce
Instead of "Contract2 OT" it writes down "Contract2 OT", the `` is missing.
Version information