Merge branch 'maint'
This commit is contained in:
commit
902148a967
File diff suppressed because it is too large
Load Diff
|
@ -949,7 +949,7 @@ Worg}.
|
|||
@findex org-agenda
|
||||
@findex org-capture
|
||||
@findex org-store-link
|
||||
@findex org-iswitchb
|
||||
@findex org-switchb
|
||||
|
||||
Org mode buffers need font-lock to be turned on: this is the default in
|
||||
Emacs@footnote{If you don't use font-lock globally, turn it on in Org buffer
|
||||
|
@ -959,7 +959,7 @@ There are compatibility issues between Org mode and some other Elisp
|
|||
packages, please take the time to check the list (@pxref{Conflicts}).
|
||||
|
||||
The four Org commands @command{org-store-link}, @command{org-capture},
|
||||
@command{org-agenda}, and @command{org-iswitchb} should be accessible through
|
||||
@command{org-agenda}, and @command{org-switchb} should be accessible through
|
||||
global keys (i.e., anywhere in Emacs, not just in Org buffers). Here are
|
||||
suggested bindings for these keys, please modify the keys to your own
|
||||
liking.
|
||||
|
@ -967,7 +967,7 @@ liking.
|
|||
(global-set-key "\C-cl" 'org-store-link)
|
||||
(global-set-key "\C-ca" 'org-agenda)
|
||||
(global-set-key "\C-cc" 'org-capture)
|
||||
(global-set-key "\C-cb" 'org-iswitchb)
|
||||
(global-set-key "\C-cb" 'org-switchb)
|
||||
@end lisp
|
||||
|
||||
@cindex Org mode, turning on
|
||||
|
@ -8062,7 +8062,7 @@ Remove current file from the list of agenda files.
|
|||
@orgcmd{C-',org-cycle-agenda-files}
|
||||
@itemx C-,
|
||||
Cycle through agenda file list, visiting one file after the other.
|
||||
@item M-x org-iswitchb @key{RET}
|
||||
@item M-x org-switchb @key{RET}
|
||||
Command to use an @code{iswitchb}-like interface to switch to and between Org
|
||||
buffers.
|
||||
@end table
|
||||
|
|
|
@ -283,7 +283,7 @@ yourself.
|
|||
(global-set-key "\C-cl" 'org-store-link)
|
||||
(global-set-key "\C-ca" 'org-agenda)
|
||||
(global-set-key "\C-cc" 'org-capture)
|
||||
(global-set-key "\C-cb" 'org-iswitchb)
|
||||
(global-set-key "\C-cb" 'org-switchb)
|
||||
@end smalllisp
|
||||
|
||||
Files with extension @samp{.org} will be put into Org mode automatically.
|
||||
|
|
|
@ -518,7 +518,9 @@ cannot be translated."
|
|||
(cond ((functionp org-clock-heading-function)
|
||||
(funcall org-clock-heading-function))
|
||||
((org-before-first-heading-p) "???")
|
||||
(t (org-get-heading t t t t))))
|
||||
(t (replace-regexp-in-string
|
||||
org-bracket-link-analytic-regexp "\\5"
|
||||
(org-no-properties (org-get-heading t t t t))))))
|
||||
|
||||
(defun org-clock-menu ()
|
||||
(interactive)
|
||||
|
|
Loading…
Reference in New Issue