mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-04 08:47:03 +00:00
org.el (org-use-speed-commands): Enhance docstring
* org.el (org-use-speed-commands): Enhance docstring. TINYCHANGE
This commit is contained in:
parent
97e3bda061
commit
15d1709b19
@ -1010,7 +1010,13 @@ new-frame Make a new frame each time. Note that in this case
|
||||
(defcustom org-use-speed-commands nil
|
||||
"Non-nil means activate single letter commands at beginning of a headline.
|
||||
This may also be a function to test for appropriate locations where speed
|
||||
commands should be active."
|
||||
commands should be active.
|
||||
|
||||
For example, to activate speed commands when the point is on any
|
||||
star at the beginning of the headline, you can do this:
|
||||
|
||||
(setq org-use-speed-commands
|
||||
(lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
|
||||
:group 'org-structure
|
||||
:type '(choice
|
||||
(const :tag "Never" nil)
|
||||
|
Loading…
Reference in New Issue
Block a user