这个组织模式模板有什么问题?
我无法收到输入标签的提示。我已将代码与 %^g 一起放入我的 .emacs 文件中,该文件应该调用提示符,但不起作用。
这是在我的 .emacs 文件中。
(setq org-capture-templates
'(("t" "Todo" entry (file+headline "~/.emacs.d/gtd.org" "Tasks")
"* TODO %?\n %i\n %a")
("j" "Journal" entry (file+datetree "~/.emacs.d/journal.org")
"* %?%^g \nEntered on %U\n %i\n")))
当我调用日记代码时,我没有得到任何提示,并且输出如下
* %?
Entered on [2011-04-20 Wed 06:59]
有任何想法吗?谢谢。
I can't get the prompt for entering tags to work. I've put the code in my .emacs file along with %^g which should call the prompt but that isn't working.
This is in my .emacs file.
(setq org-capture-templates
'(("t" "Todo" entry (file+headline "~/.emacs.d/gtd.org" "Tasks")
"* TODO %?\n %i\n %a")
("j" "Journal" entry (file+datetree "~/.emacs.d/journal.org")
"* %?%^g \nEntered on %U\n %i\n")))
When I call the journal code I get no prompt and the output below
* %?
Entered on [2011-04-20 Wed 06:59]
Any ideas? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我(几乎)很抱歉地说它对我有用。也许您有旧版本的组织模式?我运行的是7.5。
来查找版本
您可以通过键入
Mx org-version
。此外,您可能需要在 %? 之间有一个空格?和 %^g 为了方便起见。祝你好运。
I'm (almost) sorry to say that it works for me. Maybe you have an old version of Org Mode? I am running 7.5.
You can find the version by typing
M-x org-version
Additionally, you may want a space between the %? and the %^g for convenience. Good luck on making it work.