如何更改" DEADLINE"的默认文本?和"安排"在组织模式?

时间:2014-07-30 01:14:08

标签: emacs org-mode

我已经通过了org-customize选项,但我可能在那里错过了它。我可以在org.el文件中的某处更改吗?如果是这样,我最有可能找到该文件?

1 个答案:

答案 0 :(得分:5)

`org-deadline-string` is a variable defined in `org.el'.
Its value is "DEADLINE:"

Documentation:
String to mark deadline entries.
A deadline is this string, followed by a time stamp.  Should be a word,
terminated by a colon.  You can insert a schedule keyword and
a timestamp with M-x org-deadline.
Changes become only effective after restarting Emacs.

You can customize this variable.

`org-scheduled-string` is a variable defined in `org.el'.
Its value is "SCHEDULED:"

Documentation:
String to mark scheduled TODO entries.
A schedule is this string, followed by a time stamp.  Should be a word,
terminated by a colon.  You can insert a schedule keyword and
a timestamp with M-x org-schedule.
Changes become only effective after restarting Emacs.

You can customize this variable.