1 #+TITLE: Documentation for Org hooks, commands and options
3 #+DESCRIPTION: List of all hooks, commands and options
4 #+KEYWORDS: Org hooks, commands and options
5 #+OPTIONS: H:3 num:nil toc:t \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc
9 This page lists *all hooks, commands and options* of Org 8.0.
11 - *Hooks* :: are options containing functions to be run before or after a
12 function. For example, =org-mode-hook= can contain a list of
13 functions to be called after org-mode is turned on.
15 - *Commands* :: are interactive functions that the user can run with =M-x
16 command RET=. Most commands have an associated keybinding,
17 indicated here. Users can bind command to his preferred
20 - *Options* :: are variables that the user can set through the =customize=
21 interface. Calling =M-x customize-variable RET= then
22 completing over availables options will open the custom
23 interface, which makes it easy to set an option.
25 These are the main "internals" that the uesr may want to know about, and we
26 list them here for further reference. E.g. You can safely create links to
27 =http://orgmode.org/worg/doc.html#org-agenda= to refer to the documentation
28 of the =org-agenda= command.
30 On top of these symbols, there are other non-interactive /functions/ and
31 /variables/. You can get more documentation about them with =C-h f org-
32 TAB= and =C-h v org- TAB= respectively.
40 ** org-shiftmetaup-hook =nil=
42 :CUSTOM_ID: org-shiftmetaup-hook
44 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
45 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaup-hook&sr=1][Find modifications in git logs]]
47 : Hook for functions attaching themselves to `M-S-up'.
48 : See `org-ctrl-c-ctrl-c-hook' for more information.
50 ** org-export-filter-subscript-functions =nil=
52 :CUSTOM_ID: org-export-filter-subscript-functions
54 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
55 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-subscript-functions&sr=1][Find modifications in git logs]]
57 : List of functions applied to a transcoded subscript.
58 : Each filter is called with three arguments: the transcoded data,
59 : as a string, the back-end, as a symbol, and the communication
60 : channel, as a plist. It must return a string or nil.
62 ** org-feed-after-adding-hook =nil=
64 :CUSTOM_ID: org-feed-after-adding-hook
66 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
67 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-after-adding-hook&sr=1][Find modifications in git logs]]
69 : Hook that is run after new items have been added to a file.
70 : Depending on `org-feed-save-after-adding', the buffer will already
73 ** org-export-filter-drawer-functions =nil=
75 :CUSTOM_ID: org-indent-mode-hook
77 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
78 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-drawer-functions&sr=1][Find modifications in git logs]]
80 : List of functions applied to a transcoded drawer.
81 : Each filter is called with three arguments: the transcoded data,
82 : as a string, the back-end, as a symbol, and the communication
83 : channel, as a plist. It must return a string or nil.
85 ** org-export-filter-node-property-functions =nil=
87 :CUSTOM_ID: org-export-filter-node-property-functions
89 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
90 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-node-property-functions&sr=1][Find modifications in git logs]]
92 : List of functions applied to a transcoded node-property.
93 : Each filter is called with three arguments: the transcoded data,
94 : as a string, the back-end, as a symbol, and the communication
95 : channel, as a plist. It must return a string or nil.
97 ** org-ctrl-c-ctrl-c-hook =nil=
99 :CUSTOM_ID: org-ctrl-c-ctrl-c-hook
101 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
102 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-ctrl-c-hook&sr=1][Find modifications in git logs]]
104 : Hook for functions attaching themselves to `C-c C-c'.
106 : This can be used to add additional functionality to the C-c C-c
107 : key which executes context-dependent commands. This hook is run
108 : before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
109 : run after the last test.
111 : Each function will be called with no arguments. The function
112 : must check if the context is appropriate for it to act. If yes,
113 : it should do its thing and then return a non-nil value. If the
114 : context is wrong, just do nothing and return nil.
116 ** org-export-filter-link-functions =nil=
118 :CUSTOM_ID: org-src-mode-on-hook
120 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
121 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-link-functions&sr=1][Find modifications in git logs]]
123 : List of functions applied to a transcoded link.
124 : Each filter is called with three arguments: the transcoded data,
125 : as a string, the back-end, as a symbol, and the communication
126 : channel, as a plist. It must return a string or nil.
128 ** org-capture-after-finalize-hook =nil=
130 :CUSTOM_ID: org-capture-after-finalize-hook
132 - *Since:* Emacs version 24.1
133 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
134 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-after-finalize-hook&sr=1][Find modifications in git logs]]
136 : Hook that is run right after a capture process is finalized.
137 : Suitable for window cleanup.
139 ** org-export-filter-bold-functions =nil=
141 :CUSTOM_ID: org-export-filter-bold-functions
143 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
144 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-bold-functions&sr=1][Find modifications in git logs]]
146 : List of functions applied to transcoded bold text.
147 : Each filter is called with three arguments: the transcoded data,
148 : as a string, the back-end, as a symbol, and the communication
149 : channel, as a plist. It must return a string or nil.
151 ** org-export-define-heading-targets-headline-hook =nil=
153 :CUSTOM_ID: org-export-define-heading-targets-headline-hook
155 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
156 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-define-heading-targets-headline-hook&sr=1][Find modifications in git logs]]
158 : Hook that is run when a headline was matched during target search.
159 : This is part of the preprocessing for export.
161 ** org-mobile-before-process-capture-hook =nil=
163 :CUSTOM_ID: org-mobile-before-process-capture-hook
165 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
166 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-before-process-capture-hook&sr=1][Find modifications in git logs]]
168 : Hook that is run after content was moved to `org-mobile-inbox-for-pull'.
169 : The inbox file is visited by the current buffer, and the buffer is
170 : narrowed to the newly captured data.
172 ** org-create-file-search-functions =nil=
174 :CUSTOM_ID: org-create-file-search-functions
176 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
177 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-create-file-search-functions&sr=1][Find modifications in git logs]]
179 : List of functions to construct the right search string for a file link.
180 : These functions are called in turn with point at the location to
181 : which the link should point.
183 : A function in the hook should first test if it would like to
184 : handle this file type, for example by checking the `major-mode'
185 : or the file extension. If it decides not to handle this file, it
186 : should just return nil to give other functions a chance. If it
187 : does handle the file, it must return the search string to be used
188 : when following the link. The search string will be part of the
189 : file link, given after a double colon, and `org-open-at-point'
190 : will automatically search for it. If special measures must be
191 : taken to make the search successful, another function should be
192 : added to the companion hook `org-execute-file-search-functions',
195 : A function in this hook may also use `setq' to set the variable
196 : `description' to provide a suggestion for the descriptive text to
197 : be used for this link when it gets inserted into an Org-mode
198 : buffer with \[org-insert-link].
200 ** org-export-preprocess-before-backend-specifics-hook =nil=
202 :CUSTOM_ID: org-export-preprocess-before-backend-specifics-hook
204 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
205 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-before-backend-specifics-hook&sr=1][Find modifications in git logs]]
207 : Hook run before backend-specific functions are called during preprocessing.
209 ** org-tab-after-check-for-table-hook =nil=
211 :CUSTOM_ID: org-tab-after-check-for-table-hook
213 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
214 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tab-after-check-for-table-hook&sr=1][Find modifications in git logs]]
216 : Hook for functions to attach themselves to TAB.
217 : See `org-ctrl-c-ctrl-c-hook' for more information.
218 : This hook runs after it has been established that the cursor is not in a
219 : table, but before checking if the cursor is in a headline or if global cycling
221 : If any function in this hook returns t, not other actions like visibility
222 : cycling will be done.
224 ** org-clock-goto-hook =nil=
226 :CUSTOM_ID: org-agenda-post-command-hook
228 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
229 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-goto-hook&sr=1][Find modifications in git logs]]
231 : Hook run when selecting the currently clocked-in entry.
233 ** org-export-filter-section-functions =nil=
235 :CUSTOM_ID: org-export-filter-section-functions
237 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
238 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-section-functions&sr=1][Find modifications in git logs]]
240 : List of functions applied to a transcoded section.
241 : Each filter is called with three arguments: the transcoded data,
242 : as a string, the back-end, as a symbol, and the communication
243 : channel, as a plist. It must return a string or nil.
245 ** org-shiftleft-hook =nil=
247 :CUSTOM_ID: org-shiftleft-hook
249 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
250 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftleft-hook&sr=1][Find modifications in git logs]]
252 : Hook for functions attaching themselves to `S-left'.
253 : See `org-ctrl-c-ctrl-c-hook' for more information.
255 ** org-export-filter-latex-environment-functions =nil=
257 :CUSTOM_ID: org-export-filter-latex-environment-functions
259 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
260 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-latex-environment-functions&sr=1][Find modifications in git logs]]
262 : List of functions applied to a transcoded latex-environment.
263 : Each filter is called with three arguments: the transcoded data,
264 : as a string, the back-end, as a symbol, and the communication
265 : channel, as a plist. It must return a string or nil.
267 ** org-ctrl-c-ctrl-c-final-hook =nil=
269 :CUSTOM_ID: org-ctrl-c-ctrl-c-final-hook
271 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
272 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-ctrl-c-final-hook&sr=1][Find modifications in git logs]]
274 : Hook for functions attaching themselves to `C-c C-c'.
276 : This can be used to add additional functionality to the C-c C-c
277 : key which executes context-dependent commands. This hook is run
278 : after any other test, while `org-ctrl-c-ctrl-c-hook' is run
279 : before the first test.
281 : Each function will be called with no arguments. The function
282 : must check if the context is appropriate for it to act. If yes,
283 : it should do its thing and then return a non-nil value. If the
284 : context is wrong, just do nothing and return nil.
286 ** org-export-filter-footnote-reference-functions =nil=
288 :CUSTOM_ID: org-export-filter-footnote-reference-functions
290 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
291 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-footnote-reference-functions&sr=1][Find modifications in git logs]]
293 : List of functions applied to a transcoded footnote-reference.
294 : Each filter is called with three arguments: the transcoded data,
295 : as a string, the back-end, as a symbol, and the communication
296 : channel, as a plist. It must return a string or nil.
298 ** org-export-filter-export-snippet-functions =nil=
300 :CUSTOM_ID: org-export-filter-export-snippet-functions
302 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
303 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-export-snippet-functions&sr=1][Find modifications in git logs]]
305 : List of functions applied to a transcoded export-snippet.
306 : Each filter is called with three arguments: the transcoded data,
307 : as a string, the back-end, as a symbol, and the communication
308 : channel, as a plist. It must return a string or nil.
310 ** org-export-filter-strike-through-functions =nil=
312 :CUSTOM_ID: org-export-filter-strike-through-functions
314 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
315 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-strike-through-functions&sr=1][Find modifications in git logs]]
317 : List of functions applied to transcoded strike-through text.
318 : Each filter is called with three arguments: the transcoded data,
319 : as a string, the back-end, as a symbol, and the communication
320 : channel, as a plist. It must return a string or nil.
322 ** org-export-filter-keyword-functions =nil=
324 :CUSTOM_ID: org-export-filter-keyword-functions
326 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
327 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-keyword-functions&sr=1][Find modifications in git logs]]
329 : List of functions applied to a transcoded keyword.
330 : Each filter is called with three arguments: the transcoded data,
331 : as a string, the back-end, as a symbol, and the communication
332 : channel, as a plist. It must return a string or nil.
334 ** org-agenda-cleanup-fancy-diary-hook =nil=
336 :CUSTOM_ID: org-export-preprocess-after-macros-hook
338 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
339 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-cleanup-fancy-diary-hook&sr=1][Find modifications in git logs]]
341 : Hook run when the fancy diary buffer is cleaned up.
343 ** org-export-filter-radio-target-functions =nil=
345 :CUSTOM_ID: org-export-filter-radio-target-functions
347 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
348 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-radio-target-functions&sr=1][Find modifications in git logs]]
350 : List of functions applied to a transcoded radio-target.
351 : Each filter is called with three arguments: the transcoded data,
352 : as a string, the back-end, as a symbol, and the communication
353 : channel, as a plist. It must return a string or nil.
355 ** org-export-preprocess-after-radio-targets-hook =nil=
357 :CUSTOM_ID: org-export-preprocess-after-radio-targets-hook
359 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
360 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-after-radio-targets-hook&sr=1][Find modifications in git logs]]
362 : Hook for preprocessing an export buffer.
363 : This is run after radio target processing.
365 ** org-export-filter-quote-section-functions =nil=
367 :CUSTOM_ID: org-export-filter-quote-section-functions
369 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
370 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-quote-section-functions&sr=1][Find modifications in git logs]]
372 : List of functions applied to a transcoded quote-section.
373 : Each filter is called with three arguments: the transcoded data,
374 : as a string, the back-end, as a symbol, and the communication
375 : channel, as a plist. It must return a string or nil.
377 ** org-export-preprocess-before-selecting-backend-code-hook =nil=
379 :CUSTOM_ID: org-export-preprocess-before-selecting-backend-code-hook
381 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
382 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-before-selecting-backend-code-hook&sr=1][Find modifications in git logs]]
384 : Hook for preprocessing an export buffer.
385 : This is run just before backend-specific blocks get selected.
387 ** org-export-filter-diary-sexp-functions =nil=
389 :CUSTOM_ID: org-export-filter-diary-sexp-functions
391 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
392 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-diary-sexp-functions&sr=1][Find modifications in git logs]]
394 : List of functions applied to a transcoded diary-sexp.
395 : Each filter is called with three arguments: the transcoded data,
396 : as a string, the back-end, as a symbol, and the communication
397 : channel, as a plist. It must return a string or nil.
399 ** org-log-buffer-setup-hook =nil=
401 :CUSTOM_ID: org-log-buffer-setup-hook
403 - *Since:* Emacs version 24.1
404 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
405 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-buffer-setup-hook&sr=1][Find modifications in git logs]]
407 : Hook that is run after an Org log buffer is created.
409 ** org-tab-first-hook =nil=
411 :CUSTOM_ID: org-tab-first-hook
413 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
414 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tab-first-hook&sr=1][Find modifications in git logs]]
416 : Hook for functions to attach themselves to TAB.
417 : See `org-ctrl-c-ctrl-c-hook' for more information.
418 : This hook runs as the first action when TAB is pressed, even before
419 : `org-cycle' messes around with the `outline-regexp' to cater for
420 : inline tasks and plain list item folding.
421 : If any function in this hook returns t, any other actions that
422 : would have been caused by TAB (such as table field motion or visibility
423 : cycling) will not occur.
425 ** org-capture-prepare-finalize-hook =nil=
427 :CUSTOM_ID: org-capture-prepare-finalize-hook
429 - *Since:* Emacs version 24.1
430 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
431 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-prepare-finalize-hook&sr=1][Find modifications in git logs]]
433 : Hook that is run before the finalization starts.
434 : The capture buffer is current and still narrowed.
436 ** org-mobile-post-push-hook =nil=
438 :CUSTOM_ID: org-mobile-post-push-hook
440 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
441 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-post-push-hook&sr=1][Find modifications in git logs]]
443 : Hook run after running `org-mobile-push'.
444 : If Emacs does not have direct write access to the WebDAV directory used
445 : by the mobile device, this hook should be used to copy all files from the
446 : local staging directory `org-mobile-directory' to the WebDAV directory,
447 : for example using `rsync' or `scp'.
449 ** org-export-filter-plain-list-functions =nil=
451 :CUSTOM_ID: org-export-filter-plain-list-functions
453 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
454 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-plain-list-functions&sr=1][Find modifications in git logs]]
456 : List of functions applied to a transcoded plain-list.
457 : Each filter is called with three arguments: the transcoded data,
458 : as a string, the back-end, as a symbol, and the communication
459 : channel, as a plist. It must return a string or nil.
461 ** org-export-filter-target-functions =nil=
463 :CUSTOM_ID: org-export-filter-target-functions
465 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
466 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-target-functions&sr=1][Find modifications in git logs]]
468 : List of functions applied to a transcoded target.
469 : Each filter is called with three arguments: the transcoded data,
470 : as a string, the back-end, as a symbol, and the communication
471 : channel, as a plist. It must return a string or nil.
473 ** org-export-filter-item-functions =nil=
475 :CUSTOM_ID: org-export-filter-item-functions
477 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
478 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-item-functions&sr=1][Find modifications in git logs]]
480 : List of functions applied to a transcoded item.
481 : Each filter is called with three arguments: the transcoded data,
482 : as a string, the back-end, as a symbol, and the communication
483 : channel, as a plist. It must return a string or nil.
485 ** org-export-filter-line-break-functions =nil=
487 :CUSTOM_ID: org-export-filter-line-break-functions
489 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
490 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-line-break-functions&sr=1][Find modifications in git logs]]
492 : List of functions applied to a transcoded line-break.
493 : Each filter is called with three arguments: the transcoded data,
494 : as a string, the back-end, as a symbol, and the communication
495 : channel, as a plist. It must return a string or nil.
497 ** org-mobile-pre-push-hook =nil=
499 :CUSTOM_ID: org-export-filter-apply-functions
501 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
502 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-pre-push-hook&sr=1][Find modifications in git logs]]
504 : Hook run before running `org-mobile-push'.
505 : This could be used to clean up `org-mobile-directory', for example to
506 : remove files that used to be included in the agenda but no longer are.
507 : The presence of such files would not really be a problem, but after time
508 : they may accumulate.
510 ** org-open-at-point-functions =nil=
512 :CUSTOM_ID: org-open-at-point-functions
514 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
515 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-at-point-functions&sr=1][Find modifications in git logs]]
517 : Hook that is run when following a link at point.
519 : Functions in this hook must return t if they identify and follow
520 : a link at point. If they don't find anything interesting at point,
521 : they must return nil.
523 ** org-execute-file-search-functions =nil=
525 :CUSTOM_ID: org-execute-file-search-functions
527 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
528 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-execute-file-search-functions&sr=1][Find modifications in git logs]]
530 : List of functions to execute a file search triggered by a link.
532 : Functions added to this hook must accept a single argument, the
533 : search string that was part of the file link, the part after the
534 : double colon. The function must first check if it would like to
535 : handle this search, for example by checking the `major-mode' or
536 : the file extension. If it decides not to handle this search, it
537 : should just return nil to give other functions a chance. If it
538 : does handle the search, it must return a non-nil value to keep
539 : other functions from trying.
541 : Each function can access the current prefix argument through the
542 : variable `current-prefix-arg'. Note that a single prefix is used
543 : to force opening a link in Emacs, so it may be good to only use a
544 : numeric or double prefix to guide the search function.
546 : In case this is needed, a function in this hook can also restore
547 : the window configuration before `org-open-at-point' was called using:
549 : (set-window-configuration org-window-config-before-follow-link)
551 ** org-timer-pause-hook =nil=
553 :CUSTOM_ID: org-timer-pause-hook
555 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
556 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-pause-hook&sr=1][Find modifications in git logs]]
558 : Hook run before relative timer is paused.
560 ** org-cycle-hook =(quote (org-cycle-hide-archive...=
562 :CUSTOM_ID: org-cycle-hook
564 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
565 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-hook&sr=1][Find modifications in git logs]]
567 : Hook that is run after `org-cycle' has changed the buffer visibility.
568 : The function(s) in this hook must accept a single argument which indicates
569 : the new state that was set by the most recent `org-cycle' command. The
570 : argument is a symbol. After a global state change, it can have the values
571 : `overview', `contents', or `all'. After a local state change, it can have
572 : the values `folded', `children', or `subtree'.
574 ** org-agenda-before-write-hook =(quote (org-agenda-add-entry-t...=
576 :CUSTOM_ID: org-agenda-before-write-hook
578 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
579 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-before-write-hook&sr=1][Find modifications in git logs]]
581 : Hook run in a temporary buffer before writing the agenda to an export file.
582 : A useful function for this hook is `org-agenda-add-entry-text'.
584 ** org-export-filter-src-block-functions =nil=
586 :CUSTOM_ID: org-export-filter-src-block-functions
588 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
589 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-src-block-functions&sr=1][Find modifications in git logs]]
591 : List of functions applied to a transcoded src-block.
592 : Each filter is called with three arguments: the transcoded data,
593 : as a string, the back-end, as a symbol, and the communication
594 : channel, as a plist. It must return a string or nil.
596 ** org-export-filter-fixed-width-functions =nil=
598 :CUSTOM_ID: org-export-filter-fixed-width-functions
600 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
601 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-fixed-width-functions&sr=1][Find modifications in git logs]]
603 : List of functions applied to a transcoded fixed-width.
604 : Each filter is called with three arguments: the transcoded data,
605 : as a string, the back-end, as a symbol, and the communication
606 : channel, as a plist. It must return a string or nil.
608 ** org-read-date-minibuffer-setup-hook =nil=
610 :CUSTOM_ID: org-read-date-minibuffer-setup-hook
612 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
613 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-read-date-minibuffer-setup-hook&sr=1][Find modifications in git logs]]
615 : Hook to be used to set up keys for the date/time interface.
616 : Add key definitions to `minibuffer-local-map', which will be a
619 : WARNING: This option is obsolete, you should use
620 : `org-read-date-minibuffer-local-map' to set up keys.
622 ** org-speed-command-hook =(quote (org-speed-command-defa...=
624 :CUSTOM_ID: org-speed-command-hook
626 - *Since:* Emacs version 24.1
627 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
628 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-speed-command-hook&sr=1][Find modifications in git logs]]
630 : Hook for activating speed commands at strategic locations.
631 : Hook functions are called in sequence until a valid handler is
634 : Each hook takes a single argument, a user-pressed command key
635 : which is also a `self-insert-command' from the global map.
637 : Within the hook, examine the cursor position and the command key
638 : and return nil or a valid handler as appropriate. Handler could
639 : be one of an interactive command, a function, or a form.
641 : Set `org-use-speed-commands' to non-nil value to enable this
642 : hook. The default setting is `org-speed-command-activate'.
644 ** org-export-preprocess-hook =nil=
646 :CUSTOM_ID: org-export-preprocess-hook
648 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
649 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-hook&sr=1][Find modifications in git logs]]
651 : Hook for preprocessing an export buffer.
652 : Pretty much the first thing when exporting is running this hook.
653 : Point will be in a temporary buffer that contains a copy of
654 : the original buffer, or of the section that is being exported.
655 : All the other hooks in the org-export-preprocess... category
656 : also work in that temporary buffer, already modified by various
657 : stages of the processing.
659 ** org-tab-before-tab-emulation-hook =nil=
661 :CUSTOM_ID: org-tab-before-tab-emulation-hook
663 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
664 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tab-before-tab-emulation-hook&sr=1][Find modifications in git logs]]
666 : Hook for functions to attach themselves to TAB.
667 : See `org-ctrl-c-ctrl-c-hook' for more information.
668 : This hook runs after every other options for TAB have been exhausted, but
669 : before indentation and insertion takes place.
671 ** org-export-filter-special-block-functions =nil=
673 :CUSTOM_ID: org-export-filter-special-block-functions
675 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
676 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-special-block-functions&sr=1][Find modifications in git logs]]
678 : List of functions applied to a transcoded special block.
679 : Each filter is called with three arguments: the transcoded data,
680 : as a string, the back-end, as a symbol, and the communication
681 : channel, as a plist. It must return a string or nil.
683 ** org-export-filter-parse-tree-functions =nil=
685 :CUSTOM_ID: org-export-filter-parse-tree-functions
687 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
688 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-parse-tree-functions&sr=1][Find modifications in git logs]]
690 : List of functions applied to the parsed tree.
691 : Each filter is called with three arguments: the parse tree, as
692 : returned by `org-element-parse-buffer', the back-end, as
693 : a symbol, and the communication channel, as a plist. It must
694 : return the modified parse tree to transcode.
696 ** org-export-filter-export-block-functions =nil=
698 :CUSTOM_ID: org-export-filter-export-block-functions
700 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
701 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-export-block-functions&sr=1][Find modifications in git logs]]
703 : List of functions applied to a transcoded export-block.
704 : Each filter is called with three arguments: the transcoded data,
705 : as a string, the back-end, as a symbol, and the communication
706 : channel, as a plist. It must return a string or nil.
708 ** org-capture-before-finalize-hook =nil=
710 :CUSTOM_ID: org-capture-before-finalize-hook
712 - *Since:* Emacs version 24.1
713 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
714 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-before-finalize-hook&sr=1][Find modifications in git logs]]
716 : Hook that is run right before a capture process is finalized.
717 : The capture buffer is still current when this hook runs and it is
718 : widened to the entire buffer.
720 ** org-blocker-hook =nil=
722 :CUSTOM_ID: org-blocker-hook
724 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
725 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-blocker-hook&sr=1][Find modifications in git logs]]
727 : Hook for functions that are allowed to block a state change.
729 : Functions in this hook should not modify the buffer.
730 : Each function gets as its single argument a property list,
731 : see `org-trigger-hook' for more information about this list.
733 : If any of the functions in this hook returns nil, the state change
736 ** org-checkbox-statistics-hook =nil=
738 :CUSTOM_ID: org-checkbox-statistics-hook
740 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
741 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-checkbox-statistics-hook&sr=1][Find modifications in git logs]]
743 : Hook that is run whenever Org thinks checkbox statistics should be updated.
744 : This hook runs even if checkbox rule in
745 : `org-list-automatic-rules' does not apply, so it can be used to
746 : implement alternative ways of collecting statistics
749 ** org-metaright-hook =nil=
751 :CUSTOM_ID: org-metaright-hook
753 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
754 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaright-hook&sr=1][Find modifications in git logs]]
756 : Hook for functions attaching themselves to `M-right'.
757 : See `org-ctrl-c-ctrl-c-hook' for more information.
759 ** org-babel-pre-tangle-hook =(quote (save-buffer))=
761 :CUSTOM_ID: org-babel-pre-tangle-hook
763 - *Since:* Emacs version 24.1
764 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
765 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-pre-tangle-hook&sr=1][Find modifications in git logs]]
767 : Hook run at the beginning of `org-babel-tangle'.
769 ** org-occur-hook =(quote (org-first-headline-rec...=
771 :CUSTOM_ID: org-occur-hook
773 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
774 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-occur-hook&sr=1][Find modifications in git logs]]
776 : Hook that is run after `org-occur' has constructed a sparse tree.
777 : This can be used to recenter the window to show as much of the structure
780 ** org-font-lock-hook =nil=
782 :CUSTOM_ID: org-font-lock-hook
784 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
785 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-font-lock-hook&sr=1][Find modifications in git logs]]
787 : Functions to be called for special font lock stuff.
789 ** org-export-filter-table-row-functions =nil=
791 :CUSTOM_ID: org-export-filter-table-row-functions
793 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
794 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-table-row-functions&sr=1][Find modifications in git logs]]
796 : List of functions applied to a transcoded table-row.
797 : Each filter is called with three arguments: the transcoded data,
798 : as a string, the back-end, as a symbol, and the communication
799 : channel, as a plist. It must return a string or nil.
801 ** org-metaleft-hook =nil=
803 :CUSTOM_ID: org-metaleft-hook
805 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
806 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaleft-hook&sr=1][Find modifications in git logs]]
808 : Hook for functions attaching themselves to `M-left'.
809 : See `org-ctrl-c-ctrl-c-hook' for more information.
811 ** org-timer-set-hook =nil=
813 :CUSTOM_ID: org-timer-set-hook
815 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
816 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-set-hook&sr=1][Find modifications in git logs]]
818 : Hook run after countdown timer is set.
820 ** org-mobile-post-pull-hook =nil=
822 :CUSTOM_ID: org-mobile-post-pull-hook
824 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
825 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-post-pull-hook&sr=1][Find modifications in git logs]]
827 : Hook run after running `org-mobile-pull', only if new items were found.
828 : If Emacs does not have direct write access to the WebDAV directory used
829 : by the mobile device, this hook should be used to copy the emptied
830 : capture file `mobileorg.org' back to the WebDAV directory, for example
831 : using `rsync' or `scp'.
833 ** org-after-tags-change-hook =nil=
835 :CUSTOM_ID: org-after-tags-change-hook
837 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
838 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-tags-change-hook&sr=1][Find modifications in git logs]]
840 : Hook that is run after the tags in a line have changed.
842 ** org-trigger-hook =nil=
844 :CUSTOM_ID: org-trigger-hook
846 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
847 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-trigger-hook&sr=1][Find modifications in git logs]]
849 : Hook for functions that are triggered by a state change.
851 : Each function gets as its single argument a property list with at
852 : least the following elements:
854 : (:type type-of-change :position pos-at-entry-start
855 : :from old-state :to new-state)
857 : Depending on the type, more properties may be present.
859 : This mechanism is currently implemented for:
863 : :type todo-state-change
864 : :from previous state (keyword as a string), or nil, or a symbol
865 : 'todo' or 'done', to indicate the general type of state.
866 : :to new state, like in :from
868 ** org-shiftright-hook =nil=
870 :CUSTOM_ID: org-shiftright-hook
872 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
873 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftright-hook&sr=1][Find modifications in git logs]]
875 : Hook for functions attaching themselves to `S-right'.
876 : See `org-ctrl-c-ctrl-c-hook' for more information.
878 ** org-mobile-pre-pull-hook =nil=
880 :CUSTOM_ID: org-mobile-pre-pull-hook
882 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
883 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-pre-pull-hook&sr=1][Find modifications in git logs]]
885 : Hook run before executing `org-mobile-pull'.
886 : If Emacs does not have direct write access to the WebDAV directory used
887 : by the mobile device, this hook should be used to copy the capture file
888 : `mobileorg.org' from the WebDAV location to the local staging
889 : directory `org-mobile-directory'.
891 ** org-after-promote-entry-hook =nil=
893 :CUSTOM_ID: org-after-promote-entry-hook
895 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
896 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-promote-entry-hook&sr=1][Find modifications in git logs]]
898 : Hook run after an entry has been promoted.
899 : The cursor will be at the beginning of the entry.
900 : When a subtree is being promoted, the hook will be called for each node.
902 ** org-open-link-functions =nil=
904 :CUSTOM_ID: org-open-link-functions
906 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
907 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-link-functions&sr=1][Find modifications in git logs]]
909 : Hook for functions finding a plain text link.
910 : These functions must take a single argument, the link content.
911 : They will be called for links that look like [[link text][description]]
912 : when LINK TEXT does not have a protocol like "http:" and does not look
913 : like a filename (e.g. "./blue.png").
915 : These functions will be called *before* Org attempts to resolve the
916 : link by doing text searches in the current buffer - so if you want a
917 : link "[[target]]" to still find "<<target>>", your function should
918 : handle this as a special case.
920 : When the function does handle the link, it must return a non-nil value.
921 : If it decides that it is not responsible for this link, it must return
922 : nil to indicate that that Org-mode can continue with other options
923 : like exact and fuzzy text search.
925 ** org-export-preprocess-after-include-files-hook =nil=
927 :CUSTOM_ID: org-export-preprocess-after-include-files-hook
929 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
930 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-after-include-files-hook&sr=1][Find modifications in git logs]]
932 : Hook for preprocessing an export buffer.
933 : This is run after the contents of included files have been inserted.
935 ** org-insert-heading-hook =nil=
937 :CUSTOM_ID: org-insert-heading-hook
939 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
940 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-heading-hook&sr=1][Find modifications in git logs]]
942 : Hook being run after inserting a new heading.
944 ** org-property-allowed-value-functions =nil=
946 :CUSTOM_ID: org-property-allowed-value-functions
948 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
949 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-allowed-value-functions&sr=1][Find modifications in git logs]]
951 : Hook for functions supplying allowed values for a specific property.
952 : The functions must take a single argument, the name of the property, and
953 : return a flat list of allowed values. If ":ETC" is one of
954 : the values, this means that these values are intended as defaults for
955 : completion, but that other values should be allowed too.
956 : The functions must return nil if they are not responsible for this
959 ** org-timer-continue-hook =nil=
961 :CUSTOM_ID: org-timer-continue-hook
963 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
964 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-continue-hook&sr=1][Find modifications in git logs]]
966 : Hook run after relative timer is continued.
968 ** org-after-demote-entry-hook =nil=
970 :CUSTOM_ID: org-after-demote-entry-hook
972 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
973 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-demote-entry-hook&sr=1][Find modifications in git logs]]
975 : Hook run after an entry has been demoted.
976 : The cursor will be at the beginning of the entry.
977 : When a subtree is being demoted, the hook will be called for each node.
979 ** org-shiftdown-final-hook =nil=
981 :CUSTOM_ID: org-shiftdown-final-hook
983 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
984 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftdown-final-hook&sr=1][Find modifications in git logs]]
986 : Hook for functions attaching themselves to `S-down'.
987 : This one runs after all other options except shift-select have been excluded.
988 : See `org-ctrl-c-ctrl-c-hook' for more information.
990 ** org-feed-before-adding-hook =nil=
992 :CUSTOM_ID: org-feed-before-adding-hook
994 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
995 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-before-adding-hook&sr=1][Find modifications in git logs]]
997 : Hook that is run before adding new feed items to a file.
998 : You might want to commit the file in its current state to version control,
1001 ** org-todo-statistics-hook =nil=
1003 :CUSTOM_ID: org-todo-statistics-hook
1005 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1006 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-statistics-hook&sr=1][Find modifications in git logs]]
1008 : Hook that is run whenever Org thinks TODO statistics should be updated.
1009 : This hook runs even if there is no statistics cookie present, in which case
1010 : `org-after-todo-statistics-hook' would not run.
1012 ** org-metaup-hook =nil=
1014 :CUSTOM_ID: org-metaup-hook
1016 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1017 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaup-hook&sr=1][Find modifications in git logs]]
1019 : Hook for functions attaching themselves to `M-up'.
1020 : See `org-ctrl-c-ctrl-c-hook' for more information.
1022 ** org-reveal-start-hook =nil=
1024 :CUSTOM_ID: org-cdlatex-mode-on-hook
1026 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1027 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reveal-start-hook&sr=1][Find modifications in git logs]]
1029 : Hook run before revealing a location.
1031 ** org-shiftmetadown-hook =nil=
1033 :CUSTOM_ID: org-export-stack-mode-hook
1035 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1036 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetadown-hook&sr=1][Find modifications in git logs]]
1038 : Hook for functions attaching themselves to `M-S-down'.
1039 : See `org-ctrl-c-ctrl-c-hook' for more information.
1041 ** org-export-filter-inlinetask-functions =nil=
1043 :CUSTOM_ID: org-beamer-mode-hook
1045 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1046 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-inlinetask-functions&sr=1][Find modifications in git logs]]
1048 : List of functions applied to a transcoded inlinetask.
1049 : Each filter is called with three arguments: the transcoded data,
1050 : as a string, the back-end, as a symbol, and the communication
1051 : channel, as a plist. It must return a string or nil.
1053 ** org-export-preprocess-before-normalizing-links-hook =nil=
1055 :CUSTOM_ID: org-export-preprocess-before-normalizing-links-hook
1057 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1058 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-before-normalizing-links-hook&sr=1][Find modifications in git logs]]
1060 : Hook for preprocessing an export buffer.
1061 : This hook is run before links are normalized.
1063 ** org-export-filter-paragraph-functions =nil=
1065 :CUSTOM_ID: org-export-filter-paragraph-functions
1067 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1068 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-paragraph-functions&sr=1][Find modifications in git logs]]
1070 : List of functions applied to a transcoded paragraph.
1071 : Each filter is called with three arguments: the transcoded data,
1072 : as a string, the back-end, as a symbol, and the communication
1073 : channel, as a plist. It must return a string or nil.
1075 ** org-export-filter-example-block-functions =nil=
1077 :CUSTOM_ID: org-export-filter-example-block-functions
1079 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1080 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-example-block-functions&sr=1][Find modifications in git logs]]
1082 : List of functions applied to a transcoded example-block.
1083 : Each filter is called with three arguments: the transcoded data,
1084 : as a string, the back-end, as a symbol, and the communication
1085 : channel, as a plist. It must return a string or nil.
1087 ** org-export-preprocess-after-blockquote-hook =nil=
1089 :CUSTOM_ID: org-export-preprocess-after-blockquote-hook
1091 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1092 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-after-blockquote-hook&sr=1][Find modifications in git logs]]
1094 : Hook for preprocessing an export buffer.
1095 : This is run after blockquote/quote/verse/center have been marked
1098 ** org-export-filter-code-functions =nil=
1100 :CUSTOM_ID: org-export-filter-code-functions
1102 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1103 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-code-functions&sr=1][Find modifications in git logs]]
1105 : List of functions applied to transcoded code text.
1106 : Each filter is called with three arguments: the transcoded data,
1107 : as a string, the back-end, as a symbol, and the communication
1108 : channel, as a plist. It must return a string or nil.
1110 ** org-babel-after-execute-hook =nil=
1112 :CUSTOM_ID: org-indent-mode-off-hook
1114 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
1115 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-after-execute-hook&sr=1][Find modifications in git logs]]
1117 : Hook for functions to be called after `org-babel-execute-src-block'
1119 ** org-babel-post-tangle-hook =nil=
1121 :CUSTOM_ID: org-babel-post-tangle-hook
1123 - *Since:* Emacs version 24.1
1124 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
1125 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-post-tangle-hook&sr=1][Find modifications in git logs]]
1127 : Hook run in code files tangled by `org-babel-tangle'.
1129 ** org-agenda-after-show-hook =nil=
1131 :CUSTOM_ID: org-agenda-after-show-hook
1133 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1134 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-after-show-hook&sr=1][Find modifications in git logs]]
1136 : Normal hook run after an item has been shown from the agenda.
1137 : Point is in the buffer where the item originated.
1139 ** org-clock-in-hook =nil=
1141 :CUSTOM_ID: org-clock-in-hook
1143 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
1144 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in-hook&sr=1][Find modifications in git logs]]
1146 : Hook run when starting the clock.
1148 ** org-export-preprocess-after-headline-targets-hook =nil=
1150 :CUSTOM_ID: org-export-preprocess-after-headline-targets-hook
1152 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1153 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-after-headline-targets-hook&sr=1][Find modifications in git logs]]
1155 : Hook for preprocessing export buffer.
1156 : This is run just after the headline targets have been defined and
1157 : the target-alist has been set up.
1159 ** org-clock-cancel-hook =nil=
1161 :CUSTOM_ID: org-table-follow-field-mode-on-hook
1163 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
1164 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-cancel-hook&sr=1][Find modifications in git logs]]
1166 : Hook run when cancelling the current clock.
1168 ** org-export-filter-superscript-functions =nil=
1170 :CUSTOM_ID: org-export-filter-superscript-functions
1172 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1173 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-superscript-functions&sr=1][Find modifications in git logs]]
1175 : List of functions applied to a transcoded superscript.
1176 : Each filter is called with three arguments: the transcoded data,
1177 : as a string, the back-end, as a symbol, and the communication
1178 : channel, as a plist. It must return a string or nil.
1180 ** org-load-hook =nil=
1182 :CUSTOM_ID: org-load-hook
1184 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1185 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-load-hook&sr=1][Find modifications in git logs]]
1187 : Hook that is run after org.el has been loaded.
1189 ** org-agenda-entry-text-cleanup-hook =nil=
1191 :CUSTOM_ID: org-agenda-entry-text-cleanup-hook
1193 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1194 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-cleanup-hook&sr=1][Find modifications in git logs]]
1196 : Hook that is run after basic cleanup of entry text to be shown in agenda.
1197 : This cleanup is done in a temporary buffer, so the function may inspect and
1198 : change the entire buffer.
1199 : Some default stuff like drawers and scheduling/deadline dates will already
1200 : have been removed when this is called, as will any matches for regular
1201 : expressions listed in `org-agenda-entry-text-exclude-regexps'.
1203 ** org-export-filter-entity-functions =nil=
1205 :CUSTOM_ID: org-export-filter-entity-functions
1207 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1208 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-entity-functions&sr=1][Find modifications in git logs]]
1210 : List of functions applied to a transcoded entity.
1211 : Each filter is called with three arguments: the transcoded data,
1212 : as a string, the back-end, as a symbol, and the communication
1213 : channel, as a plist. It must return a string or nil.
1215 ** org-property-changed-functions =nil=
1217 :CUSTOM_ID: org-property-changed-functions
1219 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1220 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-changed-functions&sr=1][Find modifications in git logs]]
1222 : Hook called when the value of a property has changed.
1223 : Each hook function should accept two arguments, the name of the property
1224 : and the new value.
1226 ** org-export-filter-center-block-functions =nil=
1228 :CUSTOM_ID: org-export-filter-center-block-functions
1230 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1231 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-center-block-functions&sr=1][Find modifications in git logs]]
1233 : List of functions applied to a transcoded center block.
1234 : Each filter is called with three arguments: the transcoded data,
1235 : as a string, the back-end, as a symbol, and the communication
1236 : channel, as a plist. It must return a string or nil.
1238 ** org-export-filter-verbatim-functions =nil=
1240 :CUSTOM_ID: org-babel-speed-command-hook
1242 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1243 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-verbatim-functions&sr=1][Find modifications in git logs]]
1245 : List of functions applied to transcoded verbatim text.
1246 : Each filter is called with three arguments: the transcoded data,
1247 : as a string, the back-end, as a symbol, and the communication
1248 : channel, as a plist. It must return a string or nil.
1250 ** org-export-html-final-hook =nil=
1252 :CUSTOM_ID: org-export-html-final-hook
1254 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
1255 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-final-hook&sr=1][Find modifications in git logs]]
1257 : Hook run at the end of HTML export, in the new buffer.
1259 ** org-export-filter-options-functions =nil=
1261 :CUSTOM_ID: org-export-filter-options-functions
1263 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1264 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-options-functions&sr=1][Find modifications in git logs]]
1266 : List of functions applied to the export options.
1267 : Each filter is called with two arguments: the export options, as
1268 : a plist, and the back-end, as a symbol. It must return
1269 : a property list containing export options.
1271 ** org-babel-tangle-body-hook =nil=
1273 :CUSTOM_ID: org-babel-tangle-body-hook
1275 - *Since:* Emacs version 24.1
1276 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
1277 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-body-hook&sr=1][Find modifications in git logs]]
1279 : Hook run over the contents of each code block body.
1281 ** org-clock-out-hook =nil=
1283 :CUSTOM_ID: org-clock-out-hook
1285 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
1286 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-out-hook&sr=1][Find modifications in git logs]]
1288 : Hook run when stopping the current clock.
1290 ** org-export-preprocess-after-tree-selection-hook =nil=
1292 :CUSTOM_ID: org-export-preprocess-after-tree-selection-hook
1294 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1295 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-after-tree-selection-hook&sr=1][Find modifications in git logs]]
1297 : Hook for preprocessing an export buffer.
1298 : This is run after selection of trees to be exported has happened.
1299 : This selection includes tags-based selection, as well as removal
1300 : of commented and archived trees.
1302 ** org-timer-start-hook =nil=
1304 :CUSTOM_ID: org-timer-start-hook
1306 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
1307 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-start-hook&sr=1][Find modifications in git logs]]
1309 : Hook run after relative timer is started.
1311 ** org-after-refile-insert-hook =nil=
1313 :CUSTOM_ID: org-beamer-mode-on-hook
1315 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1316 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-refile-insert-hook&sr=1][Find modifications in git logs]]
1318 : Hook run after `org-refile' has inserted its stuff at the new location.
1319 : Note that this is still *before* the stuff will be removed from
1320 : the *old* location.
1322 ** org-export-before-parsing-hook =nil=
1324 :CUSTOM_ID: org-export-before-parsing-hook
1326 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1327 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-before-parsing-hook&sr=1][Find modifications in git logs]]
1329 : Hook run before parsing an export buffer.
1331 : This is run after include keywords and macros have been expanded
1332 : and Babel code blocks executed, on a copy of the original buffer
1333 : being exported. Visibility and narrowing are preserved. Point
1334 : is at the beginning of the buffer.
1336 : Every function in this hook will be called with one argument: the
1337 : back-end currently used, as a symbol.
1339 ** org-export-filter-horizontal-rule-functions =nil=
1341 :CUSTOM_ID: org-export-filter-horizontal-rule-functions
1343 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1344 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-horizontal-rule-functions&sr=1][Find modifications in git logs]]
1346 : List of functions applied to a transcoded horizontal-rule.
1347 : Each filter is called with three arguments: the transcoded data,
1348 : as a string, the back-end, as a symbol, and the communication
1349 : channel, as a plist. It must return a string or nil.
1351 ** org-export-filter-inline-src-block-functions =nil=
1353 :CUSTOM_ID: org-export-filter-inline-src-block-functions
1355 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1356 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-inline-src-block-functions&sr=1][Find modifications in git logs]]
1358 : List of functions applied to a transcoded inline-src-block.
1359 : Each filter is called with three arguments: the transcoded data,
1360 : as a string, the back-end, as a symbol, and the communication
1361 : channel, as a plist. It must return a string or nil.
1363 ** org-export-first-hook =nil=
1365 :CUSTOM_ID: org-export-first-hook
1367 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1368 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-first-hook&sr=1][Find modifications in git logs]]
1370 : Hook called as the first thing in each exporter.
1371 : Point will be still in the original buffer.
1372 : Good for general initialization
1374 ** org-mode-hook =nil=
1376 :CUSTOM_ID: org-speed-command-default-hook
1378 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1379 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mode-hook&sr=1][Find modifications in git logs]]
1381 : Mode hook for Org-mode, run after the mode was turned on.
1383 ** org-shiftup-hook =nil=
1385 :CUSTOM_ID: org-shiftup-hook
1387 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1388 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftup-hook&sr=1][Find modifications in git logs]]
1390 : Hook for functions attaching themselves to `S-up'.
1391 : See `org-ctrl-c-ctrl-c-hook' for more information.
1393 ** org-export-filter-underline-functions =nil=
1395 :CUSTOM_ID: org-export-filter-underline-functions
1397 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1398 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-underline-functions&sr=1][Find modifications in git logs]]
1400 : List of functions applied to transcoded underline text.
1401 : Each filter is called with three arguments: the transcoded data,
1402 : as a string, the back-end, as a symbol, and the communication
1403 : channel, as a plist. It must return a string or nil.
1405 ** org-shiftup-final-hook =nil=
1407 :CUSTOM_ID: org-shiftup-final-hook
1409 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1410 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftup-final-hook&sr=1][Find modifications in git logs]]
1412 : Hook for functions attaching themselves to `S-up'.
1413 : This one runs after all other options except shift-select have been excluded.
1414 : See `org-ctrl-c-ctrl-c-hook' for more information.
1416 ** org-timer-done-hook =nil=
1418 :CUSTOM_ID: org-display-inline-modification-hook
1420 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
1421 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-done-hook&sr=1][Find modifications in git logs]]
1423 : Hook run after countdown timer reaches zero.
1425 ** org-export-filter-inline-babel-call-functions =nil=
1427 :CUSTOM_ID: org-export-filter-inline-babel-call-functions
1429 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1430 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-inline-babel-call-functions&sr=1][Find modifications in git logs]]
1432 : List of functions applied to a transcoded inline-babel-call.
1433 : Each filter is called with three arguments: the transcoded data,
1434 : as a string, the back-end, as a symbol, and the communication
1435 : channel, as a plist. It must return a string or nil.
1437 ** org-shiftmetaleft-hook =nil=
1439 :CUSTOM_ID: org-shiftmetaleft-hook
1441 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1442 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaleft-hook&sr=1][Find modifications in git logs]]
1444 : Hook for functions attaching themselves to `M-S-left'.
1445 : See `org-ctrl-c-ctrl-c-hook' for more information.
1447 ** org-agenda-mode-hook =nil=
1449 :CUSTOM_ID: org-agenda-mode-hook
1451 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1452 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-mode-hook&sr=1][Find modifications in git logs]]
1454 : Hook run after `org-agenda-mode' is turned on.
1455 : The buffer is still writable when this hook is called.
1457 ** org-export-filter-comment-block-functions =nil=
1459 :CUSTOM_ID: org-export-filter-comment-block-functions
1461 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1462 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-comment-block-functions&sr=1][Find modifications in git logs]]
1464 : List of functions applied to a transcoded comment-block.
1465 : Each filter is called with three arguments: the transcoded data,
1466 : as a string, the back-end, as a symbol, and the communication
1467 : channel, as a plist. It must return a string or nil.
1469 ** org-export-filter-headline-functions =nil=
1471 :CUSTOM_ID: org-export-filter-headline-functions
1473 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1474 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-headline-functions&sr=1][Find modifications in git logs]]
1476 : List of functions applied to a transcoded headline.
1477 : Each filter is called with three arguments: the transcoded data,
1478 : as a string, the back-end, as a symbol, and the communication
1479 : channel, as a plist. It must return a string or nil.
1481 ** org-export-filter-timestamp-functions =nil=
1483 :CUSTOM_ID: org-export-filter-timestamp-functions
1485 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1486 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-timestamp-functions&sr=1][Find modifications in git logs]]
1488 : List of functions applied to a transcoded timestamp.
1489 : Each filter is called with three arguments: the transcoded data,
1490 : as a string, the back-end, as a symbol, and the communication
1491 : channel, as a plist. It must return a string or nil.
1493 ** org-clock-before-select-task-hook =nil=
1495 :CUSTOM_ID: org-clock-before-select-task-hook
1497 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
1498 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-before-select-task-hook&sr=1][Find modifications in git logs]]
1500 : Hook called in task selection just before prompting the user.
1502 ** org-icalendar-after-save-hook =nil=
1504 :CUSTOM_ID: org-icalendar-after-save-hook
1506 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
1507 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-after-save-hook&sr=1][Find modifications in git logs]]
1509 : Hook run after an iCalendar file has been saved.
1510 : This hook is run with the name of the file as argument. A good
1511 : way to use this is to tell a desktop calendar application to
1512 : re-read the iCalendar file.
1514 ** org-export-filter-table-functions =nil=
1516 :CUSTOM_ID: org-export-filter-table-functions
1518 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1519 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-table-functions&sr=1][Find modifications in git logs]]
1521 : List of functions applied to a transcoded table.
1522 : Each filter is called with three arguments: the transcoded data,
1523 : as a string, the back-end, as a symbol, and the communication
1524 : channel, as a plist. It must return a string or nil.
1526 ** org-timer-stop-hook =nil=
1528 :CUSTOM_ID: org-timer-stop-hook
1530 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
1531 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-stop-hook&sr=1][Find modifications in git logs]]
1533 : Hook run before relative timer is stopped.
1535 ** org-finalize-agenda-hook =nil=
1537 :CUSTOM_ID: org-finalize-agenda-hook
1539 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1540 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-finalize-agenda-hook&sr=1][Find modifications in git logs]]
1544 ** org-follow-link-hook =nil=
1546 :CUSTOM_ID: org-follow-link-hook
1548 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1549 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-follow-link-hook&sr=1][Find modifications in git logs]]
1551 : Hook that is run after a link has been followed.
1553 ** org-font-lock-set-keywords-hook =nil=
1555 :CUSTOM_ID: org-src-mode-off-hook
1557 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1558 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-font-lock-set-keywords-hook&sr=1][Find modifications in git logs]]
1560 : Functions that can manipulate `org-font-lock-extra-keywords'.
1561 : This is called after `org-font-lock-extra-keywords' is defined, but before
1562 : it is installed to be used by font lock. This can be useful if something
1563 : needs to be inserted at a specific position in the font-lock sequence.
1565 ** org-timer-cancel-hook =nil=
1567 :CUSTOM_ID: org-timer-cancel-hook
1569 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
1570 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-cancel-hook&sr=1][Find modifications in git logs]]
1572 : Hook run before countdown timer is canceled.
1574 ** org-export-taskjuggler-final-hook =nil=
1576 :CUSTOM_ID: org-export-taskjuggler-final-hook
1578 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
1579 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-final-hook&sr=1][Find modifications in git logs]]
1581 : Hook run at the end of TaskJuggler export, in the new buffer.
1583 ** org-shiftleft-final-hook =nil=
1585 :CUSTOM_ID: org-shiftleft-final-hook
1587 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1588 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftleft-final-hook&sr=1][Find modifications in git logs]]
1590 : Hook for functions attaching themselves to `S-left'.
1591 : This one runs after all other options except shift-select have been excluded.
1592 : See `org-ctrl-c-ctrl-c-hook' for more information.
1594 ** org-export-before-processing-hook =nil=
1596 :CUSTOM_ID: org-export-before-processing-hook
1598 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1599 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-before-processing-hook&sr=1][Find modifications in git logs]]
1601 : Hook run at the beginning of the export process.
1603 : This is run before include keywords and macros are expanded and
1604 : Babel code blocks executed, on a copy of the original buffer
1605 : being exported. Visibility and narrowing are preserved. Point
1606 : is at the beginning of the buffer.
1608 : Every function in this hook will be called with one argument: the
1609 : back-end currently used, as a symbol.
1611 ** org-export-filter-verse-block-functions =nil=
1613 :CUSTOM_ID: org-export-filter-verse-block-functions
1615 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1616 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-verse-block-functions&sr=1][Find modifications in git logs]]
1618 : List of functions applied to a transcoded verse block.
1619 : Each filter is called with three arguments: the transcoded data,
1620 : as a string, the back-end, as a symbol, and the communication
1621 : channel, as a plist. It must return a string or nil.
1623 ** org-export-filter-final-output-functions =nil=
1625 :CUSTOM_ID: org-table-follow-field-mode-hook
1627 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1628 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-final-output-functions&sr=1][Find modifications in git logs]]
1630 : List of functions applied to the transcoded string.
1631 : Each filter is called with three arguments: the full transcoded
1632 : string, the back-end, as a symbol, and the communication channel,
1633 : as a plist. It must return a string that will be used as the
1634 : final export output.
1636 ** org-export-filter-latex-fragment-functions =nil=
1638 :CUSTOM_ID: org-export-filter-latex-fragment-functions
1640 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1641 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-latex-fragment-functions&sr=1][Find modifications in git logs]]
1643 : List of functions applied to a transcoded latex-fragment.
1644 : Each filter is called with three arguments: the transcoded data,
1645 : as a string, the back-end, as a symbol, and the communication
1646 : channel, as a plist. It must return a string or nil.
1648 ** org-export-filter-quote-block-functions =nil=
1650 :CUSTOM_ID: org-export-filter-quote-block-functions
1652 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1653 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-quote-block-functions&sr=1][Find modifications in git logs]]
1655 : List of functions applied to a transcoded quote block.
1656 : Each filter is called with three arguments: the transcoded quote
1657 : data, as a string, the back-end, as a symbol, and the
1658 : communication channel, as a plist. It must return a string or
1661 ** org-todo-get-default-hook =nil=
1663 :CUSTOM_ID: org-todo-get-default-hook
1665 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1666 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-get-default-hook&sr=1][Find modifications in git logs]]
1668 : Hook for functions that get a default item for todo.
1669 : Each function takes arguments (NEW-MARK OLD-MARK) and returns either
1670 : nil or a string to be used for the todo mark.
1672 ** org-pre-cycle-hook =nil=
1674 :CUSTOM_ID: org-pre-cycle-hook
1676 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1677 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-pre-cycle-hook&sr=1][Find modifications in git logs]]
1679 : Hook that is run before visibility cycling is happening.
1680 : The function(s) in this hook must accept a single argument which indicates
1681 : the new state that will be set right after running this hook. The
1682 : argument is a symbol. Before a global state change, it can have the values
1683 : `overview', `content', or `all'. Before a local state change, it can have
1684 : the values `folded', `children', or `subtree'.
1686 ** org-export-filter-dynamic-block-functions =nil=
1688 :CUSTOM_ID: org-export-filter-dynamic-block-functions
1690 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1691 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-dynamic-block-functions&sr=1][Find modifications in git logs]]
1693 : List of functions applied to a transcoded dynamic-block.
1694 : Each filter is called with three arguments: the transcoded data,
1695 : as a string, the back-end, as a symbol, and the communication
1696 : channel, as a plist. It must return a string or nil.
1698 ** org-export-filter-babel-call-functions =nil=
1700 :CUSTOM_ID: org-export-filter-babel-call-functions
1702 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1703 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-babel-call-functions&sr=1][Find modifications in git logs]]
1705 : List of functions applied to a transcoded babel-call.
1706 : Each filter is called with three arguments: the transcoded data,
1707 : as a string, the back-end, as a symbol, and the communication
1708 : channel, as a plist. It must return a string or nil.
1710 ** org-metadown-hook =nil=
1712 :CUSTOM_ID: org-metadown-hook
1714 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1715 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metadown-hook&sr=1][Find modifications in git logs]]
1717 : Hook for functions attaching themselves to `M-down'.
1718 : See `org-ctrl-c-ctrl-c-hook' for more information.
1720 ** org-shiftdown-hook =nil=
1722 :CUSTOM_ID: org-shiftdown-hook
1724 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1725 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftdown-hook&sr=1][Find modifications in git logs]]
1727 : Hook for functions attaching themselves to `S-down'.
1728 : See `org-ctrl-c-ctrl-c-hook' for more information.
1730 ** org-export-filter-italic-functions =nil=
1732 :CUSTOM_ID: org-export-filter-italic-functions
1734 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1735 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-italic-functions&sr=1][Find modifications in git logs]]
1737 : List of functions applied to transcoded italic text.
1738 : Each filter is called with three arguments: the transcoded data,
1739 : as a string, the back-end, as a symbol, and the communication
1740 : channel, as a plist. It must return a string or nil.
1742 ** org-export-filter-statistics-cookie-functions =nil=
1744 :CUSTOM_ID: org-export-filter-statistics-cookie-functions
1746 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1747 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-statistics-cookie-functions&sr=1][Find modifications in git logs]]
1749 : List of functions applied to a transcoded statistics-cookie.
1750 : Each filter is called with three arguments: the transcoded data,
1751 : as a string, the back-end, as a symbol, and the communication
1752 : channel, as a plist. It must return a string or nil.
1754 ** org-tab-after-check-for-cycling-hook =nil=
1756 :CUSTOM_ID: org-tab-after-check-for-cycling-hook
1758 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1759 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tab-after-check-for-cycling-hook&sr=1][Find modifications in git logs]]
1761 : Hook for functions to attach themselves to TAB.
1762 : See `org-ctrl-c-ctrl-c-hook' for more information.
1763 : This hook runs after it has been established that not table field motion and
1764 : not visibility should be done because of current context. This is probably
1765 : the place where a package like yasnippets can hook in.
1767 ** org-clock-in-prepare-hook =nil=
1769 :CUSTOM_ID: org-clock-in-prepare-hook
1771 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
1772 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in-prepare-hook&sr=1][Find modifications in git logs]]
1774 : Hook run when preparing the clock.
1775 : This hook is run before anything happens to the task that
1776 : you want to clock in. For example, you can use this hook
1777 : to add an effort property.
1779 ** org-capture-mode-hook =nil=
1781 :CUSTOM_ID: org-capture-mode-hook
1783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
1784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-mode-hook&sr=1][Find modifications in git logs]]
1786 : Hook for the minor `org-capture-mode'.
1788 ** org-export-filter-footnote-definition-functions =nil=
1790 :CUSTOM_ID: org-export-filter-footnote-definition-functions
1792 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1793 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-footnote-definition-functions&sr=1][Find modifications in git logs]]
1795 : List of functions applied to a transcoded footnote-definition.
1796 : Each filter is called with three arguments: the transcoded data,
1797 : as a string, the back-end, as a symbol, and the communication
1798 : channel, as a plist. It must return a string or nil.
1800 ** org-agenda-finalize-hook =nil=
1802 :CUSTOM_ID: org-capture-mode-on-hook
1804 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1805 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-finalize-hook&sr=1][Find modifications in git logs]]
1807 : Hook run just before displaying an agenda buffer.
1808 : The buffer is still writable when the hook is called.
1810 : You can modify some of the buffer substrings but you should be
1811 : extra careful not to modify the text properties of the agenda
1812 : headlines as the agenda display heavily relies on them.
1814 ** org-export-filter-planning-functions =nil=
1816 :CUSTOM_ID: org-export-filter-planning-functions
1818 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1819 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-planning-functions&sr=1][Find modifications in git logs]]
1821 : List of functions applied to a transcoded planning.
1822 : Each filter is called with three arguments: the transcoded data,
1823 : as a string, the back-end, as a symbol, and the communication
1824 : channel, as a plist. It must return a string or nil.
1826 ** org-src-mode-hook =nil=
1828 :CUSTOM_ID: org-src-mode-hook
1830 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
1831 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-mode-hook&sr=1][Find modifications in git logs]]
1833 : Hook run after Org switched a source code snippet to its Emacs mode.
1834 : This hook will run
1836 : - when editing a source code snippet with "C-c '".
1837 : - When formatting a source code snippet for export with htmlize.
1839 : You may want to use this hook for example to turn off `outline-minor-mode'
1840 : or similar things which you want to have when editing a source code file,
1841 : but which mess up the display of a snippet in Org exported files.
1843 ** org-export-html-after-blockquotes-hook =nil=
1845 :CUSTOM_ID: org-export-html-after-blockquotes-hook
1847 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
1848 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-after-blockquotes-hook&sr=1][Find modifications in git logs]]
1850 : Hook run during HTML export, after blockquote, verse, center are done.
1852 ** org-export-filter-table-cell-functions =nil=
1854 :CUSTOM_ID: org-indent-mode-on-hook
1856 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1857 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-table-cell-functions&sr=1][Find modifications in git logs]]
1859 : List of functions applied to a transcoded table-cell.
1860 : Each filter is called with three arguments: the transcoded data,
1861 : as a string, the back-end, as a symbol, and the communication
1862 : channel, as a plist. It must return a string or nil.
1864 ** org-after-todo-state-change-hook =nil=
1866 :CUSTOM_ID: org-after-todo-state-change-hook
1868 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1869 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-todo-state-change-hook&sr=1][Find modifications in git logs]]
1871 : Hook which is run after the state of a TODO item was changed.
1872 : The new state (a string with a TODO keyword, or nil) is available in the
1873 : Lisp variable `org-state'.
1875 ** org-export-blocks-postblock-hook =nil=
1877 :CUSTOM_ID: org-capture-mode-off-hook
1879 - *Since:* Emacs version 24.1
1880 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
1881 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-blocks-postblock-hook&sr=1][Find modifications in git logs]]
1883 : Run after blocks have been processed with `org-export-blocks-preprocess'.
1885 ** org-ctags-open-link-functions =(quote (org-ctags-find-tag org...=
1887 :CUSTOM_ID: org-ctags-open-link-functions
1889 - *Since:* Emacs version 24.1
1890 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
1891 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-open-link-functions&sr=1][Find modifications in git logs]]
1893 : List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active.
1895 ** org-export-preprocess-final-hook =nil=
1897 :CUSTOM_ID: org-export-preprocess-final-hook
1899 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
1900 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-final-hook&sr=1][Find modifications in git logs]]
1902 : Hook for preprocessing an export buffer.
1903 : This is run as the last thing in the preprocessing buffer, just before
1904 : returning the buffer string to the backend.
1906 ** org-shiftright-final-hook =nil=
1908 :CUSTOM_ID: org-shiftright-final-hook
1910 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1911 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftright-final-hook&sr=1][Find modifications in git logs]]
1913 : Hook for functions attaching themselves to `S-right'.
1914 : This one runs after all other options except shift-select have been excluded.
1915 : See `org-ctrl-c-ctrl-c-hook' for more information.
1917 ** org-export-filter-plain-text-functions =nil=
1919 :CUSTOM_ID: org-export-filter-plain-text-functions
1921 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1922 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-plain-text-functions&sr=1][Find modifications in git logs]]
1924 : List of functions applied to plain text.
1925 : Each filter is called with three arguments: a string which
1926 : contains no Org syntax, the back-end, as a symbol, and the
1927 : communication channel, as a plist. It must return a string or
1930 ** org-agenda-bulk-custom-functions =nil=
1932 :CUSTOM_ID: org-agenda-bulk-custom-functions
1934 - *Since:* Emacs version 24.1
1935 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
1936 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-custom-functions&sr=1][Find modifications in git logs]]
1938 : Alist of characters and custom functions for bulk actions.
1939 : For example, this value makes those two functions available:
1941 : '((?R set-category)
1944 : With selected entries in an agenda buffer, `B R' will call
1945 : the custom function `set-category' on the selected entries.
1946 : Note that functions in this alist don't need to be quoted.
1948 ** org-export-filter-property-drawer-functions =nil=
1950 :CUSTOM_ID: org-export-filter-property-drawer-functions
1952 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
1953 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-property-drawer-functions&sr=1][Find modifications in git logs]]
1955 : List of functions applied to a transcoded property-drawer.
1956 : Each filter is called with three arguments: the transcoded data,
1957 : as a string, the back-end, as a symbol, and the communication
1958 : channel, as a plist. It must return a string or nil.
1960 ** org-after-sorting-entries-or-items-hook =nil=
1962 :CUSTOM_ID: org-table-follow-field-mode-off-hook
1964 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1965 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-sorting-entries-or-items-hook&sr=1][Find modifications in git logs]]
1967 : Hook that is run after a bunch of entries or items have been sorted.
1968 : When children are sorted, the cursor is in the parent line when this
1969 : hook gets called. When a region or a plain list is sorted, the cursor
1970 : will be in the first entry of the sorted region/list.
1972 ** org-shiftmetaright-hook =nil=
1974 :CUSTOM_ID: org-shiftmetaright-hook
1976 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1977 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaright-hook&sr=1][Find modifications in git logs]]
1979 : Hook for functions attaching themselves to `M-S-right'.
1980 : See `org-ctrl-c-ctrl-c-hook' for more information.
1982 ** org-metareturn-hook =nil=
1984 :CUSTOM_ID: org-metareturn-hook
1986 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1987 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metareturn-hook&sr=1][Find modifications in git logs]]
1989 : Hook for functions attaching themselves to `M-RET'.
1990 : See `org-ctrl-c-ctrl-c-hook' for more information.
1992 ** org-todo-setup-filter-hook =nil=
1994 :CUSTOM_ID: org-todo-setup-filter-hook
1996 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
1997 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-setup-filter-hook&sr=1][Find modifications in git logs]]
1999 : Hook for functions that pre-filter todo specs.
2000 : Each function takes a todo spec and returns either nil or the spec
2001 : transformed into canonical form.
2003 ** org-store-link-functions =nil=
2005 :CUSTOM_ID: org-store-link-functions
2007 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2008 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-store-link-functions&sr=1][Find modifications in git logs]]
2010 : List of functions that are called to create and store a link.
2011 : Each function will be called in turn until one returns a non-nil
2012 : value. Each function should check if it is responsible for creating
2013 : this link (for example by looking at the major mode).
2014 : If not, it must exit and return nil.
2015 : If yes, it should return a non-nil value after a calling
2016 : `org-store-link-props' with a list of properties and values.
2017 : Special properties are:
2019 : :type The link prefix, like "http". This must be given.
2020 : :link The link, like "http://www.astro.uva.nl/~dominik".
2021 : This is obligatory as well.
2022 : :description Optional default description for the second pair
2023 : of brackets in an Org-mode link. The user can still change
2024 : this when inserting this link into an Org-mode buffer.
2026 : In addition to these, any additional properties can be specified
2027 : and then used in capture templates.
2029 ** org-after-todo-statistics-hook =nil=
2031 :CUSTOM_ID: org-after-todo-statistics-hook
2033 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2034 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-after-todo-statistics-hook&sr=1][Find modifications in git logs]]
2036 : Hook that is called after a TODO statistics cookie has been updated.
2037 : Each function is called with two arguments: the number of not-done entries
2038 : and the number of done entries.
2040 : For example, the following function, when added to this hook, will switch
2041 : an entry to DONE when all children are done, and back to TODO when new
2042 : entries are set to a TODO status. Note that this hook is only called
2043 : when there is a statistics cookie in the headline!
2045 : (defun org-summary-todo (n-done n-not-done)
2046 : "Switch entry to DONE when all subentries are done, to TODO otherwise."
2047 : (let (org-log-done org-log-states) ; turn off logging
2048 : (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
2051 ** org-export-filter-comment-functions =nil=
2053 :CUSTOM_ID: org-add-hook
2055 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
2056 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-comment-functions&sr=1][Find modifications in git logs]]
2058 : List of functions applied to a transcoded comment.
2059 : Each filter is called with three arguments: the transcoded data,
2060 : as a string, the back-end, as a symbol, and the communication
2061 : channel, as a plist. It must return a string or nil.
2063 ** org-export-filter-clock-functions =nil=
2065 :CUSTOM_ID: org-export-filter-clock-functions
2067 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
2068 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-filter-clock-functions&sr=1][Find modifications in git logs]]
2070 : List of functions applied to a transcoded clock.
2071 : Each filter is called with three arguments: the transcoded data,
2072 : as a string, the back-end, as a symbol, and the communication
2073 : channel, as a plist. It must return a string or nil.
2076 :CUSTOM_ID: commands
2079 ** org-attach-new =(file)=
2081 :CUSTOM_ID: org-attach-new
2084 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
2085 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-new&sr=1][Find modifications in git logs]]
2087 : Create a new attachment FILE for the current task.
2088 : The attachment is created as an Emacs buffer.
2089 ** org-agenda-sunrise-sunset =(arg)=
2091 :CUSTOM_ID: org-agenda-sunrise-sunset
2094 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2095 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-sunrise-sunset&sr=1][Find modifications in git logs]]
2097 : Display sunrise and sunset for the cursor date.
2098 : Latitude and longitude can be specified with the variables
2099 : `calendar-latitude' and `calendar-longitude'. When called with prefix
2100 : argument, latitude and longitude will be prompted for.
2103 :CUSTOM_ID: org-agenda-exit
2106 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2107 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-exit&sr=1][Find modifications in git logs]]
2109 : Exit the agenda and restore the window configuration.
2110 : Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
2111 : buffers visited directly by the user will not be touched.
2112 ** org-html-export-as-html =(&optional async subtreep visible-only body-only ext-plist)=
2114 :CUSTOM_ID: org-html-export-as-html
2117 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
2118 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-export-as-html&sr=1][Find modifications in git logs]]
2120 : Export current buffer to an HTML buffer.
2122 : If narrowing is active in the current buffer, only export its
2125 : If a region is active, export that region.
2127 : A non-nil optional argument ASYNC means the process should happen
2128 : asynchronously. The resulting buffer should be accessible
2129 : through the `org-export-stack' interface.
2131 : When optional argument SUBTREEP is non-nil, export the sub-tree
2132 : at point, extracting information from the headline properties
2135 : When optional argument VISIBLE-ONLY is non-nil, don't export
2136 : contents of hidden elements.
2138 : When optional argument BODY-ONLY is non-nil, only write code
2139 : between "<body>" and "</body>" tags.
2141 : EXT-PLIST, when provided, is a property list with external
2142 : parameters overriding Org default settings, but still inferior to
2143 : file-local settings.
2145 : Export is done in a buffer named "*Org HTML Export*", which
2146 : will be displayed when `org-export-show-temporary-export-buffer'
2148 ** org-set-tags-to =(data)=
2150 :CUSTOM_ID: org-set-tags-to
2153 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2154 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-tags-to&sr=1][Find modifications in git logs]]
2156 : Set the tags of the current entry to DATA, replacing the current tags.
2157 : DATA may be a tags string like :aa:bb:cc:, or a list of tags.
2158 : If DATA is nil or the empty string, any tags will be removed.
2159 ** org-protocol-create =(&optional project-plist)=
2161 :CUSTOM_ID: org-protocol-create
2164 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
2165 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-create&sr=1][Find modifications in git logs]]
2167 : Create a new org-protocol project interactively.
2168 : An org-protocol project is an entry in
2169 : `org-protocol-project-alist' which is used by
2170 : `org-protocol-open-source'. Optionally use PROJECT-PLIST to
2171 : initialize the defaults for this project. If PROJECT-PLIST is
2172 : the cdr of an element in `org-publish-project-alist', reuse
2173 : :base-directory, :html-extension and :base-extension.
2174 ** org-clone-subtree-with-time-shift =(n &optional shift)=
2176 :CUSTOM_ID: org-clone-subtree-with-time-shift
2179 - *Access:* ~C-c C-x c, <menu-bar> <Org> <Edit Structure> <Clone subtree, shift time>~
2180 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2181 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clone-subtree-with-time-shift&sr=1][Find modifications in git logs]]
2183 : Clone the task (subtree) at point N times.
2184 : The clones will be inserted as siblings.
2186 : In interactive use, the user will be prompted for the number of
2187 : clones to be produced. When called with a universal prefix argument
2188 : and if the entry has a timestamp, the user will also be prompted for
2189 : a time shift, which may be a repeater as used in time stamps, for
2192 : When a valid repeater is given and the entry contains any time
2193 : stamps, the clones will become a sequence in time, with time
2194 : stamps in the subtree shifted for each clone produced. If SHIFT
2195 : is nil or the empty string, time stamps will be left alone. The
2196 : ID property of the original subtree is removed.
2198 : If the original subtree did contain time stamps with a repeater,
2199 : the following will happen:
2200 : - the repeater will be removed in each clone
2201 : - an additional clone will be produced, with the current, unshifted
2202 : date(s) in the entry.
2203 : - the original entry will be placed *after* all the clones, with
2205 : - the start days in the repeater in the original entry will be shifted
2206 : to past the last clone.
2207 : In this way you can spell out a number of instances of a repeating task,
2208 : and still retain the repeater to cover future instances of the task.
2209 ** org-agenda-goto =(&optional highlight)=
2211 :CUSTOM_ID: org-agenda-goto
2214 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2215 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto&sr=1][Find modifications in git logs]]
2217 : Go to the Org-mode file which contains the item at point.
2218 ** org-w3m-copy-for-org-mode
2220 :CUSTOM_ID: org-w3m-copy-for-org-mode
2223 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-w3m.el;hb=HEAD][org-w3m.el]]
2224 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-w3m-copy-for-org-mode&sr=1][Find modifications in git logs]]
2226 : Copy current buffer content or active region with `org-mode' style links.
2227 : This will encode `link-title' and `link-location' with
2228 : `org-make-link-string', and insert the transformed test into the kill ring,
2229 : so that it can be yanked into an Org-mode buffer with links working correctly.
2230 ** org-shiftcontrolright
2232 :CUSTOM_ID: org-shiftcontrolright
2235 - *Access:* ~<C-S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword set>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword set>~
2236 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2237 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftcontrolright&sr=1][Find modifications in git logs]]
2239 : Switch to next TODO set.
2240 ** org-clock-in =(&optional select start-time)=
2242 :CUSTOM_ID: org-clock-in
2245 - *Access:* ~C-c C-x TAB, <menu-bar> <Org> <Logging work> <Clock in>~
2246 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
2247 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in&sr=1][Find modifications in git logs]]
2249 : Start the clock on the current item.
2250 : If necessary, clock-out of the currently active clock.
2251 : With a prefix argument SELECT (C-u), offer a list of recently clocked
2252 : tasks to clock into. When SELECT is C-u C-u, clock into the current task
2253 : and mark it as the default task, a special task that will always be offered
2254 : in the clocking selection, associated with the letter `d'.
2255 : When SELECT is C-u C-u C-u, clock in by using the last clock-out
2256 : time as the start time (see `org-clock-continuously' to
2257 : make this the default behavior.)
2260 :CUSTOM_ID: org-priority-up
2263 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2264 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-priority-up&sr=1][Find modifications in git logs]]
2266 : Increase the priority of the current item.
2267 ** org-todo =(&optional arg)=
2269 :CUSTOM_ID: org-todo
2272 - *Access:* ~C-c C-t, <menu-bar> <Org> <TODO Lists> <TODO/DONE/->~
2273 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2274 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo&sr=1][Find modifications in git logs]]
2276 : Change the TODO state of an item.
2277 : The state of an item is given by a keyword at the start of the heading,
2279 : *** TODO Write paper
2282 : The different keywords are specified in the variable `org-todo-keywords'.
2283 : By default the available states are "TODO" and "DONE".
2284 : So for this example: when the item starts with TODO, it is changed to DONE.
2285 : When it starts with DONE, the DONE is removed. And when neither TODO nor
2286 : DONE are present, add TODO at the beginning of the heading.
2288 : With C-u prefix arg, use completion to determine the new state.
2289 : With numeric prefix arg, switch to that state.
2290 : With a double C-u prefix, switch to the next set of TODO keywords (nextset).
2291 : With a triple C-u prefix, circumvent any state blocking.
2292 : With a numeric prefix arg of 0, inhibit note taking for the change.
2294 : For calling through lisp, arg is also interpreted in the following way:
2295 : 'none -> empty state
2296 : ""(empty string) -> switch to empty state
2297 : 'done -> switch to DONE
2298 : 'nextset -> switch to the next set of keywords
2299 : 'previousset -> switch to the previous set of keywords
2300 : "WAITING" -> switch to the specified keyword, but only if it
2301 : really is a member of `org-todo-keywords'.
2302 ** org-remove-file =(&optional file)=
2304 :CUSTOM_ID: org-remove-file
2307 - *Access:* ~C-c ], <menu-bar> <Org> <File List for Agenda> <Remove Current File from List>~
2308 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2309 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-remove-file&sr=1][Find modifications in git logs]]
2311 : Remove current file from the list of files in variable `org-agenda-files'.
2312 : These are the files which are being checked for agenda entries.
2313 : Optional argument FILE means use this file instead of the current.
2316 :CUSTOM_ID: org-agenda-quit
2319 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2320 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-quit&sr=1][Find modifications in git logs]]
2322 : Exit the agenda and restore the window configuration.
2323 : When `org-agenda-sticky' is non-nil, only bury the agenda.
2326 :CUSTOM_ID: org-show-subtree
2329 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2330 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-subtree&sr=1][Find modifications in git logs]]
2332 : Show everything after this heading at deeper levels.
2333 ** org-timer-start =(&optional offset)=
2335 :CUSTOM_ID: org-timer-start
2338 - *Access:* ~C-c C-x 0, <menu-bar> <Org> <Dates and Scheduling> <Start/Restart Timer>~
2339 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
2340 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-start&sr=1][Find modifications in git logs]]
2342 : Set the starting time for the relative timer to now.
2343 : When called with prefix argument OFFSET, prompt the user for an offset time,
2344 : with the default taken from a timer stamp at point, if any.
2345 : If OFFSET is a string or an integer, it is directly taken to be the offset
2346 : without user interaction.
2347 : When called with a double prefix arg, all timer strings in the active
2348 : region will be shifted by a specific amount. You will be prompted for
2349 : the amount, with the default to make the first timer string in
2350 : the region 0:00:00.
2353 :CUSTOM_ID: org-ctrl-c-star
2357 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2358 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-star&sr=1][Find modifications in git logs]]
2360 : Compute table, or change heading status of lines.
2361 : Calls `org-table-recalculate' or `org-toggle-heading',
2362 : depending on context.
2363 ** org-metaright =(&optional arg)=
2365 :CUSTOM_ID: org-metaright
2368 - *Access:* ~<M-right>, <menu-bar> <Org> <Edit Structure> <Demote Heading>, <menu-bar> <Tbl> <Column> <Move Column Right>~
2369 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2370 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaright&sr=1][Find modifications in git logs]]
2372 : Demote a subtree, a list item or move table column to right.
2373 : In front of a drawer or a block keyword, indent it correctly.
2374 : With no specific context, calls the Emacs default `forward-word'.
2375 : See the individual commands for more information.
2376 ** org-agenda-bulk-mark =(&optional arg)=
2378 :CUSTOM_ID: org-agenda-bulk-mark
2381 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2382 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-mark&sr=1][Find modifications in git logs]]
2384 : Mark the entry at point for future bulk action.
2385 ** org-insert-link =(&optional complete-file link-location default-description)=
2387 :CUSTOM_ID: org-insert-link
2390 - *Access:* ~C-c C-l, <menu-bar> <Org> <Hyperlinks> <Insert Link>~
2391 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2392 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-link&sr=1][Find modifications in git logs]]
2394 : Insert a link. At the prompt, enter the link.
2396 : Completion can be used to insert any of the link protocol prefixes like
2397 : http or ftp in use.
2399 : The history can be used to select a link previously stored with
2400 : `org-store-link'. When the empty string is entered (i.e. if you just
2401 : press RET at the prompt), the link defaults to the most recently
2402 : stored link. As SPC triggers completion in the minibuffer, you need to
2403 : use M-SPC or C-q SPC to force the insertion of a space character.
2405 : You will also be prompted for a description, and if one is given, it will
2406 : be displayed in the buffer instead of the link.
2408 : If there is already a link at point, this command will allow you to edit link
2409 : and description parts.
2411 : With a C-u prefix, prompts for a file to link to. The file name can
2412 : be selected using completion. The path to the file will be relative to the
2413 : current directory if the file is in the current directory or a subdirectory.
2414 : Otherwise, the link will be the absolute path as completed in the minibuffer
2415 : (i.e. normally ~/path/to/file). You can configure this behavior using the
2416 : option `org-link-file-path-type'.
2418 : With two C-u prefixes, enforce an absolute path even if the file is in
2419 : the current directory or below.
2421 : With three C-u prefixes, negate the meaning of
2422 : `org-keep-stored-link-after-insertion'.
2424 : If `org-make-link-description-function' is non-nil, this function will be
2425 : called with the link target, and the result will be the default
2428 : If the LINK-LOCATION parameter is non-nil, this value will be
2429 : used as the link location instead of reading one interactively.
2431 : If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
2432 : be used as the default description.
2433 ** org-babel-exp-src-block =(&rest headers)=
2435 :CUSTOM_ID: org-babel-exp-src-block
2438 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
2439 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-exp-src-block&sr=1][Find modifications in git logs]]
2441 : Process source block for export.
2442 : Depending on the 'export' headers argument, replace the source
2443 : code block like this:
2445 : both ---- display the code and the results
2447 : code ---- the default, display the code inside the block but do
2450 : results - just like none only the block is run on export ensuring
2451 : that it's results are present in the org-mode buffer
2453 : none ---- do not display either code or results upon export
2455 : Assume point is at the beginning of block's starting line.
2456 ** org-toggle-time-stamp-overlays
2458 :CUSTOM_ID: org-toggle-time-stamp-overlays
2461 - *Access:* ~C-c C-x C-t, <menu-bar> <Org> <Dates and Scheduling> <Custom time format>~
2462 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2463 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-time-stamp-overlays&sr=1][Find modifications in git logs]]
2465 : Toggle the use of custom time stamp formats.
2466 ** org-agenda =(&optional arg org-keys restriction)=
2468 :CUSTOM_ID: org-agenda
2471 - *Access:* ~<menu-bar> <Org> <Agenda Command...>, C-c a~
2472 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2473 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda&sr=1][Find modifications in git logs]]
2475 : Dispatch agenda commands to collect entries to the agenda buffer.
2476 : Prompts for a command to execute. Any prefix arg will be passed
2477 : on to the selected command. The default selections are:
2479 : a Call `org-agenda-list' to display the agenda for current day or week.
2480 : t Call `org-todo-list' to display the global todo list.
2481 : T Call `org-todo-list' to display the global todo list, select only
2482 : entries with a specific TODO keyword (the user gets a prompt).
2483 : m Call `org-tags-view' to display headlines with tags matching
2484 : a condition (the user is prompted for the condition).
2485 : M Like `m', but select only TODO entries, no ordinary headlines.
2486 : L Create a timeline for the current buffer.
2487 : e Export views to associated files.
2488 : s Search entries for keywords.
2489 : S Search entries for keywords, only with TODO keywords.
2490 : / Multi occur across all agenda files and also files listed
2491 : in `org-agenda-text-search-extra-files'.
2492 : < Restrict agenda commands to buffer, subtree, or region.
2493 : Press several times to get the desired effect.
2494 : > Remove a previous restriction.
2495 : # List "stuck" projects.
2496 : ! Configure what "stuck" means.
2497 : C Configure custom agenda commands.
2499 : More commands can be added by configuring the variable
2500 : `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
2501 : searches can be pre-defined in this way.
2503 : If the current buffer is in Org-mode and visiting a file, you can also
2504 : first press `<' once to indicate that the agenda should be temporarily
2505 : (until the next use of C-c a) restricted to the current file.
2506 : Pressing `<' twice means to restrict to the current subtree or region
2508 ** org-date-from-calendar
2510 :CUSTOM_ID: org-date-from-calendar
2513 - *Access:* ~C-c <, <menu-bar> <Org> <Dates and Scheduling> <Date from Calendar>~
2514 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2515 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-date-from-calendar&sr=1][Find modifications in git logs]]
2517 : Insert time stamp corresponding to cursor date in *Calendar* buffer.
2518 : If there is already a time stamp at the cursor position, update it.
2519 ** org-timestamp-up =(&optional arg)=
2521 :CUSTOM_ID: org-timestamp-up
2524 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2525 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timestamp-up&sr=1][Find modifications in git logs]]
2527 : Increase the date item at the cursor by one.
2528 : If the cursor is on the year, change the year. If it is on the month,
2529 : the day or the time, change that.
2530 : With prefix ARG, change by that many units.
2531 ** org-occur-in-agenda-files =(regexp &optional nlines)=
2533 :CUSTOM_ID: org-occur-in-agenda-files
2536 - *Access:* ~<menu-bar> <Org> <File List for Agenda> <Occur in all agenda files>~
2537 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2538 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-occur-in-agenda-files&sr=1][Find modifications in git logs]]
2540 : Call `multi-occur' with buffers for all agenda files.
2541 ** org-agenda-filter-remove-all
2543 :CUSTOM_ID: org-agenda-filter-remove-all
2546 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
2547 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-remove-all&sr=1][Find modifications in git logs]]
2549 : Remove all filters from the current agenda buffer.
2550 ** org-babel-tangle =(&optional arg target-file lang)=
2552 :CUSTOM_ID: org-babel-tangle
2555 - *Access:* ~C-c C-v t, C-c C-v C-t~
2556 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
2557 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle&sr=1][Find modifications in git logs]]
2559 : Write code blocks to source-specific files.
2560 : Extract the bodies of all source code blocks from the current
2561 : file into their own source-specific files.
2562 : With one universal prefix argument, only tangle the block at point.
2563 : When two universal prefix arguments, only tangle blocks for the
2564 : tangle file of the block at point.
2565 : Optional argument TARGET-FILE can be used to specify a default
2566 : export file for all source blocks. Optional argument LANG can be
2567 : used to limit the exported source code blocks by language.
2570 :CUSTOM_ID: org-mode
2573 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2574 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mode&sr=1][Find modifications in git logs]]
2576 : Outline-based notes management and organizer, alias
2577 : "Carsten's outline-mode for keeping track of everything."
2579 : Org-mode develops organizational tasks around a NOTES file which
2580 : contains information about projects as plain text. Org-mode is
2581 : implemented on top of outline-mode, which is ideal to keep the content
2582 : of large files well structured. It supports ToDo items, deadlines and
2583 : time stamps, which magically appear in the diary listing of the Emacs
2584 : calendar. Tables are easily created with a built-in table editor.
2585 : Plain text URL-like links connect to websites, emails (VM), Usenet
2586 : messages (Gnus), BBDB entries, and any files related to the project.
2587 : For printing and sharing of notes, an Org-mode file (or a part of it)
2588 : can be exported as a structured ASCII or HTML file.
2590 : The following commands are available:
2595 : C-a org-beginning-of-line
2596 : C-c Prefix Command
2597 : C-e org-end-of-line
2599 : C-j org-return-indent
2603 : ESC Prefix Command
2604 : | org-force-self-insert
2605 : C-# org-table-rotate-recalc-marks
2606 : C-' org-cycle-agenda-files
2607 : C-, org-cycle-agenda-files
2608 : <C-S-down> org-shiftcontroldown
2609 : <C-S-left> org-shiftcontrolleft
2610 : <C-S-return> org-insert-todo-heading-respect-content
2611 : <C-S-right> org-shiftcontrolright
2612 : <C-S-up> org-shiftcontrolup
2613 : <C-return> org-insert-heading-respect-content
2614 : <C-tab> org-force-cycle-archived
2615 : <M-S-down> org-shiftmetadown
2616 : <M-S-left> org-shiftmetaleft
2617 : <M-S-return> org-insert-todo-heading
2618 : <M-S-right> org-shiftmetaright
2619 : <M-S-up> org-shiftmetaup
2620 : <M-down> org-metadown
2621 : <M-left> org-metaleft
2622 : <M-return> org-meta-return
2623 : <M-right> org-metaright
2625 : <S-down> org-shiftdown
2626 : <S-iso-lefttab> org-shifttab
2627 : <S-left> org-shiftleft
2628 : <S-mouse-2> org-mouse-yank-link
2629 : <S-return> org-table-copy-down
2630 : <S-right> org-shiftright
2631 : <S-tab> org-shifttab
2632 : <S-up> org-shiftup
2633 : <backtab> org-shifttab
2634 : <down-mouse-1> org-mouse-down-mouse
2635 : <drag-mouse-3> org-mouse-yank-link
2636 : <mouse-3> org-mouse-show-context-menu
2637 : <remap> Prefix Command
2641 : M-RET org-insert-heading
2642 : C-M-t org-transpose-element
2643 : M-a org-backward-sentence
2644 : M-e org-forward-sentence
2645 : M-h org-mark-element
2646 : M-{ org-backward-element
2647 : M-} org-forward-element
2649 : C-c C-a org-attach
2650 : C-c C-b org-backward-heading-same-level
2651 : C-c C-c org-ctrl-c-ctrl-c
2652 : C-c C-d org-deadline
2653 : C-c C-e org-export-dispatch
2654 : C-c C-f org-forward-heading-same-level
2656 : C-c C-k org-kill-note-or-show-branches
2657 : C-c C-l org-insert-link
2658 : C-c RET org-ctrl-c-ret
2659 : C-c C-o org-open-at-point
2660 : C-c C-q org-set-tags-command
2661 : C-c C-r org-reveal
2662 : C-c C-s org-schedule
2664 : C-c C-v Prefix Command
2665 : C-c C-w org-refile
2666 : C-c C-x Prefix Command
2667 : C-c C-y org-evaluate-time-range
2668 : C-c C-z org-add-note
2669 : C-c ESC Prefix Command
2670 : C-c C-^ org-up-element
2671 : C-c C-_ org-down-element
2672 : C-c SPC org-table-blank-field
2673 : C-c ! org-time-stamp-inactive
2674 : C-c # org-update-statistics-cookies
2675 : C-c $ org-archive-subtree
2676 : C-c % org-mark-ring-push
2677 : C-c & org-mark-ring-goto
2678 : C-c ' org-edit-special
2679 : C-c * org-ctrl-c-star
2680 : C-c + org-table-sum
2681 : C-c , org-priority
2682 : C-c - org-ctrl-c-minus
2683 : C-c . org-time-stamp
2684 : C-c / org-sparse-tree
2685 : C-c : org-toggle-fixed-width-section
2686 : C-c ; org-toggle-comment
2687 : C-c < org-date-from-calendar
2688 : C-c = org-table-eval-formula
2689 : C-c > org-goto-calendar
2690 : C-c ? org-table-field-info
2691 : C-c @ org-mark-subtree
2692 : C-c [ org-agenda-file-to-front
2693 : C-c \ org-match-sparse-tree
2694 : C-c ] org-remove-file
2696 : C-c ` org-table-edit-field
2697 : C-c { org-table-toggle-formula-debugger
2698 : C-c | org-table-create-or-convert-from-region
2699 : C-c } org-table-toggle-coordinate-overlays
2700 : C-c ~ org-table-create-with-table.el
2701 : C-c C-* org-list-make-subtree
2703 : <remap> <delete-backward-char> org-delete-backward-char
2704 : <remap> <delete-char> org-delete-char
2705 : <remap> <open-line> org-open-line
2706 : <remap> <outline-backward-same-level>
2707 : org-backward-heading-same-level
2708 : <remap> <outline-demote> org-demote-subtree
2709 : <remap> <outline-forward-same-level>
2710 : org-forward-heading-same-level
2711 : <remap> <outline-insert-heading>
2713 : <remap> <outline-mark-subtree> org-mark-subtree
2714 : <remap> <outline-promote> org-promote-subtree
2715 : <remap> <self-insert-command> org-self-insert-command
2716 : <remap> <show-branches> org-kill-note-or-show-branches
2717 : <remap> <show-subtree> org-show-subtree
2718 : <remap> <transpose-words> org-transpose-words
2721 : (that binding is currently shadowed by another mode)
2722 : C-c C-b outline-backward-same-level
2723 : (that binding is currently shadowed by another mode)
2724 : C-c C-c hide-entry
2725 : (that binding is currently shadowed by another mode)
2726 : C-c C-d hide-subtree
2727 : (that binding is currently shadowed by another mode)
2728 : C-c C-e show-entry
2729 : (that binding is currently shadowed by another mode)
2730 : C-c C-f outline-forward-same-level
2731 : (that binding is currently shadowed by another mode)
2732 : C-c TAB show-children
2733 : C-c C-k show-branches
2734 : (that binding is currently shadowed by another mode)
2735 : C-c C-l hide-leaves
2736 : (that binding is currently shadowed by another mode)
2737 : C-c RET outline-insert-heading
2738 : (that binding is currently shadowed by another mode)
2739 : C-c C-n outline-next-visible-heading
2740 : C-c C-o hide-other
2741 : (that binding is currently shadowed by another mode)
2742 : C-c C-p outline-previous-visible-heading
2743 : C-c C-q hide-sublevels
2744 : (that binding is currently shadowed by another mode)
2745 : C-c C-s show-subtree
2746 : (that binding is currently shadowed by another mode)
2748 : (that binding is currently shadowed by another mode)
2749 : C-c C-u outline-up-heading
2750 : C-c C-v outline-move-subtree-down
2751 : (that binding is currently shadowed by another mode)
2752 : C-c C-^ outline-move-subtree-up
2753 : (that binding is currently shadowed by another mode)
2754 : C-c @ outline-mark-subtree
2755 : (that binding is currently shadowed by another mode)
2756 : C-c C-< outline-promote
2757 : C-c C-> outline-demote
2759 : C-M-i ispell-complete-word
2760 : (that binding is currently shadowed by another mode)
2762 : C-c C-M-l org-insert-all-links
2763 : C-c M-b org-previous-block
2764 : C-c M-f org-next-block
2767 : C-c C-v C-a org-babel-sha1-hash
2768 : C-c C-v C-b org-babel-execute-buffer
2769 : C-c C-v C-c org-babel-check-src-block
2770 : C-c C-v C-d org-babel-demarcate-block
2771 : C-c C-v C-e org-babel-execute-maybe
2772 : C-c C-v C-f org-babel-tangle-file
2773 : C-c C-v TAB org-babel-view-src-block-info
2774 : C-c C-v C-j org-babel-insert-header-arg
2775 : C-c C-v C-l org-babel-load-in-session
2776 : C-c C-v C-n org-babel-next-src-block
2777 : C-c C-v C-o org-babel-open-src-block-result
2778 : C-c C-v C-p org-babel-previous-src-block
2779 : C-c C-v C-r org-babel-goto-named-result
2780 : C-c C-v C-s org-babel-execute-subtree
2781 : C-c C-v C-t org-babel-tangle
2782 : C-c C-v C-u org-babel-goto-src-block-head
2783 : C-c C-v C-v org-babel-expand-src-block
2784 : C-c C-v C-x org-babel-do-key-sequence-in-edit-buffer
2785 : C-c C-v C-z org-babel-switch-to-session
2786 : C-c C-v ESC Prefix Command
2787 : C-c C-v I org-babel-view-src-block-info
2788 : C-c C-v a org-babel-sha1-hash
2789 : C-c C-v b org-babel-execute-buffer
2790 : C-c C-v c org-babel-check-src-block
2791 : C-c C-v d org-babel-demarcate-block
2792 : C-c C-v e org-babel-execute-maybe
2793 : C-c C-v f org-babel-tangle-file
2794 : C-c C-v g org-babel-goto-named-src-block
2795 : C-c C-v h org-babel-describe-bindings
2796 : C-c C-v i org-babel-lob-ingest
2797 : C-c C-v j org-babel-insert-header-arg
2798 : C-c C-v l org-babel-load-in-session
2799 : C-c C-v n org-babel-next-src-block
2800 : C-c C-v o org-babel-open-src-block-result
2801 : C-c C-v p org-babel-previous-src-block
2802 : C-c C-v r org-babel-goto-named-result
2803 : C-c C-v s org-babel-execute-subtree
2804 : C-c C-v t org-babel-tangle
2805 : C-c C-v u org-babel-goto-src-block-head
2806 : C-c C-v v org-babel-expand-src-block
2807 : C-c C-v x org-babel-do-key-sequence-in-edit-buffer
2808 : C-c C-v z org-babel-switch-to-session-with-code
2810 : C-c C-x C-a org-archive-subtree-default
2811 : C-c C-x C-b org-toggle-checkbox
2812 : C-c C-x C-c org-columns
2813 : C-c C-x C-d org-clock-display
2814 : C-c C-x C-e org-clock-modify-effort-estimate
2815 : C-c C-x C-f org-emphasize
2816 : C-c C-x TAB org-clock-in
2817 : C-c C-x C-j org-clock-goto
2818 : C-c C-x C-l org-preview-latex-fragment
2819 : C-c C-x RET Prefix Command
2820 : C-c C-x C-n org-next-link
2821 : C-c C-x C-o org-clock-out
2822 : C-c C-x C-p org-previous-link
2823 : C-c C-x C-q org-clock-cancel
2824 : C-c C-x C-r org-clock-report
2825 : C-c C-x C-s org-advertized-archive-subtree
2826 : C-c C-x C-t org-toggle-time-stamp-overlays
2827 : C-c C-x C-u org-dblock-update
2828 : C-c C-x C-v org-toggle-inline-images
2829 : C-c C-x C-w org-cut-special
2830 : C-c C-x C-x org-clock-in-last
2831 : C-c C-x C-y org-paste-special
2832 : C-c C-x C-z org-resolve-clocks
2833 : C-c C-x ESC Prefix Command
2834 : C-c C-x ! org-reload
2835 : C-c C-x , org-timer-pause-or-continue
2836 : C-c C-x - org-timer-item
2837 : C-c C-x . org-timer
2838 : C-c C-x 0 org-timer-start
2839 : C-c C-x : org-timer-cancel-timer
2840 : C-c C-x ; org-timer-set-timer
2841 : C-c C-x < org-agenda-set-restriction-lock
2842 : C-c C-x > org-agenda-remove-restriction-lock
2843 : C-c C-x A org-archive-to-archive-sibling
2844 : C-c C-x E org-inc-effort
2845 : C-c C-x G org-feed-goto-inbox
2846 : C-c C-x P org-set-property-and-value
2847 : C-c C-x [ org-reftex-citation
2848 : C-c C-x \ org-toggle-pretty-entities
2849 : C-c C-x _ org-timer-stop
2850 : C-c C-x a org-toggle-archive-tag
2851 : C-c C-x b org-tree-to-indirect-buffer
2852 : C-c C-x c org-clone-subtree-with-time-shift
2853 : C-c C-x d org-insert-drawer
2854 : C-c C-x e org-set-effort
2855 : C-c C-x f org-footnote-action
2856 : C-c C-x g org-feed-update-all
2857 : C-c C-x i org-insert-columns-dblock
2858 : C-c C-x o org-toggle-ordered-property
2859 : C-c C-x p org-set-property
2860 : C-c C-x q org-toggle-tags-groups
2861 : C-c C-x t org-inlinetask-insert-task
2862 : C-c C-x v org-copy-visible
2864 : C-c C-v C-M-h org-babel-mark-block
2866 : C-c C-x C-M-v org-redisplay-inline-images
2867 : C-c C-x M-w org-copy-special
2869 : C-c C-x RET g org-mobile-pull
2870 : C-c C-x RET p org-mobile-push
2874 : In addition to any hooks its parent mode `outline-mode' might have run,
2875 : this mode runs the hook `org-mode-hook', as the final step
2876 : during initialization.
2877 ** org-beginning-of-item-list
2879 :CUSTOM_ID: org-beginning-of-item-list
2882 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
2883 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beginning-of-item-list&sr=1][Find modifications in git logs]]
2885 : Go to the beginning item of the current list or sublist.
2886 : Throw an error when not in a list.
2887 ** org-babel-open-src-block-result =(&optional re-run)=
2889 :CUSTOM_ID: org-babel-open-src-block-result
2892 - *Access:* ~C-c C-v C-o, C-c C-v o~
2893 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
2894 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-open-src-block-result&sr=1][Find modifications in git logs]]
2896 : If `point' is on a src block then open the results of the
2897 : source code block, otherwise return nil. With optional prefix
2898 : argument RE-RUN the source-code block is evaluated even if
2899 : results already exist.
2900 ** org-time-stamp =(arg &optional inactive)=
2902 :CUSTOM_ID: org-time-stamp
2905 - *Access:* ~C-c ., <menu-bar> <Org> <Dates and Scheduling> <Timestamp>~
2906 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2907 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-stamp&sr=1][Find modifications in git logs]]
2909 : Prompt for a date/time and insert a time stamp.
2910 : If the user specifies a time like HH:MM or if this command is
2911 : called with at least one prefix argument, the time stamp contains
2912 : the date and the time. Otherwise, only the date is be included.
2914 : All parts of a date not specified by the user is filled in from
2915 : the current date/time. So if you just press return without
2916 : typing anything, the time stamp will represent the current
2919 : If there is already a timestamp at the cursor, it will be
2922 : With two universal prefix arguments, insert an active timestamp
2923 : with the current time without prompting the user.
2924 ** org-list-to-generic =(list params)=
2926 :CUSTOM_ID: org-list-to-generic
2929 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
2930 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-to-generic&sr=1][Find modifications in git logs]]
2932 : Convert a LIST parsed through `org-list-parse-list' to other formats.
2933 : Valid parameters PARAMS are:
2935 : :ustart String to start an unordered list
2936 : :uend String to end an unordered list
2938 : :ostart String to start an ordered list
2939 : :oend String to end an ordered list
2941 : :dstart String to start a descriptive list
2942 : :dend String to end a descriptive list
2943 : :dtstart String to start a descriptive term
2944 : :dtend String to end a descriptive term
2945 : :ddstart String to start a description
2946 : :ddend String to end a description
2948 : :splice When set to t, return only list body lines, don't wrap
2949 : them into :[u/o]start and :[u/o]end. Default is nil.
2951 : :istart String to start a list item.
2952 : :icount String to start an item with a counter.
2953 : :iend String to end a list item
2954 : :isep String to separate items
2955 : :lsep String to separate sublists
2956 : :csep String to separate text from a sub-list
2958 : :cboff String to insert for an unchecked check-box
2959 : :cbon String to insert for a checked check-box
2960 : :cbtrans String to insert for a check-box in transitional state
2962 : :nobr Non-nil means remove line breaks in lists items.
2964 : Alternatively, each parameter can also be a form returning
2965 : a string. These sexp can use keywords `counter' and `depth',
2966 : representing respectively counter associated to the current
2967 : item, and depth of the current sub-list, starting at 0.
2968 : Obviously, `counter' is only available for parameters applying to
2970 ** org-forward-heading-same-level =(arg &optional invisible-ok)=
2972 :CUSTOM_ID: org-forward-heading-same-level
2975 - *Access:* ~C-c C-f, <menu-bar> <Org> <Navigate Headings> <Next Same Level>~
2976 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2977 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-forward-heading-same-level&sr=1][Find modifications in git logs]]
2979 : Move forward to the ARG'th subheading at same level as this one.
2980 : Stop at the first and last subheadings of a superior heading.
2981 : Normally this only looks at visible headings, but when INVISIBLE-OK is
2982 : non-nil it will also look at invisible ones.
2983 ** org-insert-todo-subheading =(arg)=
2985 :CUSTOM_ID: org-insert-todo-subheading
2988 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
2989 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-todo-subheading&sr=1][Find modifications in git logs]]
2991 : Insert a new subheading with TODO keyword or checkbox and demote it.
2992 : Works for outline headings and for plain lists alike.
2993 ** org-clock-in-last =(&optional arg)=
2995 :CUSTOM_ID: org-clock-in-last
2998 - *Access:* ~C-c C-x C-x~
2999 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
3000 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in-last&sr=1][Find modifications in git logs]]
3002 : Clock in the last closed clocked item.
3003 : When already clocking in, send an warning.
3004 : With a universal prefix argument, select the task you want to
3005 : clock in from the last clocked in tasks.
3006 : With two universal prefix arguments, start clocking using the
3007 : last clock-out time, if any.
3008 : With three universal prefix arguments, interactively prompt
3009 : for a todo state to switch to, overriding the existing value
3010 : `org-clock-in-switch-to-state'.
3011 ** org-create-customize-menu
3013 :CUSTOM_ID: org-create-customize-menu
3016 - *Access:* ~<menu-bar> <Org> <Customize> <Expand This Menu>~
3017 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3018 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-create-customize-menu&sr=1][Find modifications in git logs]]
3020 : Create a full customization menu for Org-mode, insert it into the menu.
3021 ** org-agenda-bulk-mark-regexp =(regexp)=
3023 :CUSTOM_ID: org-agenda-bulk-mark-regexp
3026 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3027 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-mark-regexp&sr=1][Find modifications in git logs]]
3029 : Mark entries matching REGEXP for future agenda bulk action.
3030 ** org-info =(&optional node)=
3032 :CUSTOM_ID: org-info
3035 - *Access:* ~<menu-bar> <Org> <Documentation> <Info Documentation>~
3036 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3037 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-info&sr=1][Find modifications in git logs]]
3039 : Read documentation for Org-mode in the info system.
3040 : With optional NODE, go directly to that node.
3041 ** org-table-create =(&optional size)=
3043 :CUSTOM_ID: org-table-create
3046 - *Access:* ~<menu-bar> <Tbl> <Create>~
3047 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3048 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-create&sr=1][Find modifications in git logs]]
3050 : Query for a size and insert a table skeleton.
3051 : SIZE is a string Columns x Rows like for example "3x2".
3052 ** org-insert-heading-after-current
3054 :CUSTOM_ID: org-insert-heading-after-current
3057 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3058 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-heading-after-current&sr=1][Find modifications in git logs]]
3060 : Insert a new heading with same level as current, after current subtree.
3061 ** org-id-store-link
3063 :CUSTOM_ID: org-id-store-link
3066 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
3067 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-store-link&sr=1][Find modifications in git logs]]
3069 : Store a link to the current entry, using its ID.
3070 ** org-columns-get-format =(&optional fmt-string)=
3072 :CUSTOM_ID: org-columns-get-format
3075 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
3076 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-get-format&sr=1][Find modifications in git logs]]
3079 ** org-kill-note-or-show-branches
3081 :CUSTOM_ID: org-kill-note-or-show-branches
3084 - *Access:* ~C-c C-k~
3085 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3086 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-kill-note-or-show-branches&sr=1][Find modifications in git logs]]
3088 : If this is a Note buffer, abort storing the note. Else call `show-branches'.
3089 ** org-agenda-date-prompt =(arg)=
3091 :CUSTOM_ID: org-agenda-date-prompt
3094 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3095 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-prompt&sr=1][Find modifications in git logs]]
3097 : Change the date of this item. Date is prompted for, with default today.
3098 : The prefix ARG is passed to the `org-time-stamp' command and can therefore
3099 : be used to request time specification in the time stamp.
3100 ** org-beamer-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
3102 :CUSTOM_ID: org-beamer-export-to-pdf
3105 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
3106 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-export-to-pdf&sr=1][Find modifications in git logs]]
3108 : Export current buffer as a Beamer presentation (PDF).
3110 : If narrowing is active in the current buffer, only export its
3113 : If a region is active, export that region.
3115 : A non-nil optional argument ASYNC means the process should happen
3116 : asynchronously. The resulting file should be accessible through
3117 : the `org-export-stack' interface.
3119 : When optional argument SUBTREEP is non-nil, export the sub-tree
3120 : at point, extracting information from the headline properties
3123 : When optional argument VISIBLE-ONLY is non-nil, don't export
3124 : contents of hidden elements.
3126 : When optional argument BODY-ONLY is non-nil, only write code
3127 : between "\begin{document}" and "\end{document}".
3129 : EXT-PLIST, when provided, is a property list with external
3130 : parameters overriding Org default settings, but still inferior to
3131 : file-local settings.
3133 : Return PDF file's name.
3134 ** org-babel-goto-named-result =(name)=
3136 :CUSTOM_ID: org-babel-goto-named-result
3139 - *Access:* ~C-c C-v C-r, C-c C-v r~
3140 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
3141 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-goto-named-result&sr=1][Find modifications in git logs]]
3143 : Go to a named result.
3144 ** org-bibtex-search =(string)=
3146 :CUSTOM_ID: org-bibtex-search
3149 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
3150 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-search&sr=1][Find modifications in git logs]]
3152 : Search for bibliographical entries in agenda files.
3153 : This function relies `org-search-view' to locate results.
3154 ** org-toggle-custom-properties-visibility
3156 :CUSTOM_ID: org-toggle-custom-properties-visibility
3159 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3160 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-custom-properties-visibility&sr=1][Find modifications in git logs]]
3162 : Display or hide properties in `org-custom-properties'.
3163 ** org-agenda-manipulate-query-subtract-re
3165 :CUSTOM_ID: org-agenda-manipulate-query-subtract-re
3168 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3169 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-manipulate-query-subtract-re&sr=1][Find modifications in git logs]]
3171 : Manipulate the query by adding a search regexp with negative selection.
3172 : Negative selection means regexp must not match for selection of an entry.
3173 ** org-capture-string =(string &optional keys)=
3175 :CUSTOM_ID: org-capture-string
3178 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
3179 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-string&sr=1][Find modifications in git logs]]
3181 : Capture STRING with the template selected by KEYS.
3184 :CUSTOM_ID: org-copy
3187 - *Access:* ~C-c M-w~
3188 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3189 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-copy&sr=1][Find modifications in git logs]]
3191 : Like `org-refile', but copy.
3192 ** org-list-send-list =(&optional maybe)=
3194 :CUSTOM_ID: org-list-send-list
3197 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
3198 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-send-list&sr=1][Find modifications in git logs]]
3200 : Send a transformed version of this list to the receiver position.
3201 : With argument MAYBE, fail quietly if no transformation is defined
3203 ** org-capture-mode =(&optional arg)=
3205 :CUSTOM_ID: org-capture-mode
3208 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
3209 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-mode&sr=1][Find modifications in git logs]]
3211 : Minor mode for special key bindings in a capture buffer.
3213 : Turning on this mode runs the normal hook `org-capture-mode-hook'.
3214 ** org-table-fedit-menu =(event)=
3216 :CUSTOM_ID: org-table-fedit-menu
3219 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3220 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-menu&sr=1][Find modifications in git logs]]
3222 : Org Edit Formulas Menu
3223 ** org-first-sibling-p
3225 :CUSTOM_ID: org-first-sibling-p
3228 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3229 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-first-sibling-p&sr=1][Find modifications in git logs]]
3231 : Is this heading the first child of its parents?
3234 :CUSTOM_ID: org-ctrl-c-minus
3237 - *Access:* ~C-c -, <menu-bar> <Tbl> <Row> <Insert Hline>~
3238 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3239 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-minus&sr=1][Find modifications in git logs]]
3241 : Insert separator line in table or modify bullet status of line.
3242 : Also turns a plain line or a region of lines into list items.
3243 : Calls `org-table-insert-hline', `org-toggle-item', or
3244 : `org-cycle-list-bullet', depending on context.
3245 ** org-return-indent
3247 :CUSTOM_ID: org-return-indent
3251 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3252 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-return-indent&sr=1][Find modifications in git logs]]
3254 : Goto next table row or insert a newline and indent.
3255 : Calls `org-table-next-row' or `newline-and-indent', depending on
3256 : context. See the individual commands for more information.
3257 ** org-agenda-todo =(&optional arg)=
3259 :CUSTOM_ID: org-agenda-todo
3262 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3263 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo&sr=1][Find modifications in git logs]]
3265 : Cycle TODO state of line at point, also in Org-mode file.
3266 : This changes the line at point, all other lines in the agenda referring to
3267 : the same tree node, and the headline of the tree node in the Org-mode file.
3268 ** org-export-preprocess-string =(string &rest parameters)=
3270 :CUSTOM_ID: org-export-preprocess-string
3273 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
3274 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preprocess-string&sr=1][Find modifications in git logs]]
3276 : Cleanup STRING so that the true exported has a more consistent source.
3277 : This function takes STRING, which should be a buffer-string of an org-file
3278 : to export. It then creates a temporary buffer where it does its job.
3279 : The result is then again returned as a string, and the exporter works
3280 : on this string to produce the exported version.
3281 ** org-agenda-date-earlier-minutes =(arg)=
3283 :CUSTOM_ID: org-agenda-date-earlier-minutes
3286 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3287 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-earlier-minutes&sr=1][Find modifications in git logs]]
3289 : Change the time of this item, in units of `org-time-stamp-rounding-minutes'.
3290 ** org-inlinetask-demote
3292 :CUSTOM_ID: org-inlinetask-demote
3295 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-inlinetask.el;hb=HEAD][org-inlinetask.el]]
3296 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inlinetask-demote&sr=1][Find modifications in git logs]]
3298 : Demote the inline task at point.
3299 : If the task has an end part, also demote it.
3300 ** org-toggle-timestamp-type
3302 :CUSTOM_ID: org-toggle-timestamp-type
3305 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3306 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-timestamp-type&sr=1][Find modifications in git logs]]
3308 : Toggle the type (<active> or [inactive]) of a time stamp.
3309 ** org-ctags-all-tags-in-current-tags-table
3311 :CUSTOM_ID: org-ctags-all-tags-in-current-tags-table
3314 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
3315 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-all-tags-in-current-tags-table&sr=1][Find modifications in git logs]]
3317 : Read all tags defined in the active TAGS file, into a list of strings.
3319 ** org-attach-attach-ln
3321 :CUSTOM_ID: org-attach-attach-ln
3324 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
3325 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-attach-ln&sr=1][Find modifications in git logs]]
3327 : Attach a file by creating a hard link to it.
3328 : Beware that this does not work on systems that do not support hard links.
3329 : On some systems, this apparently does copy the file instead.
3330 ** org-table-convert
3332 :CUSTOM_ID: org-table-convert
3335 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3336 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-convert&sr=1][Find modifications in git logs]]
3338 : Convert from `org-mode' table to table.el and back.
3339 : Obviously, this only works within limits. When an Org-mode table is
3340 : converted to table.el, all horizontal separator lines get lost, because
3341 : table.el uses these as cell boundaries and has no notion of horizontal lines.
3342 : A table.el table can be converted to an Org-mode table only if it does not
3343 : do row or column spanning. Multiline cells will become multiple cells.
3344 : Beware, Org-mode does not test if the table can be successfully converted - it
3345 : blindly applies a recipe that works for simple tables.
3346 ** org-latex-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
3348 :CUSTOM_ID: org-latex-export-to-pdf
3351 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
3352 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-export-to-pdf&sr=1][Find modifications in git logs]]
3354 : Export current buffer to LaTeX then process through to PDF.
3356 : If narrowing is active in the current buffer, only export its
3359 : If a region is active, export that region.
3361 : A non-nil optional argument ASYNC means the process should happen
3362 : asynchronously. The resulting file should be accessible through
3363 : the `org-export-stack' interface.
3365 : When optional argument SUBTREEP is non-nil, export the sub-tree
3366 : at point, extracting information from the headline properties
3369 : When optional argument VISIBLE-ONLY is non-nil, don't export
3370 : contents of hidden elements.
3372 : When optional argument BODY-ONLY is non-nil, only write code
3373 : between "\begin{document}" and "\end{document}".
3375 : EXT-PLIST, when provided, is a property list with external
3376 : parameters overriding Org default settings, but still inferior to
3377 : file-local settings.
3379 : Return PDF file's name.
3380 ** org-change-tag-in-region =(beg end tag off)=
3382 :CUSTOM_ID: org-change-tag-in-region
3385 - *Access:* ~<menu-bar> <Org> <TAGS and Properties> <Change tag in region>~
3386 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3387 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-change-tag-in-region&sr=1][Find modifications in git logs]]
3389 : Add or remove TAG for each entry in the region.
3390 : This works in the agenda, and also in an org-mode buffer.
3391 ** org-md-export-as-markdown =(&optional async subtreep visible-only)=
3393 :CUSTOM_ID: org-md-export-as-markdown
3396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-md.el;hb=HEAD][ox-md.el]]
3397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-md-export-as-markdown&sr=1][Find modifications in git logs]]
3399 : Export current buffer to a Markdown buffer.
3401 : If narrowing is active in the current buffer, only export its
3404 : If a region is active, export that region.
3406 : A non-nil optional argument ASYNC means the process should happen
3407 : asynchronously. The resulting buffer should be accessible
3408 : through the `org-export-stack' interface.
3410 : When optional argument SUBTREEP is non-nil, export the sub-tree
3411 : at point, extracting information from the headline properties
3414 : When optional argument VISIBLE-ONLY is non-nil, don't export
3415 : contents of hidden elements.
3417 : Export is done in a buffer named "*Org MD Export*", which will
3418 : be displayed when `org-export-show-temporary-export-buffer' is
3420 ** org-indent-mode =(&optional arg)=
3422 :CUSTOM_ID: org-indent-mode
3425 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
3426 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-mode&sr=1][Find modifications in git logs]]
3428 : When active, indent text according to outline structure.
3430 : Internally this works by adding `line-prefix' and `wrap-prefix'
3431 : properties, after each buffer modification, on the modified zone.
3433 : The process is synchronous. Though, initial indentation of
3434 : buffer, which can take a few seconds on large buffers, is done
3436 ** org-agenda-previous-line
3438 :CUSTOM_ID: org-agenda-previous-line
3441 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3442 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-previous-line&sr=1][Find modifications in git logs]]
3444 : Move cursor to the previous line, and show if follow-mode is active.
3445 ** org-attach-reveal =(&optional if-exists)=
3447 :CUSTOM_ID: org-attach-reveal
3450 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
3451 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-reveal&sr=1][Find modifications in git logs]]
3453 : Show the attachment directory of the current task.
3454 : This will attempt to use an external program to show the directory.
3455 ** org-table-maybe-recalculate-line
3457 :CUSTOM_ID: org-table-maybe-recalculate-line
3460 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3461 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-maybe-recalculate-line&sr=1][Find modifications in git logs]]
3463 : Recompute the current line if marked for it, and if we haven't just done it.
3466 :CUSTOM_ID: org-agenda-mode
3469 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3470 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-mode&sr=1][Find modifications in git logs]]
3472 : Mode for time-sorted view on action items in Org-mode files.
3474 : The following commands are available:
3479 : C-c Prefix Command
3480 : TAB org-agenda-goto
3481 : C-k org-agenda-kill
3482 : RET org-agenda-switch-to
3483 : C-n org-agenda-next-line
3484 : C-p org-agenda-previous-line
3485 : C-x Prefix Command
3486 : ESC Prefix Command
3487 : C-_ org-agenda-undo
3488 : SPC org-agenda-show-and-scroll-up
3489 : ! org-agenda-toggle-deadlines
3490 : # org-agenda-dim-blocked-tasks
3491 : $ org-agenda-archive
3492 : % org-agenda-bulk-mark-regexp
3493 : * org-agenda-bulk-mark-all
3494 : + org-agenda-priority-up
3495 : , org-agenda-priority
3496 : - org-agenda-priority-down
3497 : . org-agenda-goto-today
3498 : / org-agenda-filter-by-tag
3499 : 0 .. 9 digit-argument
3500 : : org-agenda-set-tags
3501 : ; org-timer-set-timer
3502 : < org-agenda-filter-by-category
3503 : = org-agenda-filter-by-regexp
3504 : > org-agenda-date-prompt
3505 : ? org-agenda-show-the-flagging-note
3506 : A org-agenda-append-agenda
3507 : B org-agenda-bulk-action
3508 : C org-agenda-convert-date
3509 : D org-agenda-toggle-diary
3510 : E org-agenda-entry-text-mode
3511 : F org-agenda-follow-mode
3512 : G org-agenda-toggle-time-grid
3513 : H org-agenda-holidays
3514 : I org-agenda-clock-in
3515 : J org-agenda-clock-goto
3516 : K org-habit-toggle-habits
3517 : L org-agenda-recenter
3518 : M org-agenda-phases-of-moon
3519 : N org-agenda-next-item
3520 : O org-agenda-clock-out
3521 : P org-agenda-previous-item
3523 : R org-agenda-clockreport-mode
3524 : S org-agenda-sunrise-sunset
3525 : T org-agenda-show-tags
3526 : U org-agenda-bulk-unmark-all
3527 : X org-agenda-clock-cancel
3528 : [ org-agenda-manipulate-query-add
3529 : \ org-agenda-filter-by-tag-refine
3530 : ] org-agenda-manipulate-query-subtract
3531 : ^ org-agenda-filter-by-top-headline
3532 : a org-agenda-archive-default-with-confirmation
3533 : b org-agenda-earlier
3534 : c org-agenda-goto-calendar
3535 : d org-agenda-day-view
3536 : e org-agenda-set-effort
3537 : f org-agenda-later
3539 : h org-agenda-holidays
3540 : i org-agenda-diary-entry
3541 : j org-agenda-goto-date
3542 : k org-agenda-capture
3543 : l org-agenda-log-mode
3544 : m org-agenda-bulk-mark
3545 : n org-agenda-next-line
3546 : o delete-other-windows
3547 : p org-agenda-previous-line
3550 : s org-save-all-org-buffers
3552 : u org-agenda-bulk-unmark
3553 : v org-agenda-view-mode-dispatch
3554 : w org-agenda-week-view
3556 : y org-agenda-year-view
3557 : z org-agenda-add-note
3558 : { org-agenda-manipulate-query-add-re
3559 : | org-agenda-filter-remove-all
3560 : } org-agenda-manipulate-query-subtract-re
3561 : ~ org-agenda-limit-interactively
3562 : DEL org-agenda-show-scroll-down
3563 : C-/ org-agenda-undo
3564 : <C-S-left> org-agenda-todo-previousset
3565 : <C-S-right> org-agenda-todo-nextset
3566 : <M-down> org-agenda-drag-line-forward
3567 : <M-up> org-agenda-drag-line-backward
3568 : <S-down> org-agenda-priority-down
3569 : <S-left> org-agenda-do-date-earlier
3570 : <S-right> org-agenda-do-date-later
3571 : <S-up> org-agenda-priority-up
3572 : <backspace> org-agenda-show-scroll-down
3573 : <down> org-agenda-next-line
3574 : <mouse-2> org-agenda-goto-mouse
3575 : <mouse-3> org-agenda-show-mouse
3576 : <tab> org-agenda-goto
3577 : <undo> org-agenda-undo
3578 : <up> org-agenda-previous-line
3580 : M-* org-agenda-bulk-toggle-all
3581 : M-m org-agenda-bulk-toggle
3583 : C-c C-a org-attach
3584 : C-c C-d org-agenda-deadline
3585 : C-c C-n org-agenda-next-date-line
3586 : C-c C-o org-agenda-open-link
3587 : C-c C-p org-agenda-previous-date-line
3588 : C-c C-q org-agenda-set-tags
3589 : C-c C-s org-agenda-schedule
3590 : C-c C-t org-agenda-todo
3591 : C-c C-w org-agenda-refile
3592 : C-c C-x Prefix Command
3593 : C-c C-z org-agenda-add-note
3594 : C-c $ org-agenda-archive
3595 : C-c , org-agenda-priority
3597 : C-x C-s org-save-all-org-buffers
3598 : C-x C-w org-agenda-write
3599 : C-x u org-agenda-undo
3601 : C-c C-x C-a org-agenda-archive-default
3602 : C-c C-x C-c org-agenda-columns
3603 : C-c C-x C-e org-clock-modify-effort-estimate
3604 : C-c C-x TAB org-agenda-clock-in
3605 : C-c C-x C-j org-clock-goto
3606 : C-c C-x RET Prefix Command
3607 : C-c C-x C-o org-agenda-clock-out
3608 : C-c C-x C-s org-agenda-archive
3609 : C-c C-x C-x org-agenda-clock-cancel
3610 : C-c C-x ! org-reload
3611 : C-c C-x > org-agenda-remove-restriction-lock
3612 : C-c C-x A org-agenda-archive-to-archive-sibling
3613 : C-c C-x a org-agenda-toggle-archive-tag
3614 : C-c C-x b org-agenda-tree-to-indirect-buffer
3615 : C-c C-x e org-agenda-set-effort
3616 : C-c C-x p org-agenda-set-property
3617 : C-c C-x <down> org-agenda-priority-down
3618 : C-c C-x <left> org-agenda-do-date-earlier
3619 : C-c C-x <right> org-agenda-do-date-later
3620 : C-c C-x <up> org-agenda-priority-up
3622 : C-c C-x RET g org-mobile-pull
3623 : C-c C-x RET p org-mobile-push
3628 :CUSTOM_ID: org-overview
3631 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3632 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-overview&sr=1][Find modifications in git logs]]
3634 : Switch to overview mode, showing only top-level headlines.
3635 : Really, this shows all headlines with level equal or greater than the level
3636 : of the first headline in the buffer. This is important, because if the
3637 : first headline is not level one, then (hide-sublevels 1) gives confusing
3639 ** org-drag-line-forward =(arg)=
3641 :CUSTOM_ID: org-drag-line-forward
3644 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3645 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-drag-line-forward&sr=1][Find modifications in git logs]]
3647 : Drag the line at point ARG lines forward.
3648 ** org-babel-expand-src-block =(&optional arg info params)=
3650 :CUSTOM_ID: org-babel-expand-src-block
3653 - *Access:* ~C-c C-v v, C-c C-v C-v~
3654 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
3655 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-expand-src-block&sr=1][Find modifications in git logs]]
3657 : Expand the current source code block.
3658 : Expand according to the source code block's header
3659 : arguments and pop open the results in a preview buffer.
3660 ** org-bibtex-create-in-current-entry =(&optional arg)=
3662 :CUSTOM_ID: org-bibtex-create-in-current-entry
3665 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
3666 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-create-in-current-entry&sr=1][Find modifications in git logs]]
3668 : Add bibliographical data to the current entry.
3669 : With a prefix arg, query for optional fields.
3670 ** org-html-htmlize-generate-css
3672 :CUSTOM_ID: org-html-htmlize-generate-css
3675 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
3676 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-htmlize-generate-css&sr=1][Find modifications in git logs]]
3678 : Create the CSS for all font definitions in the current Emacs session.
3679 : Use this to create face definitions in your CSS style file that can then
3680 : be used by code snippets transformed by htmlize.
3681 : This command just produces a buffer that contains class definitions for all
3682 : faces used in the current Emacs session. You can copy and paste the ones you
3683 : need into your CSS file.
3685 : If you then set `org-html-htmlize-output-type' to `css', calls
3686 : to the function `org-html-htmlize-region-for-paste' will
3687 : produce code that uses these same face definitions.
3688 ** org-end-of-line =(&optional arg)=
3690 :CUSTOM_ID: org-end-of-line
3694 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3695 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-end-of-line&sr=1][Find modifications in git logs]]
3697 : Go to the end of the line.
3698 : If this is a headline, and `org-special-ctrl-a/e' is set, ignore
3699 : tags on the first attempt, and only move to after the tags when
3700 : the cursor is already beyond the end of the headline.
3701 ** org-attach-attach-mv
3703 :CUSTOM_ID: org-attach-attach-mv
3706 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
3707 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-attach-mv&sr=1][Find modifications in git logs]]
3709 : Attach a file by moving (renaming) it.
3710 ** org-update-checkbox-count =(&optional all)=
3712 :CUSTOM_ID: org-update-checkbox-count
3715 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
3716 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-update-checkbox-count&sr=1][Find modifications in git logs]]
3718 : Update the checkbox statistics in the current section.
3719 : This will find all statistic cookies like [57%] and [6/12] and
3720 : update them with the current numbers.
3722 : With optional prefix argument ALL, do this for the whole buffer.
3723 ** org-set-effort =(&optional value increment)=
3725 :CUSTOM_ID: org-set-effort
3728 - *Access:* ~C-c C-x e~
3729 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3730 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-effort&sr=1][Find modifications in git logs]]
3732 : Set the effort property of the current entry.
3733 : With numerical prefix arg, use the nth allowed value, 0 stands for the
3734 : 10th allowed value.
3736 : When INCREMENT is non-nil, set the property to the next allowed value.
3739 :CUSTOM_ID: org-show-entry
3742 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3743 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-entry&sr=1][Find modifications in git logs]]
3745 : Show the body directly following this heading.
3746 : Show the heading too, if it is currently invisible.
3747 ** org-promote-subtree
3749 :CUSTOM_ID: org-promote-subtree
3752 - *Access:* ~C-c C-<~
3753 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3754 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-promote-subtree&sr=1][Find modifications in git logs]]
3756 : Promote the entire subtree.
3757 : See also `org-promote'.
3760 :CUSTOM_ID: org-indent-item
3763 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
3764 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-item&sr=1][Find modifications in git logs]]
3766 : Indent a local list item, but not its children.
3767 : If a region is active, all items inside will be moved.
3768 ** org-attach-open-in-emacs
3770 :CUSTOM_ID: org-attach-open-in-emacs
3773 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
3774 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-open-in-emacs&sr=1][Find modifications in git logs]]
3776 : Open attachment, force opening in Emacs.
3777 : See `org-attach-open'.
3778 ** org-table-move-column-right
3780 :CUSTOM_ID: org-table-move-column-right
3783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-column-right&sr=1][Find modifications in git logs]]
3786 : Move column to the right.
3787 ** org-emphasize =(&optional char)=
3789 :CUSTOM_ID: org-emphasize
3792 - *Access:* ~C-c C-x C-f, <menu-bar> <Org> <Editing> <Emphasis...>~
3793 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3794 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-emphasize&sr=1][Find modifications in git logs]]
3796 : Insert or change an emphasis, i.e. a font like bold or italic.
3797 : If there is an active region, change that region to a new emphasis.
3798 : If there is no region, just insert the marker characters and position
3799 : the cursor between them.
3800 : CHAR should be the marker character. If it is a space, it means to
3801 : remove the emphasis of the selected region.
3802 : If CHAR is not given (for example in an interactive call) it will be
3804 ** org-bibtex-import-from-file =(file)=
3806 :CUSTOM_ID: org-bibtex-import-from-file
3809 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
3810 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-import-from-file&sr=1][Find modifications in git logs]]
3812 : Read bibtex entries from FILE and insert as Org-mode headlines after point.
3813 ** org-speed-move-safe =(cmd)=
3815 :CUSTOM_ID: org-speed-move-safe
3818 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3819 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-speed-move-safe&sr=1][Find modifications in git logs]]
3821 : Execute CMD, but make sure that the cursor always ends up in a headline.
3822 : If not, return to the original position and throw an error.
3823 ** org-export-insert-default-template =(&optional backend subtreep)=
3825 :CUSTOM_ID: org-export-insert-default-template
3828 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
3829 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-insert-default-template&sr=1][Find modifications in git logs]]
3831 : Insert all export keywords with default values at beginning of line.
3833 : BACKEND is a symbol representing the export back-end for which
3834 : specific export options should be added to the template, or
3835 : `default' for default template. When it is nil, the user will be
3836 : prompted for a category.
3838 : If SUBTREEP is non-nil, export configuration will be set up
3839 : locally for the subtree through node properties.
3840 ** org-agenda-show-tags
3842 :CUSTOM_ID: org-agenda-show-tags
3845 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
3846 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-tags&sr=1][Find modifications in git logs]]
3848 : Show the tags applicable to the current item.
3849 ** org-table-goto-column =(n &optional on-delim force)=
3851 :CUSTOM_ID: org-table-goto-column
3854 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3855 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-goto-column&sr=1][Find modifications in git logs]]
3857 : Move the cursor to the Nth column in the current table line.
3858 : With optional argument ON-DELIM, stop with point before the left delimiter
3860 : If there are less than N fields, just go to after the last delimiter.
3861 : However, when FORCE is non-nil, create new columns if necessary.
3862 ** org-move-subtree-up =(&optional arg)=
3864 :CUSTOM_ID: org-move-subtree-up
3867 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3868 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-move-subtree-up&sr=1][Find modifications in git logs]]
3870 : Move the current subtree up past ARG headlines of the same level.
3871 ** org-timestamp-up-day =(&optional arg)=
3873 :CUSTOM_ID: org-timestamp-up-day
3876 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3877 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timestamp-up-day&sr=1][Find modifications in git logs]]
3879 : Increase the date in the time stamp by one day.
3880 : With prefix ARG, change that many days.
3881 ** org-protocol-create-for-org
3883 :CUSTOM_ID: org-protocol-create-for-org
3886 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
3887 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-create-for-org&sr=1][Find modifications in git logs]]
3889 : Create a org-protocol project for the current file's Org-mode project.
3890 : The visited file needs to be part of a publishing project in
3891 : `org-publish-project-alist' for this to work. The function
3892 : delegates most of the work to `org-protocol-create'.
3893 ** org-priority-down
3895 :CUSTOM_ID: org-priority-down
3898 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3899 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-priority-down&sr=1][Find modifications in git logs]]
3901 : Decrease the priority of the current item.
3904 :CUSTOM_ID: org-up-element
3907 - *Access:* ~C-c C-^~
3908 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3909 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-up-element&sr=1][Find modifications in git logs]]
3911 : Move to upper element.
3912 ** org-display-outline-path =(&optional file current separator just-return-string)=
3914 :CUSTOM_ID: org-display-outline-path
3917 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3918 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-display-outline-path&sr=1][Find modifications in git logs]]
3920 : Display the current outline path in the echo area.
3922 : If FILE is non-nil, prepend the output with the file name.
3923 : If CURRENT is non-nil, append the current heading to the output.
3924 : SEPARATOR is passed through to `org-format-outline-path'. It separates
3925 : the different parts of the path and defaults to "/".
3926 : If JUST-RETURN-STRING is non-nil, return a string, don't display a message.
3927 ** org-columns-menu =(event)=
3929 :CUSTOM_ID: org-columns-menu
3932 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
3933 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-menu&sr=1][Find modifications in git logs]]
3936 ** org-table-fedit-ref-left
3938 :CUSTOM_ID: org-table-fedit-ref-left
3941 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3942 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-ref-left&sr=1][Find modifications in git logs]]
3944 : Shift the reference at point one field to the left.
3945 ** org-backward-heading-same-level =(arg &optional invisible-ok)=
3947 :CUSTOM_ID: org-backward-heading-same-level
3950 - *Access:* ~C-c C-b, <menu-bar> <Org> <Navigate Headings> <Previous Same Level>~
3951 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3952 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-backward-heading-same-level&sr=1][Find modifications in git logs]]
3954 : Move backward to the ARG'th subheading at same level as this one.
3955 : Stop at the first and last subheadings of a superior heading.
3956 ** org-table-import =(file arg)=
3958 :CUSTOM_ID: org-table-import
3961 - *Access:* ~<menu-bar> <Tbl> <Import from File>~
3962 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
3963 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-import&sr=1][Find modifications in git logs]]
3965 : Import FILE as a table.
3966 : The file is assumed to be tab-separated. Such files can be produced by most
3967 : spreadsheet and database applications. If no tabs (at least one per line)
3968 : are found, lines will be split on whitespace into fields.
3969 ** org-force-self-insert =(N)=
3971 :CUSTOM_ID: org-force-self-insert
3975 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3976 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-force-self-insert&sr=1][Find modifications in git logs]]
3978 : Needed to enforce self-insert under remapping.
3979 ** org-toggle-item =(arg)=
3981 :CUSTOM_ID: org-toggle-item
3984 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
3985 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-item&sr=1][Find modifications in git logs]]
3987 : Convert headings or normal lines to items, items to normal lines.
3988 : If there is no active region, only the current line is considered.
3990 : If the first non blank line in the region is a headline, convert
3991 : all headlines to items, shifting text accordingly.
3993 : If it is an item, convert all items to normal lines.
3995 : If it is normal text, change region into a list of items.
3996 : With a prefix argument ARG, change the region in a single item.
3997 ** org-shiftmetaup =(&optional arg)=
3999 :CUSTOM_ID: org-shiftmetaup
4002 - *Access:* ~<M-S-up>, <menu-bar> <Org> <Edit Structure> <Move Subtree Up>, <menu-bar> <Tbl> <Row> <Delete Row>~
4003 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4004 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaup&sr=1][Find modifications in git logs]]
4006 : Move subtree up or kill table row.
4007 : Calls `org-move-subtree-up' or `org-table-kill-row' or
4008 : `org-move-item-up' or `org-timestamp-up', depending on context.
4009 : See the individual commands for more information.
4010 ** org-capture-import-remember-templates
4012 :CUSTOM_ID: org-capture-import-remember-templates
4015 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
4016 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-import-remember-templates&sr=1][Find modifications in git logs]]
4018 : Set `org-capture-templates' to be similar to `org-remember-templates'.
4019 ** org-agenda-holidays
4021 :CUSTOM_ID: org-agenda-holidays
4024 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4025 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-holidays&sr=1][Find modifications in git logs]]
4027 : Display the holidays for the 3 months around the cursor date.
4028 ** org-agenda-todo-nextset
4030 :CUSTOM_ID: org-agenda-todo-nextset
4033 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4034 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-nextset&sr=1][Find modifications in git logs]]
4036 : Switch TODO entry to next sequence.
4037 ** org-calc-current-TBLFM =(&optional arg)=
4039 :CUSTOM_ID: org-calc-current-TBLFM
4042 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4043 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calc-current-TBLFM&sr=1][Find modifications in git logs]]
4045 : Apply the #+TBLFM in the line to the table.
4046 ** org-toggle-tags-groups
4048 :CUSTOM_ID: org-toggle-tags-groups
4051 - *Access:* ~C-c C-x q~
4052 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4053 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-tags-groups&sr=1][Find modifications in git logs]]
4055 : Toggle support for group tags.
4056 : Support for group tags is controlled by the option
4057 : `org-group-tags', which is non-nil by default.
4058 ** org-timer-set-timer =(&optional opt)=
4060 :CUSTOM_ID: org-timer-set-timer
4063 - *Access:* ~C-c C-x ;~
4064 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
4065 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-set-timer&sr=1][Find modifications in git logs]]
4067 : Prompt for a duration and set a timer.
4069 : If `org-timer-default-timer' is not zero, suggest this value as
4070 : the default duration for the timer. If a timer is already set,
4071 : prompt the user if she wants to replace it.
4073 : Called with a numeric prefix argument, use this numeric value as
4074 : the duration of the timer.
4076 : Called with a `C-u' prefix arguments, use `org-timer-default-timer'
4077 : without prompting the user for a duration.
4079 : With two `C-u' prefix arguments, use `org-timer-default-timer'
4080 : without prompting the user for a duration and automatically
4081 : replace any running timer.
4082 ** org-indent-indent-buffer
4084 :CUSTOM_ID: org-indent-indent-buffer
4087 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
4088 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-indent-buffer&sr=1][Find modifications in git logs]]
4090 : Add indentation properties to the accessible part of the buffer.
4093 :CUSTOM_ID: org-customize
4096 - *Access:* ~<menu-bar> <Org> <Customize> <Browse Org Group>~
4097 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4098 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-customize&sr=1][Find modifications in git logs]]
4100 : Call the customize function with org as argument.
4101 ** org-agenda-year-view =(&optional year)=
4103 :CUSTOM_ID: org-agenda-year-view
4106 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4107 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-year-view&sr=1][Find modifications in git logs]]
4109 : Switch to yearly view for agenda.
4110 : With argument YEAR, switch to that year.
4111 : If MONTH has more then 2 digits, only the last two encode the
4112 : month. Any digits before this encode a year. So 200712 means
4113 : December year 2007. Years in the range 1938-2037 can also be
4114 : written as 2-digit years.
4115 ** org-attach-delete-one =(&optional file)=
4117 :CUSTOM_ID: org-attach-delete-one
4120 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
4121 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-delete-one&sr=1][Find modifications in git logs]]
4123 : Delete a single attachment.
4124 ** org-shifttab =(&optional arg)=
4126 :CUSTOM_ID: org-shifttab
4129 - *Access:* ~<backtab>, <S-tab>, <S-iso-lefttab>, <menu-bar> <Tbl> <Previous Field>, <menu-bar> <Org> <Show/Hide> <Cycle Global Visibility>~
4130 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4131 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shifttab&sr=1][Find modifications in git logs]]
4133 : Global visibility cycling or move to previous table field.
4134 : Call `org-table-previous-field' within a table.
4135 : When ARG is nil, cycle globally through visibility states.
4136 : When ARG is a numeric prefix, show contents of this level.
4137 ** org-cdlatex-underscore-caret =(&optional arg)=
4139 :CUSTOM_ID: org-cdlatex-underscore-caret
4142 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4143 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cdlatex-underscore-caret&sr=1][Find modifications in git logs]]
4145 : Execute `cdlatex-sub-superscript' in LaTeX fragments.
4146 : Revert to the normal definition outside of these fragments.
4147 ** org-table-wrap-region =(arg)=
4149 :CUSTOM_ID: org-table-wrap-region
4152 - *Access:* ~<menu-bar> <Tbl> <Rectangle> <Fill Rectangle>~
4153 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4154 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-wrap-region&sr=1][Find modifications in git logs]]
4156 : Wrap several fields in a column like a paragraph.
4157 : This is useful if you'd like to spread the contents of a field over several
4158 : lines, in order to keep the table compact.
4160 : If there is an active region, and both point and mark are in the same column,
4161 : the text in the column is wrapped to minimum width for the given number of
4162 : lines. Generally, this makes the table more compact. A prefix ARG may be
4163 : used to change the number of desired lines. For example, `C-2 M-x org-table-wrap'
4164 : formats the selected text to two lines. If the region was longer than two
4165 : lines, the remaining lines remain empty. A negative prefix argument reduces
4166 : the current number of lines by that amount. The wrapped text is pasted back
4167 : into the table. If you formatted it to more lines than it was before, fields
4168 : further down in the table get overwritten - so you might need to make space in
4171 : If there is no region, the current field is split at the cursor position and
4172 : the text fragment to the right of the cursor is prepended to the field one
4175 : If there is no region, but you specify a prefix ARG, the current field gets
4176 : blank, and the content is appended to the field above.
4177 ** org-org-export-as-org =(&optional async subtreep visible-only ext-plist)=
4179 :CUSTOM_ID: org-org-export-as-org
4182 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-org.el;hb=HEAD][ox-org.el]]
4183 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-org-export-as-org&sr=1][Find modifications in git logs]]
4185 : Export current buffer to an Org buffer.
4187 : If narrowing is active in the current buffer, only export its
4190 : If a region is active, export that region.
4192 : A non-nil optional argument ASYNC means the process should happen
4193 : asynchronously. The resulting buffer should be accessible
4194 : through the `org-export-stack' interface.
4196 : When optional argument SUBTREEP is non-nil, export the sub-tree
4197 : at point, extracting information from the headline properties
4200 : When optional argument VISIBLE-ONLY is non-nil, don't export
4201 : contents of hidden elements.
4203 : EXT-PLIST, when provided, is a property list with external
4204 : parameters overriding Org default settings, but still inferior to
4205 : file-local settings.
4207 : Export is done in a buffer named "*Org ORG Export*", which will
4208 : be displayed when `org-export-show-temporary-export-buffer' is
4210 ** org-todo-list =(&optional arg)=
4212 :CUSTOM_ID: org-todo-list
4215 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Global TODO list>~
4216 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4217 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-list&sr=1][Find modifications in git logs]]
4219 : Show all (not done) TODO entries from all agenda file in a single list.
4220 : The prefix arg can be used to select a specific TODO keyword and limit
4221 : the list to these. When using C-u, you will be prompted
4222 : for a keyword. A numeric prefix directly selects the Nth keyword in
4223 : `org-todo-keywords-1'.
4224 ** org-agenda-diary-entry
4226 :CUSTOM_ID: org-agenda-diary-entry
4229 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4230 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-diary-entry&sr=1][Find modifications in git logs]]
4232 : Make a diary entry, like the `i' command from the calendar.
4233 : All the standard commands work: block, weekly etc.
4234 : When `org-agenda-diary-file' points to a file,
4235 : `org-agenda-diary-entry-in-org-file' is called instead to create
4236 : entries in that Org-mode file.
4237 ** org-footnote-goto-previous-reference =(label)=
4239 :CUSTOM_ID: org-footnote-goto-previous-reference
4242 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
4243 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-goto-previous-reference&sr=1][Find modifications in git logs]]
4245 : Find the first closest (to point) reference of footnote with label LABEL.
4246 ** org-mouse-show-overview
4248 :CUSTOM_ID: org-mouse-show-overview
4251 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
4252 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-show-overview&sr=1][Find modifications in git logs]]
4254 : Change visibility of current org buffer to first-level headlines only.
4255 ** org-toggle-sticky-agenda =(&optional arg)=
4257 :CUSTOM_ID: org-toggle-sticky-agenda
4260 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4261 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-sticky-agenda&sr=1][Find modifications in git logs]]
4263 : Toggle `org-agenda-sticky'.
4264 ** org-delete-property-globally =(property)=
4266 :CUSTOM_ID: org-delete-property-globally
4269 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4270 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-delete-property-globally&sr=1][Find modifications in git logs]]
4272 : Remove PROPERTY globally, from all entries.
4273 ** org-reveal =(&optional siblings)=
4275 :CUSTOM_ID: org-reveal
4278 - *Access:* ~C-c C-r, <menu-bar> <Org> <Show/Hide> <Reveal Context>~
4279 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4280 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reveal&sr=1][Find modifications in git logs]]
4282 : Show current entry, hierarchy above it, and the following headline.
4283 : This can be used to show a consistent set of context around locations
4284 : exposed with `org-show-hierarchy-above' or `org-show-following-heading'
4285 : not t for the search context.
4287 : With optional argument SIBLINGS, on each level of the hierarchy all
4288 : siblings are shown. This repairs the tree structure to what it would
4289 : look like when opened with hierarchical calls to `org-cycle'.
4290 : With double optional argument C-u C-u, go to the parent and show the
4292 ** org-md-convert-region-to-md
4294 :CUSTOM_ID: org-md-convert-region-to-md
4297 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-md.el;hb=HEAD][ox-md.el]]
4298 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-md-convert-region-to-md&sr=1][Find modifications in git logs]]
4300 : Assume the current region has org-mode syntax, and convert it to Markdown.
4301 : This can be used in any buffer. For example, you can write an
4302 : itemized list in org-mode syntax in a Markdown buffer and use
4303 : this command to convert it.
4306 :CUSTOM_ID: org-attach-sync
4309 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
4310 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-sync&sr=1][Find modifications in git logs]]
4312 : Synchronize the current tasks with its attachments.
4313 : This can be used after files have been added externally.
4314 ** org-agenda-priority-up
4316 :CUSTOM_ID: org-agenda-priority-up
4319 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4320 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-priority-up&sr=1][Find modifications in git logs]]
4322 : Increase the priority of line at point, also in Org-mode file.
4323 ** org-entities-create-table
4325 :CUSTOM_ID: org-entities-create-table
4328 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-entities.el;hb=HEAD][org-entities.el]]
4329 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-entities-create-table&sr=1][Find modifications in git logs]]
4331 : Create an Org mode table with all entities.
4332 ** org-clock-goto =(&optional select)=
4334 :CUSTOM_ID: org-clock-goto
4337 - *Access:* ~C-c C-x C-j, <menu-bar> <Org> <Logging work> <Goto running clock>~
4338 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
4339 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-goto&sr=1][Find modifications in git logs]]
4341 : Go to the currently clocked-in entry, or to the most recently clocked one.
4342 : With prefix arg SELECT, offer recently clocked tasks for selection.
4343 ** org-agenda-show-the-flagging-note
4345 :CUSTOM_ID: org-agenda-show-the-flagging-note
4348 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4349 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-the-flagging-note&sr=1][Find modifications in git logs]]
4351 : Display the flagging note in the other window.
4352 : When called a second time in direct sequence, offer to remove the FLAGGING
4353 : tag and (if present) the flagging note.
4354 ** org-table-move-column =(&optional left)=
4356 :CUSTOM_ID: org-table-move-column
4359 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4360 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-column&sr=1][Find modifications in git logs]]
4362 : Move the current column to the right. With arg LEFT, move to the left.
4363 ** org-ascii-export-to-ascii =(&optional async subtreep visible-only body-only ext-plist)=
4365 :CUSTOM_ID: org-ascii-export-to-ascii
4368 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
4369 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-export-to-ascii&sr=1][Find modifications in git logs]]
4371 : Export current buffer to a text file.
4373 : If narrowing is active in the current buffer, only export its
4376 : If a region is active, export that region.
4378 : A non-nil optional argument ASYNC means the process should happen
4379 : asynchronously. The resulting file should be accessible through
4380 : the `org-export-stack' interface.
4382 : When optional argument SUBTREEP is non-nil, export the sub-tree
4383 : at point, extracting information from the headline properties
4386 : When optional argument VISIBLE-ONLY is non-nil, don't export
4387 : contents of hidden elements.
4389 : When optional argument BODY-ONLY is non-nil, strip title and
4390 : table of contents from output.
4392 : EXT-PLIST, when provided, is a property list with external
4393 : parameters overriding Org default settings, but still inferior to
4394 : file-local settings.
4396 : Return output file's name.
4397 ** org-table-next-field
4399 :CUSTOM_ID: org-table-next-field
4402 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4403 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-next-field&sr=1][Find modifications in git logs]]
4405 : Go to the next field in the current table, creating new lines as needed.
4406 : Before doing so, re-align the table if necessary.
4407 ** org-table-end-of-field =(&optional n)=
4409 :CUSTOM_ID: org-table-end-of-field
4412 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4413 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-end-of-field&sr=1][Find modifications in git logs]]
4415 : Move to the beginning of the current table field.
4416 : If already at or before the beginning, move to the beginning of the
4418 : With numeric argument N, move N-1 fields backward first.
4419 ** org-table-paste-rectangle
4421 :CUSTOM_ID: org-table-paste-rectangle
4424 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4425 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-paste-rectangle&sr=1][Find modifications in git logs]]
4427 : Paste a rectangular region into a table.
4428 : The upper right corner ends up in the current field. All involved fields
4429 : will be overwritten. If the rectangle does not fit into the present table,
4430 : the table is enlarged as needed. The process ignores horizontal separator
4432 ** org-columns-widen =(arg)=
4434 :CUSTOM_ID: org-columns-widen
4437 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
4438 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-widen&sr=1][Find modifications in git logs]]
4440 : Make the column wider by ARG characters.
4441 ** org-babel-demarcate-block =(&optional arg)=
4443 :CUSTOM_ID: org-babel-demarcate-block
4446 - *Access:* ~C-c C-v d, C-c C-v C-d~
4447 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
4448 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-demarcate-block&sr=1][Find modifications in git logs]]
4450 : Wrap or split the code in the region or on the point.
4451 : When called from inside of a code block the current block is
4452 : split. When called from outside of a code block a new code block
4453 : is created. In both cases if the region is demarcated and if the
4454 : region is not active then the point is demarcated.
4455 ** org-edit-src-continue =(e)=
4457 :CUSTOM_ID: org-edit-src-continue
4460 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
4461 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-continue&sr=1][Find modifications in git logs]]
4463 : Continue editing source blocks.
4464 ** org-forward-element
4466 :CUSTOM_ID: org-forward-element
4470 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4471 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-forward-element&sr=1][Find modifications in git logs]]
4473 : Move forward by one element.
4474 : Move to the next element at the same level, when possible.
4475 ** org-set-tags =(&optional arg just-align)=
4477 :CUSTOM_ID: org-set-tags
4480 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4481 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-tags&sr=1][Find modifications in git logs]]
4483 : Set the tags for the current headline.
4484 : With prefix ARG, realign all tags in headings in the current buffer.
4485 ** org-edit-src-code =(&optional context code edit-buffer-name)=
4487 :CUSTOM_ID: org-edit-src-code
4490 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
4491 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-code&sr=1][Find modifications in git logs]]
4493 : Edit the source CODE block at point.
4494 : The code is copied to a separate buffer and the appropriate mode
4495 : is turned on. When done, exit with M-x org-edit-src-exit. This will
4496 : remove the original code in the Org buffer, and replace it with the
4497 : edited version. An optional argument CONTEXT is used by M-x org-edit-src-save
4498 : when calling this function. See `org-src-window-setup' to configure
4499 : the display of windows containing the Org buffer and the code buffer.
4500 ** org-babel-execute-buffer =(&optional arg)=
4502 :CUSTOM_ID: org-babel-execute-buffer
4505 - *Access:* ~C-c C-v b, C-c C-v C-b~
4506 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
4507 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-execute-buffer&sr=1][Find modifications in git logs]]
4509 : Execute source code blocks in a buffer.
4510 : Call `org-babel-execute-src-block' on every source block in
4511 : the current buffer.
4512 ** org-ascii-export-as-ascii =(&optional async subtreep visible-only body-only ext-plist)=
4514 :CUSTOM_ID: org-ascii-export-as-ascii
4517 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
4518 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-export-as-ascii&sr=1][Find modifications in git logs]]
4520 : Export current buffer to a text buffer.
4522 : If narrowing is active in the current buffer, only export its
4525 : If a region is active, export that region.
4527 : A non-nil optional argument ASYNC means the process should happen
4528 : asynchronously. The resulting buffer should be accessible
4529 : through the `org-export-stack' interface.
4531 : When optional argument SUBTREEP is non-nil, export the sub-tree
4532 : at point, extracting information from the headline properties
4535 : When optional argument VISIBLE-ONLY is non-nil, don't export
4536 : contents of hidden elements.
4538 : When optional argument BODY-ONLY is non-nil, strip title and
4539 : table of contents from output.
4541 : EXT-PLIST, when provided, is a property list with external
4542 : parameters overriding Org default settings, but still inferior to
4543 : file-local settings.
4545 : Export is done in a buffer named "*Org ASCII Export*", which
4546 : will be displayed when `org-export-show-temporary-export-buffer'
4548 ** org-icalendar-export-to-ics =(&optional async subtreep visible-only body-only)=
4550 :CUSTOM_ID: org-icalendar-export-to-ics
4553 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
4554 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-export-to-ics&sr=1][Find modifications in git logs]]
4556 : Export current buffer to an iCalendar file.
4558 : If narrowing is active in the current buffer, only export its
4561 : If a region is active, export that region.
4563 : A non-nil optional argument ASYNC means the process should happen
4564 : asynchronously. The resulting file should be accessible through
4565 : the `org-export-stack' interface.
4567 : When optional argument SUBTREEP is non-nil, export the sub-tree
4568 : at point, extracting information from the headline properties
4571 : When optional argument VISIBLE-ONLY is non-nil, don't export
4572 : contents of hidden elements.
4574 : When optional argument BODY-ONLY is non-nil, only write code
4575 : between "BEGIN:VCALENDAR" and "END:VCALENDAR".
4577 : Return ICS file name.
4578 ** org-edit-src-exit =(&optional context)=
4580 :CUSTOM_ID: org-edit-src-exit
4583 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
4584 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-exit&sr=1][Find modifications in git logs]]
4586 : Exit special edit and protect problematic lines.
4587 ** org-agenda-filter-by-regexp =(strip)=
4589 :CUSTOM_ID: org-agenda-filter-by-regexp
4592 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4593 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-by-regexp&sr=1][Find modifications in git logs]]
4595 : Filter agenda entries by a regular expression.
4596 : Regexp filters are cumulative.
4597 : With no prefix argument, keep entries matching the regexp.
4598 : With one prefix argument, filter out entries matching the regexp.
4599 : With two prefix arguments, remove the regexp filters.
4600 ** org-capture-goto-target =(&optional template-key)=
4602 :CUSTOM_ID: org-capture-goto-target
4605 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
4606 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-goto-target&sr=1][Find modifications in git logs]]
4608 : Go to the target location of a capture template.
4609 : The user is queried for the template.
4610 ** org-babel-lob-execute-maybe
4612 :CUSTOM_ID: org-babel-lob-execute-maybe
4615 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-lob.el;hb=HEAD][ob-lob.el]]
4616 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-lob-execute-maybe&sr=1][Find modifications in git logs]]
4618 : Execute a Library of Babel source block, if appropriate.
4619 : Detect if this is context for a Library Of Babel source block and
4620 : if so then run the appropriate source block from the Library.
4621 ** org-agenda-log-mode =(&optional special)=
4623 :CUSTOM_ID: org-agenda-log-mode
4626 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4627 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-log-mode&sr=1][Find modifications in git logs]]
4629 : Toggle log mode in an agenda buffer.
4630 : With argument SPECIAL, show all possible log items, not only the ones
4631 : configured in `org-agenda-log-mode-items'.
4632 : With a double `C-u' prefix arg, show *only* log items, nothing else.
4633 ** org-agenda-show-clocking-issues
4635 :CUSTOM_ID: org-agenda-show-clocking-issues
4638 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4639 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-clocking-issues&sr=1][Find modifications in git logs]]
4641 : Add overlays, showing issues with clocking.
4642 : See also the user option `org-agenda-clock-consistency-checks'.
4643 ** org-src-mode =(&optional arg)=
4645 :CUSTOM_ID: org-src-mode
4648 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
4649 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-mode&sr=1][Find modifications in git logs]]
4651 : Minor mode for language major mode buffers generated by org.
4652 : This minor mode is turned on in two situations:
4653 : - when editing a source code snippet with "C-c '".
4654 : - When formatting a source code snippet for export with htmlize.
4655 : There is a mode hook, and keybindings for `org-edit-src-exit' and
4656 : `org-edit-src-save'
4657 ** org-timestamp-down-day =(&optional arg)=
4659 :CUSTOM_ID: org-timestamp-down-day
4662 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4663 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timestamp-down-day&sr=1][Find modifications in git logs]]
4665 : Decrease the date in the time stamp by one day.
4666 : With prefix ARG, change that many days.
4667 ** org-archive-subtree-default-with-confirmation
4669 :CUSTOM_ID: org-archive-subtree-default-with-confirmation
4672 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
4673 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-subtree-default-with-confirmation&sr=1][Find modifications in git logs]]
4675 : Archive the current subtree with the default command.
4676 : This command is set with the variable `org-archive-default-command'.
4677 ** org-tree-to-indirect-buffer =(&optional arg)=
4679 :CUSTOM_ID: org-tree-to-indirect-buffer
4682 - *Access:* ~C-c C-x b, <menu-bar> <Org> <Show/Hide> <Subtree to indirect buffer>~
4683 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4684 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tree-to-indirect-buffer&sr=1][Find modifications in git logs]]
4686 : Create indirect buffer and narrow it to current subtree.
4687 : With a numerical prefix ARG, go up to this level and then take that tree.
4688 : If ARG is negative, go up that many levels.
4690 : If `org-indirect-buffer-display' is not `new-frame', the command removes the
4691 : indirect buffer previously made with this command, to avoid proliferation of
4692 : indirect buffers. However, when you call the command with a C-u prefix, or
4693 : when `org-indirect-buffer-display' is `new-frame', the last buffer
4694 : is kept so that you can work with several indirect buffers at the same time.
4695 : If `org-indirect-buffer-display' is `dedicated-frame', the C-u prefix also
4696 : requests that a new frame be made for the new buffer, so that the dedicated
4697 : frame is not changed.
4698 ** org-cdlatex-math-modify =(&optional arg)=
4700 :CUSTOM_ID: org-cdlatex-math-modify
4703 - *Access:* ~<menu-bar> <Org> <LaTeX> <Modify math symbol>~
4704 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4705 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cdlatex-math-modify&sr=1][Find modifications in git logs]]
4707 : Execute `cdlatex-math-modify' in LaTeX fragments.
4708 : Revert to the normal definition outside of these fragments.
4709 ** org-insert-subheading =(arg)=
4711 :CUSTOM_ID: org-insert-subheading
4714 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4715 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-subheading&sr=1][Find modifications in git logs]]
4717 : Insert a new subheading and demote it.
4718 : Works for outline headings and for plain lists alike.
4719 ** org-table-overlay-coordinates
4721 :CUSTOM_ID: org-table-overlay-coordinates
4724 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
4725 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-overlay-coordinates&sr=1][Find modifications in git logs]]
4727 : Add overlays to the table at point, to show row/column coordinates.
4728 ** org-agenda-cycle-show =(&optional n)=
4730 :CUSTOM_ID: org-agenda-cycle-show
4733 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4734 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-cycle-show&sr=1][Find modifications in git logs]]
4736 : Show the current entry in another window, with default settings.
4737 : Default settings are taken from `org-show-hierarchy-above' and siblings.
4738 : When use repeatedly in immediate succession, the remote entry will cycle
4739 : through visibility
4741 : children -> subtree -> folded
4743 : When called with a numeric prefix arg, that arg will be passed through to
4744 : `org-agenda-show-1'. For the interpretation of that argument, see the
4745 : docstring of `org-agenda-show-1'.
4746 ** org-drag-element-forward
4748 :CUSTOM_ID: org-drag-element-forward
4751 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4752 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-drag-element-forward&sr=1][Find modifications in git logs]]
4754 : Move forward element at point.
4755 ** org-move-item-down
4757 :CUSTOM_ID: org-move-item-down
4760 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
4761 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-move-item-down&sr=1][Find modifications in git logs]]
4763 : Move the item at point down, i.e. swap with following item.
4764 : Sub-items (items with larger indentation) are considered part of
4765 : the item, so this really moves item trees.
4766 ** org-agenda-prepare-buffers =(files)=
4768 :CUSTOM_ID: org-agenda-prepare-buffers
4771 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4772 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-prepare-buffers&sr=1][Find modifications in git logs]]
4774 : Create buffers for all agenda files, protect archived trees and comments.
4775 ** org-export-as-taskjuggler-and-open
4777 :CUSTOM_ID: org-export-as-taskjuggler-and-open
4780 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
4781 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-taskjuggler-and-open&sr=1][Find modifications in git logs]]
4783 : Export the current buffer as a TaskJuggler file and open it
4784 : with the TaskJuggler GUI.
4785 ** org-backward-element
4787 :CUSTOM_ID: org-backward-element
4791 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4792 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-backward-element&sr=1][Find modifications in git logs]]
4794 : Move backward by one element.
4795 : Move to the previous element at the same level, when possible.
4796 ** org-export-stack-mode
4798 :CUSTOM_ID: org-export-stack-mode
4801 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
4802 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-stack-mode&sr=1][Find modifications in git logs]]
4804 : Mode for displaying asynchronous export stack.
4806 : Type M-x org-export-stack to visualize the asynchronous export
4809 : In an Org Export Stack buffer, use RET to view export output
4810 : on current line, d to remove it from the stack and C to clear
4813 : Removing entries in an Org Export Stack buffer doesn't affect
4814 : files or buffers, only the display.
4819 : RET org-export-stack-view
4823 : C org-export-stack-clear
4824 : d org-export-stack-remove
4827 : v org-export-stack-view
4830 : <up> previous-line
4834 : In addition to any hooks its parent mode `special-mode' might have run,
4835 : this mode runs the hook `org-export-stack-mode-hook', as the final step
4836 : during initialization.
4837 ** org-footnote-action =(&optional special)=
4839 :CUSTOM_ID: org-footnote-action
4842 - *Access:* ~C-c C-x f, <menu-bar> <Org> <Editing> <Footnote new/jump>~
4843 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
4844 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-action&sr=1][Find modifications in git logs]]
4846 : Do the right thing for footnotes.
4848 : When at a footnote reference, jump to the definition.
4850 : When at a definition, jump to the references if they exist, offer
4851 : to create them otherwise.
4853 : When neither at definition or reference, create a new footnote,
4856 : With prefix arg SPECIAL, offer additional commands in a menu.
4857 ** org-export-stack-remove =(&optional source)=
4859 :CUSTOM_ID: org-export-stack-remove
4862 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
4863 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-stack-remove&sr=1][Find modifications in git logs]]
4865 : Remove export results at point from stack.
4866 : If optional argument SOURCE is non-nil, remove it instead.
4869 :CUSTOM_ID: org-export-stack
4872 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
4873 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-stack&sr=1][Find modifications in git logs]]
4875 : Menu for asynchronous export results and running processes.
4876 ** org-agenda-filter-by-top-headline =(strip)=
4878 :CUSTOM_ID: org-agenda-filter-by-top-headline
4881 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4882 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-by-top-headline&sr=1][Find modifications in git logs]]
4884 : Keep only those lines that are descendants from the same top headline.
4885 : The top headline is that of the current line.
4886 ** org-agenda-write =(file &optional open nosettings agenda-bufname)=
4888 :CUSTOM_ID: org-agenda-write
4891 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4892 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-write&sr=1][Find modifications in git logs]]
4894 : Write the current buffer (an agenda view) as a file.
4895 : Depending on the extension of the file name, plain text (.txt),
4896 : HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
4897 : If the extension is .ics, run icalendar export over all files used
4898 : to construct the agenda and limit the export to entries listed in the
4900 : If the extension is .org, collect all subtrees corresponding to the
4901 : agenda entries and add them in an .org file.
4902 : With prefix argument OPEN, open the new file immediately.
4903 : If NOSETTINGS is given, do not scope the settings of
4904 : `org-agenda-exporter-settings' into the export commands. This is used when
4905 : the settings have already been scoped and we do not wish to overrule other,
4906 : higher priority settings.
4907 : If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write.
4908 ** org-agenda-follow-mode
4910 :CUSTOM_ID: org-agenda-follow-mode
4913 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
4914 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-follow-mode&sr=1][Find modifications in git logs]]
4916 : Toggle follow mode in an agenda buffer.
4917 ** org-shiftmetaright
4919 :CUSTOM_ID: org-shiftmetaright
4922 - *Access:* ~<M-S-right>, <menu-bar> <Org> <Edit Structure> <Demote Subtree>, <menu-bar> <Tbl> <Column> <Insert Column>~
4923 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4924 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaright&sr=1][Find modifications in git logs]]
4926 : Demote subtree or insert table column.
4927 : Calls `org-demote-subtree', `org-indent-item-tree', or
4928 : `org-table-insert-column', depending on context. See the
4929 : individual commands for more information.
4930 ** org-babel-expand-src-block-maybe
4932 :CUSTOM_ID: org-babel-expand-src-block-maybe
4935 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
4936 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-expand-src-block-maybe&sr=1][Find modifications in git logs]]
4938 : Conditionally expand a source block.
4939 : Detect if this is context for a org-babel src-block and if so
4940 : then run `org-babel-expand-src-block'.
4941 ** org-babel-execute-src-block-maybe
4943 :CUSTOM_ID: org-babel-execute-src-block-maybe
4946 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
4947 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-execute-src-block-maybe&sr=1][Find modifications in git logs]]
4949 : Conditionally execute a source block.
4950 : Detect if this is context for a Babel src-block and if so
4951 : then run `org-babel-execute-src-block'.
4952 ** org-setup-comments-handling
4954 :CUSTOM_ID: org-setup-comments-handling
4957 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4958 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-setup-comments-handling&sr=1][Find modifications in git logs]]
4961 ** org-occur =(regexp &optional keep-previous callback)=
4963 :CUSTOM_ID: org-occur
4966 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4967 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-occur&sr=1][Find modifications in git logs]]
4969 : Make a compact tree which shows all matches of REGEXP.
4970 : The tree will show the lines where the regexp matches, and all higher
4971 : headlines above the match. It will also show the heading after the match,
4972 : to make sure editing the matching entry is easy.
4973 : If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
4974 : call to `org-occur' will be kept, to allow stacking of calls to this
4976 : If CALLBACK is non-nil, it is a function which is called to confirm
4977 : that the match should indeed be shown.
4978 ** org-archive-to-archive-sibling
4980 :CUSTOM_ID: org-archive-to-archive-sibling
4983 - *Access:* ~C-c C-x A, <menu-bar> <Org> <Archive> <Move subtree to Archive sibling>~
4984 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
4985 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-to-archive-sibling&sr=1][Find modifications in git logs]]
4987 : Archive the current heading by moving it under the archive sibling.
4988 : The archive sibling is a sibling of the heading with the heading name
4989 : `org-archive-sibling-heading' and an `org-archive-tag' tag. If this
4990 : sibling does not exist, it will be created at the end of the subtree.
4991 ** org-kill-line =(&optional arg)=
4993 :CUSTOM_ID: org-kill-line
4997 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
4998 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-kill-line&sr=1][Find modifications in git logs]]
5000 : Kill line, to tags or end of line.
5001 ** org-attach-attach =(file &optional visit-dir method)=
5003 :CUSTOM_ID: org-attach-attach
5006 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
5007 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-attach&sr=1][Find modifications in git logs]]
5009 : Move/copy/link FILE into the attachment directory of the current task.
5010 : If VISIT-DIR is non-nil, visit the directory with dired.
5011 : METHOD may be `cp', `mv', `ln', or `lns' default taken from
5012 : `org-attach-method'.
5013 ** org-store-agenda-views =(&rest parameters)=
5015 :CUSTOM_ID: org-store-agenda-views
5018 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5019 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-store-agenda-views&sr=1][Find modifications in git logs]]
5021 : Store agenda views.
5022 ** org-mark-ring-push =(&optional pos buffer)=
5024 :CUSTOM_ID: org-mark-ring-push
5028 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5029 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mark-ring-push&sr=1][Find modifications in git logs]]
5031 : Put the current position or POS into the mark ring and rotate it.
5032 ** org-transpose-element
5034 :CUSTOM_ID: org-transpose-element
5038 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5039 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-transpose-element&sr=1][Find modifications in git logs]]
5041 : Transpose current and previous elements, keeping blank lines between.
5042 : Point is moved after both elements.
5043 ** org-table-edit-field =(arg)=
5045 :CUSTOM_ID: org-table-edit-field
5048 - *Access:* ~C-c `, <menu-bar> <Tbl> <Edit Field>~
5049 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5050 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-edit-field&sr=1][Find modifications in git logs]]
5052 : Edit table field in a different window.
5053 : This is mainly useful for fields that contain hidden parts.
5054 : When called with a C-u prefix, just make the full field visible so that
5055 : it can be edited in place.
5056 ** org-hide-block-toggle-maybe
5058 :CUSTOM_ID: org-hide-block-toggle-maybe
5061 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5062 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-block-toggle-maybe&sr=1][Find modifications in git logs]]
5064 : Toggle visibility of block at point.
5065 ** org-columns-edit-value =(&optional key)=
5067 :CUSTOM_ID: org-columns-edit-value
5070 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
5071 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-edit-value&sr=1][Find modifications in git logs]]
5073 : Edit the value of the property at point in column view.
5074 : Where possible, use the standard interface for changing this line.
5075 ** org-babel-check-src-block
5077 :CUSTOM_ID: org-babel-check-src-block
5080 - *Access:* ~C-c C-v c, C-c C-v C-c~
5081 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
5082 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-check-src-block&sr=1][Find modifications in git logs]]
5084 : Check for misspelled header arguments in the current code block.
5085 ** org-reset-checkbox-state-subtree
5087 :CUSTOM_ID: org-reset-checkbox-state-subtree
5090 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
5091 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reset-checkbox-state-subtree&sr=1][Find modifications in git logs]]
5093 : Reset all checkboxes in an entry subtree.
5094 ** org-table-cut-region =(beg end)=
5096 :CUSTOM_ID: org-table-cut-region
5099 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5100 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-cut-region&sr=1][Find modifications in git logs]]
5102 : Copy region in table to the clipboard and blank all relevant fields.
5103 : If there is no active region, use just the field at point.
5104 ** org-replace-region-by-html =(beg end)=
5106 :CUSTOM_ID: org-replace-region-by-html
5109 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
5110 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-replace-region-by-html&sr=1][Find modifications in git logs]]
5112 : Assume the current region has org-mode syntax, and convert it to HTML.
5113 : This can be used in any buffer. For example, you could write an
5114 : itemized list in org-mode syntax in an HTML buffer and then use this
5115 : command to convert it.
5116 ** org-agenda-capture =(&optional with-time)=
5118 :CUSTOM_ID: org-agenda-capture
5121 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5122 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-capture&sr=1][Find modifications in git logs]]
5124 : Call `org-capture' with the date at point.
5125 : With a `C-1' prefix, use the HH:MM value at point (if any) or the
5126 : current HH:MM time.
5127 ** org-columns-move-right
5129 :CUSTOM_ID: org-columns-move-right
5132 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
5133 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-move-right&sr=1][Find modifications in git logs]]
5135 : Swap this column with the one to the right.
5136 ** org-md-export-to-markdown =(&optional async subtreep visible-only)=
5138 :CUSTOM_ID: org-md-export-to-markdown
5141 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-md.el;hb=HEAD][ox-md.el]]
5142 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-md-export-to-markdown&sr=1][Find modifications in git logs]]
5144 : Export current buffer to a Markdown file.
5146 : If narrowing is active in the current buffer, only export its
5149 : If a region is active, export that region.
5151 : A non-nil optional argument ASYNC means the process should happen
5152 : asynchronously. The resulting file should be accessible through
5153 : the `org-export-stack' interface.
5155 : When optional argument SUBTREEP is non-nil, export the sub-tree
5156 : at point, extracting information from the headline properties
5159 : When optional argument VISIBLE-ONLY is non-nil, don't export
5160 : contents of hidden elements.
5162 : Return output file's name.
5163 ** org-agenda-toggle-diary
5165 :CUSTOM_ID: org-agenda-toggle-diary
5168 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5169 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-toggle-diary&sr=1][Find modifications in git logs]]
5171 : Toggle diary inclusion in an agenda buffer.
5172 ** org-time-stamp-inactive =(&optional arg)=
5174 :CUSTOM_ID: org-time-stamp-inactive
5177 - *Access:* ~C-c !, <menu-bar> <Org> <Dates and Scheduling> <Timestamp (inactive)>~
5178 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5179 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-stamp-inactive&sr=1][Find modifications in git logs]]
5181 : Insert an inactive time stamp.
5182 : An inactive time stamp is enclosed in square brackets instead of angle
5183 : brackets. It is inactive in the sense that it does not trigger agenda entries,
5184 : does not link to the calendar and cannot be changed with the S-cursor keys.
5185 : So these are more for recording a certain time/date.
5186 ** org-check-before-date =(date)=
5188 :CUSTOM_ID: org-check-before-date
5191 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5192 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-check-before-date&sr=1][Find modifications in git logs]]
5194 : Check if there are deadlines or scheduled entries before DATE.
5197 :CUSTOM_ID: org-agenda-Quit
5200 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5201 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-Quit&sr=1][Find modifications in git logs]]
5203 : Exit the agenda and kill buffers loaded by `org-agenda'.
5204 : Also restore the window configuration.
5205 ** org-compute-property-at-point
5207 :CUSTOM_ID: org-compute-property-at-point
5210 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5211 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-compute-property-at-point&sr=1][Find modifications in git logs]]
5213 : Compute the property at point.
5214 : This looks for an enclosing column format, extracts the operator and
5215 : then applies it to the property in the column format's scope.
5216 ** org-timer-pause-or-continue =(&optional stop)=
5218 :CUSTOM_ID: org-timer-pause-or-continue
5221 - *Access:* ~C-c C-x ,, <menu-bar> <Org> <Dates and Scheduling> <Pause/Continue Timer>, <menu-bar> <Org> <Dates and Scheduling> <Stop Timer>~
5222 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
5223 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-pause-or-continue&sr=1][Find modifications in git logs]]
5225 : Pause or continue the relative timer.
5226 : With prefix arg STOP, stop it entirely.
5227 ** org-babel-examplize-region =(beg end &optional results-switches)=
5229 :CUSTOM_ID: org-babel-examplize-region
5232 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
5233 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-examplize-region&sr=1][Find modifications in git logs]]
5235 : Comment out region using the inline '==' or ': ' org example quote.
5236 ** org-bibtex-read-file =(file)=
5238 :CUSTOM_ID: org-bibtex-read-file
5241 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
5242 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-read-file&sr=1][Find modifications in git logs]]
5244 : Read FILE with `org-bibtex-read-buffer'.
5245 ** org-columns-delete
5247 :CUSTOM_ID: org-columns-delete
5250 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
5251 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-delete&sr=1][Find modifications in git logs]]
5253 : Delete the column at point from columns view.
5254 ** org-sparse-tree =(&optional arg type)=
5256 :CUSTOM_ID: org-sparse-tree
5259 - *Access:* ~C-c /, <menu-bar> <Org> <Show/Hide> <Sparse Tree...>~
5260 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5261 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sparse-tree&sr=1][Find modifications in git logs]]
5263 : Create a sparse tree, prompt for the details.
5264 : This command can create sparse trees. You first need to select the type
5265 : of match used to create the tree:
5267 : t Show all TODO entries.
5268 : T Show entries with a specific TODO keyword.
5269 : m Show entries selected by a tags/property match.
5270 : p Enter a property name and its value (both with completion on existing
5271 : names/values) and show entries with that property.
5272 : r Show entries matching a regular expression (`/' can be used as well).
5273 : b Show deadlines and scheduled items before a date.
5274 : a Show deadlines and scheduled items after a date.
5275 : d Show deadlines due within `org-deadline-warning-days'.
5276 : D Show deadlines and scheduled items between a date range.
5277 ** org-content =(&optional arg)=
5279 :CUSTOM_ID: org-content
5282 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5283 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-content&sr=1][Find modifications in git logs]]
5285 : Show all headlines in the buffer, like a table of contents.
5286 : With numerical argument N, show content up to level N.
5287 ** org-insert-columns-dblock
5289 :CUSTOM_ID: org-insert-columns-dblock
5292 - *Access:* ~C-c C-x i, <menu-bar> <Org> <TAGS and Properties> <Insert Column View DBlock>~
5293 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
5294 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-columns-dblock&sr=1][Find modifications in git logs]]
5296 : Create a dynamic block capturing a column view table.
5297 ** org-tbl-menu =(event)=
5299 :CUSTOM_ID: org-tbl-menu
5302 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5303 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tbl-menu&sr=1][Find modifications in git logs]]
5306 ** org-agenda-reset-view
5308 :CUSTOM_ID: org-agenda-reset-view
5311 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5312 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-reset-view&sr=1][Find modifications in git logs]]
5314 : Switch to default view for agenda.
5315 ** org-update-statistics-cookies =(all)=
5317 :CUSTOM_ID: org-update-statistics-cookies
5321 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5322 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-update-statistics-cookies&sr=1][Find modifications in git logs]]
5324 : Update the statistics cookie, either from TODO or from checkboxes.
5325 : This should be called with the cursor in a line with a statistics cookie.
5326 ** org-agenda-priority =(&optional force-direction)=
5328 :CUSTOM_ID: org-agenda-priority
5331 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5332 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-priority&sr=1][Find modifications in git logs]]
5334 : Set the priority of line at point, also in Org-mode file.
5335 : This changes the line at point, all other lines in the agenda referring to
5336 : the same tree node, and the headline of the tree node in the Org-mode file.
5337 : Called with a universal prefix arg, show the priority instead of setting it.
5340 :CUSTOM_ID: org-next-item
5343 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
5344 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-next-item&sr=1][Find modifications in git logs]]
5346 : Move to the beginning of the next item.
5347 : Throw an error when not in a list. Also throw an error when at
5348 : last item, unless `org-list-use-circular-motion' is non-nil.
5349 ** org-yank =(&optional arg)=
5351 :CUSTOM_ID: org-yank
5355 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5356 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-yank&sr=1][Find modifications in git logs]]
5358 : Yank. If the kill is a subtree, treat it specially.
5359 : This command will look at the current kill and check if is a single
5360 : subtree, or a series of subtrees[1]. If it passes the test, and if the
5361 : cursor is at the beginning of a line or after the stars of a currently
5362 : empty headline, then the yank is handled specially. How exactly depends
5363 : on the value of the following variables, both set by default.
5365 : org-yank-folded-subtrees
5366 : When set, the subtree(s) will be folded after insertion, but only
5367 : if doing so would now swallow text after the yanked text.
5369 : org-yank-adjusted-subtrees
5370 : When set, the subtree will be promoted or demoted in order to
5371 : fit into the local outline tree structure, which means that the level
5372 : will be adjusted so that it becomes the smaller one of the two
5373 : *visible* surrounding headings.
5375 : Any prefix to this command will cause `yank' to be called directly with
5376 : no special treatment. In particular, a simple C-u prefix will just
5377 : plainly yank the text as it is.
5379 : [1] The test checks if the first non-white line is a heading
5380 : and if there are no other headings with fewer stars.
5381 ** org-agenda-kill-all-agenda-buffers
5383 :CUSTOM_ID: org-agenda-kill-all-agenda-buffers
5386 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5387 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-kill-all-agenda-buffers&sr=1][Find modifications in git logs]]
5389 : Kill all buffers in `org-agenda-mode'.
5390 : This is used when toggling sticky agendas.
5391 : You can also explicitly invoke it with `C-c a C-k'.
5392 ** org-agenda-show =(&optional full-entry)=
5394 :CUSTOM_ID: org-agenda-show
5397 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5398 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show&sr=1][Find modifications in git logs]]
5400 : Display the Org-mode file which contains the item at point.
5401 : With prefix argument FULL-ENTRY, make the entire entry visible
5402 : if it was hidden in the outline.
5403 ** org-archive-subtree =(&optional find-done)=
5405 :CUSTOM_ID: org-archive-subtree
5409 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
5410 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-subtree&sr=1][Find modifications in git logs]]
5412 : Move the current subtree to the archive.
5413 : The archive can be a certain top-level heading in the current file, or in
5414 : a different file. The tree will be moved to that location, the subtree
5415 : heading be marked DONE, and the current time will be added.
5417 : When called with prefix argument FIND-DONE, find whole trees without any
5418 : open TODO items and archive them (after getting confirmation from the user).
5419 : If the cursor is not at a headline when this command is called, try all level
5420 : 1 trees. If the cursor is on a headline, only try the direct children of
5424 :CUSTOM_ID: org-add-note
5427 - *Access:* ~C-c C-z~
5428 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5429 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-add-note&sr=1][Find modifications in git logs]]
5431 : Add a note to the current entry.
5432 : This is done in the same way as adding a state change note.
5433 ** org-table-move-row-up
5435 :CUSTOM_ID: org-table-move-row-up
5438 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5439 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-row-up&sr=1][Find modifications in git logs]]
5441 : Move table row up.
5442 ** org-at-timestamp-p =(&optional inactive-ok)=
5444 :CUSTOM_ID: org-at-timestamp-p
5447 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5448 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-at-timestamp-p&sr=1][Find modifications in git logs]]
5450 : Determine if the cursor is in or at a timestamp.
5451 ** org-agenda-convert-date
5453 :CUSTOM_ID: org-agenda-convert-date
5456 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5457 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-convert-date&sr=1][Find modifications in git logs]]
5460 ** org-cycle =(&optional arg)=
5462 :CUSTOM_ID: org-cycle
5465 - *Access:* ~<tab>, TAB, <menu-bar> <Tbl> <Next Field>, <menu-bar> <Org> <Show/Hide> <Cycle Visibility>~
5466 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5467 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle&sr=1][Find modifications in git logs]]
5469 : TAB-action and visibility cycling for Org-mode.
5471 : This is the command invoked in Org-mode by the TAB key. Its main purpose
5472 : is outline visibility cycling, but it also invokes other actions
5473 : in special contexts.
5475 : - When this function is called with a prefix argument, rotate the entire
5476 : buffer through 3 states (global cycling)
5477 : 1. OVERVIEW: Show only top-level headlines.
5478 : 2. CONTENTS: Show all headlines of all levels, but no body text.
5479 : 3. SHOW ALL: Show everything.
5480 : When called with two `C-u C-u' prefixes, switch to the startup visibility,
5481 : determined by the variable `org-startup-folded', and by any VISIBILITY
5482 : properties in the buffer.
5483 : When called with three `C-u C-u C-u' prefixed, show the entire buffer,
5484 : including any drawers.
5486 : - When inside a table, re-align the table and move to the next field.
5488 : - When point is at the beginning of a headline, rotate the subtree started
5489 : by this line through 3 different states (local cycling)
5490 : 1. FOLDED: Only the main headline is shown.
5491 : 2. CHILDREN: The main headline and the direct children are shown.
5492 : From this state, you can move to one of the children
5493 : and zoom in further.
5494 : 3. SUBTREE: Show the entire subtree, including body text.
5495 : If there is no subtree, switch directly from CHILDREN to FOLDED.
5497 : - When point is at the beginning of an empty headline and the variable
5498 : `org-cycle-level-after-item/entry-creation' is set, cycle the level
5499 : of the headline by demoting and promoting it to likely levels. This
5500 : speeds up creation document structure by pressing TAB once or several
5501 : times right after creating a new headline.
5503 : - When there is a numeric prefix, go up to a heading with level ARG, do
5504 : a `show-subtree' and return to the previous cursor position. If ARG
5505 : is negative, go up that many levels.
5507 : - When point is not at the beginning of a headline, execute the global
5508 : binding for TAB, which is re-indenting the line. See the option
5509 : `org-cycle-emulate-tab' for details.
5511 : - Special case: if point is at the beginning of the buffer and there is
5512 : no headline in line 1, this function will act as if called with prefix arg
5513 : (C-u TAB, same as S-TAB) also when called without prefix arg.
5514 : But only if also the variable `org-cycle-global-at-bob' is t.
5517 :CUSTOM_ID: org-bibtex-write
5520 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
5521 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-write&sr=1][Find modifications in git logs]]
5523 : Insert a heading built from the first element of `org-bibtex-entries'.
5524 ** org-capture =(&optional goto keys)=
5526 :CUSTOM_ID: org-capture
5530 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
5531 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture&sr=1][Find modifications in git logs]]
5533 : Capture something.
5535 : This will let you select a template from `org-capture-templates', and then
5536 : file the newly captured information. The text is immediately inserted
5537 : at the target location, and an indirect buffer is shown where you can
5538 : edit it. Pressing C-c C-c brings you back to the previous state
5539 : of Emacs, so that you can continue your work.
5541 : When called interactively with a C-u prefix argument GOTO, don't capture
5542 : anything, just go to the file/headline where the selected template
5543 : stores its notes. With a double prefix argument C-u C-u, go to the last note
5546 : When called with a `C-0' (zero) prefix, insert a template at point.
5548 : ELisp programs can set KEYS to a string associated with a template
5549 : in `org-capture-templates'. In this case, interactive selection
5552 : If `org-capture-use-agenda-date' is non-nil, capturing from the
5553 : agenda will use the date at point as the default date. Then, a
5554 : `C-1' prefix will tell the capture process to use the HH:MM time
5555 : of the day at point (if any) or the current HH:MM time.
5556 ** org-table-fedit-ref-down
5558 :CUSTOM_ID: org-table-fedit-ref-down
5561 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5562 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-ref-down&sr=1][Find modifications in git logs]]
5564 : Shift the reference at point one row/hline down.
5565 ** org-columns-remove-overlays
5567 :CUSTOM_ID: org-columns-remove-overlays
5570 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
5571 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-remove-overlays&sr=1][Find modifications in git logs]]
5573 : Remove all currently active column overlays.
5574 ** org-agenda-goto-date =(span)=
5576 :CUSTOM_ID: org-agenda-goto-date
5579 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5580 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto-date&sr=1][Find modifications in git logs]]
5582 : Jump to DATE in agenda.
5583 ** org-table-create-with-table.el
5585 :CUSTOM_ID: org-table-create-with-table.el
5588 - *Access:* ~C-c ~, <menu-bar> <Tbl> <Create/Convert from/to table.el>~
5589 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5590 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-create-with-table.el&sr=1][Find modifications in git logs]]
5592 : Use the table.el package to insert a new table.
5593 : If there is already a table at point, convert between Org-mode tables
5594 : and table.el tables.
5595 ** org-beamer-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
5597 :CUSTOM_ID: org-beamer-export-to-latex
5600 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
5601 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-export-to-latex&sr=1][Find modifications in git logs]]
5603 : Export current buffer as a Beamer presentation (tex).
5605 : If narrowing is active in the current buffer, only export its
5608 : If a region is active, export that region.
5610 : A non-nil optional argument ASYNC means the process should happen
5611 : asynchronously. The resulting file should be accessible through
5612 : the `org-export-stack' interface.
5614 : When optional argument SUBTREEP is non-nil, export the sub-tree
5615 : at point, extracting information from the headline properties
5618 : When optional argument VISIBLE-ONLY is non-nil, don't export
5619 : contents of hidden elements.
5621 : When optional argument BODY-ONLY is non-nil, only write code
5622 : between "\begin{document}" and "\end{document}".
5624 : EXT-PLIST, when provided, is a property list with external
5625 : parameters overriding Org default settings, but still inferior to
5626 : file-local settings.
5628 : Return output file's name.
5629 ** org-agenda-bulk-remove-overlays =(&optional beg end)=
5631 :CUSTOM_ID: org-agenda-bulk-remove-overlays
5634 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5635 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-remove-overlays&sr=1][Find modifications in git logs]]
5637 : Remove the mark overlays between BEG and END in the agenda buffer.
5638 : BEG and END default to the buffer limits.
5640 : This only removes the overlays, it does not remove the markers
5641 : from the list in `org-agenda-bulk-marked-entries'.
5642 ** org-babel-execute-src-block =(&optional arg info params)=
5644 :CUSTOM_ID: org-babel-execute-src-block
5647 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
5648 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-execute-src-block&sr=1][Find modifications in git logs]]
5650 : Execute the current source code block.
5651 : Insert the results of execution into the buffer. Source code
5652 : execution and the collection and formatting of results can be
5653 : controlled through a variety of header arguments.
5655 : With prefix argument ARG, force re-execution even if an existing
5656 : result cached in the buffer would otherwise have been returned.
5658 : Optionally supply a value for INFO in the form returned by
5659 : `org-babel-get-src-block-info'.
5661 : Optionally supply a value for PARAMS which will be merged with
5662 : the header arguments specified at the front of the source code
5664 ** org-deadline =(arg &optional time)=
5666 :CUSTOM_ID: org-deadline
5669 - *Access:* ~C-c C-d, <menu-bar> <Org> <Dates and Scheduling> <Deadline>~
5670 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5671 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-deadline&sr=1][Find modifications in git logs]]
5673 : Insert the "DEADLINE:" string with a timestamp to make a deadline.
5674 : With one universal prefix argument, remove any deadline from the item.
5675 : With two universal prefix arguments, prompt for a warning delay.
5676 : With argument TIME, set the deadline at the corresponding date. TIME
5677 : can either be an Org date like "2011-07-24" or a delta like "+2d".
5678 ** org-id-goto =(id)=
5680 :CUSTOM_ID: org-id-goto
5683 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
5684 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-goto&sr=1][Find modifications in git logs]]
5686 : Switch to the buffer containing the entry with id ID.
5687 : Move the cursor to that entry in that buffer.
5688 ** org-export-as-taskjuggler
5690 :CUSTOM_ID: org-export-as-taskjuggler
5693 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
5694 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-taskjuggler&sr=1][Find modifications in git logs]]
5696 : Export parts of the current buffer as a TaskJuggler file.
5697 : The exporter looks for a tree with tag, property or todo that
5698 : matches `org-export-taskjuggler-project-tag' and takes this as
5699 : the tasks for this project. The first node of this tree defines
5700 : the project properties such as project name and project period.
5701 : If there is a tree with tag, property or todo that matches
5702 : `org-export-taskjuggler-resource-tag' this three is taken as
5703 : resources for the project. If no resources are specified, a
5704 : default resource is created and allocated to the project. Also
5705 : the taskjuggler project will be created with default reports as
5706 : defined in `org-export-taskjuggler-default-reports'.
5707 ** org-agenda-show-mouse =(ev)=
5709 :CUSTOM_ID: org-agenda-show-mouse
5712 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5713 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-mouse&sr=1][Find modifications in git logs]]
5715 : Display the Org-mode file which contains the item at the mouse click.
5718 :CUSTOM_ID: org-bibtex-yank
5721 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
5722 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-yank&sr=1][Find modifications in git logs]]
5724 : If kill ring holds a bibtex entry yank it as an Org-mode headline.
5725 ** org-mouse-down-mouse =(event)=
5727 :CUSTOM_ID: org-mouse-down-mouse
5730 - *Access:* ~<down-mouse-1>~
5731 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
5732 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-down-mouse&sr=1][Find modifications in git logs]]
5735 ** org-edit-fixed-width-region
5737 :CUSTOM_ID: org-edit-fixed-width-region
5740 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
5741 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-fixed-width-region&sr=1][Find modifications in git logs]]
5743 : Edit the fixed-width ascii drawing at point.
5744 : This must be a region where each line starts with a colon followed by
5745 : a space character.
5746 : An new buffer is created and the fixed-width region is copied into it,
5747 : and the buffer is switched into `artist-mode' for editing. When done,
5748 : exit with M-x org-edit-src-exit. The edited text will then replace
5749 : the fragment in the Org-mode buffer.
5750 ** org-babel-do-key-sequence-in-edit-buffer =(key)=
5752 :CUSTOM_ID: org-babel-do-key-sequence-in-edit-buffer
5755 - *Access:* ~C-c C-v x, C-c C-v C-x~
5756 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
5757 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-do-key-sequence-in-edit-buffer&sr=1][Find modifications in git logs]]
5759 : Read key sequence and execute the command in edit buffer.
5760 : Enter a key sequence to be executed in the language major-mode
5761 : edit buffer. For example, TAB will alter the contents of the
5762 : Org-mode code block according to the effect of TAB in the
5763 : language major-mode buffer. For languages that support
5764 : interactive sessions, this can be used to send code from the Org
5765 : buffer to the session for evaluation using the native major-mode
5766 : evaluation mechanisms.
5767 ** org-src-do-key-sequence-at-code-block =(&optional key)=
5769 :CUSTOM_ID: org-src-do-key-sequence-at-code-block
5772 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
5773 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-do-key-sequence-at-code-block&sr=1][Find modifications in git logs]]
5775 : Execute key sequence at code block in the source Org buffer.
5776 : The command bound to KEY in the Org-babel key map is executed
5777 : remotely with point temporarily at the start of the code block in
5780 : This command is not bound to a key by default, to avoid conflicts
5781 : with language major mode bindings. To bind it to C-c @ in all
5782 : language major modes, you could use
5784 : (add-hook 'org-src-mode-hook
5785 : (lambda () (define-key org-src-mode-map "\C-c@"
5786 : 'org-src-do-key-sequence-at-code-block)))
5788 : In that case, for example, C-c @ t issued in code edit buffers
5789 : would tangle the current Org code block, C-c @ e would execute
5790 : the block and C-c @ h would display the other available
5791 : Org-babel commands.
5792 ** org-insert-todo-heading-respect-content =(&optional force-state)=
5794 :CUSTOM_ID: org-insert-todo-heading-respect-content
5797 - *Access:* ~<C-S-return>~
5798 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5799 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-todo-heading-respect-content&sr=1][Find modifications in git logs]]
5801 : Insert TODO heading with `org-insert-heading-respect-content' set to t.
5802 ** org-insert-drawer =(&optional arg drawer)=
5804 :CUSTOM_ID: org-insert-drawer
5807 - *Access:* ~C-c C-x d~
5808 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5809 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-drawer&sr=1][Find modifications in git logs]]
5811 : Insert a drawer at point.
5813 : Optional argument DRAWER, when non-nil, is a string representing
5814 : drawer's name. Otherwise, the user is prompted for a name.
5816 : If a region is active, insert the drawer around that region
5819 : Point is left between drawer's boundaries.
5820 ** org-agenda-schedule =(arg &optional time)=
5822 :CUSTOM_ID: org-agenda-schedule
5825 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5826 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-schedule&sr=1][Find modifications in git logs]]
5828 : Schedule the item at point.
5829 : ARG is passed through to `org-schedule'.
5830 ** org-property-next-allowed-value =(&optional previous)=
5832 :CUSTOM_ID: org-property-next-allowed-value
5835 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5836 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-next-allowed-value&sr=1][Find modifications in git logs]]
5838 : Switch to the next allowed value for this property.
5839 ** org-beginning-of-line =(&optional arg)=
5841 :CUSTOM_ID: org-beginning-of-line
5845 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5846 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beginning-of-line&sr=1][Find modifications in git logs]]
5848 : Go to the beginning of the current line. If that is invisible, continue
5849 : to a visible line beginning. This makes the function of C-a more intuitive.
5850 : If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
5851 : first attempt, and only move to after the tags when the cursor is already
5852 : beyond the end of the headline.
5855 :CUSTOM_ID: org-attach
5858 - *Access:* ~C-c C-a~
5859 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
5860 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach&sr=1][Find modifications in git logs]]
5862 : The dispatcher for attachment commands.
5863 : Shows a list of commands and prompts for another key to execute a command.
5864 ** org-agenda-bulk-unmark-all
5866 :CUSTOM_ID: org-agenda-bulk-unmark-all
5869 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
5870 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-unmark-all&sr=1][Find modifications in git logs]]
5872 : Remove all marks in the agenda buffer.
5873 : This will remove the markers and the overlays.
5874 ** org-shiftmetaleft
5876 :CUSTOM_ID: org-shiftmetaleft
5879 - *Access:* ~<M-S-left>, <menu-bar> <Org> <Edit Structure> <Promote Subtree>, <menu-bar> <Tbl> <Column> <Delete Column>~
5880 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5881 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetaleft&sr=1][Find modifications in git logs]]
5883 : Promote subtree or delete table column.
5884 : Calls `org-promote-subtree', `org-outdent-item-tree', or
5885 : `org-table-delete-column', depending on context. See the
5886 : individual commands for more information.
5887 ** org-paste-special =(arg)=
5889 :CUSTOM_ID: org-paste-special
5892 - *Access:* ~C-c C-x C-y, <menu-bar> <Org> <Edit Structure> <Paste Subtree>, <menu-bar> <Tbl> <Rectangle> <Paste Rectangle>~
5893 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5894 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-paste-special&sr=1][Find modifications in git logs]]
5896 : Paste rectangular region into table, or past subtree relative to level.
5897 : Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
5898 : See the individual commands for more information.
5899 ** org-self-insert-command =(N)=
5901 :CUSTOM_ID: org-self-insert-command
5904 - *Access:* ~SPC..~, ...~
5905 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5906 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-self-insert-command&sr=1][Find modifications in git logs]]
5908 : Like `self-insert-command', use overwrite-mode for whitespace in tables.
5909 : If the cursor is in a table looking at whitespace, the whitespace is
5910 : overwritten, and the table is not marked as requiring realignment.
5911 ** org-table-fedit-scroll-down =(N)=
5913 :CUSTOM_ID: org-table-fedit-scroll-down
5916 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5917 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-scroll-down&sr=1][Find modifications in git logs]]
5920 ** org-encrypt-entry
5922 :CUSTOM_ID: org-encrypt-entry
5925 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
5926 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-encrypt-entry&sr=1][Find modifications in git logs]]
5928 : Encrypt the content of the current headline.
5929 ** org-table-get-stored-formulas =(&optional noerror)=
5931 :CUSTOM_ID: org-table-get-stored-formulas
5934 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
5935 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-get-stored-formulas&sr=1][Find modifications in git logs]]
5937 : Return an alist with the stored formulas directly after current table.
5938 ** org-feed-update =(feed &optional retrieve-only)=
5940 :CUSTOM_ID: org-feed-update
5943 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
5944 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-update&sr=1][Find modifications in git logs]]
5946 : Get inbox items from FEED.
5947 : FEED can be a string with an association in `org-feed-alist', or
5948 : it can be a list structured like an entry in `org-feed-alist'.
5949 ** org-beamer-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
5951 :CUSTOM_ID: org-beamer-export-as-latex
5954 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
5955 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-export-as-latex&sr=1][Find modifications in git logs]]
5957 : Export current buffer as a Beamer buffer.
5959 : If narrowing is active in the current buffer, only export its
5962 : If a region is active, export that region.
5964 : A non-nil optional argument ASYNC means the process should happen
5965 : asynchronously. The resulting buffer should be accessible
5966 : through the `org-export-stack' interface.
5968 : When optional argument SUBTREEP is non-nil, export the sub-tree
5969 : at point, extracting information from the headline properties
5972 : When optional argument VISIBLE-ONLY is non-nil, don't export
5973 : contents of hidden elements.
5975 : When optional argument BODY-ONLY is non-nil, only write code
5976 : between "\begin{document}" and "\end{document}".
5978 : EXT-PLIST, when provided, is a property list with external
5979 : parameters overriding Org default settings, but still inferior to
5980 : file-local settings.
5982 : Export is done in a buffer named "*Org BEAMER Export*", which
5983 : will be displayed when `org-export-show-temporary-export-buffer'
5985 ** org-copy-visible =(beg end)=
5987 :CUSTOM_ID: org-copy-visible
5990 - *Access:* ~C-c C-x v, <menu-bar> <Org> <Edit Structure> <Copy visible text>~
5991 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
5992 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-copy-visible&sr=1][Find modifications in git logs]]
5994 : Copy the visible parts of the region.
5997 :CUSTOM_ID: org-cut-special
6000 - *Access:* ~C-c C-x C-w, <menu-bar> <Org> <Edit Structure> <Cut Subtree>, <menu-bar> <Tbl> <Rectangle> <Cut Rectangle>~
6001 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6002 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cut-special&sr=1][Find modifications in git logs]]
6004 : Cut region in table or cut current subtree.
6005 : Calls `org-table-copy' or `org-cut-subtree', depending on context.
6006 : See the individual commands for more information.
6007 ** org-drag-line-backward =(arg)=
6009 :CUSTOM_ID: org-drag-line-backward
6012 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6013 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-drag-line-backward&sr=1][Find modifications in git logs]]
6015 : Drag the line at point ARG lines backward.
6016 ** org-icalendar-combine-agenda-files =(&optional async)=
6018 :CUSTOM_ID: org-icalendar-combine-agenda-files
6021 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
6022 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-combine-agenda-files&sr=1][Find modifications in git logs]]
6024 : Combine all agenda files into a single iCalendar file.
6026 : A non-nil optional argument ASYNC means the process should happen
6027 : asynchronously. The resulting file should be accessible through
6028 : the `org-export-stack' interface.
6030 : The file is stored under the name chosen in
6031 : `org-icalendar-combined-agenda-file'.
6032 ** org-table-iterate =(&optional arg)=
6034 :CUSTOM_ID: org-table-iterate
6037 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6038 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-iterate&sr=1][Find modifications in git logs]]
6040 : Recalculate the table until it does not change anymore.
6041 : The maximum number of iterations is 10, but you can choose a different value
6042 : with the prefix ARG.
6043 ** org-shiftcontrolleft
6045 :CUSTOM_ID: org-shiftcontrolleft
6048 - *Access:* ~<C-S-left>~
6049 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6050 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftcontrolleft&sr=1][Find modifications in git logs]]
6052 : Switch to previous TODO set.
6053 ** org-revert-all-org-buffers
6055 :CUSTOM_ID: org-revert-all-org-buffers
6058 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6059 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-revert-all-org-buffers&sr=1][Find modifications in git logs]]
6061 : Revert all Org-mode buffers.
6062 : Prompt for confirmation when there are unsaved changes.
6063 : Be sure you know what you are doing before letting this function
6064 : overwrite your changes.
6066 : This function is useful in a setup where one tracks org files
6067 : with a version control system, to revert on one machine after pulling
6068 : changes from another. I believe the procedure must be like this:
6070 : 1. M-x org-save-all-org-buffers
6071 : 2. Pull changes from the other machine, resolve conflicts
6072 : 3. M-x org-revert-all-org-buffers
6073 ** org-babel-result-hide-all
6075 :CUSTOM_ID: org-babel-result-hide-all
6078 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
6079 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-result-hide-all&sr=1][Find modifications in git logs]]
6081 : Fold all results in the current buffer.
6082 ** org-agenda-drag-line-forward =(arg)=
6084 :CUSTOM_ID: org-agenda-drag-line-forward
6087 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6088 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-drag-line-forward&sr=1][Find modifications in git logs]]
6090 : Drag an agenda line forward by ARG lines.
6091 ** org-export =(&optional arg)=
6093 :CUSTOM_ID: org-export
6096 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
6097 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export&sr=1][Find modifications in git logs]]
6099 : Export dispatcher for Org-mode.
6100 : When `org-export-run-in-background' is non-nil, try to run the command
6101 : in the background. This will be done only for commands that write
6102 : to a file. For details see the docstring of `org-export-run-in-background'.
6104 : The prefix argument ARG will be passed to the exporter. However, if
6105 : ARG is a double universal prefix C-u C-u, that means to inverse the
6106 : value of `org-export-run-in-background'.
6108 : If `org-export-initial-scope' is set to 'subtree, try to export
6109 : the current subtree, otherwise try to export the whole buffer.
6110 : Pressing `1' will switch between these two options.
6111 ** org-agenda-bulk-toggle-all
6113 :CUSTOM_ID: org-agenda-bulk-toggle-all
6116 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6117 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-toggle-all&sr=1][Find modifications in git logs]]
6119 : Toggle all marks for bulk action.
6120 ** org-decrypt-entries
6122 :CUSTOM_ID: org-decrypt-entries
6125 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
6126 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-decrypt-entries&sr=1][Find modifications in git logs]]
6128 : Decrypt all entries in the current buffer.
6129 ** org-set-tags-command =(&optional arg just-align)=
6131 :CUSTOM_ID: org-set-tags-command
6134 - *Access:* ~C-c C-q, <menu-bar> <Org> <TAGS and Properties> <Set Tags>~
6135 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6136 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-tags-command&sr=1][Find modifications in git logs]]
6138 : Call the set-tags command for the current entry.
6139 ** org-clock-sum =(&optional tstart tend headline-filter propname)=
6141 :CUSTOM_ID: org-clock-sum
6144 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
6145 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-sum&sr=1][Find modifications in git logs]]
6147 : Sum the times for each subtree.
6148 : Puts the resulting times in minutes as a text property on each headline.
6149 : TSTART and TEND can mark a time range to be considered.
6150 : HEADLINE-FILTER is a zero-arg function that, if specified, is called for
6151 : each headline in the time range with point at the headline. Headlines for
6152 : which HEADLINE-FILTER returns nil are excluded from the clock summation.
6153 : PROPNAME lets you set a custom text property instead of :org-clock-minutes.
6154 ** org-babel-tangle-jump-to-org
6156 :CUSTOM_ID: org-babel-tangle-jump-to-org
6159 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
6160 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-jump-to-org&sr=1][Find modifications in git logs]]
6162 : Jump from a tangled code file to the related Org-mode file.
6163 ** org-columns-compute =(property)=
6165 :CUSTOM_ID: org-columns-compute
6168 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
6169 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-compute&sr=1][Find modifications in git logs]]
6171 : Sum the values of property PROPERTY hierarchically, for the entire buffer.
6172 ** org-table-next-row
6174 :CUSTOM_ID: org-table-next-row
6177 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6178 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-next-row&sr=1][Find modifications in git logs]]
6180 : Go to the next row (same column) in the current table.
6181 : Before doing so, re-align the table if necessary.
6182 ** org-export-dispatch =(&optional arg)=
6184 :CUSTOM_ID: org-export-dispatch
6187 - *Access:* ~C-c C-e, <menu-bar> <Org> <Export/Publish...>~
6188 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
6189 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-dispatch&sr=1][Find modifications in git logs]]
6191 : Export dispatcher for Org mode.
6193 : It provides an access to common export related tasks in a buffer.
6194 : Its interface comes in two flavours: standard and expert.
6196 : While both share the same set of bindings, only the former
6197 : displays the valid keys associations in a dedicated buffer.
6198 : Scrolling (resp. line-wise motion) in this buffer is done with
6199 : SPC and DEL (resp. C-n and C-p) keys.
6201 : Set variable `org-export-dispatch-use-expert-ui' to switch to one
6202 : flavour or the other.
6204 : When ARG is C-u, repeat the last export action, with the same set
6205 : of options used back then, on the current buffer.
6207 : When ARG is C-u C-u, display the asynchronous export stack.
6208 ** org-sort-list =(&optional with-case sorting-type getkey-func compare-func)=
6210 :CUSTOM_ID: org-sort-list
6213 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
6214 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sort-list&sr=1][Find modifications in git logs]]
6217 : The cursor may be at any item of the list that should be sorted.
6218 : Sublists are not sorted. Checkboxes, if any, are ignored.
6220 : Sorting can be alphabetically, numerically, by date/time as given
6221 : by a time stamp, by a property or by priority.
6223 : Comparing entries ignores case by default. However, with an
6224 : optional argument WITH-CASE, the sorting considers case as well.
6226 : The command prompts for the sorting type unless it has been given
6227 : to the function through the SORTING-TYPE argument, which needs to
6228 : be a character, (?n ?N ?a ?A ?t ?T ?f ?F). Here is the precise
6229 : meaning of each character:
6231 : n Numerically, by converting the beginning of the item to a number.
6232 : a Alphabetically. Only the first line of item is checked.
6233 : t By date/time, either the first active time stamp in the entry, if
6234 : any, or by the first inactive one. In a timer list, sort the timers.
6236 : Capital letters will reverse the sort order.
6238 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
6239 : a function to be called with point at the beginning of the
6240 : record. It must return either a string or a number that should
6241 : serve as the sorting key for that record. It will then use
6242 : COMPARE-FUNC to compare entries.
6244 : Sorting is done against the visible part of the headlines, it
6245 : ignores hidden links.
6246 ** org-babel-exp-non-block-elements =(start end)=
6248 :CUSTOM_ID: org-babel-exp-non-block-elements
6251 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
6252 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-exp-non-block-elements&sr=1][Find modifications in git logs]]
6254 : Process inline source and call lines between START and END for export.
6255 ** org-align-all-tags
6257 :CUSTOM_ID: org-align-all-tags
6260 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6261 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-align-all-tags&sr=1][Find modifications in git logs]]
6263 : Align the tags i all headings.
6264 ** org-global-cycle =(&optional arg)=
6266 :CUSTOM_ID: org-global-cycle
6269 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6270 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-global-cycle&sr=1][Find modifications in git logs]]
6272 : Cycle the global visibility. For details see `org-cycle'.
6273 : With C-u prefix arg, switch to startup visibility.
6274 : With a numeric prefix, show all headlines up to that level.
6275 ** org-preview-latex-fragment =(&optional subtree)=
6277 :CUSTOM_ID: org-preview-latex-fragment
6280 - *Access:* ~C-c C-x C-l~
6281 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6282 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-preview-latex-fragment&sr=1][Find modifications in git logs]]
6284 : Preview the LaTeX fragment at point, or all locally or globally.
6285 : If the cursor is in a LaTeX fragment, create the image and overlay
6286 : it over the source code. If there is no fragment at point, display
6287 : all fragments in the current text, from one headline to the next. With
6288 : prefix SUBTREE, display all fragments in the current subtree. With a
6289 : double prefix arg C-u C-u, or when the cursor is before the first headline,
6290 : display all fragments in the buffer.
6291 : The images can be removed again with C-c C-c.
6292 ** org-columns-next-allowed-value =(&optional previous nth)=
6294 :CUSTOM_ID: org-columns-next-allowed-value
6297 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
6298 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-next-allowed-value&sr=1][Find modifications in git logs]]
6300 : Switch to the next allowed value for this column.
6301 : When PREVIOUS is set, go to the previous value. When NTH is
6302 : an integer, select that value.
6303 ** org-mouse-move-tree-start =(event)=
6305 :CUSTOM_ID: org-mouse-move-tree-start
6308 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
6309 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-move-tree-start&sr=1][Find modifications in git logs]]
6312 ** org-babel-sha1-hash =(&optional info)=
6314 :CUSTOM_ID: org-babel-sha1-hash
6317 - *Access:* ~C-c C-v a, C-c C-v C-a~
6318 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
6319 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-sha1-hash&sr=1][Find modifications in git logs]]
6321 : Generate an sha1 hash based on the value of info.
6322 ** org-agenda-archive-to-archive-sibling
6324 :CUSTOM_ID: org-agenda-archive-to-archive-sibling
6327 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6328 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archive-to-archive-sibling&sr=1][Find modifications in git logs]]
6330 : Move the entry to the archive sibling.
6331 ** org-agenda-remove-restriction-lock =(&optional noupdate)=
6333 :CUSTOM_ID: org-agenda-remove-restriction-lock
6336 - *Access:* ~C-c C-x >~
6337 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6338 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-remove-restriction-lock&sr=1][Find modifications in git logs]]
6340 : Remove the agenda restriction lock.
6341 ** org-agenda-manipulate-query-subtract
6343 :CUSTOM_ID: org-agenda-manipulate-query-subtract
6346 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6347 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-manipulate-query-subtract&sr=1][Find modifications in git logs]]
6349 : Manipulate the query by adding a search term with negative selection.
6350 : Negative selection means term must not be matched for selection of an entry.
6351 ** org-clock-jump-to-current-clock =(&optional effective-clock)=
6353 :CUSTOM_ID: org-clock-jump-to-current-clock
6356 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
6357 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-jump-to-current-clock&sr=1][Find modifications in git logs]]
6360 ** org-previous-item
6362 :CUSTOM_ID: org-previous-item
6365 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
6366 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-previous-item&sr=1][Find modifications in git logs]]
6368 : Move to the beginning of the previous item.
6369 : Throw an error when not in a list. Also throw an error when at
6370 : first item, unless `org-list-use-circular-motion' is non-nil.
6371 ** org-icalendar-export-agenda-files =(&optional async)=
6373 :CUSTOM_ID: org-icalendar-export-agenda-files
6376 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
6377 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-export-agenda-files&sr=1][Find modifications in git logs]]
6379 : Export all agenda files to iCalendar files.
6380 : When optional argument ASYNC is non-nil, export happens in an
6382 ** org-columns-new =(&optional prop title width op fmt fun &rest rest)=
6384 :CUSTOM_ID: org-columns-new
6387 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
6388 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-new&sr=1][Find modifications in git logs]]
6390 : Insert a new column, to the left of the current column.
6391 ** org-odt-export-to-odt =(&optional async subtreep visible-only ext-plist)=
6393 :CUSTOM_ID: org-odt-export-to-odt
6396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
6397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-export-to-odt&sr=1][Find modifications in git logs]]
6399 : Export current buffer to a ODT file.
6401 : If narrowing is active in the current buffer, only export its
6404 : If a region is active, export that region.
6406 : A non-nil optional argument ASYNC means the process should happen
6407 : asynchronously. The resulting file should be accessible through
6408 : the `org-export-stack' interface.
6410 : When optional argument SUBTREEP is non-nil, export the sub-tree
6411 : at point, extracting information from the headline properties
6414 : When optional argument VISIBLE-ONLY is non-nil, don't export
6415 : contents of hidden elements.
6417 : EXT-PLIST, when provided, is a property list with external
6418 : parameters overriding Org default settings, but still inferior to
6419 : file-local settings.
6421 : Return output file's name.
6422 ** org-table-export =(&optional file format)=
6424 :CUSTOM_ID: org-table-export
6427 - *Access:* ~<menu-bar> <Tbl> <Export to File>~
6428 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6429 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-export&sr=1][Find modifications in git logs]]
6431 : Export table to a file, with configurable format.
6432 : Such a file can be imported into usual spreadsheet programs.
6434 : FILE can be the output file name. If not given, it will be taken
6435 : from a TABLE_EXPORT_FILE property in the current entry or higher
6436 : up in the hierarchy, or the user will be prompted for a file
6437 : name. FORMAT can be an export format, of the same kind as it
6438 : used when `orgtbl-mode' sends a table in a different format.
6440 : The command suggests a format depending on TABLE_EXPORT_FORMAT,
6441 : whether it is set locally or up in the hierarchy, then on the
6442 : extension of the given file name, and finally on the variable
6443 : `org-table-export-default-format'.
6444 ** org-edit-src-save
6446 :CUSTOM_ID: org-edit-src-save
6449 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
6450 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-save&sr=1][Find modifications in git logs]]
6452 : Save parent buffer with current state source-code buffer.
6453 ** org-clock-sum-today =(&optional headline-filter)=
6455 :CUSTOM_ID: org-clock-sum-today
6458 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
6459 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-sum-today&sr=1][Find modifications in git logs]]
6461 : Sum the times for each subtree for today.
6462 ** org-babel-load-in-session =(&optional arg info)=
6464 :CUSTOM_ID: org-babel-load-in-session
6467 - *Access:* ~C-c C-v l, C-c C-v C-l~
6468 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
6469 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-load-in-session&sr=1][Find modifications in git logs]]
6471 : Load the body of the current source-code block.
6472 : Evaluate the header arguments for the source block before
6473 : entering the session. After loading the body this pops open the
6475 ** org-capture-finalize =(&optional stay-with-capture)=
6477 :CUSTOM_ID: org-capture-finalize
6480 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
6481 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-finalize&sr=1][Find modifications in git logs]]
6483 : Finalize the capture process.
6484 : With prefix argument STAY-WITH-CAPTURE, jump to the location of the
6485 : captured item after finalizing.
6486 ** org-table-show-reference =(&optional local)=
6488 :CUSTOM_ID: org-table-show-reference
6491 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6492 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-show-reference&sr=1][Find modifications in git logs]]
6494 : Show the location/value of the $ expression at point.
6495 ** org-indent-region =(start end)=
6497 :CUSTOM_ID: org-indent-region
6500 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6501 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-region&sr=1][Find modifications in git logs]]
6504 ** org-insert-export-options-template
6506 :CUSTOM_ID: org-insert-export-options-template
6509 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
6510 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-export-options-template&sr=1][Find modifications in git logs]]
6512 : Insert into the buffer a template with information for exporting.
6513 ** org-toggle-link-display
6515 :CUSTOM_ID: org-toggle-link-display
6518 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Descriptive Links>, <menu-bar> <Org> <Hyperlinks> <Literal Links>~
6519 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6520 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-link-display&sr=1][Find modifications in git logs]]
6522 : Toggle the literal or descriptive display of links.
6523 ** org-agenda-date-earlier =(arg &optional what)=
6525 :CUSTOM_ID: org-agenda-date-earlier
6528 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6529 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-earlier&sr=1][Find modifications in git logs]]
6531 : Change the date of this item to ARG day(s) earlier.
6532 ** org-convert-to-oddeven-levels
6534 :CUSTOM_ID: org-convert-to-oddeven-levels
6537 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd/even levels>~
6538 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6539 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-convert-to-oddeven-levels&sr=1][Find modifications in git logs]]
6541 : Convert an org-mode file with only odd levels to one with odd/even levels.
6542 : This promotes level 3 to level 2, level 5 to level 3 etc. If the
6543 : file contains a section with an even level, conversion would
6544 : destroy the structure of the file. An error is signaled in this
6546 ** org-encrypt-entries
6548 :CUSTOM_ID: org-encrypt-entries
6551 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
6552 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-encrypt-entries&sr=1][Find modifications in git logs]]
6554 : Encrypt all top-level entries in the current buffer.
6555 ** org-shiftcontrolup =(&optional n)=
6557 :CUSTOM_ID: org-shiftcontrolup
6560 - *Access:* ~<C-S-up>~
6561 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6562 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftcontrolup&sr=1][Find modifications in git logs]]
6564 : Change timestamps synchronously up in CLOCK log lines.
6565 : Optional argument N tells to change by that many units.
6566 ** org-agenda-tree-to-indirect-buffer =(arg)=
6568 :CUSTOM_ID: org-agenda-tree-to-indirect-buffer
6571 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6572 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-tree-to-indirect-buffer&sr=1][Find modifications in git logs]]
6574 : Show the subtree corresponding to the current entry in an indirect buffer.
6575 : This calls the command `org-tree-to-indirect-buffer' from the original buffer.
6577 : With a numerical prefix ARG, go up to this level and then take that tree.
6578 : With a negative numeric ARG, go up by this number of levels.
6579 : With a C-u prefix, make a separate frame for this tree (i.e. don't
6580 : use the dedicated frame).
6581 ** org-ctags-append-topic =(name &optional narrowp)=
6583 :CUSTOM_ID: org-ctags-append-topic
6586 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
6587 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-append-topic&sr=1][Find modifications in git logs]]
6589 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
6590 : Append a new toplevel heading to the end of the current buffer. The
6591 : heading contains NAME surrounded by <<angular brackets>>, thus making
6592 : the heading a destination for the tag `NAME'.
6593 ** org-export-as-html-to-buffer =(arg)=
6595 :CUSTOM_ID: org-export-as-html-to-buffer
6598 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
6599 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-html-to-buffer&sr=1][Find modifications in git logs]]
6601 : Call `org-export-as-html` with output to a temporary buffer.
6602 : No file is created. The prefix ARG is passed through to `org-export-as-html'.
6603 ** org-agenda-next-date-line =(&optional arg)=
6605 :CUSTOM_ID: org-agenda-next-date-line
6608 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6609 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-next-date-line&sr=1][Find modifications in git logs]]
6611 : Jump to the next line indicating a date in agenda buffer.
6612 ** org-fill-paragraph =(&optional justify)=
6614 :CUSTOM_ID: org-fill-paragraph
6617 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6618 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fill-paragraph&sr=1][Find modifications in git logs]]
6620 : Fill element at point, when applicable.
6622 : This function only applies to comment blocks, comments, example
6623 : blocks and paragraphs. Also, as a special case, re-align table
6624 : when point is at one.
6626 : If JUSTIFY is non-nil (interactively, with prefix argument),
6627 : justify as well. If `sentence-end-double-space' is non-nil, then
6628 : period followed by one space does not end a sentence, so don't
6629 : break a line there. The variable `fill-column' controls the
6630 : width for filling.
6632 : For convenience, when point is at a plain list, an item or
6633 : a footnote definition, try to fill the first paragraph within.
6634 ** org-agenda-manipulate-query-add
6636 :CUSTOM_ID: org-agenda-manipulate-query-add
6639 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6640 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-manipulate-query-add&sr=1][Find modifications in git logs]]
6642 : Manipulate the query by adding a search term with positive selection.
6643 : Positive selection means the term must be matched for selection of an entry.
6644 ** org-agenda-previous-date-line =(&optional arg)=
6646 :CUSTOM_ID: org-agenda-previous-date-line
6649 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6650 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-previous-date-line&sr=1][Find modifications in git logs]]
6652 : Jump to the previous line indicating a date in agenda buffer.
6653 ** org-columns-edit-allowed
6655 :CUSTOM_ID: org-columns-edit-allowed
6658 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
6659 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-edit-allowed&sr=1][Find modifications in git logs]]
6661 : Edit the list of allowed values for the current property.
6662 ** org-export-as-html =(arg &optional ext-plist to-buffer body-only pub-dir)=
6664 :CUSTOM_ID: org-export-as-html
6667 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
6668 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-html&sr=1][Find modifications in git logs]]
6670 : Export the outline as a pretty HTML file.
6671 : If there is an active region, export only the region. The prefix
6672 : ARG specifies how many levels of the outline should become
6673 : headlines. The default is 3. Lower levels will become bulleted
6674 : lists. EXT-PLIST is a property list with external parameters overriding
6675 : org-mode's default settings, but still inferior to file-local
6676 : settings. When TO-BUFFER is non-nil, create a buffer with that
6677 : name and export to that buffer. If TO-BUFFER is the symbol
6678 : `string', don't leave any buffer behind but just return the
6679 : resulting HTML as a string. When BODY-ONLY is set, don't produce
6680 : the file header and footer, simply return the content of
6681 : <body>...</body>, without even the body tags themselves. When
6682 : PUB-DIR is set, use this as the publishing directory.
6683 ** org-insert-link-global
6685 :CUSTOM_ID: org-insert-link-global
6688 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6689 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-link-global&sr=1][Find modifications in git logs]]
6691 : Insert a link like Org-mode does.
6692 : This command can be called in any mode to insert a link in Org-mode syntax.
6693 ** org-odt-convert =(&optional in-file out-fmt prefix-arg)=
6695 :CUSTOM_ID: org-odt-convert
6698 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
6699 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-convert&sr=1][Find modifications in git logs]]
6701 : Convert IN-FILE to format OUT-FMT using a command line converter.
6702 : IN-FILE is the file to be converted. If unspecified, it defaults
6703 : to variable `buffer-file-name'. OUT-FMT is the desired output
6704 : format. Use `org-odt-convert-process' as the converter.
6705 : If PREFIX-ARG is non-nil then the newly converted file is opened
6706 : using `org-open-file'.
6707 ** org-cycle-list-bullet =(&optional which)=
6709 :CUSTOM_ID: org-cycle-list-bullet
6712 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
6713 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-list-bullet&sr=1][Find modifications in git logs]]
6715 : Cycle through the different itemize/enumerate bullets.
6716 : This cycle the entire list level through the sequence:
6718 : `-' -> `+' -> `*' -> `1.' -> `1)'
6720 : If WHICH is a valid string, use that as the new bullet. If WHICH
6721 : is an integer, 0 means `-', 1 means `+' etc. If WHICH is
6722 : `previous', cycle backwards.
6723 ** org-mouse-yank-link =(click)=
6725 :CUSTOM_ID: org-mouse-yank-link
6728 - *Access:* ~<drag-mouse-3>, <S-mouse-2>~
6729 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
6730 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-yank-link&sr=1][Find modifications in git logs]]
6733 ** org-agenda-refile =(&optional goto rfloc no-update)=
6735 :CUSTOM_ID: org-agenda-refile
6738 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6739 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-refile&sr=1][Find modifications in git logs]]
6741 : Refile the item at point.
6743 : When GOTO is 0 or '(64), clear the refile cache.
6744 : When GOTO is '(16), go to the location of the last refiled item.
6745 : RFLOC can be a refile location obtained in a different way.
6746 : When NO-UPDATE is non-nil, don't redo the agenda buffer.
6747 ** org-clock-mark-default-task
6749 :CUSTOM_ID: org-clock-mark-default-task
6752 - *Access:* ~<menu-bar> <Org> <Logging work> <Mark as default task>~
6753 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
6754 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-mark-default-task&sr=1][Find modifications in git logs]]
6756 : Mark current task as default task.
6757 ** org-open-link-from-string =(s &optional arg reference-buffer)=
6759 :CUSTOM_ID: org-open-link-from-string
6762 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6763 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-link-from-string&sr=1][Find modifications in git logs]]
6765 : Open a link in the string S, as if it was in Org-mode.
6766 ** org-babel-next-src-block =(&optional arg)=
6768 :CUSTOM_ID: org-babel-next-src-block
6771 - *Access:* ~C-c C-v C-n, C-c C-v n~
6772 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
6773 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-next-src-block&sr=1][Find modifications in git logs]]
6775 : Jump to the next source block.
6776 : With optional prefix argument ARG, jump forward ARG many source blocks.
6777 ** org-beamer-select-environment
6779 :CUSTOM_ID: org-beamer-select-environment
6782 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
6783 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-select-environment&sr=1][Find modifications in git logs]]
6785 : Select the environment to be used by beamer for this entry.
6786 : While this uses (for convenience) a tag selection interface, the
6787 : result of this command will be that the BEAMER_env *property* of
6790 : In addition to this, the command will also set a tag as a visual
6791 : aid, but the tag does not have any semantic meaning.
6794 :CUSTOM_ID: org-do-promote
6797 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6798 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-do-promote&sr=1][Find modifications in git logs]]
6800 : Promote the current heading higher up the tree.
6801 : If the region is active in `transient-mark-mode', promote all headings
6803 ** org-iswitchb =(&optional arg)=
6805 :CUSTOM_ID: org-iswitchb
6808 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6809 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-iswitchb&sr=1][Find modifications in git logs]]
6811 : Switch between Org buffers.
6812 : With one prefix argument, restrict available buffers to files.
6813 : With two prefix arguments, restrict available buffers to agenda files.
6815 : Defaults to `iswitchb' for buffer name completion.
6816 : Set `org-completion-use-ido' to make it use ido instead.
6817 ** org-table-recalculate =(&optional all noalign)=
6819 :CUSTOM_ID: org-table-recalculate
6822 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Recalculate line>~
6823 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6824 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-recalculate&sr=1][Find modifications in git logs]]
6826 : Recalculate the current table line by applying all stored formulas.
6827 : With prefix arg ALL, do this for all lines in the table.
6828 : With the prefix argument ALL is `(16)' (a double M-x universal-prefix M-x universal-prefix prefix), or if
6829 : it is the symbol `iterate', recompute the table until it no longer changes.
6830 : If NOALIGN is not nil, do not re-align the table after the computations
6831 : are done. This is typically used internally to save time, if it is
6832 : known that the table will be realigned a little later anyway.
6833 ** org-table-delete-column
6835 :CUSTOM_ID: org-table-delete-column
6838 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
6839 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-delete-column&sr=1][Find modifications in git logs]]
6841 : Delete a column from the table.
6842 ** org-habit-toggle-habits
6844 :CUSTOM_ID: org-habit-toggle-habits
6847 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
6848 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-toggle-habits&sr=1][Find modifications in git logs]]
6850 : Toggle display of habits in an agenda buffer.
6851 ** org-dblock-update =(&optional arg)=
6853 :CUSTOM_ID: org-dblock-update
6856 - *Access:* ~C-c C-x C-u~
6857 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6858 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-dblock-update&sr=1][Find modifications in git logs]]
6860 : User command for updating dynamic blocks.
6861 : Update the dynamic block at point. With prefix ARG, update all dynamic
6862 : blocks in the buffer.
6863 ** org-ctrl-c-ctrl-c =(&optional arg)=
6865 :CUSTOM_ID: org-ctrl-c-ctrl-c
6868 - *Access:* ~C-c C-c, <menu-bar> <Tbl> <Align>~
6869 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
6870 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-ctrl-c&sr=1][Find modifications in git logs]]
6872 : Set tags in headline, or update according to changed information at point.
6874 : This command does many different things, depending on context:
6876 : - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
6877 : this is what we do.
6879 : - If the cursor is on a statistics cookie, update it.
6881 : - If the cursor is in a headline, prompt for tags and insert them
6882 : into the current line, aligned to `org-tags-column'. When called
6883 : with prefix arg, realign all tags in the current buffer.
6885 : - If the cursor is in one of the special #+KEYWORD lines, this
6886 : triggers scanning the buffer for these lines and updating the
6889 : - If the cursor is inside a table, realign the table. This command
6890 : works even if the automatic table editor has been turned off.
6892 : - If the cursor is on a #+TBLFM line, re-apply the formulas to
6895 : - If the cursor is at a footnote reference or definition, jump to
6896 : the corresponding definition or references, respectively.
6898 : - If the cursor is a the beginning of a dynamic block, update it.
6900 : - If the current buffer is a capture buffer, close note and file it.
6902 : - If the cursor is on a <<<target>>>, update radio targets and
6903 : corresponding links in this buffer.
6905 : - If the cursor is on a numbered item in a plain list, renumber the
6908 : - If the cursor is on a checkbox, toggle it.
6910 : - If the cursor is on a code block, evaluate it. The variable
6911 : `org-confirm-babel-evaluate' can be used to control prompting
6912 : before code block evaluation, by default every code block
6913 : evaluation requires confirmation. Code block evaluation can be
6914 : inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'.
6917 :CUSTOM_ID: org-id-copy
6920 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
6921 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-copy&sr=1][Find modifications in git logs]]
6923 : Copy the ID of the entry at point to the kill ring.
6924 : Create an ID if necessary.
6925 ** org-export-region-as-html =(beg end &optional body-only buffer)=
6927 :CUSTOM_ID: org-export-region-as-html
6930 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
6931 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-region-as-html&sr=1][Find modifications in git logs]]
6933 : Convert region from BEG to END in org-mode buffer to HTML.
6934 : If prefix arg BODY-ONLY is set, omit file header, footer, and table of
6935 : contents, and only produce the region of converted text, useful for
6936 : cut-and-paste operations.
6937 : If BUFFER is a buffer or a string, use/create that buffer as a target
6938 : of the converted HTML. If BUFFER is the symbol `string', return the
6939 : produced HTML as a string and leave not buffer behind. For example,
6940 : a Lisp program could call this function in the following way:
6942 : (setq html (org-export-region-as-html beg end t 'string))
6944 : When called interactively, the output buffer is selected, and shown
6945 : in a window. A non-interactive call will only return the buffer.
6946 ** org-texinfo-export-to-info =(&optional async subtreep visible-only body-only ext-plist)=
6948 :CUSTOM_ID: org-texinfo-export-to-info
6951 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
6952 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-export-to-info&sr=1][Find modifications in git logs]]
6954 : Export current buffer to Texinfo then process through to INFO.
6956 : If narrowing is active in the current buffer, only export its
6959 : If a region is active, export that region.
6961 : A non-nil optional argument ASYNC means the process should happen
6962 : asynchronously. The resulting file should be accessible through
6963 : the `org-export-stack' interface.
6965 : When optional argument SUBTREEP is non-nil, export the sub-tree
6966 : at point, extracting information from the headline properties
6969 : When optional argument VISIBLE-ONLY is non-nil, don't export
6970 : contents of hidden elements.
6972 : When optional argument BODY-ONLY is non-nil, only write code
6973 : between "\begin{document}" and "\end{document}".
6975 : EXT-PLIST, when provided, is a property list with external
6976 : parameters overriding Org default settings, but still inferior to
6977 : file-local settings.
6979 : When optional argument PUB-DIR is set, use it as the publishing
6982 : Return INFO file's name.
6983 ** org-agenda-date-later =(arg &optional what)=
6985 :CUSTOM_ID: org-agenda-date-later
6988 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
6989 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-later&sr=1][Find modifications in git logs]]
6991 : Change the date of this item to ARG day(s) later.
6992 ** org-ctags-find-tag =(name)=
6994 :CUSTOM_ID: org-ctags-find-tag
6997 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
6998 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-find-tag&sr=1][Find modifications in git logs]]
7000 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
7001 : Look for a tag called `NAME' in the current TAGS table. If it is found,
7002 : visit the file and location where the tag is found.
7003 ** org-footnote-goto-definition =(label)=
7005 :CUSTOM_ID: org-footnote-goto-definition
7008 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
7009 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-goto-definition&sr=1][Find modifications in git logs]]
7011 : Move point to the definition of the footnote LABEL.
7012 : Return a non-nil value when a definition has been found.
7013 ** org-toggle-archive-tag =(&optional find-done)=
7015 :CUSTOM_ID: org-toggle-archive-tag
7018 - *Access:* ~C-c C-x a, <menu-bar> <Org> <Archive> <Toggle ARCHIVE tag>~
7019 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
7020 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-archive-tag&sr=1][Find modifications in git logs]]
7022 : Toggle the archive tag for the current headline.
7023 : With prefix ARG, check all children of current headline and offer tagging
7024 : the children that do not contain any open TODO items.
7025 ** org-attach-reveal-in-emacs
7027 :CUSTOM_ID: org-attach-reveal-in-emacs
7030 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
7031 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-reveal-in-emacs&sr=1][Find modifications in git logs]]
7033 : Show the attachment directory of the current task in dired.
7034 ** org-sort =(with-case)=
7036 :CUSTOM_ID: org-sort
7039 - *Access:* ~C-c ^, <menu-bar> <Org> <Edit Structure> <Sort Region/Children>~
7040 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7041 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sort&sr=1][Find modifications in git logs]]
7043 : Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
7044 : Optional argument WITH-CASE means sort case-sensitively.
7045 ** org-archive-set-tag
7047 :CUSTOM_ID: org-archive-set-tag
7050 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
7051 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-set-tag&sr=1][Find modifications in git logs]]
7053 : Set the ARCHIVE tag.
7054 ** org-goto-local-auto-isearch
7056 :CUSTOM_ID: org-goto-local-auto-isearch
7059 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7060 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-local-auto-isearch&sr=1][Find modifications in git logs]]
7063 ** org-entities-help
7065 :CUSTOM_ID: org-entities-help
7068 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-entities.el;hb=HEAD][org-entities.el]]
7069 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-entities-help&sr=1][Find modifications in git logs]]
7071 : Create a Help buffer with all available entities.
7072 ** org-agenda-set-effort
7074 :CUSTOM_ID: org-agenda-set-effort
7077 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7078 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-set-effort&sr=1][Find modifications in git logs]]
7080 : Set the effort property for the current headline.
7081 ** org-goto-calendar =(&optional arg)=
7083 :CUSTOM_ID: org-goto-calendar
7086 - *Access:* ~C-c >, <menu-bar> <Org> <Dates and Scheduling> <Goto Calendar>~
7087 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7088 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-calendar&sr=1][Find modifications in git logs]]
7090 : Go to the Emacs calendar at the current date.
7091 : If there is a time stamp in the current line, go to that date.
7092 : A prefix ARG can be used to force the current date.
7093 ** org-version =(&optional here full message)=
7095 :CUSTOM_ID: org-version
7098 - *Access:* ~<menu-bar> <Org> <Documentation> <Show Version>~
7099 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7100 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-version&sr=1][Find modifications in git logs]]
7102 : Show the org-mode version in the echo area.
7103 : With prefix argument HERE, insert it at point.
7104 : When FULL is non-nil, use a verbose version string.
7105 : When MESSAGE is non-nil, display a message with the version.
7106 ** org-transpose-words
7108 :CUSTOM_ID: org-transpose-words
7112 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7113 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-transpose-words&sr=1][Find modifications in git logs]]
7115 : Transpose words for Org.
7116 : This uses the `org-mode-transpose-word-syntax-table' syntax
7117 : table, which interprets characters in `org-emphasis-alist' as
7118 : word constituants.
7119 ** org-toggle-comment
7121 :CUSTOM_ID: org-toggle-comment
7125 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7126 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-comment&sr=1][Find modifications in git logs]]
7128 : Change the COMMENT state of an entry.
7129 ** org-agenda-drag-line-backward =(arg)=
7131 :CUSTOM_ID: org-agenda-drag-line-backward
7134 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7135 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-drag-line-backward&sr=1][Find modifications in git logs]]
7137 : Drag an agenda line backward by ARG lines.
7138 ** org-tags-view =(&optional todo-only match)=
7140 :CUSTOM_ID: org-tags-view
7143 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7144 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-view&sr=1][Find modifications in git logs]]
7146 : Show all headlines for all `org-agenda-files' matching a TAGS criterion.
7147 : The prefix arg TODO-ONLY limits the search to TODO entries.
7148 ** org-attach-attach-lns
7150 :CUSTOM_ID: org-attach-attach-lns
7153 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
7154 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-attach-lns&sr=1][Find modifications in git logs]]
7156 : Attach a file by creating a symbolic link to it.
7158 : Beware that this does not work on systems that do not support symbolic links.
7159 : On some systems, this apparently does copy the file instead.
7162 :CUSTOM_ID: org-indent-line
7165 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7166 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-line&sr=1][Find modifications in git logs]]
7168 : Indent line depending on context.
7169 ** org-metaup =(&optional arg)=
7171 :CUSTOM_ID: org-metaup
7174 - *Access:* ~<M-up>, <menu-bar> <Tbl> <Row> <Move Row Up>~
7175 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7176 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaup&sr=1][Find modifications in git logs]]
7178 : Move subtree up or move table row up.
7179 : Calls `org-move-subtree-up' or `org-table-move-row' or
7180 : `org-move-item-up', depending on context. See the individual commands
7181 : for more information.
7184 :CUSTOM_ID: org-clock-cancel
7187 - *Access:* ~C-c C-x C-q, <menu-bar> <Org> <Logging work> <Clock cancel>~
7188 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
7189 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-cancel&sr=1][Find modifications in git logs]]
7191 : Cancel the running clock by removing the start timestamp.
7192 ** org-agenda-priority-down
7194 :CUSTOM_ID: org-agenda-priority-down
7197 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7198 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-priority-down&sr=1][Find modifications in git logs]]
7200 : Decrease the priority of line at point, also in Org-mode file.
7201 ** org-agenda-archive
7203 :CUSTOM_ID: org-agenda-archive
7206 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7207 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archive&sr=1][Find modifications in git logs]]
7209 : Archive the entry or subtree belonging to the current agenda entry.
7210 ** org-table-current-dline
7212 :CUSTOM_ID: org-table-current-dline
7215 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7216 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-current-dline&sr=1][Find modifications in git logs]]
7218 : Find out what table data line we are in.
7219 : Only data lines count for this.
7220 ** org-src-fontify-block
7222 :CUSTOM_ID: org-src-fontify-block
7225 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
7226 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-fontify-block&sr=1][Find modifications in git logs]]
7228 : Fontify code block at point.
7229 ** org-refile-goto-last-stored
7231 :CUSTOM_ID: org-refile-goto-last-stored
7234 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7235 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-goto-last-stored&sr=1][Find modifications in git logs]]
7237 : Go to the location where the last refile was stored.
7238 ** org-man-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
7240 :CUSTOM_ID: org-man-export-to-pdf
7243 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
7244 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-export-to-pdf&sr=1][Find modifications in git logs]]
7246 : Export current buffer to Groff then process through to PDF.
7248 : If narrowing is active in the current buffer, only export its
7251 : If a region is active, export that region.
7253 : A non-nil optional argument ASYNC means the process should happen
7254 : asynchronously. The resulting file should be accessible through
7255 : the `org-export-stack' interface.
7257 : When optional argument SUBTREEP is non-nil, export the sub-tree
7258 : at point, extracting information from the headline properties
7261 : When optional argument VISIBLE-ONLY is non-nil, don't export
7262 : contents of hidden elements.
7264 : When optional argument BODY-ONLY is non-nil, only write between
7267 : EXT-PLIST, when provided, is a property list with external
7268 : parameters overriding Org default settings, but still inferior to
7269 : file-local settings.
7271 : Return PDF file's name.
7272 ** org-babel-load-file =(file &optional compile)=
7274 :CUSTOM_ID: org-babel-load-file
7277 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7278 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-load-file&sr=1][Find modifications in git logs]]
7280 : Load Emacs Lisp source code blocks in the Org-mode FILE.
7281 : This function exports the source code using `org-babel-tangle'
7282 : and then loads the resulting file using `load-file'. With prefix
7283 : arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
7284 : file to byte-code before it is loaded.
7285 ** org-html-export-to-html =(&optional async subtreep visible-only body-only ext-plist)=
7287 :CUSTOM_ID: org-html-export-to-html
7290 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
7291 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-export-to-html&sr=1][Find modifications in git logs]]
7293 : Export current buffer to a HTML file.
7295 : If narrowing is active in the current buffer, only export its
7298 : If a region is active, export that region.
7300 : A non-nil optional argument ASYNC means the process should happen
7301 : asynchronously. The resulting file should be accessible through
7302 : the `org-export-stack' interface.
7304 : When optional argument SUBTREEP is non-nil, export the sub-tree
7305 : at point, extracting information from the headline properties
7308 : When optional argument VISIBLE-ONLY is non-nil, don't export
7309 : contents of hidden elements.
7311 : When optional argument BODY-ONLY is non-nil, only write code
7312 : between "<body>" and "</body>" tags.
7314 : EXT-PLIST, when provided, is a property list with external
7315 : parameters overriding Org default settings, but still inferior to
7316 : file-local settings.
7318 : Return output file's name.
7319 ** org-latex-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
7321 :CUSTOM_ID: org-latex-export-to-latex
7324 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
7325 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-export-to-latex&sr=1][Find modifications in git logs]]
7327 : Export current buffer to a LaTeX file.
7329 : If narrowing is active in the current buffer, only export its
7332 : If a region is active, export that region.
7334 : A non-nil optional argument ASYNC means the process should happen
7335 : asynchronously. The resulting file should be accessible through
7336 : the `org-export-stack' interface.
7338 : When optional argument SUBTREEP is non-nil, export the sub-tree
7339 : at point, extracting information from the headline properties
7342 : When optional argument VISIBLE-ONLY is non-nil, don't export
7343 : contents of hidden elements.
7345 : When optional argument BODY-ONLY is non-nil, only write code
7346 : between "\begin{document}" and "\end{document}".
7348 : EXT-PLIST, when provided, is a property list with external
7349 : parameters overriding Org default settings, but still inferior to
7350 : file-local settings.
7352 : Return output file's name.
7353 ** org-archive-subtree-default
7355 :CUSTOM_ID: org-archive-subtree-default
7358 - *Access:* ~C-c C-x C-a, <menu-bar> <Org> <Archive> <Archive (default method)>~
7359 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
7360 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-subtree-default&sr=1][Find modifications in git logs]]
7362 : Archive the current subtree with the default command.
7363 : This command is set with the variable `org-archive-default-command'.
7364 ** org-rss-export-to-rss =(&optional async subtreep visible-only)=
7366 :CUSTOM_ID: org-rss-export-to-rss
7369 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
7370 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-export-to-rss&sr=1][Find modifications in git logs]]
7372 : Export current buffer to a RSS file.
7374 : If narrowing is active in the current buffer, only export its
7377 : If a region is active, export that region.
7379 : A non-nil optional argument ASYNC means the process should happen
7380 : asynchronously. The resulting file should be accessible through
7381 : the `org-export-stack' interface.
7383 : When optional argument SUBTREEP is non-nil, export the sub-tree
7384 : at point, extracting information from the headline properties
7387 : When optional argument VISIBLE-ONLY is non-nil, don't export
7388 : contents of hidden elements.
7390 : Return output file's name.
7391 ** org-id-update-id-locations =(&optional files silent)=
7393 :CUSTOM_ID: org-id-update-id-locations
7396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
7397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-update-id-locations&sr=1][Find modifications in git logs]]
7399 : Scan relevant files for IDs.
7400 : Store the relation between files and corresponding IDs.
7401 : This will scan all agenda files, all associated archives, and all
7402 : files currently mentioned in `org-id-locations'.
7403 : When FILES is given, scan these files instead.
7404 : When CHECK is given, prepare detailed information about duplicate IDs.
7405 ** org-mouse-move-tree =(event)=
7407 :CUSTOM_ID: org-mouse-move-tree
7410 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
7411 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-move-tree&sr=1][Find modifications in git logs]]
7414 ** org-cycle-agenda-files
7416 :CUSTOM_ID: org-cycle-agenda-files
7419 - *Access:* ~C-', C-,, <menu-bar> <Org> <File List for Agenda> <Cycle through agenda files>~
7420 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7421 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-agenda-files&sr=1][Find modifications in git logs]]
7423 : Cycle through the files in `org-agenda-files'.
7424 : If the current buffer visits an agenda file, find the next one in the list.
7425 : If the current buffer does not, find the first agenda file.
7426 ** org-property-previous-allowed-value =(&optional previous)=
7428 :CUSTOM_ID: org-property-previous-allowed-value
7431 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7432 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-previous-allowed-value&sr=1][Find modifications in git logs]]
7434 : Switch to the next allowed value for this property.
7435 ** org-feed-goto-inbox =(feed)=
7437 :CUSTOM_ID: org-feed-goto-inbox
7440 - *Access:* ~C-c C-x G, <menu-bar> <Org> <TODO Lists> <Go to the inbox of a feed...>~
7441 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
7442 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-goto-inbox&sr=1][Find modifications in git logs]]
7444 : Go to the inbox that captures the feed named FEED.
7445 ** org-columns-move-left
7447 :CUSTOM_ID: org-columns-move-left
7450 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
7451 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-move-left&sr=1][Find modifications in git logs]]
7453 : Swap this column with the one to the left.
7454 ** org-metaleft =(&optional arg)=
7456 :CUSTOM_ID: org-metaleft
7459 - *Access:* ~<M-left>, <menu-bar> <Org> <Edit Structure> <Promote Heading>, <menu-bar> <Tbl> <Column> <Move Column Left>~
7460 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7461 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metaleft&sr=1][Find modifications in git logs]]
7463 : Promote heading or move table column to left.
7464 : Calls `org-do-promote' or `org-table-move-column', depending on context.
7465 : With no specific context, calls the Emacs default `backward-word'.
7466 : See the individual commands for more information.
7467 ** org-latex-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
7469 :CUSTOM_ID: org-latex-export-as-latex
7472 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
7473 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-export-as-latex&sr=1][Find modifications in git logs]]
7475 : Export current buffer as a LaTeX buffer.
7477 : If narrowing is active in the current buffer, only export its
7480 : If a region is active, export that region.
7482 : A non-nil optional argument ASYNC means the process should happen
7483 : asynchronously. The resulting buffer should be accessible
7484 : through the `org-export-stack' interface.
7486 : When optional argument SUBTREEP is non-nil, export the sub-tree
7487 : at point, extracting information from the headline properties
7490 : When optional argument VISIBLE-ONLY is non-nil, don't export
7491 : contents of hidden elements.
7493 : When optional argument BODY-ONLY is non-nil, only write code
7494 : between "\begin{document}" and "\end{document}".
7496 : EXT-PLIST, when provided, is a property list with external
7497 : parameters overriding Org default settings, but still inferior to
7498 : file-local settings.
7500 : Export is done in a buffer named "*Org LATEX Export*", which
7501 : will be displayed when `org-export-show-temporary-export-buffer'
7505 :CUSTOM_ID: org-goto-left
7508 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7509 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-left&sr=1][Find modifications in git logs]]
7511 : Finish `org-goto' by going to the new location.
7514 :CUSTOM_ID: org-copy-special
7517 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Copy Subtree>, <menu-bar> <Tbl> <Rectangle> <Copy Rectangle>, C-c C-x M-w~
7518 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7519 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-copy-special&sr=1][Find modifications in git logs]]
7521 : Copy region in table or copy current subtree.
7522 : Calls `org-table-copy' or `org-copy-subtree', depending on context.
7523 : See the individual commands for more information.
7524 ** org-update-dblock
7526 :CUSTOM_ID: org-update-dblock
7529 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7530 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-update-dblock&sr=1][Find modifications in git logs]]
7532 : Update the dynamic block at point.
7533 : This means to empty the block, parse for parameters and then call
7534 : the correct writing function.
7535 ** org-list-insert-radio-list
7537 :CUSTOM_ID: org-list-insert-radio-list
7540 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
7541 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-insert-radio-list&sr=1][Find modifications in git logs]]
7543 : Insert a radio list template appropriate for this major mode.
7544 ** org-shiftmetadown =(&optional arg)=
7546 :CUSTOM_ID: org-shiftmetadown
7549 - *Access:* ~<M-S-down>, <menu-bar> <Org> <Edit Structure> <Move Subtree Down>, <menu-bar> <Tbl> <Row> <Insert Row>~
7550 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7551 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftmetadown&sr=1][Find modifications in git logs]]
7553 : Move subtree down or insert table row.
7554 : Calls `org-move-subtree-down' or `org-table-insert-row' or
7555 : `org-move-item-down' or `org-timestamp-up', depending on context.
7556 : See the individual commands for more information.
7557 ** org-texinfo-export-to-texinfo =(&optional async subtreep visible-only body-only ext-plist)=
7559 :CUSTOM_ID: org-texinfo-export-to-texinfo
7562 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
7563 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-export-to-texinfo&sr=1][Find modifications in git logs]]
7565 : Export current buffer to a Texinfo file.
7567 : If narrowing is active in the current buffer, only export its
7570 : If a region is active, export that region.
7572 : A non-nil optional argument ASYNC means the process should happen
7573 : asynchronously. The resulting file should be accessible through
7574 : the `org-export-stack' interface.
7576 : When optional argument SUBTREEP is non-nil, export the sub-tree
7577 : at point, extracting information from the headline properties
7580 : When optional argument VISIBLE-ONLY is non-nil, don't export
7581 : contents of hidden elements.
7583 : When optional argument BODY-ONLY is non-nil, only write code
7584 : between "\begin{document}" and "\end{document}".
7586 : EXT-PLIST, when provided, is a property list with external
7587 : parameters overriding Org default settings, but still inferior to
7588 : file-local settings.
7590 : Return output file's name.
7591 ** org-agenda-list-stuck-projects =(&rest ignore)=
7593 :CUSTOM_ID: org-agenda-list-stuck-projects
7596 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7597 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-list-stuck-projects&sr=1][Find modifications in git logs]]
7599 : Create agenda view for projects that are stuck.
7600 : Stuck projects are project that have no next actions. For the definitions
7601 : of what a project is and how to check if it stuck, customize the variable
7602 : `org-stuck-projects'.
7605 :CUSTOM_ID: org-mobile-pull
7608 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Get Captured and Flagged>, C-c C-x RET g~
7609 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
7610 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-pull&sr=1][Find modifications in git logs]]
7612 : Pull the contents of `org-mobile-capture-file' and integrate them.
7613 : Apply all flagged actions, flag entries to be flagged and then call an
7614 : agenda view showing the flagged items.
7615 ** org-convert-to-odd-levels
7617 :CUSTOM_ID: org-convert-to-odd-levels
7620 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd levels>~
7621 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7622 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-convert-to-odd-levels&sr=1][Find modifications in git logs]]
7624 : Convert an org-mode file with all levels allowed to one with odd levels.
7625 : This will leave level 1 alone, convert level 2 to level 3, level 3 to
7627 ** org-agenda-menu =(event)=
7629 :CUSTOM_ID: org-agenda-menu
7632 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7633 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-menu&sr=1][Find modifications in git logs]]
7636 ** org-mobile-apply =(&optional beg end)=
7638 :CUSTOM_ID: org-mobile-apply
7641 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
7642 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-apply&sr=1][Find modifications in git logs]]
7644 : Apply all change requests in the current buffer.
7645 : If BEG and END are given, only do this in that region.
7646 ** org-table-recalculate-buffer-tables
7648 :CUSTOM_ID: org-table-recalculate-buffer-tables
7651 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7652 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-recalculate-buffer-tables&sr=1][Find modifications in git logs]]
7654 : Recalculate all tables in the current buffer.
7655 ** org-timestamp-down =(&optional arg)=
7657 :CUSTOM_ID: org-timestamp-down
7660 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7661 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timestamp-down&sr=1][Find modifications in git logs]]
7663 : Decrease the date item at the cursor by one.
7664 : If the cursor is on the year, change the year. If it is on the month,
7665 : the day or the time, change that.
7666 : With prefix ARG, change by that many units.
7667 ** org-agenda-clock-goto
7669 :CUSTOM_ID: org-agenda-clock-goto
7672 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7673 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clock-goto&sr=1][Find modifications in git logs]]
7675 : Jump to the currently clocked in task within the agenda.
7676 : If the currently clocked in task is not listed in the agenda
7677 : buffer, display it in another window.
7678 ** org-shiftup =(&optional arg)=
7680 :CUSTOM_ID: org-shiftup
7683 - *Access:* ~<S-up>, <menu-bar> <Org> <TODO Lists> <Priority Up>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Later>~
7684 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7685 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftup&sr=1][Find modifications in git logs]]
7687 : Increase item in timestamp or increase priority of current headline.
7688 : Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
7689 : depending on context. See the individual commands for more information.
7690 ** org-table-convert-region =(beg0 end0 &optional separator)=
7692 :CUSTOM_ID: org-table-convert-region
7695 - *Access:* ~<menu-bar> <Tbl> <Convert Region>~
7696 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7697 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-convert-region&sr=1][Find modifications in git logs]]
7699 : Convert region to a table.
7700 : The region goes from BEG0 to END0, but these borders will be moved
7701 : slightly, to make sure a beginning of line in the first line is included.
7703 : SEPARATOR specifies the field separator in the lines. It can have the
7706 : '(4) Use the comma as a field separator
7707 : '(16) Use a TAB as field separator
7708 : integer When a number, use that many spaces as field separator
7709 : nil When nil, the command tries to be smart and figure out the
7710 : separator in the following way:
7711 : - when each line contains a TAB, assume TAB-separated material
7712 : - when each line contains a comma, assume CSV material
7713 : - else, assume one or more SPACE characters as separator.
7714 ** org-agenda-goto-today
7716 :CUSTOM_ID: org-agenda-goto-today
7719 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7720 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto-today&sr=1][Find modifications in git logs]]
7723 ** org-columns-open-link =(&optional arg)=
7725 :CUSTOM_ID: org-columns-open-link
7728 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
7729 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-open-link&sr=1][Find modifications in git logs]]
7732 ** org-ido-switchb =(&optional arg)=
7734 :CUSTOM_ID: org-ido-switchb
7737 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7738 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ido-switchb&sr=1][Find modifications in git logs]]
7740 : Switch between Org buffers.
7741 : With one prefix argument, restrict available buffers to files.
7742 : With two prefix arguments, restrict available buffers to agenda files.
7744 : Defaults to `iswitchb' for buffer name completion.
7745 : Set `org-completion-use-ido' to make it use ido instead.
7746 ** org-hide-block-all
7748 :CUSTOM_ID: org-hide-block-all
7751 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7752 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-block-all&sr=1][Find modifications in git logs]]
7754 : Fold all blocks in the current buffer.
7755 ** org-table-copy-region =(beg end &optional cut)=
7757 :CUSTOM_ID: org-table-copy-region
7760 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7761 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-copy-region&sr=1][Find modifications in git logs]]
7763 : Copy rectangular region in table to clipboard.
7764 : A special clipboard is used which can only be accessed
7765 : with `org-table-paste-rectangle'.
7766 ** org-ctags-create-tags =(&optional directory-name)=
7768 :CUSTOM_ID: org-ctags-create-tags
7771 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
7772 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-create-tags&sr=1][Find modifications in git logs]]
7774 : (Re)create tags file in the directory of the active buffer.
7775 : The file will contain tag definitions for all the files in the
7776 : directory and its subdirectories which are recognized by ctags.
7777 : This will include files ending in `.org' as well as most other
7778 : source files (.C, .H, .EL, .LISP, etc). All the resulting tags
7779 : end up in one file, called TAGS, located in the directory. This
7780 : function may take several seconds to finish if the directory or
7781 : its subdirectories contain large numbers of taggable files.
7782 ** org-speed-command-help
7784 :CUSTOM_ID: org-speed-command-help
7787 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7788 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-speed-command-help&sr=1][Find modifications in git logs]]
7790 : Show the available speed commands.
7791 ** org-table-move-row-down
7793 :CUSTOM_ID: org-table-move-row-down
7796 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7797 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-row-down&sr=1][Find modifications in git logs]]
7799 : Move table row down.
7800 ** org-agenda-clock-in =(&optional arg)=
7802 :CUSTOM_ID: org-agenda-clock-in
7805 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7806 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clock-in&sr=1][Find modifications in git logs]]
7808 : Start the clock on the currently selected item.
7809 ** org-shiftcontroldown =(&optional n)=
7811 :CUSTOM_ID: org-shiftcontroldown
7814 - *Access:* ~<C-S-down>~
7815 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7816 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftcontroldown&sr=1][Find modifications in git logs]]
7818 : Change timestamps synchronously down in CLOCK log lines.
7819 : Optional argument N tells to change by that many units.
7820 ** org-agenda-list =(&optional arg start-day span with-hour)=
7822 :CUSTOM_ID: org-agenda-list
7825 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7826 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-list&sr=1][Find modifications in git logs]]
7828 : Produce a daily/weekly view from all files in variable `org-agenda-files'.
7829 : The view will be for the current day or week, but from the overview buffer
7830 : you will be able to go to other days/weeks.
7832 : With a numeric prefix argument in an interactive call, the agenda will
7833 : span ARG days. Lisp programs should instead specify SPAN to change
7834 : the number of days. SPAN defaults to `org-agenda-span'.
7836 : START-DAY defaults to TODAY, or to the most recent match for the weekday
7837 : given in `org-agenda-start-on-weekday'.
7839 : When WITH-HOUR is non-nil, only include scheduled and deadline
7840 : items if they have an hour specification like [h]h:mm.
7841 ** org-agenda-clock-cancel =(&optional arg)=
7843 :CUSTOM_ID: org-agenda-clock-cancel
7846 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7847 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clock-cancel&sr=1][Find modifications in git logs]]
7849 : Cancel the currently running clock.
7850 ** org-babel-initiate-session =(&optional arg info)=
7852 :CUSTOM_ID: org-babel-initiate-session
7855 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
7856 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-initiate-session&sr=1][Find modifications in git logs]]
7858 : Initiate session for current code block.
7859 : If called with a prefix argument then resolve any variable
7860 : references in the header arguments and assign these variables in
7861 : the session. Copy the body of the code block to the kill ring.
7862 ** org-table-move-row =(&optional up)=
7864 :CUSTOM_ID: org-table-move-row
7867 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
7868 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-row&sr=1][Find modifications in git logs]]
7870 : Move the current table line down. With arg UP, move it up.
7871 ** org-agenda-do-date-earlier =(arg)=
7873 :CUSTOM_ID: org-agenda-do-date-earlier
7876 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7877 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-do-date-earlier&sr=1][Find modifications in git logs]]
7880 ** org-agenda-filter-by-category =(strip)=
7882 :CUSTOM_ID: org-agenda-filter-by-category
7885 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7886 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-by-category&sr=1][Find modifications in git logs]]
7888 : Keep only those lines in the agenda buffer that have a specific category.
7889 : The category is that of the current line.
7890 ** org-check-deadlines =(ndays)=
7892 :CUSTOM_ID: org-check-deadlines
7895 - *Access:* ~<menu-bar> <Org> <Special views current file> <Check Deadlines>~
7896 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7897 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-check-deadlines&sr=1][Find modifications in git logs]]
7899 : Check if there are any deadlines due or past due.
7900 : A deadline is considered due if it happens within `org-deadline-warning-days'
7901 : days from today's date. If the deadline appears in an entry marked DONE,
7902 : it is not shown. The prefix arg NDAYS can be used to test that many
7903 : days. If the prefix is a raw C-u prefix, all deadlines are shown.
7904 ** org-agenda-dim-blocked-tasks =(&optional invisible)=
7906 :CUSTOM_ID: org-agenda-dim-blocked-tasks
7909 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7910 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-dim-blocked-tasks&sr=1][Find modifications in git logs]]
7912 : Dim currently blocked TODO's in the agenda display.
7913 : When INVISIBLE is non-nil, hide currently blocked TODO instead of
7915 ** org-agenda-goto-block-beginning
7917 :CUSTOM_ID: org-agenda-goto-block-beginning
7920 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7921 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto-block-beginning&sr=1][Find modifications in git logs]]
7923 : Go the agenda block beginning.
7924 ** org-capture-goto-last-stored
7926 :CUSTOM_ID: org-capture-goto-last-stored
7929 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
7930 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-goto-last-stored&sr=1][Find modifications in git logs]]
7932 : Go to the location where the last capture note was stored.
7933 ** org-agenda-next-item =(n)=
7935 :CUSTOM_ID: org-agenda-next-item
7938 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7939 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-next-item&sr=1][Find modifications in git logs]]
7941 : Move cursor to next agenda item.
7942 ** org-agenda-columns
7944 :CUSTOM_ID: org-agenda-columns
7947 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
7948 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-columns&sr=1][Find modifications in git logs]]
7950 : Turn on or update column view in the agenda.
7951 ** org-agenda-toggle-deadlines
7953 :CUSTOM_ID: org-agenda-toggle-deadlines
7956 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
7957 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-toggle-deadlines&sr=1][Find modifications in git logs]]
7959 : Toggle inclusion of entries with a deadline in an agenda buffer.
7960 ** org-footnote-create-definition =(label)=
7962 :CUSTOM_ID: org-footnote-create-definition
7965 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
7966 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-create-definition&sr=1][Find modifications in git logs]]
7968 : Start the definition of a footnote with label LABEL.
7969 ** org-decrypt-entry
7971 :CUSTOM_ID: org-decrypt-entry
7974 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
7975 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-decrypt-entry&sr=1][Find modifications in git logs]]
7977 : Decrypt the content of the current headline.
7978 ** org-add-planning-info =(what &optional time &rest remove)=
7980 :CUSTOM_ID: org-add-planning-info
7983 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7984 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-add-planning-info&sr=1][Find modifications in git logs]]
7986 : Insert new timestamp with keyword in the line directly after the headline.
7987 : WHAT indicates what kind of time stamp to add. TIME indicates the time to use.
7988 : If non is given, the user is prompted for a date.
7989 : REMOVE indicates what kind of entries to remove. An old WHAT entry will also
7991 ** org-property-action
7993 :CUSTOM_ID: org-property-action
7996 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
7997 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-action&sr=1][Find modifications in git logs]]
7999 : Do an action on properties.
8000 ** org-toggle-pretty-entities
8002 :CUSTOM_ID: org-toggle-pretty-entities
8005 - *Access:* ~C-c C-x \~
8006 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8007 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-pretty-entities&sr=1][Find modifications in git logs]]
8009 : Toggle the composition display of entities as UTF8 characters.
8010 ** org-find-file-at-mouse =(ev)=
8012 :CUSTOM_ID: org-find-file-at-mouse
8015 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8016 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-find-file-at-mouse&sr=1][Find modifications in git logs]]
8018 : Open file link or URL at mouse.
8019 ** org-outdent-item-tree
8021 :CUSTOM_ID: org-outdent-item-tree
8024 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
8025 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-outdent-item-tree&sr=1][Find modifications in git logs]]
8027 : Outdent a local list item including its children.
8028 : If a region is active, all items inside will be moved.
8031 :CUSTOM_ID: org-columns-redo
8034 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
8035 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-redo&sr=1][Find modifications in git logs]]
8037 : Construct the column display again.
8038 ** org-agenda-show-1 =(&optional more)=
8040 :CUSTOM_ID: org-agenda-show-1
8043 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8044 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-1&sr=1][Find modifications in git logs]]
8046 : Display the Org-mode file which contains the item at point.
8047 : The prefix arg selects the amount of information to display:
8049 : 0 hide the subtree
8050 : 1 just show the entry according to defaults.
8051 : 2 show the children view
8052 : 3 show the subtree view
8053 : 4 show the entire subtree and any LOGBOOK drawers
8054 : 5 show the entire subtree and any drawers
8055 : With prefix argument FULL-ENTRY, make the entire entry visible
8056 : if it was hidden in the outline.
8057 ** org-agenda-filter-by-tag-refine =(strip &optional char)=
8059 :CUSTOM_ID: org-agenda-filter-by-tag-refine
8062 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8063 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-by-tag-refine&sr=1][Find modifications in git logs]]
8065 : Refine the current filter. See `org-agenda-filter-by-tag'.
8066 ** org-bibtex-read-buffer =(buffer)=
8068 :CUSTOM_ID: org-bibtex-read-buffer
8071 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
8072 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-read-buffer&sr=1][Find modifications in git logs]]
8074 : Read all bibtex entries in BUFFER and save to `org-bibtex-entries'.
8075 : Return the number of saved entries.
8076 ** org-export-as-html-and-open =(arg)=
8078 :CUSTOM_ID: org-export-as-html-and-open
8081 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
8082 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-html-and-open&sr=1][Find modifications in git logs]]
8084 : Export the outline as HTML and immediately open it with a browser.
8085 : If there is an active region, export only the region.
8086 : The prefix ARG specifies how many levels of the outline should become
8087 : headlines. The default is 3. Lower levels will become bulleted lists.
8088 ** org-babel-detangle =(&optional source-code-file)=
8090 :CUSTOM_ID: org-babel-detangle
8093 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
8094 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-detangle&sr=1][Find modifications in git logs]]
8096 : Propagate changes in source file back original to Org-mode file.
8097 : This requires that code blocks were tangled with link comments
8098 : which enable the original code blocks to be found.
8099 ** org-toggle-heading =(&optional nstars)=
8101 :CUSTOM_ID: org-toggle-heading
8104 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8105 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-heading&sr=1][Find modifications in git logs]]
8107 : Convert headings to normal text, or items or text to headings.
8108 : If there is no active region, only convert the current line.
8110 : With a C-u prefix, convert the whole list at
8111 : point into heading.
8115 : - If the first non blank line is a headline, remove the stars
8116 : from all headlines in the region.
8118 : - If it is a normal line, turn each and every normal line (i.e.,
8119 : not an heading or an item) in the region into headings. If you
8120 : want to convert only the first line of this region, use one
8121 : universal prefix argument.
8123 : - If it is a plain list item, turn all plain list items into headings.
8125 : When converting a line into a heading, the number of stars is chosen
8126 : such that the lines become children of the current entry. However,
8127 : when a numeric prefix argument is given, its value determines the
8128 : number of stars to add.
8131 :CUSTOM_ID: org-mark-element
8135 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8136 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mark-element&sr=1][Find modifications in git logs]]
8138 : Put point at beginning of this element, mark at end.
8140 : Interactively, if this command is repeated or (in Transient Mark
8141 : mode) if the mark is active, it marks the next element after the
8142 : ones already marked.
8143 ** org-display-inline-images =(&optional include-linked refresh beg end)=
8145 :CUSTOM_ID: org-display-inline-images
8148 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8149 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-display-inline-images&sr=1][Find modifications in git logs]]
8151 : Display inline images.
8152 : Normally only links without a description part are inlined, because this
8153 : is how it will work for export. When INCLUDE-LINKED is set, also links
8154 : with a description part will be inlined. This can be nice for a quick
8155 : look at those images, but it does not reflect what exported files will look
8157 : When REFRESH is set, refresh existing images between BEG and END.
8158 : This will create new image displays only if necessary.
8159 : BEG and END default to the buffer boundaries.
8160 ** org-refile =(&optional goto default-buffer rfloc msg)=
8162 :CUSTOM_ID: org-refile
8165 - *Access:* ~C-c C-w, <menu-bar> <Org> <Edit Structure> <Refile Subtree>~
8166 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8167 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile&sr=1][Find modifications in git logs]]
8169 : Move the entry or entries at point to another heading.
8170 : The list of target headings is compiled using the information in
8171 : `org-refile-targets', which see.
8173 : At the target location, the entry is filed as a subitem of the target
8174 : heading. Depending on `org-reverse-note-order', the new subitem will
8175 : either be the first or the last subitem.
8177 : If there is an active region, all entries in that region will be moved.
8178 : However, the region must fulfill the requirement that the first heading
8179 : is the first one sets the top-level of the moved text - at most siblings
8180 : below it are allowed.
8182 : With prefix arg GOTO, the command will only visit the target location
8183 : and not actually move anything.
8185 : With a double prefix arg C-u C-u, go to the location where the last refiling operation has put the subtree.
8186 : With a prefix argument of `2', refile to the running clock.
8188 : RFLOC can be a refile location obtained in a different way.
8190 : MSG is a string to replace "Refile" in the default prompt with
8191 : another verb. E.g. `org-copy' sets this parameter to "Copy".
8193 : See also `org-refile-use-outline-path' and `org-completion-use-ido'.
8195 : If you are using target caching (see `org-refile-use-cache'),
8196 : you have to clear the target cache in order to find new targets.
8197 : This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
8198 : prefix argument (`C-u C-u C-u C-c C-w').
8199 ** org-agenda-fontify-priorities
8201 :CUSTOM_ID: org-agenda-fontify-priorities
8204 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8205 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-fontify-priorities&sr=1][Find modifications in git logs]]
8207 : Make highest priority lines bold, and lowest italic.
8208 ** org-table-rotate-recalc-marks =(&optional newchar)=
8210 :CUSTOM_ID: org-table-rotate-recalc-marks
8213 - *Access:* ~C-#, <menu-bar> <Tbl> <Calculate> <Toggle Recalculate Mark>~
8214 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8215 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-rotate-recalc-marks&sr=1][Find modifications in git logs]]
8217 : Rotate the recalculation mark in the first column.
8218 : If in any row, the first field is not consistent with a mark,
8219 : insert a new column for the markers.
8220 : When there is an active region, change all the lines in the region,
8221 : after prompting for the marking character.
8222 : After each change, a message will be displayed indicating the meaning
8226 :CUSTOM_ID: org-mobile-push
8229 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Push Files and Views>, C-c C-x RET p~
8230 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
8231 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-push&sr=1][Find modifications in git logs]]
8233 : Push the current state of Org affairs to the target directory.
8234 : This will create the index file, copy all agenda files there, and also
8235 : create all custom agenda views, for upload to the mobile phone.
8236 ** org-force-cycle-archived
8238 :CUSTOM_ID: org-force-cycle-archived
8241 - *Access:* ~<C-tab>~
8242 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8243 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-force-cycle-archived&sr=1][Find modifications in git logs]]
8245 : Cycle subtree even if it is archived.
8246 ** org-agenda-goto-calendar
8248 :CUSTOM_ID: org-agenda-goto-calendar
8251 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8252 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto-calendar&sr=1][Find modifications in git logs]]
8254 : Open the Emacs calendar with the date at the cursor.
8255 ** org-babel-goto-src-block-head
8257 :CUSTOM_ID: org-babel-goto-src-block-head
8260 - *Access:* ~C-c C-v C-u, C-c C-v u~
8261 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
8262 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-goto-src-block-head&sr=1][Find modifications in git logs]]
8264 : Go to the beginning of the current code block.
8265 ** org-clock-modify-effort-estimate =(&optional value)=
8267 :CUSTOM_ID: org-clock-modify-effort-estimate
8270 - *Access:* ~C-c C-x C-e~
8271 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
8272 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-modify-effort-estimate&sr=1][Find modifications in git logs]]
8274 : Add to or set the effort estimate of the item currently being clocked.
8275 : VALUE can be a number of minutes, or a string with format hh:mm or mm.
8276 : When the string starts with a + or a - sign, the current value of the effort
8277 : property will be changed by that amount.
8278 : This will update the "Effort" property of currently clocked item, and
8280 ** org-mark-subtree =(&optional up)=
8282 :CUSTOM_ID: org-mark-subtree
8286 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8287 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mark-subtree&sr=1][Find modifications in git logs]]
8289 : Mark the current subtree.
8290 : This puts point at the start of the current subtree, and mark at
8291 : the end. If a numeric prefix UP is given, move up into the
8292 : hierarchy of headlines by UP levels before marking the subtree.
8293 ** org-backward-sentence =(&optional arg)=
8295 :CUSTOM_ID: org-backward-sentence
8299 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8300 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-backward-sentence&sr=1][Find modifications in git logs]]
8302 : Go to beginning of sentence, or beginning of table field.
8303 : This will call `backward-sentence' or `org-table-beginning-of-field',
8304 : depending on context.
8305 ** org-odt-export-as-odf =(latex-frag &optional odf-file)=
8307 :CUSTOM_ID: org-odt-export-as-odf
8310 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
8311 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-export-as-odf&sr=1][Find modifications in git logs]]
8313 : Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
8314 : Use `org-create-math-formula' to convert LATEX-FRAG first to
8315 : MathML. When invoked as an interactive command, use
8316 : `org-latex-regexps' to infer LATEX-FRAG from currently active
8317 : region. If no LaTeX fragments are found, prompt for it. Push
8318 : MathML source to kill ring depending on the value of
8319 : `org-export-copy-to-kill-ring'.
8320 ** org-datetree-cleanup
8322 :CUSTOM_ID: org-datetree-cleanup
8325 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-datetree.el;hb=HEAD][org-datetree.el]]
8326 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-datetree-cleanup&sr=1][Find modifications in git logs]]
8328 : Make sure all entries in the current tree are under the correct date.
8329 : It may be useful to restrict the buffer to the applicable portion
8330 : before running this command, even though the command tries to be smart.
8331 ** org-show-todo-tree =(arg)=
8333 :CUSTOM_ID: org-show-todo-tree
8336 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Show TODO Tree>, <menu-bar> <Org> <Special views current file> <TODO Tree>~
8337 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8338 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-todo-tree&sr=1][Find modifications in git logs]]
8340 : Make a compact tree which shows all headlines marked with TODO.
8341 : The tree will show the lines where the regexp matches, and all higher
8342 : headlines above the match.
8343 : With a C-u prefix, prompt for a regexp to match.
8344 : With a numeric prefix N, construct a sparse tree for the Nth element
8345 : of `org-todo-keywords-1'.
8346 ** org-plot/gnuplot-to-grid-data =(table data-file params)=
8348 :CUSTOM_ID: org-plot/gnuplot-to-grid-data
8351 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-plot.el;hb=HEAD][org-plot.el]]
8352 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plot/gnuplot-to-grid-data&sr=1][Find modifications in git logs]]
8354 : Export the data in TABLE to DATA-FILE for gnuplot.
8355 : This means in a format appropriate for grid plotting by gnuplot.
8356 : PARAMS specifies which columns of TABLE should be plotted as independent
8357 : and dependant variables.
8358 ** org-babel-hide-result-toggle =(&optional force)=
8360 :CUSTOM_ID: org-babel-hide-result-toggle
8363 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
8364 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-hide-result-toggle&sr=1][Find modifications in git logs]]
8366 : Toggle the visibility of the current result.
8367 ** org-remove-occur-highlights =(&optional beg end noremove)=
8369 :CUSTOM_ID: org-remove-occur-highlights
8372 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8373 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-remove-occur-highlights&sr=1][Find modifications in git logs]]
8375 : Remove the occur highlights from the buffer.
8376 : BEG and END are ignored. If NOREMOVE is nil, remove this function
8377 : from the `before-change-functions' in the current buffer.
8378 ** org-src-fontify-buffer
8380 :CUSTOM_ID: org-src-fontify-buffer
8383 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
8384 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-fontify-buffer&sr=1][Find modifications in git logs]]
8386 : Fontify all code blocks in the current buffer.
8387 ** org-table-fedit-toggle-ref-type
8389 :CUSTOM_ID: org-table-fedit-toggle-ref-type
8392 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8393 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-toggle-ref-type&sr=1][Find modifications in git logs]]
8395 : Convert all references in the buffer from B3 to @3$2 and back.
8396 ** org-insert-todo-heading =(arg &optional force-heading)=
8398 :CUSTOM_ID: org-insert-todo-heading
8401 - *Access:* ~<M-S-return>~
8402 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8403 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-todo-heading&sr=1][Find modifications in git logs]]
8405 : Insert a new heading with the same level and TODO state as current heading.
8406 : If the heading has no TODO state, or if the state is DONE, use the first
8407 : state (TODO by default). Also one prefix arg, force first state. With two
8408 : prefix args, force inserting at the end of the parent subtree.
8409 ** org-drag-element-backward
8411 :CUSTOM_ID: org-drag-element-backward
8414 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8415 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-drag-element-backward&sr=1][Find modifications in git logs]]
8417 : Move backward element at point.
8418 ** org-bibtex-check-all =(&optional optional)=
8420 :CUSTOM_ID: org-bibtex-check-all
8423 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
8424 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-check-all&sr=1][Find modifications in git logs]]
8426 : Check all headlines in the current file.
8427 : With prefix argument OPTIONAL also prompt for optional fields.
8428 ** org-show-block-all
8430 :CUSTOM_ID: org-show-block-all
8433 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8434 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-block-all&sr=1][Find modifications in git logs]]
8436 : Unfold all blocks in the current buffer.
8437 ** org-cdlatex-mode =(&optional arg)=
8439 :CUSTOM_ID: org-cdlatex-mode
8442 - *Access:* ~<menu-bar> <Org> <LaTeX> <Org CDLaTeX mode>~
8443 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8444 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cdlatex-mode&sr=1][Find modifications in git logs]]
8446 : Toggle the minor `org-cdlatex-mode'.
8447 : This mode supports entering LaTeX environment and math in LaTeX fragments
8452 : C-c Prefix Command
8453 : ' org-cdlatex-math-modify
8454 : ^ .. _ org-cdlatex-underscore-caret
8455 : ` cdlatex-math-symbol
8457 : C-c { cdlatex-environment
8460 ** org-columns =(&optional columns-fmt-string)=
8462 :CUSTOM_ID: org-columns
8465 - *Access:* ~C-c C-x C-c, <menu-bar> <Org> <TAGS and Properties> <Column view of properties>~
8466 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
8467 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns&sr=1][Find modifications in git logs]]
8469 : Turn on column view on an org-mode file.
8470 : When COLUMNS-FMT-STRING is non-nil, use it as the column format.
8471 ** org-babel-execute-subtree =(&optional arg)=
8473 :CUSTOM_ID: org-babel-execute-subtree
8476 - *Access:* ~C-c C-v s, C-c C-v C-s~
8477 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
8478 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-execute-subtree&sr=1][Find modifications in git logs]]
8480 : Execute source code blocks in a subtree.
8481 : Call `org-babel-execute-src-block' on every source block in
8482 : the current subtree.
8483 ** org-set-property =(property value)=
8485 :CUSTOM_ID: org-set-property
8488 - *Access:* ~C-c C-x p, <menu-bar> <Org> <TAGS and Properties> <Set property>~
8489 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8490 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-property&sr=1][Find modifications in git logs]]
8492 : In the current entry, set PROPERTY to VALUE.
8493 : When called interactively, this will prompt for a property name, offering
8494 : completion on existing and default properties. And then it will prompt
8495 : for a value, offering completion either on allowed values (via an inherited
8496 : xxx_ALL property) or on existing values in other instances of this property
8497 : in the current file.
8498 ** org-plot/goto-nearest-table
8500 :CUSTOM_ID: org-plot/goto-nearest-table
8503 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-plot.el;hb=HEAD][org-plot.el]]
8504 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plot/goto-nearest-table&sr=1][Find modifications in git logs]]
8506 : Move the point forward to the beginning of nearest table.
8507 : Return value is the point at the beginning of the table.
8508 ** org-babel-describe-bindings
8510 :CUSTOM_ID: org-babel-describe-bindings
8513 - *Access:* ~C-c C-v h~
8514 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-keys.el;hb=HEAD][ob-keys.el]]
8515 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-describe-bindings&sr=1][Find modifications in git logs]]
8517 : Describe all keybindings behind `org-babel-key-prefix'.
8520 :CUSTOM_ID: org-down-element
8523 - *Access:* ~C-c C-_~
8524 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8525 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-down-element&sr=1][Find modifications in git logs]]
8527 : Move to inner element.
8528 ** org-columns-show-value
8530 :CUSTOM_ID: org-columns-show-value
8533 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
8534 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-show-value&sr=1][Find modifications in git logs]]
8536 : Show the full value of the property.
8537 ** org-table-field-info =(arg)=
8539 :CUSTOM_ID: org-table-field-info
8543 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8544 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-field-info&sr=1][Find modifications in git logs]]
8546 : Show info about the current field, and highlight any reference at point.
8547 ** org-insert-heading-respect-content =(&optional arg invisible-ok)=
8549 :CUSTOM_ID: org-insert-heading-respect-content
8552 - *Access:* ~<C-return>~
8553 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8554 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-heading-respect-content&sr=1][Find modifications in git logs]]
8556 : Insert heading with `org-insert-heading-respect-content' set to t.
8557 ** org-toggle-checkbox =(&optional toggle-presence)=
8559 :CUSTOM_ID: org-toggle-checkbox
8562 - *Access:* ~C-c C-x C-b~
8563 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
8564 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-checkbox&sr=1][Find modifications in git logs]]
8566 : Toggle the checkbox in the current line.
8567 : With prefix arg TOGGLE-PRESENCE, add or remove checkboxes. With
8568 : double prefix, set checkbox to [-].
8570 : When there is an active region, toggle status or presence of the
8571 : first checkbox there, and make every item inside have the same
8572 : status or presence, respectively.
8574 : If the cursor is in a headline, apply this to all checkbox items
8575 : in the text below the heading, taking as reference the first item
8576 : in subtree, ignoring drawers.
8577 ** org-set-visibility-according-to-property =(&optional no-cleanup)=
8579 :CUSTOM_ID: org-set-visibility-according-to-property
8582 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8583 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-visibility-according-to-property&sr=1][Find modifications in git logs]]
8585 : Switch subtree visibilities according to :VISIBILITY: property.
8586 ** org-agenda-phases-of-moon
8588 :CUSTOM_ID: org-agenda-phases-of-moon
8591 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8592 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-phases-of-moon&sr=1][Find modifications in git logs]]
8594 : Display the phases of the moon for the 3 months around the cursor date.
8595 ** org-timer-item =(&optional arg)=
8597 :CUSTOM_ID: org-timer-item
8600 - *Access:* ~C-c C-x -, <menu-bar> <Org> <Dates and Scheduling> <Insert Timer Item>~
8601 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
8602 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-item&sr=1][Find modifications in git logs]]
8604 : Insert a description-type item with the current timer value.
8605 ** org-agenda-do-date-later =(arg)=
8607 :CUSTOM_ID: org-agenda-do-date-later
8610 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8611 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-do-date-later&sr=1][Find modifications in git logs]]
8616 :CUSTOM_ID: org-agenda-undo
8619 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8620 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-undo&sr=1][Find modifications in git logs]]
8622 : Undo a remote editing step in the agenda.
8623 : This undoes changes both in the agenda buffer and in the remote buffer
8624 : that have been changed along.
8625 ** org-agenda-todo-previousset
8627 :CUSTOM_ID: org-agenda-todo-previousset
8630 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8631 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-previousset&sr=1][Find modifications in git logs]]
8633 : Switch TODO entry to previous sequence.
8634 ** org-end-of-item-list
8636 :CUSTOM_ID: org-end-of-item-list
8639 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
8640 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-end-of-item-list&sr=1][Find modifications in git logs]]
8642 : Go to the end of the current list or sublist.
8643 : Throw an error when not in a list.
8646 :CUSTOM_ID: org-footnote-new
8649 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
8650 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-new&sr=1][Find modifications in git logs]]
8652 : Insert a new footnote.
8653 : This command prompts for a label. If this is a label referencing an
8654 : existing label, only insert the label. If the footnote label is empty
8655 : or new, let the user edit the definition of the footnote.
8656 ** org-feed-update-all
8658 :CUSTOM_ID: org-feed-update-all
8661 - *Access:* ~C-c C-x g, <menu-bar> <Org> <TODO Lists> <Get news from all feeds>~
8662 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
8663 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-update-all&sr=1][Find modifications in git logs]]
8665 : Get inbox items from all feeds in `org-feed-alist'.
8666 ** org-agenda-month-view =(&optional month)=
8668 :CUSTOM_ID: org-agenda-month-view
8671 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8672 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-month-view&sr=1][Find modifications in git logs]]
8674 : Switch to monthly view for agenda.
8675 : With argument MONTH, switch to that month.
8676 ** org-html-convert-region-to-html
8678 :CUSTOM_ID: org-html-convert-region-to-html
8681 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
8682 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-convert-region-to-html&sr=1][Find modifications in git logs]]
8684 : Assume the current region has org-mode syntax, and convert it to HTML.
8685 : This can be used in any buffer. For example, you can write an
8686 : itemized list in org-mode syntax in an HTML buffer and use this
8687 : command to convert it.
8688 ** org-babel-tangle-clean
8690 :CUSTOM_ID: org-babel-tangle-clean
8693 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
8694 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-clean&sr=1][Find modifications in git logs]]
8696 : Remove comments inserted by `org-babel-tangle'.
8697 : Call this function inside of a source-code file generated by
8698 : `org-babel-tangle' to remove all comments inserted automatically
8699 : by `org-babel-tangle'. Warning, this comment removes any lines
8700 : containing constructs which resemble org-mode file links or noweb
8702 ** org-table-fedit-lisp-indent
8704 :CUSTOM_ID: org-table-fedit-lisp-indent
8707 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8708 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-lisp-indent&sr=1][Find modifications in git logs]]
8710 : Pretty-print and re-indent Lisp expressions in the Formula Editor.
8711 ** org-columns-display-here =(&optional props dateline)=
8713 :CUSTOM_ID: org-columns-display-here
8716 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
8717 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-display-here&sr=1][Find modifications in git logs]]
8719 : Overlay the current line with column display.
8722 :CUSTOM_ID: org-columns-quit
8725 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
8726 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-quit&sr=1][Find modifications in git logs]]
8728 : Remove the column overlays and in this way exit column editing.
8729 ** org-shiftleft =(&optional arg)=
8731 :CUSTOM_ID: org-shiftleft
8734 - *Access:* ~<S-left>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Earlier>~
8735 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8736 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftleft&sr=1][Find modifications in git logs]]
8738 : Cycle the thing at point or in the current line, depending on context.
8739 : Depending on context, this does one of the following:
8741 : - switch a timestamp at point one day into the past
8742 : - on a headline, switch to the previous TODO keyword.
8743 : - on an item, switch entire list to the previous bullet type
8744 : - on a property line, switch to the previous allowed value
8745 : - on a clocktable definition line, move time block into the past
8746 ** org-resolve-clocks =(&optional only-dangling-p prompt-fn last-valid)=
8748 :CUSTOM_ID: org-resolve-clocks
8751 - *Access:* ~C-c C-x C-z~
8752 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
8753 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-resolve-clocks&sr=1][Find modifications in git logs]]
8755 : Resolve all currently open org-mode clocks.
8756 : If `only-dangling-p' is non-nil, only ask to resolve dangling
8757 : (i.e., not currently open and valid) clocks.
8758 ** org-agenda-limit-interactively
8760 :CUSTOM_ID: org-agenda-limit-interactively
8763 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8764 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-limit-interactively&sr=1][Find modifications in git logs]]
8766 : In agenda, interactively limit entries to various maximums.
8767 ** org-open-at-point-global
8769 :CUSTOM_ID: org-open-at-point-global
8772 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8773 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-at-point-global&sr=1][Find modifications in git logs]]
8775 : Follow a link like Org-mode does.
8776 : This command can be called in any mode to follow a link that has
8778 ** org-export-visible =(type arg)=
8780 :CUSTOM_ID: org-export-visible
8783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
8784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-visible&sr=1][Find modifications in git logs]]
8786 : Create a copy of the visible part of the current buffer, and export it.
8787 : The copy is created in a temporary buffer and removed after use.
8788 : TYPE is the final key (as a string) that also selects the export command in
8789 : the M-x org-export export dispatcher.
8790 : As a special case, if the you type SPC at the prompt, the temporary
8791 : org-mode file will not be removed but presented to you so that you can
8792 : continue to use it. The prefix arg ARG is passed through to the exporting
8794 ** org-publish =(project &optional force async)=
8796 :CUSTOM_ID: org-publish
8799 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
8800 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish&sr=1][Find modifications in git logs]]
8804 : PROJECT is either a project name, as a string, or a project
8805 : alist (see `org-publish-project-alist' variable).
8807 : When optional argument FORCE is non-nil, force publishing all
8808 : files in PROJECT. With a non-nil optional argument ASYNC,
8809 : publishing will be done asynchronously, in another process.
8810 ** org-return =(&optional indent)=
8812 :CUSTOM_ID: org-return
8815 - *Access:* ~RET, <menu-bar> <Tbl> <Next Row>~
8816 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8817 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-return&sr=1][Find modifications in git logs]]
8819 : Goto next table row or insert a newline.
8820 : Calls `org-table-next-row' or `newline', depending on context.
8821 : See the individual commands for more information.
8822 ** org-ctags-visit-buffer-or-file =(name &optional create)=
8824 :CUSTOM_ID: org-ctags-visit-buffer-or-file
8827 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
8828 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-visit-buffer-or-file&sr=1][Find modifications in git logs]]
8830 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
8831 : Visit buffer named `NAME.org'. If there is no such buffer, visit the file
8832 : with the same name if it exists. If the file does not exist, then behavior
8833 : depends on the value of CREATE.
8835 : If CREATE is nil (default), then return nil. Do not create a new file.
8836 : If CREATE is t, create the new file and visit it.
8837 : If CREATE is the symbol `ask', then ask the user if they wish to create
8839 ** org-export-stack-view =(&optional in-emacs)=
8841 :CUSTOM_ID: org-export-stack-view
8844 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
8845 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-stack-view&sr=1][Find modifications in git logs]]
8847 : View export results at point in stack.
8848 : With an optional prefix argument IN-EMACS, force viewing files
8852 :CUSTOM_ID: org-mode-restart
8855 - *Access:* ~<menu-bar> <Org> <Refresh/Reload> <Refresh setup current buffer>~
8856 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8857 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mode-restart&sr=1][Find modifications in git logs]]
8859 : Restart Org-mode, to scan again for special lines.
8860 : Also updates the keyword regular expressions.
8861 ** org-table-sum =(&optional beg end nlast)=
8863 :CUSTOM_ID: org-table-sum
8866 - *Access:* ~C-c +, <menu-bar> <Tbl> <Calculate> <Sum Column/Rectangle>~
8867 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8868 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-sum&sr=1][Find modifications in git logs]]
8870 : Sum numbers in region of current table column.
8871 : The result will be displayed in the echo area, and will be available
8872 : as kill to be inserted with <S-insertchar>.
8874 : If there is an active region, it is interpreted as a rectangle and all
8875 : numbers in that rectangle will be summed. If there is no active
8876 : region and point is located in a table column, sum all numbers in that
8879 : If at least one number looks like a time HH:MM or HH:MM:SS, all other
8880 : numbers are assumed to be times as well (in decimal hours) and the
8881 : numbers are added as such.
8883 : If NLAST is a number, only the NLAST fields will actually be summed.
8884 ** org-babel-switch-to-session =(&optional arg info)=
8886 :CUSTOM_ID: org-babel-switch-to-session
8889 - *Access:* ~C-c C-v C-z~
8890 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
8891 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-switch-to-session&sr=1][Find modifications in git logs]]
8893 : Switch to the session of the current code block.
8894 : Uses `org-babel-initiate-session' to start the session. If called
8895 : with a prefix argument then this is passed on to
8896 : `org-babel-initiate-session'.
8897 ** org-bibtex =(&optional filename)=
8899 :CUSTOM_ID: org-bibtex
8902 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
8903 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex&sr=1][Find modifications in git logs]]
8905 : Export each headline in the current file to a bibtex entry.
8906 : Headlines are exported using `org-bibtex-export-headline'.
8909 :CUSTOM_ID: org-cycle-level
8912 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8913 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-level&sr=1][Find modifications in git logs]]
8915 : Cycle the level of an empty headline through possible states.
8916 : This goes first to child, then to parent, level, then up the hierarchy.
8917 : After top level, it switches back to sibling level.
8918 ** org-table-insert-row =(&optional arg)=
8920 :CUSTOM_ID: org-table-insert-row
8923 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8924 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-insert-row&sr=1][Find modifications in git logs]]
8926 : Insert a new row above the current line into the table.
8927 : With prefix ARG, insert below the current line.
8928 ** org-agenda-date-later-hours =(arg)=
8930 :CUSTOM_ID: org-agenda-date-later-hours
8933 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
8934 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-later-hours&sr=1][Find modifications in git logs]]
8936 : Change the time of this item, in hour steps.
8937 ** org-mobile-create-sumo-agenda
8939 :CUSTOM_ID: org-mobile-create-sumo-agenda
8942 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
8943 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-create-sumo-agenda&sr=1][Find modifications in git logs]]
8945 : Create a file that contains all custom agenda views.
8946 ** org-attach-set-inherit
8948 :CUSTOM_ID: org-attach-set-inherit
8951 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
8952 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-set-inherit&sr=1][Find modifications in git logs]]
8954 : Set the ATTACH_DIR_INHERIT property of the current entry.
8955 : The property defines the directory that is used for attachments
8956 : of the entry and any children that do not explicitly define (by setting
8957 : the ATTACH_DIR property) their own attachment directory.
8958 ** org-bibtex-create =(&optional arg nonew)=
8960 :CUSTOM_ID: org-bibtex-create
8963 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
8964 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-create&sr=1][Find modifications in git logs]]
8966 : Create a new entry at the given level.
8967 : With a prefix arg, query for optional fields as well.
8968 : If nonew is t, add data to the headline of the entry at point.
8969 ** org-table-toggle-coordinate-overlays
8971 :CUSTOM_ID: org-table-toggle-coordinate-overlays
8974 - *Access:* ~C-c }, <menu-bar> <Tbl> <Show Col/Row Numbers>~
8975 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
8976 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-toggle-coordinate-overlays&sr=1][Find modifications in git logs]]
8978 : Toggle the display of Row/Column numbers in tables.
8979 ** org-next-link =(&optional search-backward)=
8981 :CUSTOM_ID: org-next-link
8984 - *Access:* ~C-c C-x C-n, <menu-bar> <Org> <Hyperlinks> <Next link>~
8985 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8986 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-next-link&sr=1][Find modifications in git logs]]
8988 : Move forward to the next link.
8989 : If the link is in hidden text, expose it.
8990 ** org-remove-inline-images
8992 :CUSTOM_ID: org-remove-inline-images
8995 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
8996 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-remove-inline-images&sr=1][Find modifications in git logs]]
8998 : Remove inline display of images.
8999 ** org-agenda-switch-to =(&optional delete-other-windows)=
9001 :CUSTOM_ID: org-agenda-switch-to
9004 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9005 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-switch-to&sr=1][Find modifications in git logs]]
9007 : Go to the Org-mode file which contains the item at point.
9008 ** org-paste-subtree =(&optional level tree for-yank)=
9010 :CUSTOM_ID: org-paste-subtree
9013 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9014 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-paste-subtree&sr=1][Find modifications in git logs]]
9016 : Paste the clipboard as a subtree, with modification of headline level.
9017 : The entire subtree is promoted or demoted in order to match a new headline
9020 : If the cursor is at the beginning of a headline, the same level as
9021 : that headline is used to paste the tree.
9023 : If not, the new level is derived from the *visible* headings
9024 : before and after the insertion point, and taken to be the inferior headline
9025 : level of the two. So if the previous visible heading is level 3 and the
9026 : next is level 4 (or vice versa), level 4 will be used for insertion.
9027 : This makes sure that the subtree remains an independent subtree and does
9028 : not swallow low level entries.
9030 : You can also force a different level, either by using a numeric prefix
9031 : argument, or by inserting the heading marker by hand. For example, if the
9032 : cursor is after "*****", then the tree will be shifted to level 5.
9034 : If optional TREE is given, use this text instead of the kill ring.
9036 : When FOR-YANK is set, this is called by `org-yank'. In this case, do not
9037 : move back over whitespace before inserting, and move point to the end of
9038 : the inserted text when done.
9039 ** org-agenda-toggle-time-grid
9041 :CUSTOM_ID: org-agenda-toggle-time-grid
9044 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9045 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-toggle-time-grid&sr=1][Find modifications in git logs]]
9047 : Toggle time grid in an agenda buffer.
9048 ** org-beamer-insert-options-template =(&optional kind)=
9050 :CUSTOM_ID: org-beamer-insert-options-template
9053 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
9054 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-insert-options-template&sr=1][Find modifications in git logs]]
9056 : Insert a settings template, to make sure users do this right.
9057 ** org-id-get-create =(&optional force)=
9059 :CUSTOM_ID: org-id-get-create
9062 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
9063 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-get-create&sr=1][Find modifications in git logs]]
9065 : Create an ID for the current entry and return it.
9066 : If the entry already has an ID, just return it.
9067 : With optional argument FORCE, force the creation of a new ID.
9068 ** org-create-math-formula =(latex-frag &optional mathml-file)=
9070 :CUSTOM_ID: org-create-math-formula
9073 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9074 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-create-math-formula&sr=1][Find modifications in git logs]]
9076 : Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
9077 : Use `org-latex-to-mathml-convert-command'. If the conversion is
9078 : sucessful, return the portion between "<math...> </math>"
9079 : elements otherwise return nil. When MATHML-FILE is specified,
9080 : write the results in to that file. When invoked as an
9081 : interactive command, prompt for LATEX-FRAG, with initial value
9082 : set to the current active region and echo the results for user
9084 ** org-agenda-date-earlier-hours =(arg)=
9086 :CUSTOM_ID: org-agenda-date-earlier-hours
9089 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9090 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-earlier-hours&sr=1][Find modifications in git logs]]
9092 : Change the time of this item, in hour steps.
9093 ** org-ctags-find-tag-interactive
9095 :CUSTOM_ID: org-ctags-find-tag-interactive
9098 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
9099 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-find-tag-interactive&sr=1][Find modifications in git logs]]
9101 : Prompt for the name of a tag, with autocompletion, then visit the named tag.
9102 : Uses `ido-mode' if available.
9103 : If the user enters a string that does not match an existing tag, create
9105 ** org-cut-subtree =(&optional n)=
9107 :CUSTOM_ID: org-cut-subtree
9110 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9111 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cut-subtree&sr=1][Find modifications in git logs]]
9113 : Cut the current subtree into the clipboard.
9114 : With prefix arg N, cut this many sequential subtrees.
9115 : This is a short-hand for marking the subtree and then cutting it.
9116 ** org-agenda-archives-mode =(&optional with-files)=
9118 :CUSTOM_ID: org-agenda-archives-mode
9121 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9122 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archives-mode&sr=1][Find modifications in git logs]]
9124 : Toggle inclusion of items in trees marked with :ARCHIVE:.
9125 : When called with a prefix argument, include all archive files as well.
9126 ** org-export-blocks-preprocess
9128 :CUSTOM_ID: org-export-blocks-preprocess
9131 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
9132 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-blocks-preprocess&sr=1][Find modifications in git logs]]
9134 : Export all blocks according to the `org-export-blocks' block export alist.
9135 : Does not export block types specified in specified in BLOCKS
9136 : which defaults to the value of `org-export-blocks-witheld'.
9137 ** org-calendar-select-mouse =(ev)=
9139 :CUSTOM_ID: org-calendar-select-mouse
9142 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9143 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-select-mouse&sr=1][Find modifications in git logs]]
9145 : Return to `org-read-date' with the date currently selected.
9146 : This is used by `org-read-date' in a temporary keymap for the calendar buffer.
9147 ** org-agenda-entry-text-mode =(&optional arg)=
9149 :CUSTOM_ID: org-agenda-entry-text-mode
9152 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9153 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-mode&sr=1][Find modifications in git logs]]
9155 : Toggle entry text mode in an agenda buffer.
9156 ** org-table-create-or-convert-from-region =(arg)=
9158 :CUSTOM_ID: org-table-create-or-convert-from-region
9162 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9163 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-create-or-convert-from-region&sr=1][Find modifications in git logs]]
9165 : Convert region to table, or create an empty table.
9166 : If there is an active region, convert it to a table, using the function
9167 : `org-table-convert-region'. See the documentation of that function
9168 : to learn how the prefix argument is interpreted to determine the field
9170 : If there is no such region, create an empty table with `org-table-create'.
9173 :CUSTOM_ID: org-clock-menu
9176 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
9177 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-menu&sr=1][Find modifications in git logs]]
9180 ** org-metadown =(&optional arg)=
9182 :CUSTOM_ID: org-metadown
9185 - *Access:* ~<M-down>, <menu-bar> <Tbl> <Row> <Move Row Down>~
9186 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9187 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-metadown&sr=1][Find modifications in git logs]]
9189 : Move subtree down or move table row down.
9190 : Calls `org-move-subtree-down' or `org-table-move-row' or
9191 : `org-move-item-down', depending on context. See the individual
9192 : commands for more information.
9193 ** org-table-eval-formula =(&optional arg equation suppress-align suppress-const suppress-store suppress-analysis)=
9195 :CUSTOM_ID: org-table-eval-formula
9198 - *Access:* ~C-c =, <menu-bar> <Tbl> <Calculate> <Set Column Formula>~
9199 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9200 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-eval-formula&sr=1][Find modifications in git logs]]
9202 : Replace the table field value at the cursor by the result of a calculation.
9204 : This function makes use of Dave Gillespie's Calc package, in my view the
9205 : most exciting program ever written for GNU Emacs. So you need to have Calc
9206 : installed in order to use this function.
9208 : In a table, this command replaces the value in the current field with the
9209 : result of a formula. It also installs the formula as the "current" column
9210 : formula, by storing it in a special line below the table. When called
9211 : with a `C-u' prefix, the current field must be a named field, and the
9212 : formula is installed as valid in only this specific field.
9214 : When called with two `C-u' prefixes, insert the active equation
9215 : for the field back into the current field, so that it can be
9216 : edited there. This is useful in order to use M-x org-table-show-reference
9217 : to check the referenced fields.
9219 : When called, the command first prompts for a formula, which is read in
9220 : the minibuffer. Previously entered formulas are available through the
9221 : history list, and the last used formula is offered as a default.
9222 : These stored formulas are adapted correctly when moving, inserting, or
9223 : deleting columns with the corresponding commands.
9225 : The formula can be any algebraic expression understood by the Calc package.
9226 : For details, see the Org-mode manual.
9228 : This function can also be called from Lisp programs and offers
9229 : additional arguments: EQUATION can be the formula to apply. If this
9230 : argument is given, the user will not be prompted. SUPPRESS-ALIGN is
9231 : used to speed-up recursive calls by by-passing unnecessary aligns.
9232 : SUPPRESS-CONST suppresses the interpretation of constants in the
9233 : formula, assuming that this has been done already outside the function.
9234 : SUPPRESS-STORE means the formula should not be stored, either because
9235 : it is already stored, or because it is a modified equation that should
9236 : not overwrite the stored one.
9237 ** org-open-line =(n)=
9239 :CUSTOM_ID: org-open-line
9242 - *Access:* ~C-o, <insertline>~
9243 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9244 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-line&sr=1][Find modifications in git logs]]
9246 : Insert a new row in tables, call `open-line' elsewhere.
9247 ** org-columns-todo =(&optional arg)=
9249 :CUSTOM_ID: org-columns-todo
9252 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
9253 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-todo&sr=1][Find modifications in git logs]]
9255 : Change the TODO state during column view.
9256 ** org-clock-out =(&optional switch-to-state fail-quietly at-time)=
9258 :CUSTOM_ID: org-clock-out
9261 - *Access:* ~C-c C-x C-o, <menu-bar> <Org> <Logging work> <Clock out>~
9262 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
9263 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-out&sr=1][Find modifications in git logs]]
9265 : Stop the currently running clock.
9266 : Throw an error if there is no running clock and FAIL-QUIETLY is nil.
9267 : With a universal prefix, prompt for a state to switch the clocked out task
9268 : to, overriding the existing value of `org-clock-out-switch-to-state'.
9269 ** org-babel-pop-to-session =(&optional arg info)=
9271 :CUSTOM_ID: org-babel-pop-to-session
9274 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
9275 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-pop-to-session&sr=1][Find modifications in git logs]]
9277 : Switch to the session of the current code block.
9278 : Uses `org-babel-initiate-session' to start the session. If called
9279 : with a prefix argument then this is passed on to
9280 : `org-babel-initiate-session'.
9281 ** org-unindent-buffer
9283 :CUSTOM_ID: org-unindent-buffer
9286 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9287 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-unindent-buffer&sr=1][Find modifications in git logs]]
9289 : Un-indent the visible part of the buffer.
9290 : Relative indentation (between items, inside blocks, etc.) isn't
9292 ** org-table-previous-field
9294 :CUSTOM_ID: org-table-previous-field
9297 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9298 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-previous-field&sr=1][Find modifications in git logs]]
9300 : Go to the previous field in the table.
9301 : Before doing so, re-align the table if necessary.
9302 ** org-mobile-move-capture
9304 :CUSTOM_ID: org-mobile-move-capture
9307 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
9308 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-move-capture&sr=1][Find modifications in git logs]]
9310 : Move the contents of the capture file to the inbox file.
9311 : Return a marker to the location where the new content has been added.
9312 : If nothing new has been added, return nil.
9313 ** org-agenda-file-to-front =(&optional to-end)=
9315 :CUSTOM_ID: org-agenda-file-to-front
9318 - *Access:* ~C-c [, <menu-bar> <Org> <File List for Agenda> <Add/Move Current File to Front of List>~
9319 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9320 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-file-to-front&sr=1][Find modifications in git logs]]
9322 : Move/add the current file to the top of the agenda file list.
9323 : If the file is not present in the list, it is added to the front. If it is
9324 : present, it is moved there. With optional argument TO-END, add/move to the
9326 ** org-table-follow-field-mode =(&optional arg)=
9328 :CUSTOM_ID: org-table-follow-field-mode
9331 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9332 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-follow-field-mode&sr=1][Find modifications in git logs]]
9334 : Minor mode to make the table field editor window follow the cursor.
9335 : When this mode is active, the field editor window will always show the
9336 : current field. The mode exits automatically when the cursor leaves the
9337 : table (but see `org-table-exit-follow-field-mode-when-leaving-table').
9338 ** org-edit-agenda-file-list
9340 :CUSTOM_ID: org-edit-agenda-file-list
9343 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9344 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-agenda-file-list&sr=1][Find modifications in git logs]]
9346 : Edit the list of agenda files.
9347 : Depending on setup, this either uses customize to edit the variable
9348 : `org-agenda-files', or it visits the file that is holding the list. In the
9349 : latter case, the buffer is set up in a way that saving it automatically kills
9350 : the buffer and restores the previous window configuration.
9351 ** org-mouse-remove-match-and-spaces
9353 :CUSTOM_ID: org-mouse-remove-match-and-spaces
9356 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
9357 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-remove-match-and-spaces&sr=1][Find modifications in git logs]]
9359 : Remove the match, make just one space around the point.
9360 ** org-table-insert-column
9362 :CUSTOM_ID: org-table-insert-column
9365 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9366 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-insert-column&sr=1][Find modifications in git logs]]
9368 : Insert a new column into the table.
9369 ** org-clock-update-time-maybe
9371 :CUSTOM_ID: org-clock-update-time-maybe
9374 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
9375 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-update-time-maybe&sr=1][Find modifications in git logs]]
9377 : If this is a CLOCK line, update it and return t.
9378 : Otherwise, return nil.
9379 ** org-ctags-open-file =(name &optional title)=
9381 :CUSTOM_ID: org-ctags-open-file
9384 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
9385 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-open-file&sr=1][Find modifications in git logs]]
9387 : Visit or create a file called `NAME.org', and insert a new topic.
9388 : The new topic will be titled NAME (or TITLE if supplied).
9389 ** org-at-date-range-p =(&optional inactive-ok)=
9391 :CUSTOM_ID: org-at-date-range-p
9394 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9395 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-at-date-range-p&sr=1][Find modifications in git logs]]
9397 : Is the cursor inside a date range?
9398 ** org-agenda-set-tags =(&optional tag onoff)=
9400 :CUSTOM_ID: org-agenda-set-tags
9403 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9404 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-set-tags&sr=1][Find modifications in git logs]]
9406 : Set tags for the current headline.
9407 ** org-smart-reschedule =(quality)=
9409 :CUSTOM_ID: org-smart-reschedule
9412 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-learn.el;hb=HEAD][org-learn.el]]
9413 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-smart-reschedule&sr=1][Find modifications in git logs]]
9416 ** org-latex-convert-region-to-latex
9418 :CUSTOM_ID: org-latex-convert-region-to-latex
9421 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
9422 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-convert-region-to-latex&sr=1][Find modifications in git logs]]
9424 : Assume the current region has org-mode syntax, and convert it to LaTeX.
9425 : This can be used in any buffer. For example, you can write an
9426 : itemized list in org-mode syntax in an LaTeX buffer and use this
9427 : command to convert it.
9428 ** org-rss-export-as-rss =(&optional async subtreep visible-only)=
9430 :CUSTOM_ID: org-rss-export-as-rss
9433 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
9434 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-export-as-rss&sr=1][Find modifications in git logs]]
9436 : Export current buffer to a RSS buffer.
9438 : If narrowing is active in the current buffer, only export its
9441 : If a region is active, export that region.
9443 : A non-nil optional argument ASYNC means the process should happen
9444 : asynchronously. The resulting buffer should be accessible
9445 : through the `org-export-stack' interface.
9447 : When optional argument SUBTREEP is non-nil, export the sub-tree
9448 : at point, extracting information from the headline properties
9451 : When optional argument VISIBLE-ONLY is non-nil, don't export
9452 : contents of hidden elements.
9454 : Export is done in a buffer named "*Org RSS Export*", which will
9455 : be displayed when `org-export-show-temporary-export-buffer' is
9457 ** org-attach-open =(&optional in-emacs)=
9459 :CUSTOM_ID: org-attach-open
9462 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
9463 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-open&sr=1][Find modifications in git logs]]
9465 : Open an attachment of the current task.
9466 : If there are more than one attachment, you will be prompted for the file name.
9467 : This command will open the file using the settings in `org-file-apps'
9468 : and in the system-specific variants of this variable.
9469 : If IN-EMACS is non-nil, force opening in Emacs.
9470 ** org-agenda-show-and-scroll-up =(&optional arg)=
9472 :CUSTOM_ID: org-agenda-show-and-scroll-up
9475 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9476 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-and-scroll-up&sr=1][Find modifications in git logs]]
9478 : Display the Org-mode file which contains the item at point.
9479 : When called repeatedly, scroll the window that is displaying the buffer.
9480 : With a C-u prefix, use `org-show-entry' instead of
9481 : `show-subtree' to display the item, so that drawers and logbooks stay
9483 ** org-calendar-goto-agenda
9485 :CUSTOM_ID: org-calendar-goto-agenda
9488 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9489 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-goto-agenda&sr=1][Find modifications in git logs]]
9491 : Compute the Org-mode agenda for the calendar date displayed at the cursor.
9492 : This is a command that has to be installed in `calendar-mode-map'.
9493 ** org-update-all-dblocks
9495 :CUSTOM_ID: org-update-all-dblocks
9498 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9499 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-update-all-dblocks&sr=1][Find modifications in git logs]]
9501 : Update all dynamic blocks in the buffer.
9502 : This function can be used in a hook.
9505 :CUSTOM_ID: org-capture-kill
9508 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
9509 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-kill&sr=1][Find modifications in git logs]]
9511 : Abort the current capture process.
9512 ** org-table-move-column-left
9514 :CUSTOM_ID: org-table-move-column-left
9517 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9518 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-move-column-left&sr=1][Find modifications in git logs]]
9520 : Move column to the left.
9521 ** org-agenda-clock-out
9523 :CUSTOM_ID: org-agenda-clock-out
9526 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9527 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clock-out&sr=1][Find modifications in git logs]]
9529 : Stop the currently running clock.
9530 ** org-babel-hash-at-point =(&optional point)=
9532 :CUSTOM_ID: org-babel-hash-at-point
9535 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
9536 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-hash-at-point&sr=1][Find modifications in git logs]]
9538 : Return the value of the hash at POINT.
9539 : The hash is also added as the last element of the kill ring.
9540 : This can be called with C-c C-c.
9541 ** org-goto-ret =(&optional arg)=
9543 :CUSTOM_ID: org-goto-ret
9546 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9547 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-ret&sr=1][Find modifications in git logs]]
9549 : Finish `org-goto' by going to the new location.
9550 ** org-agenda-open-link =(&optional arg)=
9552 :CUSTOM_ID: org-agenda-open-link
9555 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9556 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-open-link&sr=1][Find modifications in git logs]]
9558 : Open the link(s) in the current entry, if any.
9559 : This looks for a link in the displayed line in the agenda.
9560 : It also looks at the text of the entry itself.
9561 ** org-match-sparse-tree =(&optional todo-only match)=
9563 :CUSTOM_ID: org-match-sparse-tree
9566 - *Access:* ~C-c \, <menu-bar> <Org> <Special views current file> <Tags/Property tree>~
9567 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9568 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-match-sparse-tree&sr=1][Find modifications in git logs]]
9570 : Create a sparse tree according to tags string MATCH.
9571 : MATCH can contain positive and negative selection of tags, like
9572 : "+WORK+URGENT-WITHBOSS".
9573 : If optional argument TODO-ONLY is non-nil, only select lines that are
9575 ** org-timer-cancel-timer
9577 :CUSTOM_ID: org-timer-cancel-timer
9580 - *Access:* ~C-c C-x :~
9581 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
9582 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-cancel-timer&sr=1][Find modifications in git logs]]
9584 : Cancel the current timer.
9585 ** org-delete-char =(N)=
9587 :CUSTOM_ID: org-delete-char
9591 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9592 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-delete-char&sr=1][Find modifications in git logs]]
9594 : Like `delete-char', but insert whitespace at field end in tables.
9595 : When deleting characters, in tables this function will insert whitespace in
9596 : front of the next "|" separator, to keep the table aligned. The table will
9597 : still be marked for re-alignment if the field did fill the entire column,
9598 : because, in this case the deletion might narrow the column.
9599 ** org-src-associate-babel-session =(info)=
9601 :CUSTOM_ID: org-src-associate-babel-session
9604 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
9605 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-associate-babel-session&sr=1][Find modifications in git logs]]
9607 : Associate edit buffer with comint session.
9608 ** org-agenda-previous-item =(n)=
9610 :CUSTOM_ID: org-agenda-previous-item
9613 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9614 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-previous-item&sr=1][Find modifications in git logs]]
9616 : Move cursor to next agenda item.
9617 ** org-babel-hide-result-toggle-maybe
9619 :CUSTOM_ID: org-babel-hide-result-toggle-maybe
9622 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
9623 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-hide-result-toggle-maybe&sr=1][Find modifications in git logs]]
9625 : Toggle visibility of result at point.
9626 ** org-mouse-show-headlines
9628 :CUSTOM_ID: org-mouse-show-headlines
9631 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
9632 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-show-headlines&sr=1][Find modifications in git logs]]
9634 : Change the visibility of the current org buffer to only show headlines.
9635 ** org-feed-show-raw-feed =(feed)=
9637 :CUSTOM_ID: org-feed-show-raw-feed
9640 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
9641 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-show-raw-feed&sr=1][Find modifications in git logs]]
9643 : Show the raw feed buffer of a feed.
9644 ** org-require-autoloaded-modules
9646 :CUSTOM_ID: org-require-autoloaded-modules
9649 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9650 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-require-autoloaded-modules&sr=1][Find modifications in git logs]]
9653 ** org-move-subtree-down =(&optional arg)=
9655 :CUSTOM_ID: org-move-subtree-down
9658 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9659 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-move-subtree-down&sr=1][Find modifications in git logs]]
9661 : Move the current subtree down past ARG headlines of the same level.
9662 ** org-agenda-show-scroll-down
9664 :CUSTOM_ID: org-agenda-show-scroll-down
9667 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9668 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-scroll-down&sr=1][Find modifications in git logs]]
9670 : Scroll down the window showing the agenda.
9673 :CUSTOM_ID: org-end-of-item
9676 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
9677 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-end-of-item&sr=1][Find modifications in git logs]]
9679 : Go to the end of the current item.
9680 : Throw an error when not in a list.
9681 ** org-previous-link
9683 :CUSTOM_ID: org-previous-link
9686 - *Access:* ~C-c C-x C-p, <menu-bar> <Org> <Hyperlinks> <Previous link>~
9687 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9688 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-previous-link&sr=1][Find modifications in git logs]]
9690 : Move backward to the previous link.
9691 : If the link is in hidden text, expose it.
9692 ** org-export-htmlize-generate-css
9694 :CUSTOM_ID: org-export-htmlize-generate-css
9697 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
9698 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-htmlize-generate-css&sr=1][Find modifications in git logs]]
9700 : Create the CSS for all font definitions in the current Emacs session.
9701 : Use this to create face definitions in your CSS style file that can then
9702 : be used by code snippets transformed by htmlize.
9703 : This command just produces a buffer that contains class definitions for all
9704 : faces used in the current Emacs session. You can copy and paste the ones you
9705 : need into your CSS file.
9707 : If you then set `org-export-htmlize-output-type' to `css', calls to
9708 : the function `org-export-htmlize-region-for-paste' will produce code
9709 : that uses these same face definitions.
9710 ** org-speedbar-set-agenda-restriction
9712 :CUSTOM_ID: org-speedbar-set-agenda-restriction
9715 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9716 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-speedbar-set-agenda-restriction&sr=1][Find modifications in git logs]]
9718 : Restrict future agenda commands to the location at point in speedbar.
9719 : To get rid of the restriction, use C-c C-x >.
9720 ** org-agenda-todo-yesterday =(&optional arg)=
9722 :CUSTOM_ID: org-agenda-todo-yesterday
9725 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9726 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-yesterday&sr=1][Find modifications in git logs]]
9728 : Like `org-agenda-todo' but the time of change will be 23:59 of yesterday.
9731 :CUSTOM_ID: org-agenda-kill
9734 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9735 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-kill&sr=1][Find modifications in git logs]]
9737 : Kill the entry or subtree belonging to the current agenda entry.
9738 ** org-babel-exp-process-buffer
9740 :CUSTOM_ID: org-babel-exp-process-buffer
9743 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
9744 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-exp-process-buffer&sr=1][Find modifications in git logs]]
9746 : Execute all blocks in visible part of buffer.
9749 :CUSTOM_ID: org-goto-right
9752 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9753 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-right&sr=1][Find modifications in git logs]]
9755 : Finish `org-goto' by going to the new location.
9756 ** org-reload =(&optional uncompiled)=
9758 :CUSTOM_ID: org-reload
9761 - *Access:* ~C-c C-x !, <menu-bar> <Org> <Refresh/Reload> <Reload Org (after update)>~
9762 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9763 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reload&sr=1][Find modifications in git logs]]
9765 : Reload all org lisp files.
9766 : With prefix arg UNCOMPILED, load the uncompiled versions.
9767 ** org-list-make-subtree
9769 :CUSTOM_ID: org-list-make-subtree
9772 - *Access:* ~C-c C-*~
9773 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
9774 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-make-subtree&sr=1][Find modifications in git logs]]
9776 : Convert the plain list at point into a subtree.
9777 ** org-table-fedit-finish =(&optional arg)=
9779 :CUSTOM_ID: org-table-fedit-finish
9782 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9783 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-finish&sr=1][Find modifications in git logs]]
9785 : Parse the buffer for formula definitions and install them.
9786 : With prefix ARG, apply the new formulas to the table.
9787 ** org-mouse-insert-heading
9789 :CUSTOM_ID: org-mouse-insert-heading
9792 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
9793 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-insert-heading&sr=1][Find modifications in git logs]]
9795 : Insert a new heading, as `org-insert-heading'.
9797 : If the point is at the :beginning (`org-mouse-line-position') of the line,
9798 : insert the new heading before the current line. Otherwise, insert it
9799 : after the current heading.
9800 ** org-clock-select-task =(&optional prompt)=
9802 :CUSTOM_ID: org-clock-select-task
9805 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
9806 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-select-task&sr=1][Find modifications in git logs]]
9808 : Select a task that was recently associated with clocking.
9809 ** org-reftex-citation
9811 :CUSTOM_ID: org-reftex-citation
9814 - *Access:* ~C-c C-x [, <menu-bar> <Org> <LaTeX> <Insert citation>~
9815 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9816 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reftex-citation&sr=1][Find modifications in git logs]]
9818 : Use reftex-citation to insert a citation into the buffer.
9819 : This looks for a line like
9821 : #+BIBLIOGRAPHY: foo plain option:-d
9823 : and derives from it that foo.bib is the bibliography file relevant
9824 : for this document. It then installs the necessary environment for RefTeX
9825 : to work in this buffer and calls `reftex-citation' to insert a citation
9828 : Export of such citations to both LaTeX and HTML is handled by the contributed
9829 : package org-exp-bibtex by Taru Karttunen.
9830 ** org-agenda-manipulate-query-add-re
9832 :CUSTOM_ID: org-agenda-manipulate-query-add-re
9835 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9836 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-manipulate-query-add-re&sr=1][Find modifications in git logs]]
9838 : Manipulate the query by adding a search regexp with positive selection.
9839 : Positive selection means the regexp must match for selection of an entry.
9840 ** org-calendar-select
9842 :CUSTOM_ID: org-calendar-select
9845 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9846 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-select&sr=1][Find modifications in git logs]]
9848 : Return to `org-read-date' with the date currently selected.
9849 : This is used by `org-read-date' in a temporary keymap for the calendar buffer.
9850 ** org-open-at-mouse =(ev)=
9852 :CUSTOM_ID: org-open-at-mouse
9855 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9856 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-at-mouse&sr=1][Find modifications in git logs]]
9858 : Open file link or URL at mouse.
9859 : See the docstring of `org-open-file' for details.
9860 ** org-babel-goto-named-src-block =(name)=
9862 :CUSTOM_ID: org-babel-goto-named-src-block
9865 - *Access:* ~C-c C-v g~
9866 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
9867 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-goto-named-src-block&sr=1][Find modifications in git logs]]
9869 : Go to a named source-code block.
9870 ** org-attach-delete-all =(&optional force)=
9872 :CUSTOM_ID: org-attach-delete-all
9875 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
9876 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-delete-all&sr=1][Find modifications in git logs]]
9878 : Delete all attachments from the current task.
9879 : This actually deletes the entire attachment directory.
9880 : A safer way is to open the directory in dired and delete from there.
9881 ** org-babel-haskell-export-to-lhs =(&optional arg)=
9883 :CUSTOM_ID: org-babel-haskell-export-to-lhs
9886 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-haskell.el;hb=HEAD][ob-haskell.el]]
9887 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-haskell-export-to-lhs&sr=1][Find modifications in git logs]]
9889 : Export to a .lhs file with all haskell code blocks escaped.
9890 : When called with a prefix argument the resulting
9891 : .lhs file will be exported to a .tex file. This function will
9892 : create two new files, base-name.lhs and base-name.tex where
9893 : base-name is the name of the current org-mode file.
9895 : Note that all standard Babel literate programming
9896 : constructs (header arguments, no-web syntax etc...) are ignored.
9897 ** org-src-tangle =(arg)=
9899 :CUSTOM_ID: org-src-tangle
9902 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
9903 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-tangle&sr=1][Find modifications in git logs]]
9905 : Tangle the parent buffer.
9906 ** org-shiftright =(&optional arg)=
9908 :CUSTOM_ID: org-shiftright
9911 - *Access:* ~<S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Later>~
9912 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9913 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftright&sr=1][Find modifications in git logs]]
9915 : Cycle the thing at point or in the current line, depending on context.
9916 : Depending on context, this does one of the following:
9918 : - switch a timestamp at point one day into the future
9919 : - on a headline, switch to the next TODO keyword.
9920 : - on an item, switch entire list to the next bullet type
9921 : - on a property line, switch to the next allowed value
9922 : - on a clocktable definition line, move time block into the future
9923 ** org-table-toggle-formula-debugger
9925 :CUSTOM_ID: org-table-toggle-formula-debugger
9928 - *Access:* ~C-c {, <menu-bar> <Tbl> <Debug Formulas>~
9929 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9930 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-toggle-formula-debugger&sr=1][Find modifications in git logs]]
9932 : Toggle the formula debugger in tables.
9933 ** org-table-edit-formulas
9935 :CUSTOM_ID: org-table-edit-formulas
9938 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
9939 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-edit-formulas&sr=1][Find modifications in git logs]]
9941 : Edit the formulas of the current table in a separate buffer.
9942 ** org-get-tags-at =(&optional pos local)=
9944 :CUSTOM_ID: org-get-tags-at
9947 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9948 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-get-tags-at&sr=1][Find modifications in git logs]]
9950 : Get a list of all headline tags applicable at POS.
9951 : POS defaults to point. If tags are inherited, the list contains
9952 : the targets in the same sequence as the headlines appear, i.e.
9953 : the tags of the current headline come last.
9954 : When LOCAL is non-nil, only return tags from the current headline,
9955 : ignore inherited ones.
9956 ** org-toggle-fixed-width-section =(arg)=
9958 :CUSTOM_ID: org-toggle-fixed-width-section
9962 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9963 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-fixed-width-section&sr=1][Find modifications in git logs]]
9965 : Toggle the fixed-width export.
9966 : If there is no active region, the QUOTE keyword at the current headline is
9967 : inserted or removed. When present, it causes the text between this headline
9968 : and the next to be exported as fixed-width text, and unmodified.
9969 : If there is an active region, this command adds or removes a colon as the
9970 : first character of this line. If the first character of a line is a colon,
9971 : this line is also exported in fixed-width font.
9972 ** org-agenda-later =(arg)=
9974 :CUSTOM_ID: org-agenda-later
9977 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
9978 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-later&sr=1][Find modifications in git logs]]
9980 : Go forward in time by the current span.
9981 : With prefix ARG, go forward that many times the current span.
9982 ** org-priority =(&optional action show)=
9984 :CUSTOM_ID: org-priority
9987 - *Access:* ~C-c ,, <menu-bar> <Org> <TODO Lists> <Set Priority>~
9988 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
9989 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-priority&sr=1][Find modifications in git logs]]
9991 : Change the priority of an item.
9992 : ACTION can be `set', `up', `down', or a character.
9993 ** org-timeline =(&optional dotodo)=
9995 :CUSTOM_ID: org-timeline
9998 - *Access:* ~<menu-bar> <Org> <Special views current file> <Timeline>~
9999 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10000 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timeline&sr=1][Find modifications in git logs]]
10002 : Show a time-sorted view of the entries in the current org file.
10003 : Only entries with a time stamp of today or later will be listed. With
10004 : C-u prefix, all unfinished TODO items will also be shown,
10005 : under the current date.
10006 : If the buffer contains an active region, only check the region for
10008 ** org-forward-sentence =(&optional arg)=
10010 :CUSTOM_ID: org-forward-sentence
10014 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10015 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-forward-sentence&sr=1][Find modifications in git logs]]
10017 : Go to end of sentence, or end of table field.
10018 : This will call `forward-sentence' or `org-table-end-of-field',
10019 : depending on context.
10020 ** org-meta-return =(&optional arg)=
10022 :CUSTOM_ID: org-meta-return
10025 - *Access:* ~<M-return>~
10026 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10027 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-meta-return&sr=1][Find modifications in git logs]]
10029 : Insert a new heading or wrap a region in a table.
10030 : Calls `org-insert-heading' or `org-table-wrap-region', depending on context.
10031 : See the individual commands for more information.
10032 ** org-set-property-and-value =(use-last)=
10034 :CUSTOM_ID: org-set-property-and-value
10037 - *Access:* ~C-c C-x P~
10038 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10039 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-set-property-and-value&sr=1][Find modifications in git logs]]
10041 : Allow to set [PROPERTY]: [value] direction from prompt.
10042 : When use-default, don't even ask, just use the last
10043 : "[PROPERTY]: [value]" string from the history.
10044 ** org-indent-drawer
10046 :CUSTOM_ID: org-indent-drawer
10049 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10050 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-drawer&sr=1][Find modifications in git logs]]
10052 : Indent the drawer at point.
10053 ** org-unescape-code-in-region =(beg end)=
10055 :CUSTOM_ID: org-unescape-code-in-region
10058 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
10059 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-unescape-code-in-region&sr=1][Find modifications in git logs]]
10061 : Un-escape lines between BEG and END.
10062 : Un-escaping happens by removing the first comma on lines starting
10063 : with ",*", ",#+", ",,*" and ",,#+".
10064 ** org-find-entry-with-id =(ident)=
10066 :CUSTOM_ID: org-find-entry-with-id
10069 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10070 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-find-entry-with-id&sr=1][Find modifications in git logs]]
10072 : Locate the entry that contains the ID property with exact value IDENT.
10073 : IDENT can be a string, a symbol or a number, this function will search for
10074 : the string representation of it.
10075 : Return the position where this entry starts, or nil if there is no such entry.
10076 ** org-table-transpose-table-at-point
10078 :CUSTOM_ID: org-table-transpose-table-at-point
10081 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10082 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-transpose-table-at-point&sr=1][Find modifications in git logs]]
10084 : Transpose orgmode table at point and eliminate hlines.
10087 : | 1 | 2 | 4 | 5 |
10088 : |---+---+---+---|
10089 : | a | b | c | d |
10090 : | e | f | g | h |
10092 : will be transposed as
10099 : Note that horizontal lines disappeared.
10100 ** org-org-menu =(event)=
10102 :CUSTOM_ID: org-org-menu
10105 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10106 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-org-menu&sr=1][Find modifications in git logs]]
10109 ** org-columns-set-tags-or-toggle =(&optional arg)=
10111 :CUSTOM_ID: org-columns-set-tags-or-toggle
10114 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
10115 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-set-tags-or-toggle&sr=1][Find modifications in git logs]]
10117 : Toggle checkbox at point, or set tags for current headline.
10118 ** org-table-fedit-toggle-coordinates
10120 :CUSTOM_ID: org-table-fedit-toggle-coordinates
10123 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10124 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-toggle-coordinates&sr=1][Find modifications in git logs]]
10126 : Toggle the display of coordinates in the referenced table.
10127 ** org-search-view =(&optional todo-only string edit-at)=
10129 :CUSTOM_ID: org-search-view
10132 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10133 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-search-view&sr=1][Find modifications in git logs]]
10135 : Show all entries that contain a phrase or words or regular expressions.
10137 : With optional prefix argument TODO-ONLY, only consider entries that are
10138 : TODO entries. The argument STRING can be used to pass a default search
10139 : string into this function. If EDIT-AT is non-nil, it means that the
10140 : user should get a chance to edit this string, with cursor at position
10143 : The search string can be viewed either as a phrase that should be found as
10144 : is, or it can be broken into a number of snippets, each of which must match
10145 : in a Boolean way to select an entry. The default depends on the variable
10146 : `org-agenda-search-view-always-boolean'.
10147 : Even if this is turned off (the default) you can always switch to
10148 : Boolean search dynamically by preceding the first word with "+" or "-".
10150 : The default is a direct search of the whole phrase, where each space in
10151 : the search string can expand to an arbitrary amount of whitespace,
10152 : including newlines.
10154 : If using a Boolean search, the search string is split on whitespace and
10155 : each snippet is searched separately, with logical AND to select an entry.
10156 : Words prefixed with a minus must *not* occur in the entry. Words without
10157 : a prefix or prefixed with a plus must occur in the entry. Matching is
10158 : case-insensitive. Words are enclosed by word delimiters (i.e. they must
10159 : match whole words, not parts of a word) if
10160 : `org-agenda-search-view-force-full-words' is set (default is nil).
10162 : Boolean search snippets enclosed by curly braces are interpreted as
10163 : regular expressions that must or (when preceded with "-") must not
10164 : match in the entry. Snippets enclosed into double quotes will be taken
10165 : as a whole, to include whitespace.
10167 : - If the search string starts with an asterisk, search only in headlines.
10168 : - If (possibly after the leading star) the search string starts with an
10169 : exclamation mark, this also means to look at TODO entries only, an effect
10170 : that can also be achieved with a prefix argument.
10171 : - If (possibly after star and exclamation mark) the search string starts
10172 : with a colon, this will mean that the (non-regexp) snippets of the
10173 : Boolean search must match as full words.
10175 : This command searches the agenda files, and in addition the files listed
10176 : in `org-agenda-text-search-extra-files'.
10177 ** org-agenda-filter-by-tag =(strip &optional char narrow)=
10179 :CUSTOM_ID: org-agenda-filter-by-tag
10182 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10183 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-by-tag&sr=1][Find modifications in git logs]]
10185 : Keep only those lines in the agenda buffer that have a specific tag.
10186 : The tag is selected with its fast selection letter, as configured.
10187 : With prefix argument STRIP, remove all lines that do have the tag.
10188 : A lisp caller can specify CHAR. NARROW means that the new tag should be
10189 : used to narrow the search - the interactive user can also press `-' or `+'
10190 : to switch to narrowing.
10191 ** org-babel-screen-test
10193 :CUSTOM_ID: org-babel-screen-test
10196 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-screen.el;hb=HEAD][ob-screen.el]]
10197 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-screen-test&sr=1][Find modifications in git logs]]
10199 : Test if the default setup works.
10200 : The terminal should shortly flicker.
10201 ** org-table-current-column
10203 :CUSTOM_ID: org-table-current-column
10206 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Which Column?>~
10207 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10208 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-current-column&sr=1][Find modifications in git logs]]
10210 : Find out which column we are in.
10211 ** org-check-dates-range =(start-date end-date)=
10213 :CUSTOM_ID: org-check-dates-range
10216 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10217 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-check-dates-range&sr=1][Find modifications in git logs]]
10219 : Check for deadlines/scheduled entries between START-DATE and END-DATE.
10220 ** org-agenda-view-mode-dispatch
10222 :CUSTOM_ID: org-agenda-view-mode-dispatch
10225 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10226 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-view-mode-dispatch&sr=1][Find modifications in git logs]]
10228 : Call one of the view mode commands.
10229 ** org-update-radio-target-regexp
10231 :CUSTOM_ID: org-update-radio-target-regexp
10234 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10235 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-update-radio-target-regexp&sr=1][Find modifications in git logs]]
10237 : Find all radio targets in this file and update the regular expression.
10240 :CUSTOM_ID: org-ctrl-c-ret
10243 - *Access:* ~C-c RET~
10244 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10245 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-c-ret&sr=1][Find modifications in git logs]]
10247 : Call `org-table-hline-and-move' or `org-insert-heading' dep. on context.
10248 ** org-beamer-mode =(&optional arg)=
10250 :CUSTOM_ID: org-beamer-mode
10253 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
10254 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-mode&sr=1][Find modifications in git logs]]
10256 : Support for editing Beamer oriented Org mode files.
10257 ** org-open-at-point =(&optional arg reference-buffer)=
10259 :CUSTOM_ID: org-open-at-point
10262 - *Access:* ~C-c C-o, <menu-bar> <Org> <Hyperlinks> <Follow Link>~
10263 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10264 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-at-point&sr=1][Find modifications in git logs]]
10266 : :around advice: `ad-Advice-org-open-at-point'
10268 : Open link at or after point.
10269 : If there is no link at point, this function will search forward up to
10270 : the end of the current line.
10271 : Normally, files will be opened by an appropriate application. If the
10272 : optional prefix argument ARG is non-nil, Emacs will visit the file.
10273 : With a double prefix argument, try to open outside of Emacs, in the
10274 : application the system uses for this file type.
10276 : (fn &optional ARG REFERENCE-BUFFER)
10277 ** org-table-fedit-scroll =(N)=
10279 :CUSTOM_ID: org-table-fedit-scroll
10282 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10283 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-scroll&sr=1][Find modifications in git logs]]
10286 ** org-schedule =(arg &optional time)=
10288 :CUSTOM_ID: org-schedule
10291 - *Access:* ~C-c C-s, <menu-bar> <Org> <Dates and Scheduling> <Schedule Item>~
10292 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10293 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-schedule&sr=1][Find modifications in git logs]]
10295 : Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
10296 : With one universal prefix argument, remove any scheduling date from the item.
10297 : With two universal prefix arguments, prompt for a delay cookie.
10298 : With argument TIME, scheduled at the corresponding date. TIME can
10299 : either be an Org date like "2011-07-24" or a delta like "+2d".
10302 :CUSTOM_ID: org-goto-quit
10305 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10306 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-quit&sr=1][Find modifications in git logs]]
10308 : Finish `org-goto' without cursor motion.
10309 ** org-agenda-toggle-archive-tag
10311 :CUSTOM_ID: org-agenda-toggle-archive-tag
10314 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10315 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-toggle-archive-tag&sr=1][Find modifications in git logs]]
10317 : Toggle the archive tag for the current entry.
10318 ** org-babel-previous-src-block =(&optional arg)=
10320 :CUSTOM_ID: org-babel-previous-src-block
10323 - *Access:* ~C-c C-v C-p, C-c C-v p~
10324 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
10325 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-previous-src-block&sr=1][Find modifications in git logs]]
10327 : Jump to the previous source block.
10328 : With optional prefix argument ARG, jump backward ARG many source blocks.
10329 ** org-mouse-timestamp-today =(&optional shift units)=
10331 :CUSTOM_ID: org-mouse-timestamp-today
10334 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
10335 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-timestamp-today&sr=1][Find modifications in git logs]]
10337 : Change the timestamp into SHIFT UNITS in the future.
10339 : For the acceptable UNITS, see `org-timestamp-change'.
10340 ** org-narrow-to-element
10342 :CUSTOM_ID: org-narrow-to-element
10345 - *Access:* ~C-x n e~
10346 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10347 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-narrow-to-element&sr=1][Find modifications in git logs]]
10349 : Narrow buffer to current element.
10350 ** org-babel-remove-result =(&optional info)=
10352 :CUSTOM_ID: org-babel-remove-result
10355 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
10356 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-remove-result&sr=1][Find modifications in git logs]]
10358 : Remove the result of the current source block.
10359 ** org-tags-sparse-tree =(&optional todo-only match)=
10361 :CUSTOM_ID: org-tags-sparse-tree
10364 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10365 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-sparse-tree&sr=1][Find modifications in git logs]]
10367 : Create a sparse tree according to tags string MATCH.
10368 : MATCH can contain positive and negative selection of tags, like
10369 : "+WORK+URGENT-WITHBOSS".
10370 : If optional argument TODO-ONLY is non-nil, only select lines that are
10372 ** org-export-stack-clear
10374 :CUSTOM_ID: org-export-stack-clear
10377 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
10378 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-stack-clear&sr=1][Find modifications in git logs]]
10380 : Remove all entries from export stack.
10381 ** org-move-item-up
10383 :CUSTOM_ID: org-move-item-up
10386 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
10387 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-move-item-up&sr=1][Find modifications in git logs]]
10389 : Move the item at point up, i.e. swap with previous item.
10390 : Sub-items (items with larger indentation) are considered part of
10391 : the item, so this really moves item trees.
10392 ** org-agenda-bulk-action =(&optional arg)=
10394 :CUSTOM_ID: org-agenda-bulk-action
10397 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10398 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-action&sr=1][Find modifications in git logs]]
10400 : Execute an remote-editing action on all marked entries.
10401 : The prefix arg is passed through to the command if possible.
10402 ** org-table-fedit-line-down
10404 :CUSTOM_ID: org-table-fedit-line-down
10407 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10408 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-line-down&sr=1][Find modifications in git logs]]
10410 : Move cursor one line down in the window showing the table.
10411 ** org-shiftdown =(&optional arg)=
10413 :CUSTOM_ID: org-shiftdown
10416 - *Access:* ~<S-down>, <menu-bar> <Org> <TODO Lists> <Priority Down>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Earlier>~
10417 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10418 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-shiftdown&sr=1][Find modifications in git logs]]
10420 : Decrease item in timestamp or decrease priority of current headline.
10421 : Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
10422 : depending on context. See the individual commands for more information.
10423 ** org-redisplay-inline-images
10425 :CUSTOM_ID: org-redisplay-inline-images
10428 - *Access:* ~C-c C-x C-M-v~
10429 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10430 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-redisplay-inline-images&sr=1][Find modifications in git logs]]
10432 : Refresh the display of inline images.
10433 ** org-babel-execute-maybe
10435 :CUSTOM_ID: org-babel-execute-maybe
10438 - *Access:* ~C-c C-v C-e, C-c C-v e~
10439 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
10440 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-execute-maybe&sr=1][Find modifications in git logs]]
10443 ** org-columns-content
10445 :CUSTOM_ID: org-columns-content
10448 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
10449 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-content&sr=1][Find modifications in git logs]]
10451 : Switch to contents view while in columns view.
10452 ** org-narrow-to-subtree
10454 :CUSTOM_ID: org-narrow-to-subtree
10457 - *Access:* ~C-x n s~
10458 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10459 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-narrow-to-subtree&sr=1][Find modifications in git logs]]
10461 : Narrow buffer to the current subtree.
10462 ** org-delete-backward-char =(N)=
10464 :CUSTOM_ID: org-delete-backward-char
10468 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10469 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-delete-backward-char&sr=1][Find modifications in git logs]]
10471 : Like `delete-backward-char', insert whitespace at field end in tables.
10472 : When deleting backwards, in tables this function will insert whitespace in
10473 : front of the next "|" separator, to keep the table aligned. The table will
10474 : still be marked for re-alignment if the field did fill the entire column,
10475 : because, in this case the deletion might narrow the column.
10476 ** org-mouse-transform-to-outline
10478 :CUSTOM_ID: org-mouse-transform-to-outline
10481 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
10482 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-transform-to-outline&sr=1][Find modifications in git logs]]
10485 ** org-agenda-add-note =(&optional arg)=
10487 :CUSTOM_ID: org-agenda-add-note
10490 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10491 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-add-note&sr=1][Find modifications in git logs]]
10493 : Add a time-stamped note to the entry at point.
10496 :CUSTOM_ID: org-ibuffer
10499 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/emacs.el;hb=HEAD][emacs.el]]
10500 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ibuffer&sr=1][Find modifications in git logs]]
10502 : Open an `ibuffer' window showing only `org-mode' buffers.
10503 ** org-columns-narrow =(arg)=
10505 :CUSTOM_ID: org-columns-narrow
10508 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
10509 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-narrow&sr=1][Find modifications in git logs]]
10511 : Make the column narrower by ARG characters.
10512 ** org-mouse-end-headline
10514 :CUSTOM_ID: org-mouse-end-headline
10517 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
10518 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-end-headline&sr=1][Find modifications in git logs]]
10520 : Go to the end of current headline (ignoring tags).
10523 :CUSTOM_ID: org-timer-stop
10526 - *Access:* ~C-c C-x _~
10527 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
10528 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-stop&sr=1][Find modifications in git logs]]
10530 : Stop the relative timer.
10531 ** org-babel-load-in-session-maybe
10533 :CUSTOM_ID: org-babel-load-in-session-maybe
10536 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
10537 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-load-in-session-maybe&sr=1][Find modifications in git logs]]
10539 : Conditionally load a source block in a session.
10540 : Detect if this is context for a org-babel src-block and if so
10541 : then run `org-babel-load-in-session'.
10542 ** org-attach-set-directory
10544 :CUSTOM_ID: org-attach-set-directory
10547 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
10548 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-set-directory&sr=1][Find modifications in git logs]]
10550 : Set the ATTACH_DIR property of the current entry.
10551 : The property defines the directory that is used for attachments
10553 ** org-table-blank-field
10555 :CUSTOM_ID: org-table-blank-field
10558 - *Access:* ~C-c SPC, <menu-bar> <Tbl> <Blank Field>~
10559 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10560 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-blank-field&sr=1][Find modifications in git logs]]
10562 : Blank the current table field or active region.
10563 ** org-bibtex-export-to-kill-ring
10565 :CUSTOM_ID: org-bibtex-export-to-kill-ring
10568 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
10569 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-export-to-kill-ring&sr=1][Find modifications in git logs]]
10571 : Export current headline to kill ring as bibtex entry.
10574 :CUSTOM_ID: org-inc-effort
10577 - *Access:* ~C-c C-x E~
10578 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10579 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inc-effort&sr=1][Find modifications in git logs]]
10581 : Increment the value of the effort property in the current entry.
10582 ** org-mouse-insert-checkbox
10584 :CUSTOM_ID: org-mouse-insert-checkbox
10587 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
10588 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-insert-checkbox&sr=1][Find modifications in git logs]]
10591 ** org-store-link =(arg)=
10593 :CUSTOM_ID: org-store-link
10596 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Store Link (Global)>, C-c l~
10597 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10598 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-store-link&sr=1][Find modifications in git logs]]
10600 : Store an org-link to the current location.
10601 : This link is added to `org-stored-links' and can later be inserted
10602 : into an org-buffer with C-c C-l.
10604 : For some link types, a prefix arg is interpreted.
10605 : For links to Usenet articles, arg negates `org-gnus-prefer-web-links'.
10606 : For file links, arg negates `org-context-in-file-links'.
10608 : A double prefix arg force skipping storing functions that are not
10609 : part of Org's core.
10611 : A triple prefix arg force storing a link for each line in the
10613 ** org-agenda-deadline =(arg &optional time)=
10615 :CUSTOM_ID: org-agenda-deadline
10618 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10619 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-deadline&sr=1][Find modifications in git logs]]
10621 : Schedule the item at point.
10622 : ARG is passed through to `org-deadline'.
10623 ** org-agenda-bulk-unmark =(&optional arg)=
10625 :CUSTOM_ID: org-agenda-bulk-unmark
10628 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10629 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-unmark&sr=1][Find modifications in git logs]]
10631 : Unmark the entry at point for future bulk action.
10632 ** org-export-as-org =(arg &optional ext-plist to-buffer body-only pub-dir)=
10634 :CUSTOM_ID: org-export-as-org
10637 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
10638 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-as-org&sr=1][Find modifications in git logs]]
10640 : Make a copy with not-exporting stuff removed.
10641 : The purpose of this function is to provide a way to export the source
10642 : Org file of a webpage in Org format, but with sensitive and/or irrelevant
10643 : stuff removed. This command will remove the following:
10645 : - archived trees (if the variable `org-export-with-archived-trees' is nil)
10646 : - comment blocks and trees starting with the COMMENT keyword
10647 : - only trees that are consistent with `org-export-select-tags'
10648 : and `org-export-exclude-tags'.
10650 : The only arguments that will be used are EXT-PLIST and PUB-DIR,
10651 : all the others will be ignored (but are present so that the general
10652 : mechanism to call publishing functions will work).
10654 : EXT-PLIST is a property list with external parameters overriding
10655 : org-mode's default settings, but still inferior to file-local
10656 : settings. When PUB-DIR is set, use this as the publishing
10658 ** org-table-iterate-buffer-tables
10660 :CUSTOM_ID: org-table-iterate-buffer-tables
10663 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10664 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-iterate-buffer-tables&sr=1][Find modifications in git logs]]
10666 : Iterate all tables in the buffer, to converge inter-table dependencies.
10667 ** org-table-hline-and-move =(&optional same-column)=
10669 :CUSTOM_ID: org-table-hline-and-move
10672 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10673 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-hline-and-move&sr=1][Find modifications in git logs]]
10675 : Insert a hline and move to the row below that line.
10678 :CUSTOM_ID: org-list-repair
10681 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
10682 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-repair&sr=1][Find modifications in git logs]]
10684 : Fix indentation, bullets and checkboxes is the list at point.
10685 ** org-evaluate-time-range =(&optional to-buffer)=
10687 :CUSTOM_ID: org-evaluate-time-range
10690 - *Access:* ~C-c C-y, <menu-bar> <Org> <Dates and Scheduling> <Compute Time Range>~
10691 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10692 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-evaluate-time-range&sr=1][Find modifications in git logs]]
10694 : Evaluate a time range by computing the difference between start and end.
10695 : Normally the result is just printed in the echo area, but with prefix arg
10696 : TO-BUFFER, the result is inserted just after the date stamp into the buffer.
10697 : If the time range is actually in a table, the result is inserted into the
10699 : For time difference computation, a year is assumed to be exactly 365
10700 : days in order to avoid rounding problems.
10701 ** org-copy-subtree =(&optional n cut force-store-markers nosubtrees)=
10703 :CUSTOM_ID: org-copy-subtree
10706 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10707 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-copy-subtree&sr=1][Find modifications in git logs]]
10709 : Cut the current subtree into the clipboard.
10710 : With prefix arg N, cut this many sequential subtrees.
10711 : This is a short-hand for marking the subtree and then copying it.
10712 : If CUT is non-nil, actually cut the subtree.
10713 : If FORCE-STORE-MARKERS is non-nil, store the relative locations
10714 : of some markers in the region, even if CUT is non-nil. This is
10715 : useful if the caller implements cut-and-paste as copy-then-paste-then-cut.
10716 ** org-check-after-date =(date)=
10718 :CUSTOM_ID: org-check-after-date
10721 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10722 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-check-after-date&sr=1][Find modifications in git logs]]
10724 : Check if there are deadlines or scheduled entries after DATE.
10725 ** org-mark-ring-goto =(&optional n)=
10727 :CUSTOM_ID: org-mark-ring-goto
10730 - *Access:* ~C-c &~
10731 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10732 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mark-ring-goto&sr=1][Find modifications in git logs]]
10734 : Jump to the previous position in the mark ring.
10735 : With prefix arg N, jump back that many stored positions. When
10736 : called several times in succession, walk through the entire ring.
10737 : Org-mode commands jumping to a different position in the current file,
10738 : or to another Org-mode file, automatically push the old position
10740 ** org-babel-pop-to-session-maybe
10742 :CUSTOM_ID: org-babel-pop-to-session-maybe
10745 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
10746 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-pop-to-session-maybe&sr=1][Find modifications in git logs]]
10748 : Conditionally pop to a session.
10749 : Detect if this is context for a org-babel src-block and if so
10750 : then run `org-babel-switch-to-session'.
10751 ** org-agenda-archive-default-with-confirmation
10753 :CUSTOM_ID: org-agenda-archive-default-with-confirmation
10756 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10757 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archive-default-with-confirmation&sr=1][Find modifications in git logs]]
10759 : Archive the entry or subtree belonging to the current agenda entry.
10760 ** org-babel-lob-ingest =(&optional file)=
10762 :CUSTOM_ID: org-babel-lob-ingest
10765 - *Access:* ~C-c C-v i~
10766 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-lob.el;hb=HEAD][ob-lob.el]]
10767 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-lob-ingest&sr=1][Find modifications in git logs]]
10769 : Add all named source-blocks defined in FILE to
10770 : `org-babel-library-of-babel'.
10771 ** org-dblock-write:amazon =(params)=
10773 :CUSTOM_ID: org-dblock-write:amazon
10776 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/emacs.el;hb=HEAD][emacs.el]]
10777 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-dblock-write:amazon&sr=1][Find modifications in git logs]]
10779 : Dynamic block for inserting the cover of a book.
10780 ** org-table-fedit-line-up
10782 :CUSTOM_ID: org-table-fedit-line-up
10785 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10786 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-line-up&sr=1][Find modifications in git logs]]
10788 : Move cursor one line up in the window showing the table.
10789 ** org-table-kill-row
10791 :CUSTOM_ID: org-table-kill-row
10794 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
10795 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-kill-row&sr=1][Find modifications in git logs]]
10797 : Delete the current row or horizontal line from the table.
10798 ** org-sort-entries =(&optional with-case sorting-type getkey-func compare-func property)=
10800 :CUSTOM_ID: org-sort-entries
10803 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10804 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sort-entries&sr=1][Find modifications in git logs]]
10806 : Sort entries on a certain level of an outline tree.
10807 : If there is an active region, the entries in the region are sorted.
10808 : Else, if the cursor is before the first entry, sort the top-level items.
10809 : Else, the children of the entry at point are sorted.
10811 : Sorting can be alphabetically, numerically, by date/time as given by
10812 : a time stamp, by a property, by priority order, or by a custom function.
10814 : The command prompts for the sorting type unless it has been given to the
10815 : function through the SORTING-TYPE argument, which needs to be a character,
10816 : (?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F). Here is the
10817 : precise meaning of each character:
10819 : n Numerically, by converting the beginning of the entry/item to a number.
10820 : a Alphabetically, ignoring the TODO keyword and the priority, if any.
10821 : o By order of TODO keywords.
10822 : t By date/time, either the first active time stamp in the entry, or, if
10823 : none exist, by the first inactive one.
10824 : s By the scheduled date/time.
10825 : d By deadline date/time.
10826 : c By creation time, which is assumed to be the first inactive time stamp
10827 : at the beginning of a line.
10828 : p By priority according to the cookie.
10829 : r By the value of a property.
10831 : Capital letters will reverse the sort order.
10833 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
10834 : called with point at the beginning of the record. It must return either
10835 : a string or a number that should serve as the sorting key for that record.
10837 : Comparing entries ignores case by default. However, with an optional argument
10838 : WITH-CASE, the sorting considers case as well.
10840 : Sorting is done against the visible part of the headlines, it ignores hidden
10842 ** org-setup-filling
10844 :CUSTOM_ID: org-setup-filling
10847 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10848 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-setup-filling&sr=1][Find modifications in git logs]]
10851 ** org-switchb =(&optional arg)=
10853 :CUSTOM_ID: org-switchb
10856 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10857 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-switchb&sr=1][Find modifications in git logs]]
10859 : Switch between Org buffers.
10860 : With one prefix argument, restrict available buffers to files.
10861 : With two prefix arguments, restrict available buffers to agenda files.
10863 : Defaults to `iswitchb' for buffer name completion.
10864 : Set `org-completion-use-ido' to make it use ido instead.
10865 ** org-columns-edit-attributes
10867 :CUSTOM_ID: org-columns-edit-attributes
10870 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
10871 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-edit-attributes&sr=1][Find modifications in git logs]]
10873 : Edit the attributes of the current column.
10876 :CUSTOM_ID: org-bibtex-read
10879 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
10880 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-read&sr=1][Find modifications in git logs]]
10882 : Read a bibtex entry and save to `org-bibtex-entries'.
10883 : This uses `bibtex-parse-entry'.
10884 ** org-odt-export-as-odf-and-open
10886 :CUSTOM_ID: org-odt-export-as-odf-and-open
10889 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
10890 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-export-as-odf-and-open&sr=1][Find modifications in git logs]]
10892 : Export LaTeX fragment as OpenDocument formula and immediately open it.
10893 : Use `org-odt-export-as-odf' to read LaTeX fragment and OpenDocument
10895 ** org-plot/gnuplot =(&optional params)=
10897 :CUSTOM_ID: org-plot/gnuplot
10900 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-plot.el;hb=HEAD][org-plot.el]]
10901 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plot/gnuplot&sr=1][Find modifications in git logs]]
10903 : Plot table using gnuplot. Gnuplot options can be specified with PARAMS.
10904 : If not given options will be taken from the +PLOT
10905 : line directly before or after the table.
10906 ** org-narrow-to-block
10908 :CUSTOM_ID: org-narrow-to-block
10911 - *Access:* ~C-x n b~
10912 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10913 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-narrow-to-block&sr=1][Find modifications in git logs]]
10915 : Narrow buffer to the current block.
10916 ** org-publish-all =(&optional force async)=
10918 :CUSTOM_ID: org-publish-all
10921 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
10922 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-all&sr=1][Find modifications in git logs]]
10924 : Publish all projects.
10925 : With prefix argument FORCE, remove all files in the timestamp
10926 : directory and force publishing all projects. With a non-nil
10927 : optional argument ASYNC, publishing will be done asynchronously,
10928 : in another process.
10929 ** org-timer-change-times-in-region =(beg end delta)=
10931 :CUSTOM_ID: org-timer-change-times-in-region
10934 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
10935 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-change-times-in-region&sr=1][Find modifications in git logs]]
10937 : Change all h:mm:ss time in region by a DELTA.
10938 ** org-agenda-archive-default
10940 :CUSTOM_ID: org-agenda-archive-default
10943 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10944 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archive-default&sr=1][Find modifications in git logs]]
10946 : Archive the entry or subtree belonging to the current agenda entry.
10947 ** org-save-all-org-buffers
10949 :CUSTOM_ID: org-save-all-org-buffers
10952 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10953 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-save-all-org-buffers&sr=1][Find modifications in git logs]]
10955 : Save all Org-mode buffers without user confirmation.
10956 ** org-advertized-archive-subtree =(&optional find-done)=
10958 :CUSTOM_ID: org-advertized-archive-subtree
10961 - *Access:* ~C-c C-x C-s, <menu-bar> <Org> <Archive> <Move Subtree to Archive file>~
10962 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10963 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-advertized-archive-subtree&sr=1][Find modifications in git logs]]
10965 : Move the current subtree to the archive.
10966 : The archive can be a certain top-level heading in the current file, or in
10967 : a different file. The tree will be moved to that location, the subtree
10968 : heading be marked DONE, and the current time will be added.
10970 : When called with prefix argument FIND-DONE, find whole trees without any
10971 : open TODO items and archive them (after getting confirmation from the user).
10972 : If the cursor is not at a headline when this command is called, try all level
10973 : 1 trees. If the cursor is on a headline, only try the direct children of
10975 ** org-agenda-entry-text-show
10977 :CUSTOM_ID: org-agenda-entry-text-show
10980 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
10981 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-show&sr=1][Find modifications in git logs]]
10983 : Add entry context for all agenda lines.
10984 ** org-hide-block-toggle =(&optional force)=
10986 :CUSTOM_ID: org-hide-block-toggle
10989 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
10990 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-block-toggle&sr=1][Find modifications in git logs]]
10992 : Toggle the visibility of the current block.
10993 ** org-indent-item-tree
10995 :CUSTOM_ID: org-indent-item-tree
10998 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
10999 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-item-tree&sr=1][Find modifications in git logs]]
11001 : Indent a local list item including its children.
11002 : If a region is active, all items inside will be moved.
11003 ** org-insert-heading =(&optional arg invisible-ok)=
11005 :CUSTOM_ID: org-insert-heading
11008 - *Access:* ~M-RET, <menu-bar> <Org> <New Heading>~
11009 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11010 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-heading&sr=1][Find modifications in git logs]]
11012 : Insert a new heading or item with same depth at point.
11013 : If point is in a plain list and ARG is nil, create a new list item.
11014 : With one universal prefix argument, insert a heading even in lists.
11015 : With two universal prefix arguments, insert the heading at the end
11016 : of the parent subtree.
11018 : If point is at the beginning of a headline, insert a sibling before
11019 : the current headline. If point is not at the beginning, split the line
11020 : and create a new headline with the text in the current line after point
11021 : (see `org-M-RET-may-split-line' on how to modify this behavior).
11023 : When INVISIBLE-OK is set, stop at invisible headlines when going back.
11024 : This is important for non-interactive uses of the command.
11025 ** org-clock-timestamps-down =(&optional n)=
11027 :CUSTOM_ID: org-clock-timestamps-down
11030 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
11031 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-timestamps-down&sr=1][Find modifications in git logs]]
11033 : Increase CLOCK timestamps at cursor.
11034 : Optional argument N tells to change by that many units.
11035 ** org-inlinetask-promote
11037 :CUSTOM_ID: org-inlinetask-promote
11040 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-inlinetask.el;hb=HEAD][org-inlinetask.el]]
11041 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inlinetask-promote&sr=1][Find modifications in git logs]]
11043 : Promote the inline task at point.
11044 : If the task has an end part, promote it. Also, prevents level from
11045 : going below `org-inlinetask-min-level'.
11046 ** org-publish-project =(project &optional force async)=
11048 :CUSTOM_ID: org-publish-project
11051 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
11052 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-project&sr=1][Find modifications in git logs]]
11056 : PROJECT is either a project name, as a string, or a project
11057 : alist (see `org-publish-project-alist' variable).
11059 : When optional argument FORCE is non-nil, force publishing all
11060 : files in PROJECT. With a non-nil optional argument ASYNC,
11061 : publishing will be done asynchronously, in another process.
11062 ** org-agenda-set-property
11064 :CUSTOM_ID: org-agenda-set-property
11067 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11068 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-set-property&sr=1][Find modifications in git logs]]
11070 : Set a property for the current headline.
11071 ** org-bibtex-check =(&optional optional)=
11073 :CUSTOM_ID: org-bibtex-check
11076 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
11077 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-check&sr=1][Find modifications in git logs]]
11079 : Check the current headline for required fields.
11080 : With prefix argument OPTIONAL also prompt for optional fields.
11081 ** org-babel-switch-to-session-with-code =(&optional arg info)=
11083 :CUSTOM_ID: org-babel-switch-to-session-with-code
11086 - *Access:* ~C-c C-v z~
11087 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
11088 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-switch-to-session-with-code&sr=1][Find modifications in git logs]]
11090 : Switch to code buffer and display session.
11091 ** org-table-sort-lines =(with-case &optional sorting-type)=
11093 :CUSTOM_ID: org-table-sort-lines
11096 - *Access:* ~<menu-bar> <Tbl> <Row> <Sort lines in region>~
11097 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11098 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-sort-lines&sr=1][Find modifications in git logs]]
11100 : Sort table lines according to the column at point.
11102 : The position of point indicates the column to be used for
11103 : sorting, and the range of lines is the range between the nearest
11104 : horizontal separator lines, or the entire table of no such lines
11105 : exist. If point is before the first column, you will be prompted
11106 : for the sorting column. If there is an active region, the mark
11107 : specifies the first line and the sorting column, while point
11108 : should be in the last line to be included into the sorting.
11110 : The command then prompts for the sorting type which can be
11111 : alphabetically, numerically, or by time (as given in a time stamp
11112 : in the field). Sorting in reverse order is also possible.
11114 : With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
11116 : If SORTING-TYPE is specified when this function is called from a Lisp
11117 : program, no prompting will take place. SORTING-TYPE must be a character,
11118 : any of (?a ?A ?n ?N ?t ?T) where the capital letter indicate that sorting
11119 : should be done in reverse order.
11120 ** org-timer =(&optional restart no-insert-p)=
11122 :CUSTOM_ID: org-timer
11125 - *Access:* ~C-c C-x ., <menu-bar> <Org> <Dates and Scheduling> <Insert Timer String>~
11126 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
11127 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer&sr=1][Find modifications in git logs]]
11129 : Insert a H:MM:SS string from the timer into the buffer.
11130 : The first time this command is used, the timer is started. When used with
11131 : a C-u prefix, force restarting the timer.
11132 : When used with a double prefix argument C-u, change all the timer string
11133 : in the region by a fixed amount. This can be used to recalibrate a timer
11134 : that was not started at the correct moment.
11136 : If NO-INSERT-P is non-nil, return the string instead of inserting
11137 : it in the buffer.
11138 ** org-agenda-date-later-minutes =(arg)=
11140 :CUSTOM_ID: org-agenda-date-later-minutes
11143 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11144 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-date-later-minutes&sr=1][Find modifications in git logs]]
11146 : Change the time of this item, in units of `org-time-stamp-rounding-minutes'.
11147 ** org-todo-yesterday =(&optional arg)=
11149 :CUSTOM_ID: org-todo-yesterday
11152 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11153 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-yesterday&sr=1][Find modifications in git logs]]
11155 : Like `org-todo' but the time of change will be 23:59 of yesterday.
11156 ** org-columns-previous-allowed-value
11158 :CUSTOM_ID: org-columns-previous-allowed-value
11161 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
11162 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-previous-allowed-value&sr=1][Find modifications in git logs]]
11164 : Switch to the previous allowed value for this column.
11165 ** org-next-block =(arg &optional backward block-regexp)=
11167 :CUSTOM_ID: org-next-block
11170 - *Access:* ~C-c M-f~
11171 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11172 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-next-block&sr=1][Find modifications in git logs]]
11174 : Jump to the next block.
11175 : With a prefix argument ARG, jump forward ARG many source blocks.
11176 : When BACKWARD is non-nil, jump to the previous block.
11177 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
11178 ** org-agenda-day-view =(&optional day-of-month)=
11180 :CUSTOM_ID: org-agenda-day-view
11183 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11184 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-day-view&sr=1][Find modifications in git logs]]
11186 : Switch to daily view for agenda.
11187 : With argument DAY-OF-MONTH, switch to that day of the month.
11188 ** org-clock-display =(&optional total-only)=
11190 :CUSTOM_ID: org-clock-display
11193 - *Access:* ~C-c C-x C-d, <menu-bar> <Org> <Logging work> <Display times>~
11194 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
11195 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-display&sr=1][Find modifications in git logs]]
11197 : Show subtree times in the entire buffer.
11198 : If TOTAL-ONLY is non-nil, only show the total time for the entire file
11199 : in the echo area.
11201 : Use M-x org-clock-remove-overlays to remove the subtree times.
11202 ** org-table-copy-down =(n)=
11204 :CUSTOM_ID: org-table-copy-down
11207 - *Access:* ~<S-return>, <menu-bar> <Tbl> <Copy Field from Above>~
11208 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11209 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-copy-down&sr=1][Find modifications in git logs]]
11211 : Copy a field down in the current column.
11212 : If the field at the cursor is empty, copy into it the content of
11213 : the nearest non-empty field above. With argument N, use the Nth
11214 : non-empty field. If the current field is not empty, it is copied
11215 : down to the next row, and the cursor is moved with it.
11216 : Therefore, repeating this command causes the column to be filled
11218 : If the variable `org-table-copy-increment' is non-nil and the
11219 : field is an integer or a timestamp, it will be incremented while
11220 : copying. In the case of a timestamp, increment by one day.
11221 ** org-indent-block
11223 :CUSTOM_ID: org-indent-block
11226 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11227 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-block&sr=1][Find modifications in git logs]]
11229 : Indent the block at point.
11230 ** org-agenda-next-line
11232 :CUSTOM_ID: org-agenda-next-line
11235 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11236 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-next-line&sr=1][Find modifications in git logs]]
11238 : Move cursor to the next line, and show if follow mode is active.
11239 ** org-previous-block =(arg &optional block-regexp)=
11241 :CUSTOM_ID: org-previous-block
11244 - *Access:* ~C-c M-b~
11245 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11246 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-previous-block&sr=1][Find modifications in git logs]]
11248 : Jump to the previous block.
11249 : With a prefix argument ARG, jump backward ARG many source blocks.
11250 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
11251 ** org-occur-link-in-agenda-files
11253 :CUSTOM_ID: org-occur-link-in-agenda-files
11256 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Find existing link to here>, C-c L~
11257 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11258 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-occur-link-in-agenda-files&sr=1][Find modifications in git logs]]
11260 : Create a link and search for it in the agendas.
11261 : The link is not stored in `org-stored-links', it is just created
11262 : for the search purpose.
11263 ** org-timer-show-remaining-time
11265 :CUSTOM_ID: org-timer-show-remaining-time
11268 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
11269 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-show-remaining-time&sr=1][Find modifications in git logs]]
11271 : Display the remaining time before the timer ends.
11272 ** org-agenda-append-agenda
11274 :CUSTOM_ID: org-agenda-append-agenda
11277 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11278 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-append-agenda&sr=1][Find modifications in git logs]]
11280 : Append another agenda view to the current one.
11281 : This function allows interactive building of block agendas.
11282 : Agenda views are separated by `org-agenda-block-separator'.
11283 ** org-outdent-item
11285 :CUSTOM_ID: org-outdent-item
11288 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
11289 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-outdent-item&sr=1][Find modifications in git logs]]
11291 : Outdent a local list item, but not its children.
11292 : If a region is active, all items inside will be moved.
11293 ** org-delete-property =(property &optional delete-empty-drawer)=
11295 :CUSTOM_ID: org-delete-property
11298 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11299 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-delete-property&sr=1][Find modifications in git logs]]
11301 : In the current entry, delete PROPERTY.
11302 : When optional argument DELETE-EMPTY-DRAWER is a string, it defines
11303 : an empty drawer to delete.
11304 ** org-babel-mark-block
11306 :CUSTOM_ID: org-babel-mark-block
11309 - *Access:* ~C-c C-v C-M-h~
11310 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
11311 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-mark-block&sr=1][Find modifications in git logs]]
11313 : Mark current src block.
11314 ** org-ctags-get-filename-for-tag =(tag)=
11316 :CUSTOM_ID: org-ctags-get-filename-for-tag
11319 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
11320 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-get-filename-for-tag&sr=1][Find modifications in git logs]]
11322 : TAG is a string. Search the active TAGS file for a matching tag.
11323 : If the tag is found, return a list containing the filename, line number, and
11324 : buffer position where the tag is found.
11325 ** org-clock-timestamps-up =(&optional n)=
11327 :CUSTOM_ID: org-clock-timestamps-up
11330 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
11331 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-timestamps-up&sr=1][Find modifications in git logs]]
11333 : Increase CLOCK timestamps at cursor.
11334 : Optional argument N tells to change by that many units.
11335 ** org-publish-current-file =(&optional force async)=
11337 :CUSTOM_ID: org-publish-current-file
11340 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
11341 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-current-file&sr=1][Find modifications in git logs]]
11343 : Publish the current file.
11344 : With prefix argument FORCE, force publish the file. When
11345 : optional argument ASYNC is non-nil, publishing will be done
11346 : asynchronously, in another process.
11347 ** org-plot/collect-options =(&optional params)=
11349 :CUSTOM_ID: org-plot/collect-options
11352 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-plot.el;hb=HEAD][org-plot.el]]
11353 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plot/collect-options&sr=1][Find modifications in git logs]]
11355 : Collect options from an org-plot '#+Plot:' line.
11356 : Accepts an optional property list PARAMS, to which the options
11357 : will be added. Returns the resulting property list.
11358 ** org-agenda-earlier =(arg)=
11360 :CUSTOM_ID: org-agenda-earlier
11363 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11364 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-earlier&sr=1][Find modifications in git logs]]
11366 : Go backward in time by the current span.
11367 : With prefix ARG, go backward that many times the current span.
11368 ** org-agenda-bulk-toggle
11370 :CUSTOM_ID: org-agenda-bulk-toggle
11373 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11374 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-toggle&sr=1][Find modifications in git logs]]
11376 : Toggle the mark at point for bulk action.
11377 ** org-org-export-to-org =(&optional async subtreep visible-only ext-plist)=
11379 :CUSTOM_ID: org-org-export-to-org
11382 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-org.el;hb=HEAD][ox-org.el]]
11383 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-org-export-to-org&sr=1][Find modifications in git logs]]
11385 : Export current buffer to an org file.
11387 : If narrowing is active in the current buffer, only export its
11390 : If a region is active, export that region.
11392 : A non-nil optional argument ASYNC means the process should happen
11393 : asynchronously. The resulting file should be accessible through
11394 : the `org-export-stack' interface.
11396 : When optional argument SUBTREEP is non-nil, export the sub-tree
11397 : at point, extracting information from the headline properties
11400 : When optional argument VISIBLE-ONLY is non-nil, don't export
11401 : contents of hidden elements.
11403 : EXT-PLIST, when provided, is a property list with external
11404 : parameters overriding Org default settings, but still inferior to
11405 : file-local settings.
11407 : Return output file name.
11408 ** org-table-fedit-ref-right
11410 :CUSTOM_ID: org-table-fedit-ref-right
11413 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11414 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-ref-right&sr=1][Find modifications in git logs]]
11416 : Shift the reference at point one field to the right.
11419 :CUSTOM_ID: org-do-demote
11422 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11423 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-do-demote&sr=1][Find modifications in git logs]]
11425 : Demote the current heading lower down the tree.
11426 : If the region is active in `transient-mark-mode', demote all headings
11428 ** org-publish-current-project =(&optional force async)=
11430 :CUSTOM_ID: org-publish-current-project
11433 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
11434 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-current-project&sr=1][Find modifications in git logs]]
11436 : Publish the project associated with the current file.
11437 : With a prefix argument, force publishing of all files in
11439 ** org-goto =(&optional alternative-interface)=
11441 :CUSTOM_ID: org-goto
11444 - *Access:* ~C-c C-j, <menu-bar> <Org> <Navigate Headings> <Jump>~
11445 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11446 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto&sr=1][Find modifications in git logs]]
11448 : Look up a different location in the current file, keeping current visibility.
11450 : When you want look-up or go to a different location in a
11451 : document, the fastest way is often to fold the entire buffer and
11452 : then dive into the tree. This method has the disadvantage, that
11453 : the previous location will be folded, which may not be what you
11456 : This command works around this by showing a copy of the current
11457 : buffer in an indirect buffer, in overview mode. You can dive
11458 : into the tree in that copy, use org-occur and incremental search
11459 : to find a location. When pressing RET or `Q', the command
11460 : returns to the original buffer in which the visibility is still
11461 : unchanged. After RET it will also jump to the location selected
11462 : in the indirect buffer and expose the headline hierarchy above.
11464 : With a prefix argument, use the alternative interface: e.g. if
11465 : `org-goto-interface' is 'outline use 'outline-path-completion.
11466 ** org-agenda-archive-with =(cmd &optional confirm)=
11468 :CUSTOM_ID: org-agenda-archive-with
11471 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11472 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-archive-with&sr=1][Find modifications in git logs]]
11474 : Move the entry to the archive sibling.
11475 ** org-clock-remove-overlays =(&optional beg end noremove)=
11477 :CUSTOM_ID: org-clock-remove-overlays
11480 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
11481 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-remove-overlays&sr=1][Find modifications in git logs]]
11483 : Remove the occur highlights from the buffer.
11484 : BEG and END are ignored. If NOREMOVE is nil, remove this function
11485 : from the `before-change-functions' in the current buffer.
11486 ** org-table-insert-hline =(&optional above)=
11488 :CUSTOM_ID: org-table-insert-hline
11491 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11492 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-insert-hline&sr=1][Find modifications in git logs]]
11494 : Insert a horizontal-line below the current line into the table.
11495 : With prefix ABOVE, insert above the current line.
11496 ** org-agenda-clockreport-mode =(&optional with-filter)=
11498 :CUSTOM_ID: org-agenda-clockreport-mode
11501 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11502 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clockreport-mode&sr=1][Find modifications in git logs]]
11504 : Toggle clocktable mode in an agenda buffer.
11505 : With prefix arg WITH-FILTER, make the clocktable respect the current
11507 ** org-man-export-to-man =(&optional async subtreep visible-only body-only ext-plist)=
11509 :CUSTOM_ID: org-man-export-to-man
11512 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
11513 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-export-to-man&sr=1][Find modifications in git logs]]
11515 : Export current buffer to a Man file.
11517 : If narrowing is active in the current buffer, only export its
11520 : If a region is active, export that region.
11522 : A non-nil optional argument ASYNC means the process should happen
11523 : asynchronously. The resulting file should be accessible through
11524 : the `org-export-stack' interface.
11526 : When optional argument SUBTREEP is non-nil, export the sub-tree
11527 : at point, extracting information from the headline properties
11530 : When optional argument VISIBLE-ONLY is non-nil, don't export
11531 : contents of hidden elements.
11533 : When optional argument BODY-ONLY is non-nil, only the body
11534 : without any markers.
11536 : EXT-PLIST, when provided, is a property list with external
11537 : parameters overriding Org default settings, but still inferior to
11538 : file-local settings.
11540 : Return output file's name.
11541 ** org-babel-insert-header-arg
11543 :CUSTOM_ID: org-babel-insert-header-arg
11546 - *Access:* ~C-c C-v j, C-c C-v C-j~
11547 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
11548 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-insert-header-arg&sr=1][Find modifications in git logs]]
11550 : Insert a header argument selecting from lists of common args and values.
11551 ** org-agenda-set-restriction-lock =(&optional type)=
11553 :CUSTOM_ID: org-agenda-set-restriction-lock
11556 - *Access:* ~<menu-bar> <Org> <Set Restriction Lock>, C-c C-x <~
11557 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11558 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-set-restriction-lock&sr=1][Find modifications in git logs]]
11560 : Set restriction lock for agenda, to current subtree or file.
11561 : Restriction will be the file if TYPE is `file', or if type is the
11562 : universal prefix '(4), or if the cursor is before the first headline
11563 : in the file. Otherwise, restriction will be to the current subtree.
11564 ** org-footnote-renumber-fn:N
11566 :CUSTOM_ID: org-footnote-renumber-fn:N
11569 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
11570 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-renumber-fn:N&sr=1][Find modifications in git logs]]
11572 : Renumber the simple footnotes like fn:17 into a sequence in the document.
11573 ** org-mouse-show-context-menu =(event prefix)=
11575 :CUSTOM_ID: org-mouse-show-context-menu
11578 - *Access:* ~<mouse-3>~
11579 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
11580 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-show-context-menu&sr=1][Find modifications in git logs]]
11582 : Invoke the context menu.
11584 : If the value of `org-mouse-context-menu-function' is a function, then
11585 : this function is called. Otherwise, the current major mode menu is used.
11586 ** org-agenda-to-appt =(&optional refresh filter &rest args)=
11588 :CUSTOM_ID: org-agenda-to-appt
11591 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11592 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-to-appt&sr=1][Find modifications in git logs]]
11594 : Activate appointments found in `org-agenda-files'.
11595 : With a C-u prefix, refresh the list of
11598 : If FILTER is t, interactively prompt the user for a regular
11599 : expression, and filter out entries that don't match it.
11601 : If FILTER is a string, use this string as a regular expression
11602 : for filtering entries out.
11604 : If FILTER is a function, filter out entries against which
11605 : calling the function returns nil. This function takes one
11606 : argument: an entry from `org-agenda-get-day-entries'.
11608 : FILTER can also be an alist with the car of each cell being
11609 : either 'headline or 'category. For example:
11611 : '((headline "IMPORTANT")
11612 : (category "Work"))
11614 : will only add headlines containing IMPORTANT or headlines
11615 : belonging to the "Work" category.
11617 : ARGS are symbols indicating what kind of entries to consider.
11618 : By default `org-agenda-to-appt' will use :deadline*, :scheduled*
11619 : (i.e., deadlines and scheduled items with a hh:mm specification)
11620 : and :timestamp entries. See the docstring of `org-diary' for
11621 : details and examples.
11623 : If an entry has a APPT_WARNTIME property, its value will be used
11624 : to override `appt-message-warning-time'.
11625 ** org-inlinetask-insert-task =(&optional no-state)=
11627 :CUSTOM_ID: org-inlinetask-insert-task
11630 - *Access:* ~C-c C-x t~
11631 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-inlinetask.el;hb=HEAD][org-inlinetask.el]]
11632 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inlinetask-insert-task&sr=1][Find modifications in git logs]]
11634 : Insert an inline task.
11635 : If prefix arg NO-STATE is set, ignore `org-inlinetask-default-state'.
11636 ** org-agenda-week-view =(&optional iso-week)=
11638 :CUSTOM_ID: org-agenda-week-view
11641 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11642 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-week-view&sr=1][Find modifications in git logs]]
11644 : Switch to daily view for agenda.
11645 : With argument ISO-WEEK, switch to the corresponding ISO week.
11646 : If ISO-WEEK has more then 2 digits, only the last two encode the
11647 : week. Any digits before this encode a year. So 200712 means
11648 : week 12 of year 2007. Years in the range 1938-2037 can also be
11649 : written as 2-digit years.
11650 ** org-agenda-redo =(&optional all)=
11652 :CUSTOM_ID: org-agenda-redo
11655 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11656 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-redo&sr=1][Find modifications in git logs]]
11658 : Rebuild possibly ALL agenda view(s) in the current buffer.
11659 ** org-capture-refile
11661 :CUSTOM_ID: org-capture-refile
11664 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
11665 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-refile&sr=1][Find modifications in git logs]]
11667 : Finalize the current capture and then refile the entry.
11668 : Refiling is done from the base buffer, because the indirect buffer is then
11669 : already gone. Any prefix argument will be passed to the refile command.
11670 ** org-submit-bug-report
11672 :CUSTOM_ID: org-submit-bug-report
11675 - *Access:* ~<menu-bar> <Org> <Send bug report>~
11676 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11677 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-submit-bug-report&sr=1][Find modifications in git logs]]
11679 : Submit a bug report on Org-mode via mail.
11681 : Don't hesitate to report any problems or inaccurate documentation.
11683 : If you don't have setup sending mail from (X)Emacs, please copy the
11684 : output buffer into your mail program, as it gives us important
11685 : information about your Org-mode version and configuration.
11686 ** org-escape-code-in-region =(beg end)=
11688 :CUSTOM_ID: org-escape-code-in-region
11691 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
11692 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-escape-code-in-region&sr=1][Find modifications in git logs]]
11694 : Escape lines between BEG and END.
11695 : Escaping happens when a line starts with "*", "#+", ",*" or
11696 : ",#+" by appending a comma to it.
11697 ** org-agenda-bulk-mark-all
11699 :CUSTOM_ID: org-agenda-bulk-mark-all
11702 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11703 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-mark-all&sr=1][Find modifications in git logs]]
11705 : Mark all entries for future agenda bulk action.
11706 ** org-babel-view-src-block-info
11708 :CUSTOM_ID: org-babel-view-src-block-info
11711 - *Access:* ~C-c C-v I, C-c C-v TAB~
11712 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
11713 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-view-src-block-info&sr=1][Find modifications in git logs]]
11715 : Display information on the current source block.
11716 : This includes header arguments, language and name, and is largely
11717 : a window into the `org-babel-get-src-block-info' function.
11718 ** org-beginning-of-item
11720 :CUSTOM_ID: org-beginning-of-item
11723 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
11724 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beginning-of-item&sr=1][Find modifications in git logs]]
11726 : Go to the beginning of the current item.
11727 : Throw an error when not in a list.
11730 :CUSTOM_ID: org-table-align
11733 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11734 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-align&sr=1][Find modifications in git logs]]
11736 : Align the table at point by aligning all vertical bars.
11737 ** org-table-fedit-ref-up
11739 :CUSTOM_ID: org-table-fedit-ref-up
11742 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11743 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-ref-up&sr=1][Find modifications in git logs]]
11745 : Shift the reference at point one row/hline up.
11746 ** org-babel-tangle-file =(file &optional target-file lang)=
11748 :CUSTOM_ID: org-babel-tangle-file
11751 - *Access:* ~C-c C-v f, C-c C-v C-f~
11752 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
11753 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-file&sr=1][Find modifications in git logs]]
11755 : Extract the bodies of source code blocks in FILE.
11756 : Source code blocks are extracted with `org-babel-tangle'.
11757 : Optional argument TARGET-FILE can be used to specify a default
11758 : export file for all source blocks. Optional argument LANG can be
11759 : used to limit the exported source code blocks by language.
11760 ** org-toggle-inline-images =(&optional include-linked)=
11762 :CUSTOM_ID: org-toggle-inline-images
11765 - *Access:* ~C-c C-x C-v~
11766 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11767 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-inline-images&sr=1][Find modifications in git logs]]
11769 : Toggle the display of inline images.
11770 : INCLUDE-LINKED is passed to `org-display-inline-images'.
11771 ** org-show-priority
11773 :CUSTOM_ID: org-show-priority
11776 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11777 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-priority&sr=1][Find modifications in git logs]]
11779 : Show the priority of the current item.
11780 : This priority is composed of the main priority given with the [#A] cookies,
11781 : and by additional input from the age of a schedules or deadline entry.
11782 ** org-insert-all-links =(&optional keep)=
11784 :CUSTOM_ID: org-insert-all-links
11787 - *Access:* ~C-c C-M-l~
11788 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11789 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-all-links&sr=1][Find modifications in git logs]]
11791 : Insert all links in `org-stored-links'.
11792 ** org-demote-subtree
11794 :CUSTOM_ID: org-demote-subtree
11797 - *Access:* ~C-c C->~
11798 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11799 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-demote-subtree&sr=1][Find modifications in git logs]]
11801 : Demote the entire subtree. See `org-demote'.
11802 : See also `org-promote'.
11803 ** org-table-fedit-abort
11805 :CUSTOM_ID: org-table-fedit-abort
11808 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11809 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fedit-abort&sr=1][Find modifications in git logs]]
11811 : Abort editing formulas, without installing the changes.
11812 ** org-texinfo-convert-region-to-texinfo
11814 :CUSTOM_ID: org-texinfo-convert-region-to-texinfo
11817 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
11818 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-convert-region-to-texinfo&sr=1][Find modifications in git logs]]
11820 : Assume the current region has org-mode syntax, and convert it to Texinfo.
11821 : This can be used in any buffer. For example, you can write an
11822 : itemized list in org-mode syntax in an Texinfo buffer and use
11823 : this command to convert it.
11824 ** org-agenda-goto-mouse =(ev)=
11826 :CUSTOM_ID: org-agenda-goto-mouse
11829 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11830 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-goto-mouse&sr=1][Find modifications in git logs]]
11832 : Go to the Org-mode file which contains the item at the mouse click.
11833 ** org-table-beginning-of-field =(&optional n)=
11835 :CUSTOM_ID: org-table-beginning-of-field
11838 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
11839 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-beginning-of-field&sr=1][Find modifications in git logs]]
11841 : Move to the end of the current table field.
11842 : If already at or after the end, move to the end of the next table field.
11843 : With numeric argument N, move N-1 fields forward first.
11844 ** org-toggle-ordered-property
11846 :CUSTOM_ID: org-toggle-ordered-property
11849 - *Access:* ~C-c C-x o, <menu-bar> <Org> <TODO Lists> <Do Children sequentially>, <menu-bar> <Org> <TODO Lists> <Do Children parallel>~
11850 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11851 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-toggle-ordered-property&sr=1][Find modifications in git logs]]
11853 : Toggle the ORDERED property of the current entry.
11854 : For better visibility, you can track the value of this property with a tag.
11855 : See variable `org-track-ordered-property-with-tag'.
11856 ** org-edit-src-abort
11858 :CUSTOM_ID: org-edit-src-abort
11861 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
11862 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-abort&sr=1][Find modifications in git logs]]
11864 : Abort editing of the src code and return to the Org buffer.
11865 ** org-clock-report =(&optional arg)=
11867 :CUSTOM_ID: org-clock-report
11870 - *Access:* ~C-c C-x C-r, <menu-bar> <Org> <Logging work> <Create clock table>~
11871 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
11872 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-report&sr=1][Find modifications in git logs]]
11874 : Create a table containing a report about clocked time.
11875 : If the cursor is inside an existing clocktable block, then the table
11876 : will be updated. If not, a new clocktable will be inserted. The scope
11877 : of the new clock will be subtree when called from within a subtree, and
11880 : When called with a prefix argument, move to the first clock table in the
11881 : buffer and update it.
11882 ** org-agenda-recenter =(arg)=
11884 :CUSTOM_ID: org-agenda-recenter
11887 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11888 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-recenter&sr=1][Find modifications in git logs]]
11890 : Display the Org-mode file which contains the item at point and recenter.
11891 ** org-columns-display-here-title
11893 :CUSTOM_ID: org-columns-display-here-title
11896 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-colview.el;hb=HEAD][org-colview.el]]
11897 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-display-here-title&sr=1][Find modifications in git logs]]
11899 : Overlay the newline before the current line with the table title.
11900 ** org-edit-special =(&optional arg)=
11902 :CUSTOM_ID: org-edit-special
11905 - *Access:* ~C-c ', <menu-bar> <Org> <Editing> <Edit Source Example>, <menu-bar> <Tbl> <Calculate> <Edit Formulas>~
11906 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
11907 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-special&sr=1][Find modifications in git logs]]
11909 : Call a special editor for the element at point.
11910 : When at a table, call the formula editor with `org-table-edit-formulas'.
11911 : When in a source code block, call `org-edit-src-code'.
11912 : When in a fixed-width region, call `org-edit-fixed-width-region'.
11913 : When at an #+INCLUDE keyword, visit the included file.
11914 : On a link, call `ffap' to visit the link at point.
11915 : Otherwise, return a user error.
11916 ** org-remove-formatting-on-newlines-in-region =(beg end)=
11918 :CUSTOM_ID: org-remove-formatting-on-newlines-in-region
11921 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
11922 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-remove-formatting-on-newlines-in-region&sr=1][Find modifications in git logs]]
11924 : Remove formatting on newline characters.
11925 ** org-agenda-execute =(arg)=
11927 :CUSTOM_ID: org-agenda-execute
11930 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
11931 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-execute&sr=1][Find modifications in git logs]]
11933 : Execute another agenda command, keeping same window.
11934 : So this is just a shortcut for `C-c a', available
11936 ** org-attach-attach-cp
11938 :CUSTOM_ID: org-attach-attach-cp
11941 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
11942 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-attach-cp&sr=1][Find modifications in git logs]]
11944 : Attach a file by copying it.
11947 :CUSTOM_ID: options
11951 ** org-html-todo-kwd-class-prefix =""=
11953 :CUSTOM_ID: org-html-todo-kwd-class-prefix
11957 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
11958 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-todo-kwd-class-prefix&sr=1][Find modifications in git logs]]
11960 : Prefix to class names for TODO keywords.
11961 : Each TODO keyword gets a class given by the keyword itself, with this prefix.
11962 : The default prefix is empty because it is nice to just use the keyword
11963 : as a class name. But if you get into conflicts with other, existing
11964 : CSS classes, then this prefix can be very useful.
11966 ** org-bibtex-key-property ="CUSTOM_ID"=
11968 :CUSTOM_ID: org-bibtex-key-property
11972 - *Since:* Emacs version 24.1
11973 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
11974 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-key-property&sr=1][Find modifications in git logs]]
11976 : Property that holds the bibtex key.
11977 : By default, this is CUSTOM_ID, which enables easy linking to
11978 : bibtex headlines from within an org file. This can be set to ID
11979 : to enable global links, but only with great caution, as global
11980 : IDs must be unique.
11982 ** org-entities-user =nil=
11984 :CUSTOM_ID: org-entities-user
11987 - *Type:* (repeat (list (string :tag "na...
11988 - *Since:* Emacs version 24.1
11989 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-entities.el;hb=HEAD][org-entities.el]]
11990 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-entities-user&sr=1][Find modifications in git logs]]
11992 : User-defined entities used in Org-mode to produce special characters.
11993 : Each entry in this list is a list of strings. It associates the name
11994 : of the entity that can be inserted into an Org file as \name with the
11995 : appropriate replacements for the different export backends. The order
11996 : of the fields is the following
11998 : name As a string, without the leading backslash
11999 : LaTeX replacement In ready LaTeX, no further processing will take place
12000 : LaTeX mathp A Boolean, either t or nil. t if this entity needs
12001 : to be in math mode.
12002 : HTML replacement In ready HTML, no further processing will take place.
12003 : Usually this will be an &...; entity.
12004 : ASCII replacement Plain ASCII, no extensions. Symbols that cannot be
12005 : represented will be left as they are, but see the.
12006 : variable `org-entities-ascii-explanatory'.
12007 : Latin1 replacement Use the special characters available in latin1.
12008 : utf-8 replacement Use the special characters available in utf-8.
12010 : If you define new entities here that require specific LaTeX
12011 : packages to be loaded, add these packages to `org-latex-packages-alist'.
12013 ** org-export-html-preamble =t=
12015 :CUSTOM_ID: org-export-html-preamble
12018 - *Type:* (choice (const :tag "No preamb...
12019 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
12020 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-preamble&sr=1][Find modifications in git logs]]
12022 : Non-nil means insert a preamble in HTML export.
12024 : When `t', insert a string as defined by one of the formatting
12025 : strings in `org-export-html-preamble-format'. When set to a
12026 : string, this string overrides `org-export-html-preamble-format'.
12027 : When set to a function, apply this function and insert the
12028 : returned string. The function takes no argument, but you can
12029 : use `opt-plist' to access the current export options.
12031 : Setting :html-preamble in publishing projects will take
12032 : precedence over this variable.
12034 ** org-table-exit-follow-field-mode-when-leaving-table =t=
12036 :CUSTOM_ID: org-table-exit-follow-field-mode-when-leaving-table
12040 - *Since:* Emacs version 24.1
12041 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
12042 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-exit-follow-field-mode-when-leaving-table&sr=1][Find modifications in git logs]]
12044 : Non-nil means automatically exit the follow mode.
12045 : When nil, the follow mode will stay on and be active in any table
12046 : the cursor enters. Since the table follow filed mode messes with the
12047 : window configuration, it is not recommended to set this variable to nil,
12048 : except maybe locally in a special file that has mostly tables with long
12051 ** org-log-done-with-time =t=
12053 :CUSTOM_ID: org-log-done-with-time
12057 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12058 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-done-with-time&sr=1][Find modifications in git logs]]
12060 : Non-nil means the CLOSED time stamp will contain date and time.
12061 : When nil, only the date will be recorded.
12063 ** org-agenda-restriction-lock-highlight-subtree =t=
12065 :CUSTOM_ID: org-agenda-restriction-lock-highlight-subtree
12069 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12070 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-restriction-lock-highlight-subtree&sr=1][Find modifications in git logs]]
12072 : Non-nil means highlight the whole subtree when restriction is active.
12073 : Otherwise only highlight the headline. Highlighting the whole subtree is
12074 : useful to ensure no edits happen beyond the restricted region.
12076 ** org-export-babel-evaluate =t=
12078 :CUSTOM_ID: org-export-babel-evaluate
12081 - *Type:* (choice (const :tag "Never" ni...
12082 - *Since:* Emacs version 24.1
12083 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
12084 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-babel-evaluate&sr=1][Find modifications in git logs]]
12086 : Switch controlling code evaluation during export.
12087 : When set to nil no code will be evaluated as part of the export
12088 : process. When set to 'inline-only, only inline code blocks will
12091 ** org-export-blocks =(quote ((export-comment org-ex...=
12093 :CUSTOM_ID: org-export-blocks
12096 - *Type:* (repeat (list (symbol :tag "Bl...
12097 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
12098 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-blocks&sr=1][Find modifications in git logs]]
12100 : Use this alist to associate block types with block exporting functions.
12101 : The type of a block is determined by the text immediately
12102 : following the '#+BEGIN_' portion of the block header. Each block
12103 : export function should accept three arguments.
12105 ** org-agenda-filter-effort-default-operator ="<"=
12107 :CUSTOM_ID: org-agenda-filter-effort-default-operator
12110 - *Type:* (choice (const :tag "less or e...
12111 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12112 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-filter-effort-default-operator&sr=1][Find modifications in git logs]]
12114 : The default operator for effort estimate filtering.
12115 : If you select an effort estimate limit without first pressing an operator,
12116 : this one will be used.
12118 ** org-cycle-skip-children-state-if-no-children =t=
12120 :CUSTOM_ID: org-cycle-skip-children-state-if-no-children
12124 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12125 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-skip-children-state-if-no-children&sr=1][Find modifications in git logs]]
12127 : Non-nil means skip CHILDREN state in entries that don't have any.
12129 ** org-enforce-todo-checkbox-dependencies =nil=
12131 :CUSTOM_ID: org-enforce-todo-checkbox-dependencies
12135 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12136 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-enforce-todo-checkbox-dependencies&sr=1][Find modifications in git logs]]
12138 : Non-nil means unchecked boxes will block switching the parent to DONE.
12139 : When this is nil, checkboxes have no influence on switching TODO states.
12140 : When non-nil, you first need to check off all check boxes before the TODO
12141 : entry can be switched to DONE.
12142 : This variable needs to be set before org.el is loaded, and you need to
12143 : restart Emacs after a change to make the change effective. The only way
12144 : to change is while Emacs is running is through the customize interface.
12146 ** org-agenda-menu-show-matcher =t=
12148 :CUSTOM_ID: org-agenda-menu-show-matcher
12152 - *Since:* Emacs version 24.1
12153 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12154 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-menu-show-matcher&sr=1][Find modifications in git logs]]
12156 : Non-nil means show the match string in the agenda dispatcher menu.
12157 : When nil, the matcher string is not shown, but is put into the help-echo
12158 : property so than moving the mouse over the command shows it.
12159 : Setting it to nil is good if matcher strings are very long and/or if
12160 : you want to use two-columns display (see `org-agenda-menu-two-columns').
12162 ** org-inlinetask-default-state =nil=
12164 :CUSTOM_ID: org-inlinetask-default-state
12167 - *Type:* (choice (const :tag "No state"...
12168 - *Since:* Emacs version 24.1
12169 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-inlinetask.el;hb=HEAD][org-inlinetask.el]]
12170 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inlinetask-default-state&sr=1][Find modifications in git logs]]
12172 : Non-nil means make inline tasks have a TODO keyword initially.
12173 : This should be the state `org-inlinetask-insert-task' should use by
12174 : default, or nil of no state should be assigned.
12176 ** org-latex-create-formula-image-program =(quote dvipng)=
12178 :CUSTOM_ID: org-latex-create-formula-image-program
12181 - *Type:* (choice (const :tag "dvipng" d...
12182 - *Since:* Emacs version 24.1
12183 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12184 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-create-formula-image-program&sr=1][Find modifications in git logs]]
12186 : Program to convert LaTeX fragments with.
12188 : dvipng Process the LaTeX fragments to dvi file, then convert
12189 : dvi files to png files using dvipng.
12190 : This will also include processing of non-math environments.
12191 : imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
12192 : to convert pdf files to png files
12194 ** org-agenda-category-icon-alist =nil=
12196 :CUSTOM_ID: org-agenda-category-icon-alist
12199 - *Type:* (alist :key-type (string :tag ...
12200 - *Since:* Emacs version 24.1
12201 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12202 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-category-icon-alist&sr=1][Find modifications in git logs]]
12204 : Alist of category icon to be displayed in agenda views.
12206 : Each entry should have the following format:
12208 : (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
12210 : Where CATEGORY-REGEXP is a regexp matching the categories where
12211 : the icon should be displayed.
12212 : FILE-OR-DATA either a file path or a string containing image data.
12214 : The other fields can be omitted safely if not needed:
12215 : TYPE indicates the image type.
12216 : DATA-P is a boolean indicating whether the FILE-OR-DATA string is
12218 : PROPS are additional image attributes to assign to the image,
12219 : like, e.g. `:ascent center'.
12221 : ("Org" "/path/to/icon.png" nil nil :ascent center)
12223 : If you want to set the display properties yourself, just put a
12224 : list as second element:
12226 : (CATEGORY-REGEXP (MY PROPERTY LIST))
12228 : For example, to display a 16px horizontal space for Emacs
12229 : category, you can use:
12231 : ("Emacs" '(space . (:width (16))))
12233 ** org-confirm-shell-link-not-regexp =""=
12235 :CUSTOM_ID: org-confirm-shell-link-not-regexp
12239 - *Since:* Emacs version 24.1
12240 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12241 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-confirm-shell-link-not-regexp&sr=1][Find modifications in git logs]]
12243 : A regexp to skip confirmation for shell links.
12245 ** org-agenda-search-view-always-boolean =nil=
12247 :CUSTOM_ID: org-agenda-search-view-always-boolean
12251 - *Since:* Emacs version 24.1
12252 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12253 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-search-view-always-boolean&sr=1][Find modifications in git logs]]
12255 : Non-nil means the search string is interpreted as individual parts.
12257 : The search string for search view can either be interpreted as a phrase,
12258 : or as a list of snippets that define a boolean search for a number of
12261 : When this is non-nil, the string will be split on whitespace, and each
12262 : snippet will be searched individually, and all must match in order to
12263 : select an entry. A snippet is then a single string of non-white
12264 : characters, or a string in double quotes, or a regexp in {} braces.
12265 : If a snippet is preceded by "-", the snippet must *not* match.
12266 : "+" is syntactic sugar for positive selection. Each snippet may
12267 : be found as a full word or a partial word, but see the variable
12268 : `org-agenda-search-view-force-full-words'.
12270 : When this is nil, search will look for the entire search phrase as one,
12271 : with each space character matching any amount of whitespace, including
12274 : Even when this is nil, you can still switch to Boolean search dynamically
12275 : by preceding the first snippet with "+" or "-". If the first snippet
12276 : is a regexp marked with braces like "{abc}", this will also switch to
12279 ** org-time-clocksum-use-effort-durations =nil=
12281 :CUSTOM_ID: org-time-clocksum-use-effort-durations
12285 - *Since:* Emacs version 24.4
12286 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12287 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-clocksum-use-effort-durations&sr=1][Find modifications in git logs]]
12289 : When non-nil, \[org-clock-display] uses effort durations.
12290 : E.g. by default, one day is considered to be a 8 hours effort,
12291 : so a task that has been clocked for 16 hours will be displayed
12292 : as during 2 days in the clock display or in the clocktable.
12294 : See `org-effort-durations' on how to set effort durations
12295 : and `org-time-clocksum-format' for more on time clock formats.
12297 ** org-footnote-section ="Footnotes"=
12299 :CUSTOM_ID: org-footnote-section
12302 - *Type:* (choice (string :tag "Collect ...
12303 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
12304 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-section&sr=1][Find modifications in git logs]]
12306 : Outline heading containing footnote definitions.
12308 : This can be nil, to place footnotes locally at the end of the
12309 : current outline node. If can also be the name of a special
12310 : outline heading under which footnotes should be put.
12312 : This variable defines the place where Org puts the definition
12313 : automatically, i.e. when creating the footnote, and when sorting
12314 : the notes. However, by hand you may place definitions
12317 : If this is a string, during export, all subtrees starting with
12318 : this heading will be ignored.
12320 ** org-org-htmlized-css-url =nil=
12322 :CUSTOM_ID: org-org-htmlized-css-url
12325 - *Type:* (choice (const :tag "Don't inc...
12326 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-org.el;hb=HEAD][ox-org.el]]
12327 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-org-htmlized-css-url&sr=1][Find modifications in git logs]]
12329 : URL pointing to the CSS defining colors for htmlized Emacs buffers.
12330 : Normally when creating an htmlized version of an Org buffer,
12331 : htmlize will create the CSS to define the font colors. However,
12332 : this does not work when converting in batch mode, and it also can
12333 : look bad if different people with different fontification setup
12334 : work on the same website. When this variable is non-nil,
12335 : creating an htmlized version of an Org buffer using
12336 : `org-org-export-as-org' will include a link to this URL if the
12337 : setting of `org-html-htmlize-output-type' is 'css.
12339 ** org-agenda-log-mode-items =(quote (closed clock))=
12341 :CUSTOM_ID: org-agenda-log-mode-items
12344 - *Type:* (set :greedy t (const closed) ...
12345 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12346 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-log-mode-items&sr=1][Find modifications in git logs]]
12348 : List of items that should be shown in agenda log mode.
12349 : This list may contain the following symbols:
12351 : closed Show entries that have been closed on that day.
12352 : clock Show entries that have received clocked time on that day.
12353 : state Show all logged state changes.
12354 : Note that instead of changing this variable, you can also press `C-u l' in
12355 : the agenda to display all available LOG items temporarily.
12357 ** org-faces-easy-properties =(quote ((todo . :foreground) (...=
12359 :CUSTOM_ID: org-faces-easy-properties
12362 - *Type:* (repeat (cons (choice (const t...
12363 - *Since:* Emacs version 24.1
12364 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
12365 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-faces-easy-properties&sr=1][Find modifications in git logs]]
12367 : The property changes by easy faces.
12368 : This is an alist, the keys show the area of application, the values
12369 : can be `:foreground' or `:background'. A color string for special
12370 : keywords will then be interpreted as either foreground or background
12373 ** org-export-html-link-org-files-as-html =t=
12375 :CUSTOM_ID: org-export-html-link-org-files-as-html
12379 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
12380 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-link-org-files-as-html&sr=1][Find modifications in git logs]]
12382 : Non-nil means make file links to `file.org' point to `file.html'.
12383 : When org-mode is exporting an org-mode file to HTML, links to
12384 : non-html files are directly put into a href tag in HTML.
12385 : However, links to other Org-mode files (recognized by the
12386 : extension `.org.) should become links to the corresponding html
12387 : file, assuming that the linked org-mode file will also be
12388 : converted to HTML.
12389 : When nil, the links still point to the plain `.org' file.
12391 ** org-latex-format-headline-function =(quote org-latex-format-headli...=
12393 :CUSTOM_ID: org-latex-format-headline-function
12397 - *Since:* Emacs version 24.4
12398 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
12399 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-format-headline-function&sr=1][Find modifications in git logs]]
12401 : Function for formatting the headline's text.
12403 : This function will be called with 5 arguments:
12404 : TODO the todo keyword (string or nil).
12405 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
12406 : PRIORITY the priority of the headline (integer or nil)
12407 : TEXT the main headline text (string).
12408 : TAGS the tags as a list of strings (list of strings or nil).
12410 : The function result will be used in the section format string.
12412 : Use `org-latex-format-headline-default-function' by default,
12413 : which format headlines like for Org version prior to 8.0.
12415 ** org-todo-state-tags-triggers =nil=
12417 :CUSTOM_ID: org-todo-state-tags-triggers
12420 - *Type:* (repeat (cons (choice :tag "Wh...
12421 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12422 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-state-tags-triggers&sr=1][Find modifications in git logs]]
12424 : Tag changes that should be triggered by TODO state changes.
12425 : This is a list. Each entry is
12427 : (state-change (tag . flag) .......)
12429 : State-change can be a string with a state, and empty string to indicate the
12430 : state that has no TODO keyword, or it can be one of the symbols `todo'
12431 : or `done', meaning any not-done or done state, respectively.
12433 ** org-edit-fixed-width-region-mode =(quote artist-mode)=
12435 :CUSTOM_ID: org-edit-fixed-width-region-mode
12438 - *Type:* (choice (const artist-mode) (c...
12439 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
12440 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-fixed-width-region-mode&sr=1][Find modifications in git logs]]
12442 : The mode that should be used to edit fixed-width regions.
12443 : These are the regions where each line starts with a colon.
12445 ** org-texinfo-remove-logfiles =t=
12447 :CUSTOM_ID: org-texinfo-remove-logfiles
12451 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
12452 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-remove-logfiles&sr=1][Find modifications in git logs]]
12454 : Non-nil means remove the logfiles produced by compiling a Texinfo file.
12455 : By default, logfiles are files with these extensions: .aux, .toc,
12456 : .cp, .fn, .ky, .pg and .tp. To define the set of logfiles to remove,
12457 : set `org-texinfo-logfiles-extensions'.
12459 ** org-mobile-force-id-on-agenda-items =t=
12461 :CUSTOM_ID: org-mobile-force-id-on-agenda-items
12465 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
12466 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-force-id-on-agenda-items&sr=1][Find modifications in git logs]]
12468 : Non-nil means make all agenda items carry an ID.
12470 ** org-link-translation-function =nil=
12472 :CUSTOM_ID: org-link-translation-function
12476 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12477 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-translation-function&sr=1][Find modifications in git logs]]
12479 : Function to translate links with different syntax to Org syntax.
12480 : This can be used to translate links created for example by the Planner
12481 : or emacs-wiki packages to Org syntax.
12482 : The function must accept two parameters, a TYPE containing the link
12483 : protocol name like "rmail" or "gnus" as a string, and the linked path,
12484 : which is everything after the link protocol. It should return a cons
12485 : with possibly modified values of type and path.
12486 : Org contains a function for this, so if you set this variable to
12487 : `org-translate-link-from-planner', you should be able follow many
12488 : links created by planner.
12490 ** org-yank-folded-subtrees =t=
12492 :CUSTOM_ID: org-yank-folded-subtrees
12496 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12497 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-yank-folded-subtrees&sr=1][Find modifications in git logs]]
12499 : Non-nil means when yanking subtrees, fold them.
12500 : If the kill is a single subtree, or a sequence of subtrees, i.e. if
12501 : it starts with a heading and all other headings in it are either children
12502 : or siblings, then fold all the subtrees. However, do this only if no
12503 : text after the yank would be swallowed into a folded tree by this action.
12505 ** org-latex-default-class ="article"=
12507 :CUSTOM_ID: org-latex-default-class
12510 - *Type:* (string :tag "LaTeX class")
12511 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
12512 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-default-class&sr=1][Find modifications in git logs]]
12514 : The default LaTeX class.
12516 ** org-pretty-entities =nil=
12518 :CUSTOM_ID: org-pretty-entities
12522 - *Since:* Emacs version 24.1
12523 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12524 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-pretty-entities&sr=1][Find modifications in git logs]]
12526 : Non-nil means show entities as UTF8 characters.
12527 : When nil, the \name form remains in the buffer.
12529 ** org-agenda-mouse-1-follows-link =nil=
12531 :CUSTOM_ID: org-agenda-mouse-1-follows-link
12535 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12536 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-mouse-1-follows-link&sr=1][Find modifications in git logs]]
12538 : Non-nil means mouse-1 on a link will follow the link in the agenda.
12539 : A longer mouse click will still set point. Does not work on XEmacs.
12540 : Needs to be set before org.el is loaded.
12542 ** org-rss-categories =(quote from-tags)=
12544 :CUSTOM_ID: org-rss-categories
12547 - *Type:* (choice (const :tag "From tags...
12548 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
12549 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-categories&sr=1][Find modifications in git logs]]
12551 : Where to extract items category information from.
12552 : The default is to extract categories from the tags of the
12553 : headlines. When set to another value, extract the category
12554 : from the :CATEGORY: property of the entry.
12556 ** org-latex-packages-alist =nil=
12558 :CUSTOM_ID: org-latex-packages-alist
12561 - *Type:* (repeat (choice (list :tag "op...
12562 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12563 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-packages-alist&sr=1][Find modifications in git logs]]
12565 : Alist of packages to be inserted in every LaTeX header.
12567 : These will be inserted after `org-latex-default-packages-alist'.
12568 : Each cell is of the format:
12570 : ("options" "package" snippet-flag)
12572 : SNIPPET-FLAG, when t, indicates that this package is also needed
12573 : when turning LaTeX snippets into images for inclusion into
12574 : non-LaTeX output.
12576 : Make sure that you only list packages here which:
12578 : - you want in every file
12579 : - do not conflict with the setup in `org-format-latex-header'.
12580 : - do not conflict with the default packages in
12581 : `org-latex-default-packages-alist'.
12583 ** org-src-fontify-natively =nil=
12585 :CUSTOM_ID: org-src-fontify-natively
12589 - *Since:* Emacs version 24.1
12590 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12591 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-fontify-natively&sr=1][Find modifications in git logs]]
12593 : When non-nil, fontify code in code blocks.
12595 ** org-columns-skip-archived-trees =t=
12597 :CUSTOM_ID: org-columns-skip-archived-trees
12601 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12602 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-skip-archived-trees&sr=1][Find modifications in git logs]]
12604 : Non-nil means ignore archived trees when creating column view.
12606 ** org-html-format-inlinetask-function =nil=
12608 :CUSTOM_ID: org-html-format-inlinetask-function
12612 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
12613 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-format-inlinetask-function&sr=1][Find modifications in git logs]]
12615 : Function called to format an inlinetask in HTML code.
12617 : The function must accept six parameters:
12618 : TODO the todo keyword, as a string
12619 : TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
12620 : PRIORITY the inlinetask priority, as a string
12621 : NAME the inlinetask name, as a string.
12622 : TAGS the inlinetask tags, as a list of strings.
12623 : CONTENTS the contents of the inlinetask, as a string.
12625 : The function should return the string to be exported.
12627 ** org-plantuml-jar-path =nil=
12629 :CUSTOM_ID: org-plantuml-jar-path
12633 - *Since:* Emacs version 24.1
12634 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-plantuml.el;hb=HEAD][ob-plantuml.el]]
12635 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plantuml-jar-path&sr=1][Find modifications in git logs]]
12637 : Path to the plantuml.jar file.
12639 ** org-list-demote-modify-bullet =nil=
12641 :CUSTOM_ID: org-list-demote-modify-bullet
12644 - *Type:* (repeat (cons (choice :tag "If...
12645 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
12646 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-demote-modify-bullet&sr=1][Find modifications in git logs]]
12648 : Default bullet type installed when demoting an item.
12649 : This is an association list, for each bullet type, this alist will point
12650 : to the bullet that should be used when this item is demoted.
12653 : (setq org-list-demote-modify-bullet
12654 : '(("+" . "-") ("-" . "+") ("*" . "+")))
12659 : + Silence of the Lambs
12660 : + My Cousin Vinny
12662 : + The Hunt for Red October
12663 : + The Road to Omaha
12668 : - Silence of the Lambs
12669 : - My Cousin Vinny
12671 : - The Hunt for Red October
12672 : - The Road to Omaha
12674 ** org-agenda-todo-ignore-scheduled =nil=
12676 :CUSTOM_ID: org-agenda-todo-ignore-scheduled
12679 - *Type:* (choice (const :tag "Ignore fu...
12680 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12681 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-ignore-scheduled&sr=1][Find modifications in git logs]]
12683 : Non-nil means, ignore some scheduled TODO items when making TODO list.
12684 : This applies when creating the global todo list.
12685 : Valid values are:
12687 : past Don't show entries scheduled today or in the past.
12689 : future Don't show entries scheduled in the future.
12690 : The idea behind this is that by scheduling it, you don't want to
12691 : think about it until the scheduled date.
12693 : all Don't show any scheduled entries in the global todo list.
12694 : The idea behind this is that by scheduling it, you have already
12695 : "taken care" of this item.
12697 : t Same as `all', for backward compatibility.
12699 : This variable can also have an integer as a value. See
12700 : `org-agenda-todo-ignore-timestamp' for more details.
12702 : See also `org-agenda-todo-ignore-with-date'.
12703 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
12704 : to make his option also apply to the tags-todo list.
12706 ** org-html-preamble =t=
12708 :CUSTOM_ID: org-html-preamble
12711 - *Type:* (choice (const :tag "No preamb...
12712 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
12713 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-preamble&sr=1][Find modifications in git logs]]
12715 : Non-nil means insert a preamble in HTML export.
12717 : When t, insert a string as defined by the formatting string in
12718 : `org-html-preamble-format'. When set to a string, use this
12719 : formatting string instead (see `org-html-postamble-format' for an
12720 : example of such a formatting string).
12722 : When set to a function, apply this function and insert the
12723 : returned string. The function takes the property list of export
12724 : options as its only argument.
12726 : Setting :html-preamble in publishing projects will take
12727 : precedence over this variable.
12729 ** org-export-table-row-tags =(quote ("<tr>" . "</tr>"))=
12731 :CUSTOM_ID: org-export-table-row-tags
12734 - *Type:* (cons (choice :tag "Opening ta...
12735 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
12736 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-table-row-tags&sr=1][Find modifications in git logs]]
12738 : The opening tag for table data fields.
12739 : This is customizable so that alignment options can be specified.
12740 : Instead of strings, these can be Lisp forms that will be evaluated
12741 : for each row in order to construct the table row tags. During evaluation,
12742 : the variable `head' will be true when this is a header line, nil when this
12743 : is a body line. And the variable `nline' will contain the line number,
12744 : starting from 1 in the first header line. For example
12746 : (setq org-export-table-row-tags
12749 : (if (= (mod nline 2) 1)
12750 : "<tr class=\"tr-odd\">"
12751 : "<tr class=\"tr-even\">"))
12754 : will give even lines the class "tr-even" and odd lines the class "tr-odd".
12756 ** org-stuck-projects =(quote ("+LEVEL=2/-DONE" ("TOD...=
12758 :CUSTOM_ID: org-stuck-projects
12761 - *Type:* (list (string :tag "Tags/TODO ...
12762 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
12763 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-stuck-projects&sr=1][Find modifications in git logs]]
12765 : How to identify stuck projects.
12766 : This is a list of four items:
12767 : 1. A tags/todo/property matcher string that is used to identify a project.
12768 : See the manual for a description of tag and property searches.
12769 : The entire tree below a headline matched by this is considered one project.
12770 : 2. A list of TODO keywords identifying non-stuck projects.
12771 : If the project subtree contains any headline with one of these todo
12772 : keywords, the project is considered to be not stuck. If you specify
12773 : "*" as a keyword, any TODO keyword will mark the project unstuck.
12774 : 3. A list of tags identifying non-stuck projects.
12775 : If the project subtree contains any headline with one of these tags,
12776 : the project is considered to be not stuck. If you specify "*" as
12777 : a tag, any tag will mark the project unstuck. Note that this is about
12778 : the explicit presence of a tag somewhere in the subtree, inherited
12779 : tags do not count here. If inherited tags make a project not stuck,
12780 : use "-TAG" in the tags part of the matcher under (1.) above.
12781 : 4. An arbitrary regular expression matching non-stuck projects.
12783 : If the project turns out to be not stuck, search continues also in the
12784 : subtree to see if any of the subtasks have project status.
12786 : See also the variable `org-tags-match-list-sublevels' which applies
12787 : to projects matched by this search as well.
12789 : After defining this variable, you may use \[org-agenda-list-stuck-projects]
12790 : or `C-c a #' to produce the list.
12792 ** org-get-priority-function =nil=
12794 :CUSTOM_ID: org-get-priority-function
12798 - *Since:* Emacs version 24.1
12799 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12800 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-get-priority-function&sr=1][Find modifications in git logs]]
12802 : Function to extract the priority from a string.
12803 : The string is normally the headline. If this is nil Org computes the
12804 : priority from the priority cookie like [#A] in the headline. It returns
12805 : an integer, increasing by 1000 for each priority level.
12806 : The user can set a different function here, which should take a string
12807 : as an argument and return the numeric priority.
12809 ** org-export-table-remove-special-lines =t=
12811 :CUSTOM_ID: org-export-table-remove-special-lines
12815 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
12816 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-table-remove-special-lines&sr=1][Find modifications in git logs]]
12818 : Remove special lines and marking characters in calculating tables.
12819 : This removes the special marking character column from tables that are set
12820 : up for spreadsheet calculations. It also removes the entire lines
12821 : marked with `!', `_', or `^'. The lines with `$' are kept, because
12822 : the values of constants may be useful to have.
12824 ** org-export-with-special-strings =t=
12826 :CUSTOM_ID: org-export-with-special-strings
12830 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
12831 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-special-strings&sr=1][Find modifications in git logs]]
12833 : Non-nil means interpret "\-", "--" and "---" for export.
12835 : When this option is turned on, these strings will be exported as:
12837 : Org HTML LaTeX UTF-8
12838 : -----+----------+--------+-------
12841 : --- — --- —
12842 : ... … \ldots …
12844 : This option can also be set with the OPTIONS keyword,
12847 ** org-read-date-popup-calendar =t=
12849 :CUSTOM_ID: org-read-date-popup-calendar
12853 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12854 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-read-date-popup-calendar&sr=1][Find modifications in git logs]]
12856 : Non-nil means pop up a calendar when prompting for a date.
12857 : In the calendar, the date can be selected with mouse-1. However, the
12858 : minibuffer will also be active, and you can simply enter the date as well.
12859 : When nil, only the minibuffer will be available.
12861 ** org-refile-use-cache =nil=
12863 :CUSTOM_ID: org-refile-use-cache
12867 - *Since:* Emacs version 24.1
12868 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12869 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-use-cache&sr=1][Find modifications in git logs]]
12871 : Non-nil means cache refile targets to speed up the process.
12872 : The cache for a particular file will be updated automatically when
12873 : the buffer has been killed, or when any of the marker used for flagging
12874 : refile targets no longer points at a live buffer.
12875 : If you have added new entries to a buffer that might themselves be targets,
12876 : you need to clear the cache manually by pressing `C-0 C-c C-w' or, if you
12877 : find that easier, `C-u C-u C-u C-c C-w'.
12879 ** org-export-preserve-breaks =nil=
12881 :CUSTOM_ID: org-export-preserve-breaks
12885 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
12886 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-preserve-breaks&sr=1][Find modifications in git logs]]
12888 : Non-nil means preserve all line breaks when exporting.
12889 : This option can also be set with the OPTIONS keyword,
12892 ** org-icalendar-store-UID =nil=
12894 :CUSTOM_ID: org-icalendar-store-UID
12898 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
12899 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-store-UID&sr=1][Find modifications in git logs]]
12901 : Non-nil means store any created UIDs in properties.
12903 : The iCalendar standard requires that all entries have a unique identifier.
12904 : Org will create these identifiers as needed. When this variable is non-nil,
12905 : the created UIDs will be stored in the ID property of the entry. Then the
12906 : next time this entry is exported, it will be exported with the same UID,
12907 : superseding the previous form of it. This is essential for
12908 : synchronization services.
12910 : This variable is not turned on by default because we want to avoid creating
12911 : a property drawer in every entry if people are only playing with this feature,
12912 : or if they are only using it locally.
12914 ** org-ascii-underline =(quote ((ascii 61 126 45) (lat...=
12916 :CUSTOM_ID: org-ascii-underline
12919 - *Type:* (list (cons :tag "Underline ch...
12920 - *Since:* Emacs version 24.4
12921 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
12922 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-underline&sr=1][Find modifications in git logs]]
12924 : Characters for underlining headings in ASCII export.
12926 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
12927 : and whose value is a list of characters.
12929 : For each supported charset, this variable associates a sequence
12930 : of underline characters. In a sequence, the characters will be
12931 : used in order for headlines level 1, 2, ... If no character is
12932 : available for a given level, the headline won't be underlined.
12934 ** org-ascii-table-widen-columns =t=
12936 :CUSTOM_ID: org-ascii-table-widen-columns
12940 - *Since:* Emacs version 24.4
12941 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
12942 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-table-widen-columns&sr=1][Find modifications in git logs]]
12944 : Non-nil means widen narrowed columns for export.
12945 : When nil, narrowed columns will look in ASCII export just like in
12946 : Org mode, i.e. with "=>" as ellipsis.
12948 ** org-deadline-string ="DEADLINE:"=
12950 :CUSTOM_ID: org-deadline-string
12954 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
12955 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-deadline-string&sr=1][Find modifications in git logs]]
12957 : String to mark deadline entries.
12958 : A deadline is this string, followed by a time stamp. Should be a word,
12959 : terminated by a colon. You can insert a schedule keyword and
12960 : a timestamp with \[org-deadline].
12961 : Changes become only effective after restarting Emacs.
12963 ** org-export-blocks-witheld =(quote (hidden))=
12965 :CUSTOM_ID: org-export-blocks-witheld
12969 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
12970 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-blocks-witheld&sr=1][Find modifications in git logs]]
12972 : List of block types (see `org-export-blocks') which should not be exported.
12974 ** org-export-table-data-tags =(quote ("<td%s>" . "</td>"))=
12976 :CUSTOM_ID: org-export-table-data-tags
12979 - *Type:* (cons (string :tag "Opening ta...
12980 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
12981 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-table-data-tags&sr=1][Find modifications in git logs]]
12983 : The opening tag for table data fields.
12984 : This is customizable so that alignment options can be specified.
12985 : The first %s will be filled with the scope of the field, either row or col.
12986 : The second %s will be replaced by a style entry to align the field.
12987 : See also the variable `org-export-html-table-align-individual-fields'.
12989 ** org-latex-footnote-separator ="\\textsuperscript{,}\\,"=
12991 :CUSTOM_ID: org-latex-footnote-separator
12995 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
12996 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-footnote-separator&sr=1][Find modifications in git logs]]
12998 : Text used to separate footnotes.
13000 ** org-clock-in-resume =nil=
13002 :CUSTOM_ID: org-clock-in-resume
13006 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
13007 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in-resume&sr=1][Find modifications in git logs]]
13009 : If non-nil, resume clock when clocking into task with open clock.
13010 : When clocking into a task with a clock entry which has not been closed,
13011 : the clock can be resumed from that point.
13013 ** org-html-table-align-individual-fields =t=
13015 :CUSTOM_ID: org-html-table-align-individual-fields
13019 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
13020 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-align-individual-fields&sr=1][Find modifications in git logs]]
13022 : Non-nil means attach style attributes for alignment to each table field.
13023 : When nil, alignment will only be specified in the column tags, but this
13024 : is ignored by some browsers (like Firefox, Safari). Opera does it right
13027 ** org-make-link-description-function =nil=
13029 :CUSTOM_ID: org-make-link-description-function
13033 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13034 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-make-link-description-function&sr=1][Find modifications in git logs]]
13036 : Function to use for generating link descriptions from links.
13037 : When nil, the link location will be used. This function must take
13038 : two parameters: the first one is the link, the second one is the
13039 : description generated by `org-insert-link'. The function should
13040 : return the description to use.
13042 ** org-export-with-creator =(quote comment)=
13044 :CUSTOM_ID: org-export-with-creator
13047 - *Type:* (choice (const :tag "No creato...
13048 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
13049 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-creator&sr=1][Find modifications in git logs]]
13051 : Non-nil means the postamble should contain a creator sentence.
13053 : The sentence can be set in `org-export-creator-string' and
13054 : defaults to "Generated by Org mode XX in Emacs XXX.".
13056 : If the value is `comment' insert it as a comment.
13058 ** org-odt-inline-image-rules =(quote (("file" . "\\.\\(jpeg\...=
13060 :CUSTOM_ID: org-odt-inline-image-rules
13063 - *Type:* (alist :key-type (string :tag ...
13064 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
13065 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-inline-image-rules&sr=1][Find modifications in git logs]]
13067 : Rules characterizing image files that can be inlined into ODT.
13069 : A rule consists in an association whose key is the type of link
13070 : to consider, and value is a regexp that will be matched against
13073 ** org-startup-with-beamer-mode =nil=
13075 :CUSTOM_ID: org-startup-with-beamer-mode
13079 - *Since:* Emacs version 24.1
13080 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13081 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-with-beamer-mode&sr=1][Find modifications in git logs]]
13083 : Non-nil means turn on `org-beamer-mode' on startup.
13084 : This can also be configured on a per-file basis by adding one of
13085 : the following lines anywhere in the buffer:
13087 : #+STARTUP: beamer
13089 ** org-agenda-bulk-mark-char =">"=
13091 :CUSTOM_ID: org-agenda-bulk-mark-char
13095 - *Since:* Emacs version 24.1
13096 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13097 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-bulk-mark-char&sr=1][Find modifications in git logs]]
13099 : A single-character string to be used as the bulk mark.
13101 ** org-cycle-open-archived-trees =nil=
13103 :CUSTOM_ID: org-cycle-open-archived-trees
13107 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13108 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-open-archived-trees&sr=1][Find modifications in git logs]]
13110 : Non-nil means `org-cycle' will open archived trees.
13111 : An archived tree is a tree marked with the tag ARCHIVE.
13112 : When nil, archived trees will stay folded. You can still open them with
13113 : normal outline commands like `show-all', but not with the cycling commands.
13115 ** org-clock-out-when-done =t=
13117 :CUSTOM_ID: org-clock-out-when-done
13120 - *Type:* (choice (const :tag "No" nil) ...
13121 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
13122 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-out-when-done&sr=1][Find modifications in git logs]]
13124 : When non-nil, clock will be stopped when the clocked entry is marked DONE.
13125 : DONE here means any DONE-like state.
13126 : A nil value means clock will keep running until stopped explicitly with
13127 : `C-c C-x C-o', or until the clock is started in a different item.
13128 : Instead of t, this can also be a list of TODO states that should trigger
13131 ** org-export-with-LaTeX-fragments =t=
13133 :CUSTOM_ID: org-export-with-LaTeX-fragments
13136 - *Type:* (choice (const :tag "Do not pr...
13137 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13138 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-LaTeX-fragments&sr=1][Find modifications in git logs]]
13140 : Non-nil means process LaTeX math fragments for HTML display.
13141 : When set, the exporter will find and process LaTeX environments if the
13142 : \begin line is the first non-white thing on a line. It will also find
13143 : and process the math delimiters like $a=b$ and \( a=b \) for inline math,
13144 : $$a=b$$ and \=\[ a=b \] for display math.
13146 : This option can also be set with the +OPTIONS line, e.g. "LaTeX:mathjax".
13148 : Allowed values are:
13150 : nil Don't do anything.
13151 : verbatim Keep everything in verbatim
13152 : dvipng Process the LaTeX fragments to images.
13153 : This will also include processing of non-math environments.
13154 : imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
13155 : to convert pdf files to png files.
13156 : t Do MathJax preprocessing if there is at least on math snippet,
13157 : and arrange for MathJax.js to be loaded.
13159 : The default is nil, because this option needs the `dvipng' program which
13160 : is not available on all systems.
13162 ** org-tags-sort-function =nil=
13164 :CUSTOM_ID: org-tags-sort-function
13167 - *Type:* (choice (const :tag "No sortin...
13168 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13169 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-sort-function&sr=1][Find modifications in git logs]]
13171 : When set, tags are sorted using this function as a comparator.
13173 ** org-log-states-order-reversed =t=
13175 :CUSTOM_ID: org-log-states-order-reversed
13179 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13180 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-states-order-reversed&sr=1][Find modifications in git logs]]
13182 : Non-nil means the latest state note will be directly after heading.
13183 : When nil, the state change notes will be ordered according to time.
13185 : This option can also be set with on a per-file-basis with
13187 : #+STARTUP: logstatesreversed
13188 : #+STARTUP: nologstatesreversed
13190 ** org-agenda-max-effort =nil=
13192 :CUSTOM_ID: org-agenda-max-effort
13195 - *Type:* (choice (symbol :tag "No limit...
13196 - *Since:* Emacs version 24.4
13197 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13198 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-max-effort&sr=1][Find modifications in git logs]]
13200 : Maximum cumulated effort duration for the agenda.
13201 : This can be nil (no limit) or a number of minutes (as an integer)
13202 : or an alist of agenda types with an associated number of minutes
13203 : to limit entries to in this type.
13205 ** org-export-allow-BIND =(quote confirm)=
13207 :CUSTOM_ID: org-export-allow-BIND
13210 - *Type:* (choice (const :tag "Never" ni...
13211 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13212 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-allow-BIND&sr=1][Find modifications in git logs]]
13214 : Non-nil means allow #+BIND to define local variable values for export.
13215 : This is a potential security risk, which is why the user must confirm the
13216 : use of these lines.
13218 ** org-export-taskjuggler-project-tag ="taskjuggler_project"=
13220 :CUSTOM_ID: org-export-taskjuggler-project-tag
13224 - *Since:* Emacs version 24.1
13225 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
13226 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-project-tag&sr=1][Find modifications in git logs]]
13228 : Tag, property or todo used to find the tree containing all
13229 : the tasks for the project.
13231 ** org-closed-keep-when-no-todo =nil=
13233 :CUSTOM_ID: org-closed-keep-when-no-todo
13237 - *Since:* Emacs version 24.4
13238 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13239 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-closed-keep-when-no-todo&sr=1][Find modifications in git logs]]
13241 : Remove CLOSED: time-stamp when switching back to a non-todo state?
13243 ** org-tab-follows-link =nil=
13245 :CUSTOM_ID: org-tab-follows-link
13249 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13250 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tab-follows-link&sr=1][Find modifications in git logs]]
13252 : Non-nil means on links TAB will follow the link.
13253 : Needs to be set before org.el is loaded.
13254 : This really should not be used, it does not make sense, and the
13255 : implementation is bad.
13257 ** org-odt-preferred-output-format =nil=
13259 :CUSTOM_ID: org-odt-preferred-output-format
13262 - *Type:* (choice :convert-widget (lambd...
13263 - *Since:* Emacs version 24.1
13264 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
13265 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-preferred-output-format&sr=1][Find modifications in git logs]]
13267 : Automatically post-process to this format after exporting to "odt".
13268 : Command `org-odt-export-to-odt' exports first to "odt" format
13269 : and then uses `org-odt-convert-process' to convert the
13270 : resulting document to this format. During customization of this
13271 : variable, the list of valid values are populated based on
13272 : `org-odt-convert-capabilities'.
13274 : You can set this option on per-file basis using file local
13275 : values. See Info node `(emacs) File Variables'.
13277 ** org-agenda-sticky =nil=
13279 :CUSTOM_ID: org-agenda-sticky
13283 - *Since:* Emacs version 24.3
13284 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13285 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-sticky&sr=1][Find modifications in git logs]]
13287 : Non-nil means agenda q key will bury agenda buffers.
13288 : Agenda commands will then show existing buffer instead of generating new ones.
13289 : When nil, `q' will kill the single agenda buffer.
13291 ** org-closed-string ="CLOSED:"=
13293 :CUSTOM_ID: org-closed-string
13297 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13298 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-closed-string&sr=1][Find modifications in git logs]]
13300 : String used as the prefix for timestamps logging closing a TODO entry.
13302 ** org-agenda-show-current-time-in-grid =t=
13304 :CUSTOM_ID: org-agenda-show-current-time-in-grid
13308 - *Since:* Emacs version 24.1
13309 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13310 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-current-time-in-grid&sr=1][Find modifications in git logs]]
13312 : Non-nil means show the current time in the time grid.
13314 ** org-md-headline-style =(quote atx)=
13316 :CUSTOM_ID: org-md-headline-style
13319 - *Type:* (choice (const :tag "Use \"atx...
13320 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-md.el;hb=HEAD][ox-md.el]]
13321 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-md-headline-style&sr=1][Find modifications in git logs]]
13323 : Style used to format headlines.
13324 : This variable can be set to either `atx' or `setext'.
13326 ** org-protocol-project-alist =nil=
13328 :CUSTOM_ID: org-protocol-project-alist
13332 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
13333 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-project-alist&sr=1][Find modifications in git logs]]
13335 : Map URLs to local filenames for `org-protocol-open-source' (open-source).
13337 : Each element of this list must be of the form:
13339 : (module-name :property value property: value ...)
13341 : where module-name is an arbitrary name. All the values are strings.
13343 : Possible properties are:
13345 : :online-suffix - the suffix to strip from the published URLs
13346 : :working-suffix - the replacement for online-suffix
13347 : :base-url - the base URL, e.g. http://www.example.com/project/
13348 : Last slash required.
13349 : :working-directory - the local working directory. This is, what base-url will
13350 : be replaced with.
13351 : :redirects - A list of cons cells, each of which maps a regular
13352 : expression to match to a path relative to :working-directory.
13356 : (setq org-protocol-project-alist
13357 : '(("http://orgmode.org/worg/"
13358 : :online-suffix ".php"
13359 : :working-suffix ".org"
13360 : :base-url "http://orgmode.org/worg/"
13361 : :working-directory "/home/user/org/Worg/")
13362 : ("http://localhost/org-notes/"
13363 : :online-suffix ".html"
13364 : :working-suffix ".org"
13365 : :base-url "http://localhost/org/"
13366 : :working-directory "/home/user/org/"
13367 : :rewrites (("org/?$" . "index.php")))))
13369 : The last line tells `org-protocol-open-source' to open
13370 : /home/user/org/index.php, if the URL cannot be mapped to an existing
13371 : file, and ends with either "org" or "org/".
13373 : Consider using the interactive functions `org-protocol-create' and
13374 : `org-protocol-create-for-org' to help you filling this variable with valid contents.
13376 ** org-export-kill-product-buffer-when-displayed =nil=
13378 :CUSTOM_ID: org-export-kill-product-buffer-when-displayed
13382 - *Since:* Emacs version 24.1
13383 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13384 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-kill-product-buffer-when-displayed&sr=1][Find modifications in git logs]]
13386 : Non-nil means kill the product buffer if it is displayed immediately.
13387 : This applied to the commands `org-export-as-html-and-open' and
13388 : `org-export-as-pdf-and-open'.
13390 ** org-goto-interface =(quote outline)=
13392 :CUSTOM_ID: org-goto-interface
13395 - *Type:* (choice (const :tag "Outline" ...
13396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-interface&sr=1][Find modifications in git logs]]
13399 : The default interface to be used for `org-goto'.
13400 : Allowed values are:
13401 : outline The interface shows an outline of the relevant file
13402 : and the correct heading is found by moving through
13403 : the outline or by searching with incremental search.
13404 : outline-path-completion Headlines in the current buffer are offered via
13405 : completion. This is the interface also used by
13406 : the refile command.
13408 ** org-reverse-note-order =nil=
13410 :CUSTOM_ID: org-reverse-note-order
13413 - *Type:* (choice (const :tag "Reverse a...
13414 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13415 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-reverse-note-order&sr=1][Find modifications in git logs]]
13417 : Non-nil means store new notes at the beginning of a file or entry.
13418 : When nil, new notes will be filed to the end of a file or entry.
13419 : This can also be a list with cons cells of regular expressions that
13420 : are matched against file names, and values.
13422 ** org-list-empty-line-terminates-plain-lists =nil=
13424 :CUSTOM_ID: org-list-empty-line-terminates-plain-lists
13428 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
13429 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-empty-line-terminates-plain-lists&sr=1][Find modifications in git logs]]
13431 : Non-nil means an empty line ends all plain list levels.
13432 : Otherwise, two of them will be necessary.
13434 ** org-footnote-fill-after-inline-note-extraction =nil=
13436 :CUSTOM_ID: org-footnote-fill-after-inline-note-extraction
13440 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
13441 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-fill-after-inline-note-extraction&sr=1][Find modifications in git logs]]
13443 : Non-nil means fill paragraphs after extracting footnotes.
13444 : When extracting inline footnotes, the lengths of lines can change a lot.
13445 : When this option is set, paragraphs from which an inline footnote has been
13446 : extracted will be filled again.
13448 ** org-agenda-skip-scheduled-if-done =nil=
13450 :CUSTOM_ID: org-agenda-skip-scheduled-if-done
13454 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13455 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-scheduled-if-done&sr=1][Find modifications in git logs]]
13457 : Non-nil means don't show scheduled items in agenda when they are done.
13458 : This is relevant for the daily/weekly agenda, not for the TODO list. And
13459 : it applies only to the actual date of the scheduling. Warnings about
13460 : an item with a past scheduling dates are always turned off when the item
13463 ** org-export-with-drawers =(quote (not "LOGBOOK"))=
13465 :CUSTOM_ID: org-export-with-drawers
13468 - *Type:* (choice (const :tag "All drawe...
13469 - *Since:* Emacs version 24.4
13470 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13471 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-drawers&sr=1][Find modifications in git logs]]
13473 : Non-nil means export contents of standard drawers.
13475 : When t, all drawers are exported. This may also be a list of
13476 : drawer names to export. If that list starts with `not', only
13477 : drawers with such names will be ignored.
13479 : This variable doesn't apply to properties drawers.
13481 : This option can also be set with the OPTIONS keyword,
13484 ** org-agenda-todo-keyword-format ="%-1s"=
13486 :CUSTOM_ID: org-agenda-todo-keyword-format
13490 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13491 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-keyword-format&sr=1][Find modifications in git logs]]
13493 : Format for the TODO keyword in agenda lines.
13494 : Set this to something like "%-12s" if you want all TODO keywords
13495 : to occupy a fixed space in the agenda display.
13497 ** org-mouse-features =(quote (context-menu yank-link...=
13499 :CUSTOM_ID: org-mouse-features
13502 - *Type:* (set :greedy t (const :tag "Mo...
13503 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
13504 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-features&sr=1][Find modifications in git logs]]
13506 : The features of org-mouse that should be activated.
13507 : Changing this variable requires a restart of Emacs to get activated.
13509 ** org-latex-remove-logfiles =t=
13511 :CUSTOM_ID: org-latex-remove-logfiles
13515 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
13516 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-remove-logfiles&sr=1][Find modifications in git logs]]
13518 : Non-nil means remove the logfiles produced by PDF production.
13519 : By default, logfiles are files with these extensions: .aux, .idx,
13520 : .log, .out, .toc, .nav, .snm and .vrb. To define the set of
13521 : logfiles to remove, set `org-latex-logfiles-extensions'.
13523 ** org-quote-string ="QUOTE"=
13525 :CUSTOM_ID: org-quote-string
13529 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13530 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-quote-string&sr=1][Find modifications in git logs]]
13532 : Entries starting with this keyword will be exported in fixed-width font.
13533 : Quoting applies only to the text in the entry following the headline, and does
13534 : not extend beyond the next headline, even if that is lower level.
13535 : An entry can be toggled between QUOTE and normal with
13536 : \[org-toggle-fixed-width-section].
13538 ** org-calendar-follow-timestamp-change =t=
13540 :CUSTOM_ID: org-calendar-follow-timestamp-change
13544 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13545 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-follow-timestamp-change&sr=1][Find modifications in git logs]]
13547 : Non-nil means make the calendar window follow timestamp changes.
13548 : When a timestamp is modified and the calendar window is visible, it will be
13549 : moved to the new date.
13551 ** org-odd-levels-only =nil=
13553 :CUSTOM_ID: org-odd-levels-only
13557 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13558 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odd-levels-only&sr=1][Find modifications in git logs]]
13560 : Non-nil means skip even levels and only use odd levels for the outline.
13561 : This has the effect that two stars are being added/taken away in
13562 : promotion/demotion commands. It also influences how levels are
13563 : handled by the exporters.
13564 : Changing it requires restart of `font-lock-mode' to become effective
13565 : for fontification also in regions already fontified.
13566 : You may also set this on a per-file basis by adding one of the following
13567 : lines to the buffer:
13570 : #+STARTUP: oddeven
13572 ** org-export-copy-to-kill-ring =(quote if-interactive)=
13574 :CUSTOM_ID: org-export-copy-to-kill-ring
13577 - *Type:* (choice (const :tag "Always" t...
13578 - *Since:* Emacs version 24.3
13579 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13580 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-copy-to-kill-ring&sr=1][Find modifications in git logs]]
13582 : Should we push exported content to the kill ring?
13584 ** org-export-html-style =""=
13586 :CUSTOM_ID: org-export-html-style
13590 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
13591 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-style&sr=1][Find modifications in git logs]]
13593 : Org-wide style definitions for exported HTML files.
13595 : This variable needs to contain the full HTML structure to provide a style,
13596 : including the surrounding HTML tags. If you set the value of this variable,
13597 : you should consider to include definitions for the following classes:
13598 : title, todo, done, timestamp, timestamp-kwd, tag, target.
13600 : For example, a valid value would be:
13602 : <style type="text/css">
13604 : p { font-weight: normal; color: gray; }
13605 : h1 { color: black; }
13606 : .title { text-align: center; }
13607 : .todo, .timestamp-kwd { color: red; }
13608 : .done { color: green; }
13612 : If you'd like to refer to an external style file, use something like
13614 : <link rel="stylesheet" type="text/css" href="mystyles.css">
13616 : As the value of this option simply gets inserted into the HTML <head> header,
13617 : you can "misuse" it to add arbitrary text to the header.
13618 : See also the variable `org-export-html-style-extra'.
13620 ** org-coderef-label-format ="(ref:%s)"=
13622 :CUSTOM_ID: org-coderef-label-format
13626 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
13627 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-coderef-label-format&sr=1][Find modifications in git logs]]
13629 : The default coderef format.
13630 : This format string will be used to search for coderef labels in literal
13631 : examples (EXAMPLE and SRC blocks). The format can be overwritten in
13632 : an individual literal example with the -l option, like
13634 : #+BEGIN_SRC pascal +n -r -l "((%s))"
13638 : If you want to use this for HTML export, make sure that the format does
13639 : not introduce special font-locking, and avoid the HTML special
13640 : characters `<', `>', and `&'. The reason for this restriction is that
13641 : the labels are searched for only after htmlize has done its job.
13643 ** org-edit-timestamp-down-means-later =nil=
13645 :CUSTOM_ID: org-edit-timestamp-down-means-later
13649 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13650 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-timestamp-down-means-later&sr=1][Find modifications in git logs]]
13652 : Non-nil means S-down will increase the time in a time stamp.
13653 : When nil, S-up will increase.
13655 ** org-protocol-reverse-list-of-files =t=
13657 :CUSTOM_ID: org-protocol-reverse-list-of-files
13661 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
13662 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-reverse-list-of-files&sr=1][Find modifications in git logs]]
13664 : Non-nil means re-reverse the list of filenames passed on the command line.
13665 : The filenames passed on the command line are passed to the emacs-server in
13666 : reverse order. Set to t (default) to re-reverse the list, i.e. use the
13667 : sequence on the command line. If nil, the sequence of the filenames is
13670 ** org-capture-templates-contexts =nil=
13672 :CUSTOM_ID: org-capture-templates-contexts
13675 - *Type:* (repeat (list :tag "Rule" (str...
13676 - *Since:* Emacs version 24.3
13677 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
13678 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-templates-contexts&sr=1][Find modifications in git logs]]
13680 : Alist of capture templates and valid contexts.
13682 : For example, if you have a capture template "c" and you want
13683 : this template to be accessible only from `message-mode' buffers,
13686 : '(("c" ((in-mode . "message-mode"))))
13688 : Here are the available contexts definitions:
13690 : in-file: command displayed only in matching files
13691 : in-mode: command displayed only in matching modes
13692 : not-in-file: command not displayed in matching files
13693 : not-in-mode: command not displayed in matching modes
13694 : in-buffer: command displayed only in matching buffers
13695 : not-in-buffer: command not displayed in matching buffers
13696 : [function]: a custom function taking no argument
13698 : If you define several checks, the agenda command will be
13699 : accessible if there is at least one valid check.
13701 : You can also bind a key to another agenda custom command
13702 : depending on contextual rules.
13704 : '(("c" "d" ((in-mode . "message-mode"))))
13706 : Here it means: in `message-mode buffers', use "c" as the
13707 : key for the capture template otherwise associated with "d".
13708 : (The template originally associated with "d" is not displayed
13709 : to avoid duplicates.)
13711 ** org-bbdb-extract-date-fun =(quote org-bbdb-anniv-extract-...=
13713 :CUSTOM_ID: org-bbdb-extract-date-fun
13717 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bbdb.el;hb=HEAD][org-bbdb.el]]
13718 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bbdb-extract-date-fun&sr=1][Find modifications in git logs]]
13720 : How to retrieve `month date year' from the anniversary field.
13722 : Customize if you have already filled your BBDB with dates
13723 : different from YYYY-MM-DD. The function must return a list (month
13726 ** org-ellipsis =nil=
13728 :CUSTOM_ID: org-ellipsis
13731 - *Type:* (choice (const :tag "Default" ...
13732 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13733 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ellipsis&sr=1][Find modifications in git logs]]
13735 : The ellipsis to use in the Org-mode outline.
13736 : When nil, just use the standard three dots. When a string, use that instead,
13737 : When a face, use the standard 3 dots, but with the specified face.
13738 : The change affects only Org-mode (which will then use its own display table).
13739 : Changing this requires executing `M-x org-mode' in a buffer to become
13742 ** org-clock-resolve-expert =nil=
13744 :CUSTOM_ID: org-clock-resolve-expert
13748 - *Since:* Emacs version 24.1
13749 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
13750 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-resolve-expert&sr=1][Find modifications in git logs]]
13752 : Non-nil means do not show the splash buffer with the clock resolver.
13754 ** org-clock-persist =nil=
13756 :CUSTOM_ID: org-clock-persist
13759 - *Type:* (choice (const :tag "Just the ...
13760 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
13761 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-persist&sr=1][Find modifications in git logs]]
13763 : When non-nil, save the running clock when Emacs is closed.
13764 : The clock is resumed when Emacs restarts.
13765 : When this is t, both the running clock, and the entire clock
13766 : history are saved. When this is the symbol `clock', only the
13767 : running clock is saved. When this is the symbol `history', only
13768 : the clock history is saved.
13770 : When Emacs restarts with saved clock information, the file containing
13771 : the running clock as well as all files mentioned in the clock history
13774 : All this depends on running `org-clock-persistence-insinuate' in your
13775 : Emacs initialization file.
13777 ** org-use-effective-time =nil=
13779 :CUSTOM_ID: org-use-effective-time
13783 - *Since:* Emacs version 24.1
13784 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13785 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-effective-time&sr=1][Find modifications in git logs]]
13787 : If non-nil, consider `org-extend-today-until' when creating timestamps.
13788 : For example, if `org-extend-today-until' is 8, and it's 4am, then the
13789 : "effective time" of any timestamps between midnight and 8am will be
13790 : 23:59 of the previous day.
13792 ** org-export-remove-timestamps-from-toc =t=
13794 :CUSTOM_ID: org-export-remove-timestamps-from-toc
13798 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13799 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-remove-timestamps-from-toc&sr=1][Find modifications in git logs]]
13801 : If t, remove timestamps from the table of contents entries.
13803 ** org-html-table-data-tags =(quote ("<td%s>" . "</td>"))=
13805 :CUSTOM_ID: org-html-table-data-tags
13808 - *Type:* (cons (string :tag "Opening ta...
13809 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
13810 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-data-tags&sr=1][Find modifications in git logs]]
13812 : The opening tag for table data fields.
13813 : This is customizable so that alignment options can be specified.
13814 : The first %s will be filled with the scope of the field, either row or col.
13815 : The second %s will be replaced by a style entry to align the field.
13816 : See also the variable `org-html-table-align-individual-fields'.
13818 ** org-archive-location ="%s_archive::"=
13820 :CUSTOM_ID: org-archive-location
13824 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13825 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-location&sr=1][Find modifications in git logs]]
13827 : The location where subtrees should be archived.
13829 : The value of this variable is a string, consisting of two parts,
13830 : separated by a double-colon. The first part is a filename and
13831 : the second part is a headline.
13833 : When the filename is omitted, archiving happens in the same file.
13834 : %s in the filename will be replaced by the current file
13835 : name (without the directory part). Archiving to a different file
13836 : is useful to keep archived entries from contributing to the
13839 : The archived entries will be filed as subtrees of the specified
13840 : headline. When the headline is omitted, the subtrees are simply
13841 : filed away at the end of the file, as top-level entries. Also in
13842 : the heading you can use %s to represent the file name, this can be
13843 : useful when using the same archive for a number of different files.
13845 : Here are a few examples:
13847 : If the current file is Projects.org, archive in file
13848 : Projects.org_archive, as top-level trees. This is the default.
13850 : "::* Archived Tasks"
13851 : Archive in the current file, under the top-level headline
13852 : "* Archived Tasks".
13854 : "~/org/archive.org::"
13855 : Archive in file ~/org/archive.org (absolute path), as top-level trees.
13857 : "~/org/archive.org::* From %s"
13858 : Archive in file ~/org/archive.org (absolute path), under headlines
13859 : "From FILENAME" where file name is the current file name.
13861 : "~/org/datetree.org::datetree/* Finished Tasks"
13862 : The "datetree/" string is special, signifying to archive
13863 : items to the datetree. Items are placed in either the CLOSED
13864 : date of the item, or the current date if there is no CLOSED date.
13865 : The heading will be a subentry to the current date. There doesn't
13866 : need to be a heading, but there always needs to be a slash after
13867 : datetree. For example, to store archived items directly in the
13868 : datetree, use "~/org/datetree.org::datetree/".
13870 : "basement::** Finished Tasks"
13871 : Archive in file ./basement (relative path), as level 3 trees
13872 : below the level 2 heading "** Finished Tasks".
13874 : You may set this option on a per-file basis by adding to the buffer a
13877 : #+ARCHIVE: basement::** Finished Tasks
13879 : You may also define it locally for a subtree by setting an ARCHIVE property
13880 : in the entry. If such a property is found in an entry, or anywhere up
13881 : the hierarchy, it will be used.
13883 ** org-goto-auto-isearch =t=
13885 :CUSTOM_ID: org-goto-auto-isearch
13889 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13890 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-auto-isearch&sr=1][Find modifications in git logs]]
13892 : Non-nil means typing characters in `org-goto' starts incremental search.
13893 : When nil, you can use these keybindings to navigate the buffer:
13895 : q Quit the org-goto interface
13896 : n Go to the next visible heading
13897 : p Go to the previous visible heading
13898 : f Go one heading forward on same level
13899 : b Go one heading backward on same level
13900 : u Go one heading up
13902 ** org-export-date-timestamp-format =nil=
13904 :CUSTOM_ID: org-export-date-timestamp-format
13907 - *Type:* (choice (string :tag "Time-sta...
13908 - *Since:* Emacs version 24.1
13909 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
13910 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-date-timestamp-format&sr=1][Find modifications in git logs]]
13912 : Time-stamp format string to use for DATE keyword.
13914 : The format string, when specified, only applies if date consists
13915 : in a single time-stamp. Otherwise its value will be ignored.
13917 : See `format-time-string' for details on how to build this
13920 ** org-agenda-inactive-leader ="["=
13922 :CUSTOM_ID: org-agenda-inactive-leader
13925 - *Type:* (list (string :tag "Scheduled ...
13926 - *Since:* Emacs version 24.1
13927 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13928 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-inactive-leader&sr=1][Find modifications in git logs]]
13930 : Text preceding item pulled into the agenda by inactive time stamps.
13931 : These entries are added to the agenda when pressing "[".
13933 ** org-agenda-window-setup =(quote reorganize-frame)=
13935 :CUSTOM_ID: org-agenda-window-setup
13938 - *Type:* (choice (const current-window)...
13939 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
13940 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-window-setup&sr=1][Find modifications in git logs]]
13942 : How the agenda buffer should be displayed.
13943 : Possible values for this option are:
13945 : current-window Show agenda in the current window, keeping all other windows.
13946 : other-window Use `switch-to-buffer-other-window' to display agenda.
13947 : reorganize-frame Show only two windows on the current frame, the current
13948 : window and the agenda.
13949 : other-frame Use `switch-to-buffer-other-frame' to display agenda.
13950 : Also, when exiting the agenda, kill that frame.
13951 : See also the variable `org-agenda-restore-windows-after-quit'.
13953 ** org-tags-match-list-sublevels =t=
13955 :CUSTOM_ID: org-tags-match-list-sublevels
13958 - *Type:* (choice (const :tag "No, don't...
13959 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13960 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-match-list-sublevels&sr=1][Find modifications in git logs]]
13962 : Non-nil means list also sublevels of headlines matching a search.
13963 : This variable applies to tags/property searches, and also to stuck
13964 : projects because this search is based on a tags match as well.
13966 : When set to the symbol `indented', sublevels are indented with
13969 : Because of tag inheritance (see variable `org-use-tag-inheritance'),
13970 : the sublevels of a headline matching a tag search often also match
13971 : the same search. Listing all of them can create very long lists.
13972 : Setting this variable to nil causes subtrees of a match to be skipped.
13974 : This variable is semi-obsolete and probably should always be true. It
13975 : is better to limit inheritance to certain tags using the variables
13976 : `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'.
13978 ** org-custom-properties =nil=
13980 :CUSTOM_ID: org-custom-properties
13983 - *Type:* (repeat (string :tag "Property...
13984 - *Since:* Emacs version 24.3
13985 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
13986 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-custom-properties&sr=1][Find modifications in git logs]]
13988 : List of properties (as strings) with a special meaning.
13989 : The default use of these custom properties is to let the user
13990 : hide them with `org-toggle-custom-properties-visibility'.
13992 ** org-html-footnote-separator ="<sup>, </sup>"=
13994 :CUSTOM_ID: org-html-footnote-separator
13998 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
13999 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-footnote-separator&sr=1][Find modifications in git logs]]
14001 : Text used to separate footnotes.
14003 ** org-adapt-indentation =t=
14005 :CUSTOM_ID: org-adapt-indentation
14009 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14010 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-adapt-indentation&sr=1][Find modifications in git logs]]
14012 : Non-nil means adapt indentation to outline node level.
14014 : When this variable is set, Org assumes that you write outlines by
14015 : indenting text in each node to align with the headline (after the stars).
14016 : The following issues are influenced by this variable:
14018 : - When this is set and the *entire* text in an entry is indented, the
14019 : indentation is increased by one space in a demotion command, and
14020 : decreased by one in a promotion command. If any line in the entry
14021 : body starts with text at column 0, indentation is not changed at all.
14023 : - Property drawers and planning information is inserted indented when
14024 : this variable s set. When nil, they will not be indented.
14026 : - TAB indents a line relative to context. The lines below a headline
14027 : will be indented when this variable is set.
14029 : Note that this is all about true indentation, by adding and removing
14030 : space characters. See also `org-indent.el' which does level-dependent
14031 : indentation in a virtual way, i.e. at display time in Emacs.
14033 ** org-export-select-tags =(quote ("export"))=
14035 :CUSTOM_ID: org-export-select-tags
14038 - *Type:* (repeat (string :tag "Tag"))
14039 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
14040 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-select-tags&sr=1][Find modifications in git logs]]
14042 : Tags that select a tree for export.
14044 : If any such tag is found in a buffer, all trees that do not carry
14045 : one of these tags will be ignored during export. Inside trees
14046 : that are selected like this, you can still deselect a subtree by
14047 : tagging it with one of the `org-export-exclude-tags'.
14049 : This option can also be set with the SELECT_TAGS keyword.
14051 ** org-agenda-entry-text-leaders =" > "=
14053 :CUSTOM_ID: org-agenda-entry-text-leaders
14057 - *Since:* Emacs version 24.4
14058 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14059 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-leaders&sr=1][Find modifications in git logs]]
14061 : Text prepended to the entry text in agenda buffers.
14063 ** org-export-run-in-background =nil=
14065 :CUSTOM_ID: org-export-run-in-background
14069 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
14070 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-run-in-background&sr=1][Find modifications in git logs]]
14072 : Non-nil means export and publishing commands will run in background.
14073 : This works by starting up a separate Emacs process visiting the same file
14074 : and doing the export from there.
14075 : Not all export commands are affected by this - only the ones which
14076 : actually write to a file, and that do not depend on the buffer state.
14078 : If this option is nil, you can still get background export by calling
14079 : `org-export' with a double prefix arg: \[universal-argument] \[universal-argument] \[org-export].
14081 : If this option is t, the double prefix can be used to exceptionally
14082 : force an export command into the current process.
14084 ** org-odt-convert-capabilities =(quote (("Text" ("odt" "ott" "...=
14086 :CUSTOM_ID: org-odt-convert-capabilities
14089 - *Type:* (choice (const :tag "None" nil...
14090 - *Since:* Emacs version 24.1
14091 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
14092 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-convert-capabilities&sr=1][Find modifications in git logs]]
14094 : Specify input and output formats of `org-odt-convert-process'.
14095 : More correctly, specify the set of input and output formats that
14096 : the user is actually interested in.
14098 : This variable is an alist where each element is of the
14099 : form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
14100 : INPUT-FMT-LIST is a list of INPUT-FMTs. OUTPUT-FMT-ALIST is an
14101 : alist where each element is of the form (OUTPUT-FMT
14102 : OUTPUT-FILE-EXTENSION EXTRA-OPTIONS).
14104 : The variable is interpreted as follows:
14105 : `org-odt-convert-process' can take any document that is in
14106 : INPUT-FMT-LIST and produce any document that is in the
14107 : OUTPUT-FMT-LIST. A document converted to OUTPUT-FMT will have
14108 : OUTPUT-FILE-EXTENSION as the file name extension. OUTPUT-FMT
14109 : serves dual purposes:
14110 : - It is used for populating completion candidates during
14111 : `org-odt-convert' commands.
14112 : - It is used as the value of "%f" specifier in
14113 : `org-odt-convert-process'.
14115 : EXTRA-OPTIONS is used as the value of "%x" specifier in
14116 : `org-odt-convert-process'.
14118 : DOCUMENT-CLASS is used to group a set of file formats in
14119 : INPUT-FMT-LIST in to a single class.
14121 : Note that this variable inherently captures how LibreOffice based
14122 : converters work. LibreOffice maps documents of various formats
14123 : to classes like Text, Web, Spreadsheet, Presentation etc and
14124 : allow document of a given class (irrespective of it's source
14125 : format) to be converted to any of the export formats associated
14128 : See default setting of this variable for an typical
14131 ** org-agenda-export-html-style =nil=
14133 :CUSTOM_ID: org-agenda-export-html-style
14137 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14138 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-export-html-style&sr=1][Find modifications in git logs]]
14140 : The style specification for exported HTML Agenda files.
14141 : If this variable contains a string, it will replace the default <style>
14142 : section as produced by `htmlize'.
14143 : Since there are different ways of setting style information, this variable
14144 : needs to contain the full HTML structure to provide a style, including the
14145 : surrounding HTML tags. The style specifications should include definitions
14146 : the fonts used by the agenda, here is an example:
14148 : <style type="text/css">
14149 : p { font-weight: normal; color: gray; }
14150 : .org-agenda-structure {
14153 : font-weight: 600;
14157 : font-weight: bold;
14159 : .org-agenda-done {
14165 : .title { text-align: center; }
14166 : .todo, .deadline { color: red; }
14167 : .done { color: green; }
14170 : or, if you want to keep the style in a file,
14172 : <link rel="stylesheet" type="text/css" href="mystyles.css">
14174 : As the value of this option simply gets inserted into the HTML <head> header,
14175 : you can "misuse" it to also add other text to the header.
14177 ** org-clock-frame-title-format =(quote (t org-mode-line-string...=
14179 :CUSTOM_ID: org-clock-frame-title-format
14183 - *Since:* Emacs version 24.1
14184 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
14185 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-frame-title-format&sr=1][Find modifications in git logs]]
14187 : The value for `frame-title-format' when clocking in.
14189 : When `org-clock-clocked-in-display' is set to 'frame-title
14190 : or 'both, clocking in will replace `frame-title-format' with
14191 : this value. Clocking out will restore `frame-title-format'.
14193 : `org-frame-title-string' is a format string using the same
14194 : specifications than `frame-title-format', which see.
14196 ** org-context-in-file-links =t=
14198 :CUSTOM_ID: org-context-in-file-links
14201 - *Type:* (choice boolean integer)
14202 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14203 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-context-in-file-links&sr=1][Find modifications in git logs]]
14205 : Non-nil means file links from `org-store-link' contain context.
14206 : A search string will be added to the file name with :: as separator and
14207 : used to find the context when the link is activated by the command
14208 : `org-open-at-point'. When this option is t, the entire active region
14209 : will be placed in the search string of the file link. If set to a
14210 : positive integer, only the first n lines of context will be stored.
14212 : Using a prefix arg to the command \[org-store-link] (`org-store-link')
14213 : negates this setting for the duration of the command.
14215 ** org-id-search-archives =t=
14217 :CUSTOM_ID: org-id-search-archives
14221 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
14222 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-search-archives&sr=1][Find modifications in git logs]]
14224 : Non-nil means search also the archive files of agenda files for entries.
14225 : This is a possibility to reduce overhead, but it means that entries moved
14226 : to the archives can no longer be found by ID.
14227 : This variable is only relevant when `org-id-track-globally' is set.
14229 ** org-babel-noweb-wrap-end =">>"=
14231 :CUSTOM_ID: org-babel-noweb-wrap-end
14235 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
14236 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-noweb-wrap-end&sr=1][Find modifications in git logs]]
14238 : String used to end a noweb reference in a code block.
14239 : See also `org-babel-noweb-wrap-start'.
14241 ** org-beamer-column-view-format ="%45ITEM %10BEAMER_env(Env) %1...=
14243 :CUSTOM_ID: org-beamer-column-view-format
14246 - *Type:* (choice (const :tag "Do not in...
14247 - *Since:* Emacs version 24.4
14248 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
14249 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-column-view-format&sr=1][Find modifications in git logs]]
14251 : Column view format that should be used to fill the template.
14253 ** org-icalendar-include-todo =nil=
14255 :CUSTOM_ID: org-icalendar-include-todo
14258 - *Type:* (choice (const :tag "None" nil...
14259 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
14260 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-include-todo&sr=1][Find modifications in git logs]]
14262 : Non-nil means create VTODO components from TODO items.
14264 : Valid values are:
14265 : nil don't include any task.
14266 : t include tasks that are not in DONE state.
14267 : `unblocked' include all TODO items that are not blocked.
14268 : `all' include both done and not done items.
14270 ** org-ascii-verbatim-format ="`%s'"=
14272 :CUSTOM_ID: org-ascii-verbatim-format
14276 - *Since:* Emacs version 24.4
14277 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
14278 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-verbatim-format&sr=1][Find modifications in git logs]]
14280 : Format string used for verbatim text and inline code.
14282 ** org-man-logfiles-extensions =(quote ("log" "out" "toc"))=
14284 :CUSTOM_ID: org-man-logfiles-extensions
14287 - *Type:* (repeat (string :tag "Extensio...
14288 - *Since:* Emacs version 24.4
14289 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
14290 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-logfiles-extensions&sr=1][Find modifications in git logs]]
14292 : The list of file extensions to consider as Man logfiles.
14294 ** org-texinfo-diary-timestamp-format ="@emph{%s}"=
14296 :CUSTOM_ID: org-texinfo-diary-timestamp-format
14300 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
14301 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-diary-timestamp-format&sr=1][Find modifications in git logs]]
14303 : A printf format string to be applied to diary timestamps.
14305 ** org-agenda-scheduled-leaders =(quote ("Scheduled: " "Sched.%...=
14307 :CUSTOM_ID: org-agenda-scheduled-leaders
14310 - *Type:* (list (string :tag "Scheduled ...
14311 - *Since:* Emacs version 24.4
14312 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14313 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-scheduled-leaders&sr=1][Find modifications in git logs]]
14315 : Text preceding scheduled items in the agenda view.
14316 : This is a list with two strings. The first applies when the item is
14317 : scheduled on the current day. The second applies when it has been scheduled
14318 : previously, it may contain a %d indicating that this is the nth time that
14319 : this item is scheduled, due to automatic rescheduling of unfinished items
14320 : for the following day. So this number is one larger than the number of days
14321 : that passed since this item was scheduled first.
14323 ** org-startup-truncated =t=
14325 :CUSTOM_ID: org-startup-truncated
14329 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14330 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-truncated&sr=1][Find modifications in git logs]]
14332 : Non-nil means entering Org-mode will set `truncate-lines'.
14333 : This is useful since some lines containing links can be very long and
14334 : uninteresting. Also tables look terrible when wrapped.
14336 ** org-export-with-tags =t=
14338 :CUSTOM_ID: org-export-with-tags
14341 - *Type:* (choice (const :tag "Off" nil)...
14342 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
14343 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-tags&sr=1][Find modifications in git logs]]
14345 : If nil, do not export tags, just remove them from headlines.
14347 : If this is the symbol `not-in-toc', tags will be removed from
14348 : table of contents entries, but still be shown in the headlines of
14351 : This option can also be set with the OPTIONS keyword,
14354 ** org-cycle-level-after-item/entry-creation =t=
14356 :CUSTOM_ID: org-cycle-level-after-item/entry-creation
14360 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14361 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-level-after-item/entry-creation&sr=1][Find modifications in git logs]]
14363 : Non-nil means cycle entry level or item indentation in new empty entries.
14365 : When the cursor is at the end of an empty headline, i.e., with only stars
14366 : and maybe a TODO keyword, TAB will then switch the entry to become a child,
14367 : and then all possible ancestor states, before returning to the original state.
14368 : This makes data entry extremely fast: M-RET to create a new headline,
14369 : on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
14371 : When the cursor is at the end of an empty plain list item, one TAB will
14372 : make it a subitem, two or more tabs will back up to make this an item
14373 : higher up in the item hierarchy.
14375 ** org-export-html-toplevel-hlevel =2=
14377 :CUSTOM_ID: org-export-html-toplevel-hlevel
14381 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
14382 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-toplevel-hlevel&sr=1][Find modifications in git logs]]
14384 : The <H> level for level 1 headings in HTML export.
14385 : This is also important for the classes that will be wrapped around headlines
14386 : and outline structure. If this variable is 1, the top-level headlines will
14387 : be <h1>, and the corresponding classes will be outline-1, section-number-1,
14388 : and outline-text-1. If this is 2, all of these will get a 2 instead.
14389 : The default for this variable is 2, because we use <h1> for formatting the
14392 ** org-clock-mode-line-total =(quote auto)=
14394 :CUSTOM_ID: org-clock-mode-line-total
14397 - *Type:* (choice (const :tag "Current c...
14398 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
14399 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-mode-line-total&sr=1][Find modifications in git logs]]
14401 : Default setting for the time included for the mode line clock.
14402 : This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
14403 : Allowed values are:
14405 : current Only the time in the current instance of the clock
14406 : today All time clocked into this task today
14407 : repeat All time clocked into this task since last repeat
14408 : all All time ever recorded for this task
14409 : auto Automatically, either `all', or `repeat' for repeating tasks
14411 ** org-html-toplevel-hlevel =2=
14413 :CUSTOM_ID: org-html-toplevel-hlevel
14417 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
14418 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-toplevel-hlevel&sr=1][Find modifications in git logs]]
14420 : The <H> level for level 1 headings in HTML export.
14421 : This is also important for the classes that will be wrapped around headlines
14422 : and outline structure. If this variable is 1, the top-level headlines will
14423 : be <h1>, and the corresponding classes will be outline-1, section-number-1,
14424 : and outline-text-1. If this is 2, all of these will get a 2 instead.
14425 : The default for this variable is 2, because we use <h1> for formatting the
14428 ** org-complete-tags-always-offer-all-agenda-tags =nil=
14430 :CUSTOM_ID: org-complete-tags-always-offer-all-agenda-tags
14434 - *Since:* Emacs version 24.1
14435 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14436 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-complete-tags-always-offer-all-agenda-tags&sr=1][Find modifications in git logs]]
14438 : If non-nil, always offer completion for all tags of all agenda files.
14439 : Instead of customizing this variable directly, you might want to
14440 : set it locally for capture buffers, because there no list of
14441 : tags in that file can be created dynamically (there are none).
14443 : (add-hook 'org-capture-mode-hook
14445 : (set (make-local-variable
14446 : 'org-complete-tags-always-offer-all-agenda-tags)
14449 ** org-ditaa-jar-path =(expand-file-name "ditaa.jar" ...=
14451 :CUSTOM_ID: org-ditaa-jar-path
14455 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
14456 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ditaa-jar-path&sr=1][Find modifications in git logs]]
14458 : Path to the ditaa jar executable.
14460 ** org-agenda-menu-two-columns =nil=
14462 :CUSTOM_ID: org-agenda-menu-two-columns
14466 - *Since:* Emacs version 24.1
14467 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14468 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-menu-two-columns&sr=1][Find modifications in git logs]]
14470 : Non-nil means, use two columns to show custom commands in the dispatcher.
14471 : If you use this, you probably want to set `org-agenda-menu-show-matcher'
14474 ** org-goto-max-level =5=
14476 :CUSTOM_ID: org-goto-max-level
14480 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14481 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-goto-max-level&sr=1][Find modifications in git logs]]
14483 : Maximum target level when running `org-goto' with refile interface.
14485 ** org-completion-use-iswitchb =nil=
14487 :CUSTOM_ID: org-completion-use-iswitchb
14491 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14492 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-completion-use-iswitchb&sr=1][Find modifications in git logs]]
14494 : Non-nil means use iswitchb completion wherever possible.
14495 : Note that `iswitchb-mode' must be active for this variable to be relevant.
14496 : If you decide to turn this variable on, you might well want to turn off
14497 : `org-outline-path-complete-in-steps'.
14498 : Note that this variable has only an effect if `org-completion-use-ido' is nil.
14500 ** org-export-html-preamble-format =(quote (("en" "")))=
14502 :CUSTOM_ID: org-export-html-preamble-format
14506 - *Since:* Emacs version 24.1
14507 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
14508 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-preamble-format&sr=1][Find modifications in git logs]]
14510 : Alist of languages and format strings for the HTML preamble.
14512 : The first element of each list is the language code, as used for
14513 : the #+LANGUAGE keyword.
14515 : The second element of each list is a format string to format the
14516 : preamble itself. This format string can contain these elements:
14518 : %t stands for the title.
14519 : %a stands for the author's name.
14520 : %e stands for the author's email.
14521 : %d stands for the date.
14523 : If you need to use a "%" character, you need to escape it
14526 ** org-feed-drawer ="FEEDSTATUS"=
14528 :CUSTOM_ID: org-feed-drawer
14531 - *Type:* (string :tag "Drawer Name")
14532 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
14533 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-drawer&sr=1][Find modifications in git logs]]
14535 : The name of the drawer for feed status information.
14536 : Each feed may also specify its own drawer name using the `:drawer'
14537 : parameter in `org-feed-alist'.
14538 : Note that in order to make these drawers behave like drawers, they must
14539 : be added to the variable `org-drawers' or configured with a #+DRAWERS
14542 ** org-html-creator-string =(format "<a href=\"http://www....=
14544 :CUSTOM_ID: org-html-creator-string
14547 - *Type:* (string :tag "Creator string")
14548 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
14549 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-creator-string&sr=1][Find modifications in git logs]]
14551 : Information about the creator of the HTML document.
14552 : This option can also be set on with the CREATOR keyword.
14554 ** org-src-ask-before-returning-to-edit-buffer =t=
14556 :CUSTOM_ID: org-src-ask-before-returning-to-edit-buffer
14560 - *Since:* Emacs version 24.4
14561 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
14562 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-ask-before-returning-to-edit-buffer&sr=1][Find modifications in git logs]]
14564 : If nil, when org-edit-src code is used on a block that already
14565 : has an active edit buffer, it will switch to that edit buffer
14566 : immediately; otherwise it will ask whether you want to return to
14567 : the existing edit buffer.
14569 ** org-clock-heading-function =nil=
14571 :CUSTOM_ID: org-clock-heading-function
14575 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
14576 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-heading-function&sr=1][Find modifications in git logs]]
14578 : When non-nil, should be a function to create `org-clock-heading'.
14579 : This is the string shown in the mode line when a clock is running.
14580 : The function is called with point at the beginning of the headline.
14582 ** org-id-track-globally =t=
14584 :CUSTOM_ID: org-id-track-globally
14588 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
14589 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-track-globally&sr=1][Find modifications in git logs]]
14591 : Non-nil means track IDs through files, so that links work globally.
14592 : This work by maintaining a hash table for IDs and writing this table
14593 : to disk when exiting Emacs. Because of this, it works best if you use
14594 : a single Emacs process, not many.
14596 : When nil, IDs are not tracked. Links to IDs will still work within
14597 : a buffer, but not if the entry is located in another file.
14598 : IDs can still be used if the entry with the id is in the same file as
14601 ** org-table-formula-field-format ="%s"=
14603 :CUSTOM_ID: org-table-formula-field-format
14607 - *Since:* Emacs version 24.1
14608 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
14609 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-formula-field-format&sr=1][Find modifications in git logs]]
14611 : Format for fields which contain the result of a formula.
14612 : For example, using "~%s~" will display the result within tilde
14613 : characters. Beware that modifying the display can prevent the
14614 : field from being used in another formula.
14616 ** org-icalendar-combined-agenda-file ="~/org.ics"=
14618 :CUSTOM_ID: org-icalendar-combined-agenda-file
14622 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
14623 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-combined-agenda-file&sr=1][Find modifications in git logs]]
14625 : The file name for the iCalendar file covering all agenda files.
14626 : This file is created with the command \[org-icalendar-combine-agenda-files].
14627 : The file name should be absolute. It will be overwritten without warning.
14629 ** org-list-radio-list-templates =(quote ((latex-mode "% BEGIN R...=
14631 :CUSTOM_ID: org-list-radio-list-templates
14634 - *Type:* (repeat (list (symbol :tag "Ma...
14635 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
14636 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-radio-list-templates&sr=1][Find modifications in git logs]]
14638 : Templates for radio lists in different major modes.
14639 : All occurrences of %n in a template will be replaced with the name of the
14640 : list, obtained by prompting the user.
14642 ** org-agenda-exporter-settings =nil=
14644 :CUSTOM_ID: org-agenda-exporter-settings
14647 - *Type:* (repeat (list (variable) (sexp...
14648 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14649 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-exporter-settings&sr=1][Find modifications in git logs]]
14651 : Alist of variable/value pairs that should be active during agenda export.
14652 : This is a good place to set options for ps-print and for htmlize.
14653 : Note that the way this is implemented, the values will be evaluated
14654 : before assigned to the variables. So make sure to quote values you do
14655 : *not* want evaluated, for example
14657 : (setq org-agenda-exporter-settings
14658 : '((ps-print-color-p 'black-white)))
14660 ** org-time-clocksum-fractional-format ="%.2f"=
14662 :CUSTOM_ID: org-time-clocksum-fractional-format
14665 - *Type:* (choice (string :tag "Format s...
14666 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14667 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-clocksum-fractional-format&sr=1][Find modifications in git logs]]
14669 : The format string used when creating CLOCKSUM lines,
14670 : or when Org mode generates a time duration, if
14671 : `org-time-clocksum-use-fractional' is enabled.
14673 : The value can be a single format string containing one
14674 : %-sequence, which will be filled with the number of hours as
14677 : Alternatively, the value can be a plist associating any of the
14678 : keys :years, :months, :weeks, :days, :hours or :minutes with
14679 : a format string. The time duration is formatted using the
14680 : largest time unit which gives a non-zero integer part. If all
14681 : specified formats have zero integer part, the smallest time unit
14684 ** org-agenda-skip-archived-trees =t=
14686 :CUSTOM_ID: org-agenda-skip-archived-trees
14690 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14691 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-archived-trees&sr=1][Find modifications in git logs]]
14693 : Non-nil means the agenda will skip any items located in archived trees.
14694 : An archived tree is a tree marked with the tag ARCHIVE. The use of this
14695 : variable is no longer recommended, you should leave it at the value t.
14696 : Instead, use the key `v' to cycle the archives-mode in the agenda.
14698 ** org-mobile-use-encryption =nil=
14700 :CUSTOM_ID: org-mobile-use-encryption
14704 - *Since:* Emacs version 24.1
14705 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
14706 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-use-encryption&sr=1][Find modifications in git logs]]
14708 : Non-nil means keep only encrypted files on the WebDAV server.
14709 : Encryption uses AES-256, with a password given in
14710 : `org-mobile-encryption-password'.
14711 : When nil, plain files are kept on the server.
14712 : Turning on encryption requires to set the same password in the MobileOrg
14713 : application. Before turning this on, check of MobileOrg does already
14714 : support it - at the time of this writing it did not yet.
14716 ** org-properties-postprocess-alist =nil=
14718 :CUSTOM_ID: org-properties-postprocess-alist
14721 - *Type:* (alist :key-type (string :tag ...
14722 - *Since:* Emacs version 24.1
14723 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14724 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-properties-postprocess-alist&sr=1][Find modifications in git logs]]
14726 : Alist of properties and functions to adjust inserted values.
14727 : Elements of this alist must be of the form
14729 : ([string] [function])
14731 : where [string] must be a property name and [function] must be a
14732 : lambda expression: this lambda expression must take one argument,
14733 : the value to adjust, and return the new value as a string.
14735 : For example, this element will allow the property "Remaining"
14736 : to be updated wrt the relation between the "Effort" property
14737 : and the clock summary:
14739 : (("Remaining" (lambda(value)
14740 : (let ((clocksum (org-clock-sum-current-item))
14741 : (effort (org-duration-string-to-minutes
14742 : (org-entry-get (point) "Effort"))))
14743 : (org-minutes-to-clocksum-string (- effort clocksum))))))
14745 ** org-agenda-entry-text-maxlines =5=
14747 :CUSTOM_ID: org-agenda-entry-text-maxlines
14751 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
14752 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-maxlines&sr=1][Find modifications in git logs]]
14754 : Number of text lines to be added when `E' is pressed in the agenda.
14756 : Note that this variable only used during agenda display. Add add entry text
14757 : when exporting the agenda, configure the variable
14758 : `org-agenda-add-entry-ext-maxlines'.
14760 ** org-infojs-options =(mapcar (lambda (x) (cons (car...=
14762 :CUSTOM_ID: org-infojs-options
14765 - *Type:* (set :greedy t :inline t (cons...
14766 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-jsinfo.el;hb=HEAD][org-jsinfo.el]]
14767 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-infojs-options&sr=1][Find modifications in git logs]]
14769 : Options settings for the INFOJS JavaScript.
14770 : Each of the options must have an entry in `org-export-html/infojs-opts-table'.
14771 : The value can either be a string that will be passed to the script, or
14772 : a property. This property is then assumed to be a property that is defined
14773 : by the Export/Publishing setup of Org.
14774 : The `sdepth' and `tdepth' parameters can also be set to "max", which
14775 : means to use the maximum value consistent with other options.
14777 ** org-id-method =(quote uuid)=
14779 :CUSTOM_ID: org-id-method
14782 - *Type:* (choice (const :tag "Org's int...
14783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
14784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-method&sr=1][Find modifications in git logs]]
14786 : The method that should be used to create new IDs.
14788 : An ID will consist of the optional prefix specified in `org-id-prefix',
14789 : and a unique part created by the method this variable specifies.
14791 : Allowed values are:
14793 : org Org's own internal method, using an encoding of the current time to
14794 : microsecond accuracy, and optionally the current domain of the
14795 : computer. See the variable `org-id-include-domain'.
14797 : uuid Create random (version 4) UUIDs. If the program defined in
14798 : `org-id-uuid-program' is available it is used to create the ID.
14799 : Otherwise an internal functions is used.
14801 ** org-refile-targets =nil=
14803 :CUSTOM_ID: org-refile-targets
14806 - *Type:* (repeat (cons (choice :value o...
14807 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14808 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-targets&sr=1][Find modifications in git logs]]
14810 : Targets for refiling entries with \[org-refile].
14811 : This is a list of cons cells. Each cell contains:
14812 : - a specification of the files to be considered, either a list of files,
14813 : or a symbol whose function or variable value will be used to retrieve
14814 : a file name or a list of file names. If you use `org-agenda-files' for
14815 : that, all agenda files will be scanned for targets. Nil means consider
14816 : headings in the current buffer.
14817 : - A specification of how to find candidate refile targets. This may be
14819 : - a cons cell (:tag . "TAG") to identify refile targets by a tag.
14820 : This tag has to be present in all target headlines, inheritance will
14821 : not be considered.
14822 : - a cons cell (:todo . "KEYWORD") to identify refile targets by
14824 : - a cons cell (:regexp . "REGEXP") with a regular expression matching
14825 : headlines that are refiling targets.
14826 : - a cons cell (:level . N). Any headline of level N is considered a target.
14827 : Note that, when `org-odd-levels-only' is set, level corresponds to
14828 : order in hierarchy, not to the number of stars.
14829 : - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
14830 : Note that, when `org-odd-levels-only' is set, level corresponds to
14831 : order in hierarchy, not to the number of stars.
14833 : Each element of this list generates a set of possible targets.
14834 : The union of these sets is presented (with completion) to
14835 : the user by `org-refile'.
14837 : You can set the variable `org-refile-target-verify-function' to a function
14838 : to verify each headline found by the simple criteria above.
14840 : When this variable is nil, all top-level headlines in the current buffer
14841 : are used, equivalent to the value `((nil . (:level . 1))'.
14843 ** org-enable-fixed-width-editor =t=
14845 :CUSTOM_ID: org-enable-fixed-width-editor
14849 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14850 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-enable-fixed-width-editor&sr=1][Find modifications in git logs]]
14852 : Non-nil means lines starting with ":" are treated as fixed-width.
14853 : This currently only means they are never auto-wrapped.
14854 : When nil, such lines will be treated like ordinary lines.
14855 : See also the QUOTE keyword.
14857 ** org-latex-toc-command ="\\tableofcontents\n\n"=
14859 :CUSTOM_ID: org-latex-toc-command
14863 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
14864 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-toc-command&sr=1][Find modifications in git logs]]
14866 : LaTeX command to set the table of contents, list of figures, etc.
14867 : This command only applies to the table of contents generated with
14868 : the toc:nil option, not to those generated with #+TOC keyword.
14870 ** org-html-footnote-format ="<sup>%s</sup>"=
14872 :CUSTOM_ID: org-html-footnote-format
14876 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
14877 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-footnote-format&sr=1][Find modifications in git logs]]
14879 : The format for the footnote reference.
14880 : %s will be replaced by the footnote reference itself.
14882 ** org-ascii-table-use-ascii-art =nil=
14884 :CUSTOM_ID: org-ascii-table-use-ascii-art
14888 - *Since:* Emacs version 24.4
14889 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
14890 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-table-use-ascii-art&sr=1][Find modifications in git logs]]
14892 : Non-nil means table.el tables are turned into ascii-art.
14894 : It only makes sense when export charset is `utf-8'. It is nil by
14895 : default since it requires ascii-art-to-unicode.el package. You
14896 : can download it here:
14898 : http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el.
14900 ** org-html-htmlize-output-type =(quote inline-css)=
14902 :CUSTOM_ID: org-html-htmlize-output-type
14905 - *Type:* (choice (const css) (const inl...
14906 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
14907 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-htmlize-output-type&sr=1][Find modifications in git logs]]
14909 : Output type to be used by htmlize when formatting code snippets.
14910 : Choices are `css', to export the CSS selectors only, or `inline-css', to
14911 : export the CSS attribute values inline in the HTML. We use as default
14912 : `inline-css', in order to make the resulting HTML self-containing.
14914 : However, this will fail when using Emacs in batch mode for export, because
14915 : then no rich font definitions are in place. It will also not be good if
14916 : people with different Emacs setup contribute HTML files to a website,
14917 : because the fonts will represent the individual setups. In these cases,
14918 : it is much better to let Org/Htmlize assign classes only, and to use
14919 : a style file to define the look of these classes.
14920 : To get a start for your css file, start Emacs session and make sure that
14921 : all the faces you are interested in are defined, for example by loading files
14922 : in all modes you want. Then, use the command
14923 : \[org-html-htmlize-generate-css] to extract class definitions.
14925 ** org-id-include-domain =nil=
14927 :CUSTOM_ID: org-id-include-domain
14931 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
14932 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-include-domain&sr=1][Find modifications in git logs]]
14934 : Non-nil means add the domain name to new IDs.
14935 : This ensures global uniqueness of IDs, and is also suggested by
14936 : RFC 2445 in combination with RFC 822. This is only relevant if
14937 : `org-id-method' is `org'. When uuidgen is used, the domain will never
14939 : The default is to not use this because we have no really good way to get
14940 : the true domain, and Org entries will normally not be shared with enough
14941 : people to make this necessary.
14943 ** org-imenu-depth =2=
14945 :CUSTOM_ID: org-imenu-depth
14949 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14950 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-imenu-depth&sr=1][Find modifications in git logs]]
14952 : The maximum level for Imenu access to Org-mode headlines.
14953 : This also applied for speedbar access.
14955 ** org-mark-ring-length =4=
14957 :CUSTOM_ID: org-mark-ring-length
14961 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14962 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mark-ring-length&sr=1][Find modifications in git logs]]
14964 : Number of different positions to be recorded in the ring.
14965 : Changing this requires a restart of Emacs to work correctly.
14967 ** org-html-metadata-timestamp-format ="%Y-%m-%d %a %H:%M"=
14969 :CUSTOM_ID: org-html-metadata-timestamp-format
14973 - *Since:* Emacs version 24.4
14974 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
14975 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-metadata-timestamp-format&sr=1][Find modifications in git logs]]
14977 : Format used for timestamps in preamble, postamble and metadata.
14978 : See `format-time-string' for more information on its components.
14980 ** org-modules =(quote (org-w3m org-bbdb org-b...=
14982 :CUSTOM_ID: org-modules
14985 - *Type:* (set :greedy t (const :tag " ...
14986 - *Since:* Emacs version 24.4
14987 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
14988 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-modules&sr=1][Find modifications in git logs]]
14990 : Modules that should always be loaded together with org.el.
14992 : If a description starts with <C>, the file is not part of Emacs
14993 : and loading it will require that you have downloaded and properly
14994 : installed the Org mode distribution.
14996 : You can also use this system to load external packages (i.e. neither Org
14997 : core modules, nor modules from the CONTRIB directory). Just add symbols
14998 : to the end of the list. If the package is called org-xyz.el, then you need
14999 : to add the symbol `xyz', and the package must have a call to:
15001 : (provide 'org-xyz)
15003 : For export specific modules, see also `org-export-backends'.
15005 ** org-html-link-home =""=
15007 :CUSTOM_ID: org-html-link-home
15010 - *Type:* (string :tag "File or URL")
15011 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
15012 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-link-home&sr=1][Find modifications in git logs]]
15014 : Where should the "HOME" link of exported HTML pages lead?
15016 ** org-bibtex-no-export-tags =nil=
15018 :CUSTOM_ID: org-bibtex-no-export-tags
15021 - *Type:* (repeat :tag "Tag" (string))
15022 - *Since:* Emacs version 24.1
15023 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
15024 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-no-export-tags&sr=1][Find modifications in git logs]]
15026 : List of tag(s) that should not be converted to keywords.
15027 : This variable is relevant only if `org-bibtex-export-tags-as-keywords' is t.
15029 ** org-use-extra-keys =nil=
15031 :CUSTOM_ID: org-use-extra-keys
15035 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15036 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-extra-keys&sr=1][Find modifications in git logs]]
15038 : Non-nil means use extra key sequence definitions for certain commands.
15039 : This happens automatically if you run XEmacs or if `window-system'
15040 : is nil. This variable lets you do the same manually. You must
15041 : set it before loading org.
15043 : Example: on Carbon Emacs 22 running graphically, with an external
15044 : keyboard on a Powerbook, the default way of setting M-left might
15045 : not work for either Alt or ESC. Setting this variable will make
15048 ** org-export-html-protect-char-alist =(quote (("&" . "&") ("<" ....=
15050 :CUSTOM_ID: org-export-html-protect-char-alist
15053 - *Type:* (repeat (cons (string :tag "Ch...
15054 - *Since:* Emacs version 24.1
15055 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
15056 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-protect-char-alist&sr=1][Find modifications in git logs]]
15058 : Alist of characters to be converted by `org-html-protect'.
15060 ** org-babel-noweb-wrap-start ="<<"=
15062 :CUSTOM_ID: org-babel-noweb-wrap-start
15066 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
15067 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-noweb-wrap-start&sr=1][Find modifications in git logs]]
15069 : String used to begin a noweb reference in a code block.
15070 : See also `org-babel-noweb-wrap-end'.
15072 ** org-agenda-use-time-grid =t=
15074 :CUSTOM_ID: org-agenda-use-time-grid
15078 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15079 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-use-time-grid&sr=1][Find modifications in git logs]]
15081 : Non-nil means show a time grid in the agenda schedule.
15082 : A time grid is a set of lines for specific times (like every two hours between
15083 : 8:00 and 20:00). The items scheduled for a day at specific times are
15084 : sorted in between these lines.
15085 : For details about when the grid will be shown, and what it will look like, see
15086 : the variable `org-agenda-time-grid'.
15088 ** org-icalendar-include-bbdb-anniversaries =nil=
15090 :CUSTOM_ID: org-icalendar-include-bbdb-anniversaries
15094 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
15095 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-include-bbdb-anniversaries&sr=1][Find modifications in git logs]]
15097 : Non-nil means a combined iCalendar file should include anniversaries.
15098 : The anniversaries are defined in the BBDB database.
15100 ** org-export-prefer-native-exporter-for-tables =nil=
15102 :CUSTOM_ID: org-export-prefer-native-exporter-for-tables
15106 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
15107 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-prefer-native-exporter-for-tables&sr=1][Find modifications in git logs]]
15109 : Non-nil means always export tables created with table.el natively.
15110 : Natively means use the HTML code generator in table.el.
15111 : When nil, Org-mode's own HTML generator is used when possible (i.e. if
15112 : the table does not use row- or column-spanning). This has the
15113 : advantage, that the automatic HTML conversions for math symbols and
15114 : sub/superscripts can be applied. Org-mode's HTML generator is also
15115 : much faster. The LaTeX exporter always use the native exporter for
15118 ** org-highest-priority =65=
15120 :CUSTOM_ID: org-highest-priority
15123 - *Type:* character
15124 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15125 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-highest-priority&sr=1][Find modifications in git logs]]
15127 : The highest priority of TODO items. A character like ?A, ?B etc.
15128 : Must have a smaller ASCII number than `org-lowest-priority'.
15130 ** org-table-copy-increment =t=
15132 :CUSTOM_ID: org-table-copy-increment
15136 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
15137 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-copy-increment&sr=1][Find modifications in git logs]]
15139 : Non-nil means increment when copying current field with \[org-table-copy-down].
15141 ** org-agenda-custom-commands =(quote (("n" "Agenda and all T...=
15143 :CUSTOM_ID: org-agenda-custom-commands
15146 - *Type:* (repeat (choice :value ("x" "D...
15147 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15148 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-custom-commands&sr=1][Find modifications in git logs]]
15150 : Custom commands for the agenda.
15151 : These commands will be offered on the splash screen displayed by the
15152 : agenda dispatcher \[org-agenda]. Each entry is a list like this:
15154 : (key desc type match settings files)
15156 : key The key (one or more characters as a string) to be associated
15157 : with the command.
15158 : desc A description of the command, when omitted or nil, a default
15159 : description is built using MATCH.
15160 : type The command type, any of the following symbols:
15161 : agenda The daily/weekly agenda.
15162 : todo Entries with a specific TODO keyword, in all agenda files.
15163 : search Entries containing search words entry or headline.
15164 : tags Tags/Property/TODO match in all agenda files.
15165 : tags-todo Tags/P/T match in all agenda files, TODO entries only.
15166 : todo-tree Sparse tree of specific TODO keyword in *current* file.
15167 : tags-tree Sparse tree with all tags matches in *current* file.
15168 : occur-tree Occur sparse tree for *current* file.
15169 : ... A user-defined function.
15170 : match What to search for:
15171 : - a single keyword for TODO keyword searches
15172 : - a tags match expression for tags searches
15173 : - a word search expression for text searches.
15174 : - a regular expression for occur searches
15175 : For all other commands, this should be the empty string.
15176 : settings A list of option settings, similar to that in a let form, so like
15177 : this: ((opt1 val1) (opt2 val2) ...). The values will be
15178 : evaluated at the moment of execution, so quote them when needed.
15179 : files A list of files file to write the produced agenda buffer to
15180 : with the command `org-store-agenda-views'.
15181 : If a file name ends in ".html", an HTML version of the buffer
15182 : is written out. If it ends in ".ps", a postscript version is
15183 : produced. Otherwise, only the plain text is written to the file.
15185 : You can also define a set of commands, to create a composite agenda buffer.
15186 : In this case, an entry looks like this:
15188 : (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
15192 : desc A description string to be displayed in the dispatcher menu.
15193 : cmd An agenda command, similar to the above. However, tree commands
15194 : are not allowed, but instead you can get agenda and global todo list.
15195 : So valid commands for a set are:
15196 : (agenda "" settings)
15197 : (alltodo "" settings)
15198 : (stuck "" settings)
15199 : (todo "match" settings files)
15200 : (search "match" settings files)
15201 : (tags "match" settings files)
15202 : (tags-todo "match" settings files)
15204 : Each command can carry a list of options, and another set of options can be
15205 : given for the whole set of commands. Individual command options take
15206 : precedence over the general options.
15208 : When using several characters as key to a command, the first characters
15209 : are prefix commands. For the dispatcher to display useful information, you
15210 : should provide a description for the prefix, like
15212 : (setq org-agenda-custom-commands
15213 : '(("h" . "HOME + Name tag searches") ; describe prefix "h"
15214 : ("hl" tags "+HOME+Lisa")
15215 : ("hp" tags "+HOME+Peter")
15216 : ("hk" tags "+HOME+Kim")))
15218 ** org-latex-table-caption-above =t=
15220 :CUSTOM_ID: org-latex-table-caption-above
15224 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
15225 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-table-caption-above&sr=1][Find modifications in git logs]]
15227 : When non-nil, place caption string at the beginning of the table.
15228 : Otherwise, place it near the end.
15230 ** org-clocktable-defaults =(list :maxlevel 2 :lang (or (o...=
15232 :CUSTOM_ID: org-clocktable-defaults
15236 - *Since:* Emacs version 24.1
15237 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
15238 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clocktable-defaults&sr=1][Find modifications in git logs]]
15240 : Default properties for clock tables.
15242 ** org-babel-process-comment-text =(function org-babel-trim)=
15244 :CUSTOM_ID: org-babel-process-comment-text
15248 - *Since:* Emacs version 24.1
15249 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
15250 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-process-comment-text&sr=1][Find modifications in git logs]]
15252 : Function called to process raw Org-mode text collected to be
15253 : inserted as comments in tangled source-code files. The function
15254 : should take a single string argument and return a string
15255 : result. The default value is `org-babel-trim'.
15257 ** org-crypt-tag-matcher ="crypt"=
15259 :CUSTOM_ID: org-crypt-tag-matcher
15263 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
15264 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-crypt-tag-matcher&sr=1][Find modifications in git logs]]
15266 : The tag matcher used to find headings whose contents should be encrypted.
15268 : See the "Match syntax" section of the org manual for more details.
15270 ** org-clock-continuously =nil=
15272 :CUSTOM_ID: org-clock-continuously
15276 - *Since:* Emacs version 24.1
15277 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
15278 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-continuously&sr=1][Find modifications in git logs]]
15280 : Non-nil means to start clocking from the last clock-out time, if any.
15282 ** org-html-infojs-template ="<script type=\"text/javascrip...=
15284 :CUSTOM_ID: org-html-infojs-template
15288 - *Since:* Emacs version 24.4
15289 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
15290 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-infojs-template&sr=1][Find modifications in git logs]]
15292 : The template for the export style additions when org-info.js is used.
15293 : Option settings will replace the %MANAGER-OPTIONS cookie.
15295 ** org-agenda-start-with-log-mode =nil=
15297 :CUSTOM_ID: org-agenda-start-with-log-mode
15300 - *Type:* (choice (const :tag "Don't sho...
15301 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15302 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-start-with-log-mode&sr=1][Find modifications in git logs]]
15304 : The initial value of log-mode in a newly created agenda window.
15305 : See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
15306 : explanations on the possible values.
15308 ** org-html-use-infojs =(quote when-configured)=
15310 :CUSTOM_ID: org-html-use-infojs
15313 - *Type:* (choice (const :tag "Never" ni...
15314 - *Since:* Emacs version 24.4
15315 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
15316 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-use-infojs&sr=1][Find modifications in git logs]]
15318 : Non-nil when Sebastian Rose's Java Script org-info.js should be active.
15319 : This option can be nil or t to never or always use the script.
15320 : It can also be the symbol `when-configured', meaning that the
15321 : script will be linked into the export file if and only if there
15322 : is a "#+INFOJS_OPT:" line in the buffer. See also the variable
15323 : `org-html-infojs-options'.
15325 ** org-confirm-babel-evaluate =t=
15327 :CUSTOM_ID: org-confirm-babel-evaluate
15330 - *Type:* (choice boolean function)
15331 - *Since:* Emacs version 24.1
15332 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
15333 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-confirm-babel-evaluate&sr=1][Find modifications in git logs]]
15335 : Confirm before evaluation.
15336 : Require confirmation before interactively evaluating code
15337 : blocks in Org-mode buffers. The default value of this variable
15338 : is t, meaning confirmation is required for any code block
15339 : evaluation. This variable can be set to nil to inhibit any
15340 : future confirmation requests. This variable can also be set to a
15341 : function which takes two arguments the language of the code block
15342 : and the body of the code block. Such a function should then
15343 : return a non-nil value if the user should be prompted for
15344 : execution or nil if no prompt is required.
15346 : Warning: Disabling confirmation may result in accidental
15347 : evaluation of potentially harmful code. It may be advisable
15348 : remove code block execution from C-c C-c as further protection
15349 : against accidental code block evaluation. The
15350 : `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
15351 : remove code block execution from the C-c C-c keybinding.
15353 ** org-timer-default-timer =0=
15355 :CUSTOM_ID: org-timer-default-timer
15359 - *Since:* Emacs version 24.1
15360 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
15361 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-default-timer&sr=1][Find modifications in git logs]]
15363 : The default timer when a timer is set.
15364 : When 0, the user is prompted for a value.
15366 ** org-ascii-headline-spacing =(quote (1 . 2))=
15368 :CUSTOM_ID: org-ascii-headline-spacing
15371 - *Type:* (choice (const :tag "Replicate...
15372 - *Since:* Emacs version 24.4
15373 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
15374 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-headline-spacing&sr=1][Find modifications in git logs]]
15376 : Number of blank lines inserted around headlines.
15378 : This variable can be set to a cons cell. In that case, its car
15379 : represents the number of blank lines present before headline
15380 : contents whereas its cdr reflects the number of blank lines after
15383 : A nil value replicates the number of blank lines found in the
15384 : original Org buffer at the same place.
15386 ** org-export-taskjuggler-default-project-version ="1.0"=
15388 :CUSTOM_ID: org-export-taskjuggler-default-project-version
15392 - *Since:* Emacs version 24.1
15393 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
15394 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-default-project-version&sr=1][Find modifications in git logs]]
15396 : Default version string for the project.
15398 ** org-babel-js-cmd ="node"=
15400 :CUSTOM_ID: org-babel-js-cmd
15404 - *Since:* Emacs version 24.1
15405 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-js.el;hb=HEAD][ob-js.el]]
15406 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-js-cmd&sr=1][Find modifications in git logs]]
15408 : Name of command used to evaluate js blocks.
15410 ** org-read-date-force-compatible-dates =t=
15412 :CUSTOM_ID: org-read-date-force-compatible-dates
15416 - *Since:* Emacs version 24.1
15417 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15418 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-read-date-force-compatible-dates&sr=1][Find modifications in git logs]]
15420 : Should date/time prompt force dates that are guaranteed to work in Emacs?
15422 : Depending on the system Emacs is running on, certain dates cannot
15423 : be represented with the type used internally to represent time.
15424 : Dates between 1970-1-1 and 2038-1-1 can always be represented
15425 : correctly. Some systems allow for earlier dates, some for later,
15426 : some for both. One way to find out it to insert any date into an
15427 : Org buffer, putting the cursor on the year and hitting S-up and
15428 : S-down to test the range.
15430 : When this variable is set to t, the date/time prompt will not let
15431 : you specify dates outside the 1970-2037 range, so it is certain that
15432 : these dates will work in whatever version of Emacs you are
15433 : running, and also that you can move a file from one Emacs implementation
15434 : to another. WHenever Org is forcing the year for you, it will display
15435 : a message and beep.
15437 : When this variable is nil, Org will check if the date is
15438 : representable in the specific Emacs implementation you are using.
15439 : If not, it will force a year, usually the current year, and beep
15440 : to remind you. Currently this setting is not recommended because
15441 : the likelihood that you will open your Org files in an Emacs that
15442 : has limited date range is not negligible.
15444 : A workaround for this problem is to use diary sexp dates for time
15445 : stamps outside of this range.
15447 ** org-texinfo-coding-system =nil=
15449 :CUSTOM_ID: org-texinfo-coding-system
15452 - *Type:* coding-system
15453 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
15454 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-coding-system&sr=1][Find modifications in git logs]]
15456 : Default document encoding for Texinfo output.
15458 ** org-export-with-toc =t=
15460 :CUSTOM_ID: org-export-with-toc
15463 - *Type:* (choice (const :tag "No Table ...
15464 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
15465 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-toc&sr=1][Find modifications in git logs]]
15467 : Non-nil means create a table of contents in exported files.
15469 : The TOC contains headlines with levels up
15470 : to`org-export-headline-levels'. When an integer, include levels
15471 : up to N in the toc, this may then be different from
15472 : `org-export-headline-levels', but it will not be allowed to be
15473 : larger than the number of headline levels. When nil, no table of
15474 : contents is made.
15476 : This option can also be set with the OPTIONS keyword,
15477 : e.g. "toc:nil" or "toc:3".
15479 ** org-export-html-inline-images =(quote maybe)=
15481 :CUSTOM_ID: org-export-html-inline-images
15484 - *Type:* (choice (const :tag "Never" ni...
15485 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
15486 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-inline-images&sr=1][Find modifications in git logs]]
15488 : Non-nil means inline images into exported HTML pages.
15489 : This is done using an <img> tag. When nil, an anchor with href is used to
15490 : link to the image. If this option is `maybe', then images in links with
15491 : an empty description will be inlined, while images with a description will
15494 ** org-src-window-setup =(quote reorganize-frame)=
15496 :CUSTOM_ID: org-src-window-setup
15499 - *Type:* (choice (const current-window)...
15500 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
15501 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-window-setup&sr=1][Find modifications in git logs]]
15503 : How the source code edit buffer should be displayed.
15504 : Possible values for this option are:
15506 : current-window Show edit buffer in the current window, keeping all other
15508 : other-window Use `switch-to-buffer-other-window' to display edit buffer.
15509 : reorganize-frame Show only two windows on the current frame, the current
15510 : window and the edit buffer. When exiting the edit buffer,
15511 : return to one window.
15512 : other-frame Use `switch-to-buffer-other-frame' to display edit buffer.
15513 : Also, when exiting the edit buffer, kill that frame.
15515 ** org-enable-priority-commands =t=
15517 :CUSTOM_ID: org-enable-priority-commands
15521 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15522 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-enable-priority-commands&sr=1][Find modifications in git logs]]
15524 : Non-nil means priority commands are active.
15525 : When nil, these commands will be disabled, so that you never accidentally
15528 ** org-export-exclude-tags =(quote ("noexport"))=
15530 :CUSTOM_ID: org-export-exclude-tags
15533 - *Type:* (repeat (string :tag "Tag"))
15534 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
15535 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-exclude-tags&sr=1][Find modifications in git logs]]
15537 : Tags that exclude a tree from export.
15539 : All trees carrying any of these tags will be excluded from
15540 : export. This is without condition, so even subtrees inside that
15541 : carry one of the `org-export-select-tags' will be removed.
15543 : This option can also be set with the EXCLUDE_TAGS keyword.
15545 ** org-ascii-format-inlinetask-function =nil=
15547 :CUSTOM_ID: org-ascii-format-inlinetask-function
15551 - *Since:* Emacs version 24.4
15552 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
15553 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-format-inlinetask-function&sr=1][Find modifications in git logs]]
15555 : Function called to format an inlinetask in ASCII.
15557 : The function must accept six parameters:
15558 : TODO the todo keyword, as a string
15559 : TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
15560 : PRIORITY the inlinetask priority, as a string
15561 : NAME the inlinetask name, as a string.
15562 : TAGS the inlinetask tags, as a list of strings.
15563 : CONTENTS the contents of the inlinetask, as a string.
15565 : The function should return either the string to be exported or
15566 : nil to ignore the inline task.
15568 : For example, the variable could be set to the following function
15569 : in order to mimic default behaviour:
15571 : (defun org-ascii-format-inlinetask-default
15572 : (todo type priority name tags contents)
15573 : "Format an inline task element for ASCII export."
15574 : (let* ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))
15575 : (width org-ascii-inlinetask-width)
15576 : (org-ascii--indent-string
15578 : ;; Top line, with an additional blank line if not in UTF-8.
15579 : (make-string width (if utf8p ?━ ?_)) "\n"
15580 : (unless utf8p (concat (make-string width ? ) "\n"))
15581 : ;; Add title. Fill it if wider than inlinetask.
15582 : (let ((title (org-ascii--build-title inlinetask info width)))
15583 : (if (<= (length title) width) title
15584 : (org-ascii--fill-string title width info)))
15586 : ;; If CONTENTS is not empty, insert it along with
15588 : (when (org-string-nw-p contents)
15589 : (concat (make-string width (if utf8p ?─ ?-)) "\n" contents))
15591 : (make-string width (if utf8p ?━ ?_)))
15592 : ;; Flush the inlinetask to the right.
15593 : (- (plist-get info :ascii-width)
15594 : (plist-get info :ascii-margin)
15595 : (plist-get info :ascii-inner-margin)
15596 : (org-ascii--current-text-width inlinetask info))
15598 ** org-export-html-link-home =""=
15600 :CUSTOM_ID: org-export-html-link-home
15603 - *Type:* (string :tag "File or URL")
15604 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
15605 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-link-home&sr=1][Find modifications in git logs]]
15607 : Where should the "HOME" link of exported HTML pages lead?
15609 ** org-latex-active-timestamp-format ="\\textit{%s}"=
15611 :CUSTOM_ID: org-latex-active-timestamp-format
15615 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
15616 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-active-timestamp-format&sr=1][Find modifications in git logs]]
15618 : A printf format string to be applied to active timestamps.
15620 ** org-columns-modify-value-for-display-function =nil=
15622 :CUSTOM_ID: org-columns-modify-value-for-display-function
15626 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15627 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-modify-value-for-display-function&sr=1][Find modifications in git logs]]
15629 : Function that modifies values for display in column view.
15630 : For example, it can be used to cut out a certain part from a time stamp.
15631 : The function must take 2 arguments:
15633 : column-title The title of the column (*not* the property name)
15634 : value The value that should be modified.
15636 : The function should return the value that should be displayed,
15637 : or nil if the normal value should be used.
15639 ** org-odt-prettify-xml =nil=
15641 :CUSTOM_ID: org-odt-prettify-xml
15645 - *Since:* Emacs version 24.1
15646 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
15647 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-prettify-xml&sr=1][Find modifications in git logs]]
15649 : Specify whether or not the xml output should be prettified.
15650 : When this option is turned on, `indent-region' is run on all
15651 : component xml buffers before they are saved. Turn this off for
15652 : regular use. Turn this on if you need to examine the xml
15655 ** org-clock-total-time-cell-format ="*%s*"=
15657 :CUSTOM_ID: org-clock-total-time-cell-format
15661 - *Since:* Emacs version 24.1
15662 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
15663 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-total-time-cell-format&sr=1][Find modifications in git logs]]
15665 : Format string for the total time cells.
15667 ** org-export-taskjuggler-extension =".tjp"=
15669 :CUSTOM_ID: org-export-taskjuggler-extension
15673 - *Since:* Emacs version 24.1
15674 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
15675 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-extension&sr=1][Find modifications in git logs]]
15677 : Extension of TaskJuggler files.
15679 ** org-agenda-entry-text-exclude-regexps =nil=
15681 :CUSTOM_ID: org-agenda-entry-text-exclude-regexps
15684 - *Type:* (repeat (regexp))
15685 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15686 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-entry-text-exclude-regexps&sr=1][Find modifications in git logs]]
15688 : List of regular expressions to clean up entry text.
15689 : The complete matches of all regular expressions in this list will be
15690 : removed from entry text before it is shown in the agenda.
15692 ** org-email-link-description-format ="Email %c: %.30s"=
15694 :CUSTOM_ID: org-email-link-description-format
15698 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15699 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-email-link-description-format&sr=1][Find modifications in git logs]]
15701 : Format of the description part of a link to an email or usenet message.
15702 : The following %-escapes will be replaced by corresponding information:
15704 : %F full "From" field
15705 : %f name, taken from "From" field, address if no name
15706 : %T full "To" field
15707 : %t first name in "To" field, address if no name
15708 : %c correspondent. Usually "from NAME", but if you sent it yourself, it
15709 : will be "to NAME". See also the variable `org-from-is-user-regexp'.
15714 : You may use normal field width specification between the % and the letter.
15715 : This is for example useful to limit the length of the subject.
15717 : Examples: "%f on: %.30s", "Email from %f", "Email %c"
15719 ** org-ascii-paragraph-spacing =(quote auto)=
15721 :CUSTOM_ID: org-ascii-paragraph-spacing
15724 - *Type:* (choice (integer :tag "Number ...
15725 - *Since:* Emacs version 24.4
15726 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
15727 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-paragraph-spacing&sr=1][Find modifications in git logs]]
15729 : Number of white lines between paragraphs.
15730 : If the value is an integer, add this number of blank lines
15731 : between contiguous paragraphs. If is it the symbol `auto', keep
15732 : the same number of blank lines as in the original document.
15734 ** org-table-allow-automatic-line-recalculation =t=
15736 :CUSTOM_ID: org-table-allow-automatic-line-recalculation
15740 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
15741 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-allow-automatic-line-recalculation&sr=1][Find modifications in git logs]]
15743 : Non-nil means lines marked with |#| or |*| will be recomputed automatically.
15744 : Automatically means when TAB or RET or C-c C-c are pressed in the line.
15746 ** org-startup-with-latex-preview =nil=
15748 :CUSTOM_ID: org-startup-with-latex-preview
15752 - *Since:* Emacs version 24.4
15753 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15754 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-with-latex-preview&sr=1][Find modifications in git logs]]
15756 : Non-nil means preview LaTeX fragments when loading a new Org file.
15758 : This can also be configured on a per-file basis by adding one of
15759 : the followinglines anywhere in the buffer:
15760 : #+STARTUP: latexpreview
15761 : #+STARTUP: nolatexpreview
15763 ** org-sparse-tree-open-archived-trees =nil=
15765 :CUSTOM_ID: org-sparse-tree-open-archived-trees
15769 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15770 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sparse-tree-open-archived-trees&sr=1][Find modifications in git logs]]
15772 : Non-nil means sparse tree construction shows matches in archived trees.
15773 : When nil, matches in these trees are highlighted, but the trees are kept in
15776 ** org-agenda-time-leading-zero =nil=
15778 :CUSTOM_ID: org-agenda-time-leading-zero
15782 - *Since:* Emacs version 24.1
15783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-time-leading-zero&sr=1][Find modifications in git logs]]
15786 : Non-nil means use leading zero for military times in agenda.
15787 : For example, 9:30am would become 09:30 rather than 9:30.
15789 ** org-export-snippet-translation-alist =nil=
15791 :CUSTOM_ID: org-export-snippet-translation-alist
15794 - *Type:* (repeat (cons (string :tag "Sh...
15795 - *Since:* Emacs version 24.4
15796 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
15797 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-snippet-translation-alist&sr=1][Find modifications in git logs]]
15799 : Alist between export snippets back-ends and exporter back-ends.
15801 : This variable allows to provide shortcuts for export snippets.
15803 : For example, with a value of '(("h" . "html")), the
15804 : HTML back-end will recognize the contents of "@@h:<b>@@" as
15805 : HTML code while every other back-end will ignore it.
15807 ** org-lowest-priority =67=
15809 :CUSTOM_ID: org-lowest-priority
15812 - *Type:* character
15813 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15814 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-lowest-priority&sr=1][Find modifications in git logs]]
15816 : The lowest priority of TODO items. A character like ?A, ?B etc.
15817 : Must have a larger ASCII number than `org-highest-priority'.
15819 ** org-odt-convert-processes =(quote (("LibreOffice" "soffic...=
15821 :CUSTOM_ID: org-odt-convert-processes
15824 - *Type:* (choice (const :tag "None" nil...
15825 - *Since:* Emacs version 24.1
15826 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
15827 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-convert-processes&sr=1][Find modifications in git logs]]
15829 : Specify a list of document converters and their usage.
15830 : The converters in this list are offered as choices while
15831 : customizing `org-odt-convert-process'.
15833 : This variable is a list where each element is of the
15834 : form (CONVERTER-NAME CONVERTER-CMD). CONVERTER-NAME is the name
15835 : of the converter. CONVERTER-CMD is the shell command for the
15836 : converter and can contain format specifiers. These format
15837 : specifiers are interpreted as below:
15839 : %i input file name in full
15840 : %I input file name as a URL
15841 : %f format of the output file
15842 : %o output file name in full
15843 : %O output file name as a URL
15844 : %d output dir in full
15845 : %D output dir as a URL.
15846 : %x extra options as set in `org-odt-convert-capabilities'.
15848 ** org-link-mailto-program =(quote (browse-url "mailto:%a?...=
15850 :CUSTOM_ID: org-link-mailto-program
15853 - *Type:* (choice (const :tag "browse-ur...
15854 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15855 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-mailto-program&sr=1][Find modifications in git logs]]
15857 : Function and arguments to call for following mailto links.
15858 : This is a list with the first element being a Lisp function, and the
15859 : remaining elements being arguments to the function. In string arguments,
15860 : %a will be replaced by the address, and %s will be replaced by the subject
15861 : if one was given like in <mailto:arthur@galaxy.org::this subject>.
15863 ** org-show-following-heading =(quote ((default)))=
15865 :CUSTOM_ID: org-show-following-heading
15868 - *Type:* (choice (const :tag "Always" t...
15869 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15870 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-following-heading&sr=1][Find modifications in git logs]]
15872 : Non-nil means show following heading when revealing a location.
15873 : Org-mode often shows locations in an org-mode file which might have
15874 : been invisible before. When this is set, the heading following the
15876 : Turning this off for example for sparse trees makes them very compact,
15877 : but makes it harder to edit the location of the match. In such a case,
15878 : use the command \[org-reveal] to show more context.
15879 : Instead of t, this can also be an alist specifying this option for different
15880 : contexts. See `org-show-hierarchy-above' for valid contexts.
15882 ** org-clone-delete-id =nil=
15884 :CUSTOM_ID: org-clone-delete-id
15888 - *Since:* Emacs version 24.1
15889 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15890 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clone-delete-id&sr=1][Find modifications in git logs]]
15892 : Remove ID property of clones of a subtree.
15893 : When non-nil, clones of a subtree don't inherit the ID property.
15894 : Otherwise they inherit the ID property with a new unique
15897 ** org-html-head-extra =""=
15899 :CUSTOM_ID: org-html-head-extra
15903 - *Since:* Emacs version 24.4
15904 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
15905 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-head-extra&sr=1][Find modifications in git logs]]
15907 : More head information to add in the HTML output.
15909 : You can set this on a per-file basis using #+HTML_HEAD_EXTRA:,
15910 : or for publication projects using the :html-head-extra property.
15912 ** org-open-directory-means-index-dot-org =nil=
15914 :CUSTOM_ID: org-open-directory-means-index-dot-org
15918 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
15919 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-directory-means-index-dot-org&sr=1][Find modifications in git logs]]
15921 : Non-nil means a link to a directory really means to index.org.
15922 : When nil, following a directory link will run dired or open a finder/explorer
15923 : window on that directory.
15925 ** org-agenda-current-time-string ="now - - - - - - - - - - - - -...=
15927 :CUSTOM_ID: org-agenda-current-time-string
15931 - *Since:* Emacs version 24.1
15932 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
15933 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-current-time-string&sr=1][Find modifications in git logs]]
15935 : The string for the current time marker in the agenda.
15937 ** org-texinfo-filename =nil=
15939 :CUSTOM_ID: org-texinfo-filename
15942 - *Type:* (string :tag "Export Filename"...
15943 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
15944 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-filename&sr=1][Find modifications in git logs]]
15946 : Default filename for Texinfo output.
15948 ** org-texinfo-link-with-unknown-path-format ="@indicateurl{%s}"=
15950 :CUSTOM_ID: org-texinfo-link-with-unknown-path-format
15954 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
15955 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-link-with-unknown-path-format&sr=1][Find modifications in git logs]]
15957 : Format string for links with unknown path type.
15959 ** org-mobile-encryption-password =""=
15961 :CUSTOM_ID: org-mobile-encryption-password
15964 - *Type:* (string :tag "Password")
15965 - *Since:* Emacs version 24.1
15966 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
15967 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-encryption-password&sr=1][Find modifications in git logs]]
15969 : Password for encrypting files uploaded to the server.
15970 : This is a single password which is used for AES-256 encryption. The same
15971 : password must also be set in the MobileOrg application. All Org files,
15972 : including mobileorg.org will be encrypted using this password.
15974 : SECURITY CONSIDERATIONS:
15976 : Note that, when Org runs the encryption commands, the password could
15977 : be visible briefly on your system with the `ps' command. So this method is
15978 : only intended to keep the files secure on the server, not on your own machine.
15980 : Also, if you set this variable in an init file (.emacs or .emacs.d/init.el
15981 : or custom.el...) and if that file is stored in a way so that other can read
15982 : it, this also limits the security of this approach. You can also leave
15983 : this variable empty - Org will then ask for the password once per Emacs
15986 ** org-odt-create-custom-styles-for-srcblocks =t=
15988 :CUSTOM_ID: org-odt-create-custom-styles-for-srcblocks
15992 - *Since:* Emacs version 24.1
15993 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
15994 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-create-custom-styles-for-srcblocks&sr=1][Find modifications in git logs]]
15996 : Whether custom styles for colorized source blocks be automatically created.
15997 : When this option is turned on, the exporter creates custom styles
15998 : for source blocks based on the advice of `htmlfontify'. Creation
15999 : of custom styles happen as part of `org-odt-hfy-face-to-css'.
16001 : When this option is turned off exporter does not create such
16004 : Use the latter option if you do not want the custom styles to be
16005 : based on your current display settings. It is necessary that the
16006 : styles.xml already contains needed styles for colorizing to work.
16008 : This variable is effective only if
16009 : `org-odt-fontify-srcblocks' is turned on.
16011 ** org-fontify-done-headline =nil=
16013 :CUSTOM_ID: org-fontify-done-headline
16017 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16018 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fontify-done-headline&sr=1][Find modifications in git logs]]
16020 : Non-nil means change the face of a headline if it is marked DONE.
16021 : Normally, only the TODO/DONE keyword indicates the state of a headline.
16022 : When this is non-nil, the headline after the keyword is set to the
16023 : `org-headline-done' as an additional indication.
16025 ** org-agenda-skip-deadline-prewarning-if-scheduled =nil=
16027 :CUSTOM_ID: org-agenda-skip-deadline-prewarning-if-scheduled
16030 - *Type:* (choice (const :tag "Always sh...
16031 - *Since:* Emacs version 24.1
16032 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16033 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-deadline-prewarning-if-scheduled&sr=1][Find modifications in git logs]]
16035 : Non-nil means skip deadline prewarning when entry is also scheduled.
16036 : This will apply on all days where a prewarning for the deadline would
16037 : be shown, but not at the day when the entry is actually due. On that day,
16038 : the deadline will be shown anyway.
16039 : This variable may be set to nil, t, the symbol `pre-scheduled',
16040 : or a number which will then give the number of days before the actual
16041 : deadline when the prewarnings should resume. The symbol `pre-scheduled'
16042 : eliminates the deadline prewarning only prior to the scheduled date.
16043 : This can be used in a workflow where the first showing of the deadline will
16044 : trigger you to schedule it, and then you don't want to be reminded of it
16045 : because you will take care of it on the day when scheduled.
16047 ** org-agenda-restore-windows-after-quit =nil=
16049 :CUSTOM_ID: org-agenda-restore-windows-after-quit
16053 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16054 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-restore-windows-after-quit&sr=1][Find modifications in git logs]]
16056 : Non-nil means restore window configuration upon exiting agenda.
16057 : Before the window configuration is changed for displaying the agenda,
16058 : the current status is recorded. When the agenda is exited with
16059 : `q' or `x' and this option is set, the old state is restored. If
16060 : `org-agenda-window-setup' is `other-frame', the value of this
16061 : option will be ignored.
16063 ** org-keep-stored-link-after-insertion =nil=
16065 :CUSTOM_ID: org-keep-stored-link-after-insertion
16069 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16070 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-keep-stored-link-after-insertion&sr=1][Find modifications in git logs]]
16072 : Non-nil means keep link in list for entire session.
16074 : The command `org-store-link' adds a link pointing to the current
16075 : location to an internal list. These links accumulate during a session.
16076 : The command `org-insert-link' can be used to insert links into any
16077 : Org-mode file (offering completion for all stored links). When this
16078 : option is nil, every link which has been inserted once using \[org-insert-link]
16079 : will be removed from the list, to make completing the unused links
16082 ** org-beamer-outline-frame-title ="Outline"=
16084 :CUSTOM_ID: org-beamer-outline-frame-title
16087 - *Type:* (string :tag "Outline frame ti...
16088 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
16089 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-outline-frame-title&sr=1][Find modifications in git logs]]
16091 : Default title of a frame containing an outline.
16093 ** org-return-follows-link =nil=
16095 :CUSTOM_ID: org-return-follows-link
16099 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16100 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-return-follows-link&sr=1][Find modifications in git logs]]
16102 : Non-nil means on links RET will follow the link.
16103 : In tables, the special behavior of RET has precedence.
16105 ** org-agenda-diary-file =(quote diary-file)=
16107 :CUSTOM_ID: org-agenda-diary-file
16110 - *Type:* (choice (const :tag "The stand...
16111 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16112 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-diary-file&sr=1][Find modifications in git logs]]
16114 : File to which to add new entries with the `i' key in agenda and calendar.
16115 : When this is the symbol `diary-file', the functionality in the Emacs
16116 : calendar will be used to add entries to the `diary-file'. But when this
16117 : points to a file, `org-agenda-diary-entry' will be used instead.
16119 ** org-export-coding-system =nil=
16121 :CUSTOM_ID: org-export-coding-system
16124 - *Type:* coding-system
16125 - *Since:* Emacs version 24.4
16126 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
16127 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-coding-system&sr=1][Find modifications in git logs]]
16129 : Coding system for the exported file.
16131 ** org-calc-default-modes =(quote (calc-internal-prec 12 ...=
16133 :CUSTOM_ID: org-calc-default-modes
16137 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
16138 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calc-default-modes&sr=1][Find modifications in git logs]]
16140 : List with Calc mode settings for use in `calc-eval' for table formulas.
16141 : The list must contain alternating symbols (Calc modes variables and values).
16142 : Don't remove any of the default settings, just change the values. Org-mode
16143 : relies on the variables to be present in the list.
16145 ** org-export-time-stamp-file =t=
16147 :CUSTOM_ID: org-export-time-stamp-file
16151 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
16152 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-time-stamp-file&sr=1][Find modifications in git logs]]
16154 : Non-nil means insert a time stamp into the exported file.
16155 : The time stamp shows when the file was created. This option can
16156 : also be set with the OPTIONS keyword, e.g. "timestamp:nil".
16158 ** org-agenda-hide-tags-regexp =nil=
16160 :CUSTOM_ID: org-agenda-hide-tags-regexp
16163 - *Type:* (choice (const :tag "Hide none...
16164 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16165 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-hide-tags-regexp&sr=1][Find modifications in git logs]]
16167 : Regular expression used to filter away specific tags in agenda views.
16168 : This means that these tags will be present, but not be shown in the agenda
16169 : line. Secondary filtering will still work on the hidden tags.
16170 : Nil means don't hide any tags.
16172 ** org-export-html-xml-declaration =(quote (("html" . "<?xml versi...=
16174 :CUSTOM_ID: org-export-html-xml-declaration
16177 - *Type:* (choice (string :tag "Single d...
16178 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
16179 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-xml-declaration&sr=1][Find modifications in git logs]]
16181 : The extension for exported HTML files.
16182 : %s will be replaced with the charset of the exported file.
16183 : This may be a string, or an alist with export extensions
16184 : and corresponding declarations.
16186 ** org-emphasis-alist =(\` (("*" bold) ("/" italic) (...=
16188 :CUSTOM_ID: org-emphasis-alist
16191 - *Type:* (repeat (list (string :tag "Ma...
16192 - *Since:* Emacs version 24.4
16193 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16194 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-emphasis-alist&sr=1][Find modifications in git logs]]
16196 : Alist of characters and faces to emphasize text.
16197 : Text starting and ending with a special character will be emphasized,
16198 : for example *bold*, _underlined_ and /italic/. This variable sets the
16199 : marker characters and the face to be used by font-lock for highlighting
16200 : in Org-mode Emacs buffers.
16202 : You need to reload Org or to restart Emacs after customizing this.
16204 ** org-html-xml-declaration =(quote (("html" . "<?xml versi...=
16206 :CUSTOM_ID: org-html-xml-declaration
16209 - *Type:* (choice (string :tag "Single d...
16210 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16211 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-xml-declaration&sr=1][Find modifications in git logs]]
16213 : The extension for exported HTML files.
16214 : %s will be replaced with the charset of the exported file.
16215 : This may be a string, or an alist with export extensions
16216 : and corresponding declarations.
16218 ** org-export-with-TeX-macros =t=
16220 :CUSTOM_ID: org-export-with-TeX-macros
16224 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
16225 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-TeX-macros&sr=1][Find modifications in git logs]]
16227 : Non-nil means interpret simple TeX-like macros when exporting.
16228 : For example, HTML export converts \alpha to α and \AA to Å.
16229 : Not only real TeX macros will work here, but the standard HTML entities
16230 : for math can be used as macro names as well. For a list of supported
16231 : names in HTML export, see the constant `org-entities' and the user option
16232 : `org-entities-user'.
16233 : Not all export backends support this.
16235 : This option can also be set with the +OPTIONS line, e.g. "TeX:nil".
16237 ** org-html-doctype ="<!DOCTYPE html PUBLIC \"-//W3...=
16239 :CUSTOM_ID: org-html-doctype
16243 - *Since:* Emacs version 24.4
16244 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16245 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-doctype&sr=1][Find modifications in git logs]]
16247 : Document type definition to use for exported HTML files.
16248 : Can be set with the in-buffer HTML_DOCTYPE property or for
16249 : publishing, with :html-doctype.
16251 ** org-beamer-theme ="default"=
16253 :CUSTOM_ID: org-beamer-theme
16256 - *Type:* (choice (const :tag "Do not in...
16257 - *Since:* Emacs version 24.4
16258 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
16259 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-theme&sr=1][Find modifications in git logs]]
16261 : Default theme used in Beamer presentations.
16263 ** org-use-property-inheritance =nil=
16265 :CUSTOM_ID: org-use-property-inheritance
16268 - *Type:* (choice (const :tag "Not" nil)...
16269 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16270 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-property-inheritance&sr=1][Find modifications in git logs]]
16272 : Non-nil means properties apply also for sublevels.
16274 : This setting is chiefly used during property searches. Turning it on can
16275 : cause significant overhead when doing a search, which is why it is not
16278 : When nil, only the properties directly given in the current entry count.
16279 : When t, every property is inherited. The value may also be a list of
16280 : properties that should have inheritance, or a regular expression matching
16281 : properties that should be inherited.
16283 : However, note that some special properties use inheritance under special
16284 : circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
16285 : and the properties ending in "_ALL" when they are used as descriptor
16286 : for valid values of a property.
16288 : Note for programmers:
16289 : When querying an entry with `org-entry-get', you can control if inheritance
16290 : should be used. By default, `org-entry-get' looks only at the local
16291 : properties. You can request inheritance by setting the inherit argument
16292 : to t (to force inheritance) or to `selective' (to respect the setting
16293 : in this variable).
16295 ** org-show-notification-handler =nil=
16297 :CUSTOM_ID: org-show-notification-handler
16300 - *Type:* (choice (string :tag "Program"...
16301 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
16302 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-notification-handler&sr=1][Find modifications in git logs]]
16304 : Function or program to send notification with.
16305 : The function or program will be called with the notification
16306 : string as argument.
16308 ** org-bibtex-tags-are-keywords =nil=
16310 :CUSTOM_ID: org-bibtex-tags-are-keywords
16314 - *Since:* Emacs version 24.1
16315 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
16316 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-tags-are-keywords&sr=1][Find modifications in git logs]]
16318 : Convert the value of the keywords field to tags and vice versa.
16319 : If set to t, comma-separated entries in a bibtex entry's keywords
16320 : field will be converted to org tags. Note: spaces will be escaped
16321 : with underscores, and characters that are not permitted in org
16322 : tags will be removed.
16324 : If t, local tags in an org entry will be exported as a
16325 : comma-separated string of keywords when exported to bibtex. Tags
16326 : defined in `org-bibtex-tags' or `org-bibtex-no-export-tags' will
16329 ** org-export-interblocks =(quote nil)=
16331 :CUSTOM_ID: org-export-interblocks
16335 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp-blocks.el;hb=HEAD][org-exp-blocks.el]]
16336 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-interblocks&sr=1][Find modifications in git logs]]
16338 : Use this a-list to associate block types with block exporting functions.
16339 : The type of a block is determined by the text immediately
16340 : following the '#+BEGIN_' portion of the block header. Each block
16341 : export function should accept three arguments.
16343 ** org-agenda-auto-exclude-function =nil=
16345 :CUSTOM_ID: org-agenda-auto-exclude-function
16349 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16350 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-auto-exclude-function&sr=1][Find modifications in git logs]]
16352 : A function called with a tag to decide if it is filtered on '/ RET'.
16353 : The sole argument to the function, which is called once for each
16354 : possible tag, is a string giving the name of the tag. The
16355 : function should return either nil if the tag should be included
16356 : as normal, or "-<TAG>" to exclude the tag.
16357 : Note that for the purpose of tag filtering, only the lower-case version of
16358 : all tags will be considered, so that this function will only ever see
16359 : the lower-case version of all tags.
16361 ** org-agenda-insert-diary-extract-time =nil=
16363 :CUSTOM_ID: org-agenda-insert-diary-extract-time
16367 - *Since:* Emacs version 24.1
16368 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16369 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-insert-diary-extract-time&sr=1][Find modifications in git logs]]
16371 : Non-nil means extract any time specification from the diary entry.
16373 ** org-allow-promoting-top-level-subtree =nil=
16375 :CUSTOM_ID: org-allow-promoting-top-level-subtree
16379 - *Since:* Emacs version 24.1
16380 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16381 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-allow-promoting-top-level-subtree&sr=1][Find modifications in git logs]]
16383 : When non-nil, allow promoting a top level subtree.
16384 : The leading star of the top level headline will be replaced
16387 ** org-cycle-max-level =nil=
16389 :CUSTOM_ID: org-cycle-max-level
16392 - *Type:* (choice (const :tag "No limit"...
16393 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16394 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-max-level&sr=1][Find modifications in git logs]]
16396 : Maximum level which should still be subject to visibility cycling.
16397 : Levels higher than this will, for cycling, be treated as text, not a headline.
16398 : When `org-odd-levels-only' is set, a value of N in this variable actually
16399 : means 2N-1 stars as the limiting headline.
16400 : When nil, cycle all levels.
16401 : Note that the limiting level of cycling is also influenced by
16402 : `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
16403 : `org-inlinetask-min-level' is, cycling will be limited to levels one less
16406 ** org-link-file-path-type =(quote adaptive)=
16408 :CUSTOM_ID: org-link-file-path-type
16411 - *Type:* (choice (const relative) (cons...
16412 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16413 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-file-path-type&sr=1][Find modifications in git logs]]
16415 : How the path name in file links should be stored.
16416 : Valid values are:
16418 : relative Relative to the current directory, i.e. the directory of the file
16419 : into which the link is being inserted.
16420 : absolute Absolute path, if possible with ~ for home directory.
16421 : noabbrev Absolute path, no abbreviation of home directory.
16422 : adaptive Use relative path for files in the current directory and sub-
16423 : directories of it. For other files, use an absolute path.
16425 ** org-refile-target-verify-function =nil=
16427 :CUSTOM_ID: org-refile-target-verify-function
16431 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16432 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-target-verify-function&sr=1][Find modifications in git logs]]
16434 : Function to verify if the headline at point should be a refile target.
16435 : The function will be called without arguments, with point at the
16436 : beginning of the headline. It should return t and leave point
16437 : where it is if the headline is a valid target for refiling.
16439 : If the target should not be selected, the function must return nil.
16440 : In addition to this, it may move point to a place from where the search
16441 : should be continued. For example, the function may decide that the entire
16442 : subtree of the current entry should be excluded and move point to the end
16445 ** org-export-with-todo-keywords =t=
16447 :CUSTOM_ID: org-export-with-todo-keywords
16451 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
16452 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-todo-keywords&sr=1][Find modifications in git logs]]
16454 : Non-nil means include TODO keywords in export.
16455 : When nil, remove all these keywords from the export. This option
16456 : can also be set with the OPTIONS keyword, e.g. "todo:nil".
16458 ** org-latex-inline-image-rules =(quote (("file" . "\\.\\(pdf\\...=
16460 :CUSTOM_ID: org-latex-inline-image-rules
16463 - *Type:* (alist :key-type (string :tag ...
16464 - *Since:* Emacs version 24.4
16465 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
16466 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-inline-image-rules&sr=1][Find modifications in git logs]]
16468 : Rules characterizing image files that can be inlined into LaTeX.
16470 : A rule consists in an association whose key is the type of link
16471 : to consider, and value is a regexp that will be matched against
16474 : Note that, by default, the image extension *actually* allowed
16475 : depend on the way the LaTeX file is processed. When used with
16476 : pdflatex, pdf, jpg and png images are OK. When processing
16477 : through dvi to Postscript, only ps and eps are allowed. The
16478 : default we use here encompasses both.
16480 ** org-latex-to-mathml-jar-file =nil=
16482 :CUSTOM_ID: org-latex-to-mathml-jar-file
16485 - *Type:* (choice (const :tag "None" nil...
16486 - *Since:* Emacs version 24.1
16487 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16488 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-to-mathml-jar-file&sr=1][Find modifications in git logs]]
16490 : Value of"%j" in `org-latex-to-mathml-convert-command'.
16491 : Use this to specify additional executable file say a jar file.
16493 : When using MathToWeb as the converter, specify the full-path to
16494 : your mathtoweb.jar file.
16496 ** org-html-home/up-format ="<div id=\"org-div-home-and-up...=
16498 :CUSTOM_ID: org-html-home/up-format
16502 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16503 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-home/up-format&sr=1][Find modifications in git logs]]
16505 : Snippet used to insert the HOME and UP links.
16506 : This is a format string, the first %s will receive the UP link,
16507 : the second the HOME link. If both `org-html-link-up' and
16508 : `org-html-link-home' are empty, the entire snippet will be
16511 ** org-export-section-number-format =(quote ((("1" ".")) . ""))=
16513 :CUSTOM_ID: org-export-section-number-format
16516 - *Type:* (cons (repeat (list (string :t...
16517 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
16518 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-section-number-format&sr=1][Find modifications in git logs]]
16520 : Format of section numbers for export.
16521 : The variable has two components.
16522 : 1. A list of lists, each indicating a counter type and a separator.
16523 : The counter type can be any of "1", "A", "a", "I", or "i".
16524 : It causes causes numeric, alphabetic, or roman counters, respectively.
16525 : The separator is only used if another counter for a subsection is being
16527 : If there are more numbered section levels than entries in this lists,
16528 : then the last entry will be reused.
16529 : 2. A terminator string that will be added after the entire
16532 ** org-export-table-header-tags =(quote ("<th scope=\"%s\"%s>" ...=
16534 :CUSTOM_ID: org-export-table-header-tags
16537 - *Type:* (cons (string :tag "Opening ta...
16538 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
16539 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-table-header-tags&sr=1][Find modifications in git logs]]
16541 : The opening tag for table header fields.
16542 : This is customizable so that alignment options can be specified.
16543 : The first %s will be filled with the scope of the field, either row or col.
16544 : The second %s will be replaced by a style entry to align the field.
16545 : See also the variable `org-export-html-table-use-header-tags-for-first-column'.
16546 : See also the variable `org-export-html-table-align-individual-fields'.
16548 ** org-bibtex-treat-headline-as-title =t=
16550 :CUSTOM_ID: org-bibtex-treat-headline-as-title
16554 - *Since:* Emacs version 24.1
16555 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
16556 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-treat-headline-as-title&sr=1][Find modifications in git logs]]
16558 : Treat headline text as title if title property is absent.
16559 : If an entry is missing a title property, use the headline text as
16560 : the property. If this value is t, `org-bibtex-check' will ignore
16561 : a missing title field.
16563 ** org-ascii-links-to-notes =t=
16565 :CUSTOM_ID: org-ascii-links-to-notes
16569 - *Since:* Emacs version 24.4
16570 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
16571 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-links-to-notes&sr=1][Find modifications in git logs]]
16573 : Non-nil means convert links to notes before the next headline.
16574 : When nil, the link will be exported in place. If the line
16575 : becomes long in this way, it will be wrapped.
16577 ** org-html-coding-system =(quote utf-8)=
16579 :CUSTOM_ID: org-html-coding-system
16582 - *Type:* coding-system
16583 - *Since:* Emacs version 24.4
16584 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16585 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-coding-system&sr=1][Find modifications in git logs]]
16587 : Coding system for HTML export.
16588 : Use utf-8 as the default value.
16590 ** org-checkbox-hierarchical-statistics =t=
16592 :CUSTOM_ID: org-checkbox-hierarchical-statistics
16596 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
16597 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-checkbox-hierarchical-statistics&sr=1][Find modifications in git logs]]
16599 : Non-nil means checkbox statistics counts only the state of direct children.
16600 : When nil, all boxes below the cookie are counted.
16601 : This can be set to nil on a per-node basis using a COOKIE_DATA property
16602 : with the word "recursive" in the value.
16604 ** org-agenda-todo-ignore-timestamp =nil=
16606 :CUSTOM_ID: org-agenda-todo-ignore-timestamp
16609 - *Type:* (choice (const :tag "Ignore fu...
16610 - *Since:* Emacs version 24.1
16611 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16612 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-ignore-timestamp&sr=1][Find modifications in git logs]]
16614 : Non-nil means don't show entries with a timestamp.
16615 : This applies when creating the global todo list.
16616 : Valid values are:
16618 : past Don't show entries for today or in the past.
16620 : future Don't show entries with a timestamp in the future.
16621 : The idea behind this is that if it has a future
16622 : timestamp, you don't want to think about it until the
16625 : all Don't show any entries with a timestamp in the global todo list.
16626 : The idea behind this is that by setting a timestamp, you
16627 : have already "taken care" of this item.
16629 : This variable can also have an integer as a value. If positive (N),
16630 : todos with a timestamp N or more days in the future will be ignored. If
16631 : negative (-N), todos with a timestamp N or more days in the past will be
16632 : ignored. If 0, todos with a timestamp either today or in the future will
16633 : be ignored. For example, a value of -1 will exclude todos with a
16634 : timestamp in the past (yesterday or earlier), while a value of 7 will
16635 : exclude todos with a timestamp a week or more in the future.
16637 : See also `org-agenda-todo-ignore-with-date'.
16638 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
16639 : to make his option also apply to the tags-todo list.
16641 ** org-agenda-show-inherited-tags =t=
16643 :CUSTOM_ID: org-agenda-show-inherited-tags
16646 - *Type:* (choice (const :tag "Show inhe...
16647 - *Since:* Emacs version 24.3
16648 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16649 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-inherited-tags&sr=1][Find modifications in git logs]]
16651 : Non-nil means show inherited tags in each agenda line.
16653 : When this option is set to 'always, it take precedences over
16654 : `org-agenda-use-tag-inheritance' and inherited tags are shown
16657 : When this option is set to t (the default), inherited tags are
16658 : shown when they are available, i.e. when the value of
16659 : `org-agenda-use-tag-inheritance' has been taken into account.
16661 : This can be set to a list of agenda types in which the agenda
16662 : must display the inherited tags. Available types are 'todo,
16663 : 'agenda, 'search and 'timeline.
16665 : When set to nil, never show inherited tags in agenda lines.
16667 ** org-cycle-separator-lines =2=
16669 :CUSTOM_ID: org-cycle-separator-lines
16673 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16674 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-separator-lines&sr=1][Find modifications in git logs]]
16676 : Number of empty lines needed to keep an empty line between collapsed trees.
16677 : If you leave an empty line between the end of a subtree and the following
16678 : headline, this empty line is hidden when the subtree is folded.
16679 : Org-mode will leave (exactly) one empty line visible if the number of
16680 : empty lines is equal or larger to the number given in this variable.
16681 : So the default 2 means at least 2 empty lines after the end of a subtree
16682 : are needed to produce free space between a collapsed subtree and the
16683 : following headline.
16685 : If the number is negative, and the number of empty lines is at least -N,
16686 : all empty lines are shown.
16688 : Special case: when 0, never leave empty lines in collapsed view.
16690 ** org-html-table-use-header-tags-for-first-column =nil=
16692 :CUSTOM_ID: org-html-table-use-header-tags-for-first-column
16696 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16697 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-use-header-tags-for-first-column&sr=1][Find modifications in git logs]]
16699 : Non-nil means format column one in tables with header tags.
16700 : When nil, also column one will use data tags.
16702 ** org-export-with-archived-trees =(quote headline)=
16704 :CUSTOM_ID: org-export-with-archived-trees
16707 - *Type:* (choice (const :tag "Not at al...
16708 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
16709 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-archived-trees&sr=1][Find modifications in git logs]]
16711 : Whether sub-trees with the ARCHIVE tag should be exported.
16713 : This can have three different values:
16714 : nil Do not export, pretend this tree is not present.
16715 : t Do export the entire tree.
16716 : `headline' Only export the headline, but skip the tree below it.
16718 : This option can also be set with the OPTIONS keyword,
16721 ** org-speed-commands-user =nil=
16723 :CUSTOM_ID: org-speed-commands-user
16726 - *Type:* (repeat :value ("k" . ignore) ...
16727 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16728 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-speed-commands-user&sr=1][Find modifications in git logs]]
16730 : Alist of additional speed commands.
16731 : This list will be checked before `org-speed-commands-default'
16732 : when the variable `org-use-speed-commands' is non-nil
16733 : and when the cursor is at the beginning of a headline.
16734 : The car if each entry is a string with a single letter, which must
16735 : be assigned to `self-insert-command' in the global map.
16736 : The cdr is either a command to be called interactively, a function
16737 : to be called, or a form to be evaluated.
16738 : An entry that is just a list with a single string will be interpreted
16739 : as a descriptive headline that will be added when listing the speed
16740 : commands in the Help buffer using the `?' speed command.
16742 ** org-mhe-search-all-folders =nil=
16744 :CUSTOM_ID: org-mhe-search-all-folders
16748 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mhe.el;hb=HEAD][org-mhe.el]]
16749 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mhe-search-all-folders&sr=1][Find modifications in git logs]]
16751 : Non-nil means the search for the mh-message may extend to all folders.
16752 : When non-nil, the search for a message will extend to all other
16753 : folders if it cannot be found in the folder given in the link.
16754 : Searching all folders may be slow with the default pick based
16755 : search but is very efficient with one of the other search engines
16756 : supported by MH-E.
16758 ** org-export-html-headline-anchor-format ="<a name=\"%s\" id=\"%s\"></a>...=
16760 :CUSTOM_ID: org-export-html-headline-anchor-format
16764 - *Since:* Emacs version 24.1
16765 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
16766 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-headline-anchor-format&sr=1][Find modifications in git logs]]
16768 : Format for anchors in HTML headlines.
16769 : It requires to %s: both will be replaced by the anchor referring
16770 : to the headline (e.g. "sec-2"). When set to `nil', don't insert
16771 : HTML anchors in headlines.
16773 ** org-mobile-force-mobile-change =nil=
16775 :CUSTOM_ID: org-mobile-force-mobile-change
16778 - *Type:* (choice (const :tag "Always" t...
16779 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
16780 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-force-mobile-change&sr=1][Find modifications in git logs]]
16782 : Non-nil means force the change made on the mobile device.
16783 : So even if there have been changes to the computer version of the entry,
16784 : force the new value set on the mobile.
16785 : When nil, mark the entry from the mobile with an error message.
16786 : Instead of nil or t, this variable can also be a list of symbols, indicating
16787 : the editing types for which the mobile version should always dominate.
16789 ** org-rss-image-url ="http://orgmode.org/img/org-mo...=
16791 :CUSTOM_ID: org-rss-image-url
16795 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
16796 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-image-url&sr=1][Find modifications in git logs]]
16798 : The URL of the an image for the RSS feed.
16800 ** org-agenda-todo-list-sublevels =t=
16802 :CUSTOM_ID: org-agenda-todo-list-sublevels
16806 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16807 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-list-sublevels&sr=1][Find modifications in git logs]]
16809 : Non-nil means check also the sublevels of a TODO entry for TODO entries.
16810 : When nil, the sublevels of a TODO entry are not checked, resulting in
16811 : potentially much shorter TODO lists.
16813 ** org-src-lang-modes =(quote (("ocaml" . tuareg) ("e...=
16815 :CUSTOM_ID: org-src-lang-modes
16818 - *Type:* (repeat (cons (string "Languag...
16819 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
16820 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-lang-modes&sr=1][Find modifications in git logs]]
16822 : Alist mapping languages to their major mode.
16823 : The key is the language name, the value is the string that should
16824 : be inserted as the name of the major mode. For many languages this is
16825 : simple, but for language where this is not the case, this variable
16826 : provides a way to simplify things on the user side.
16827 : For example, there is no ocaml-mode in Emacs, but the mode to use is
16830 ** org-export-html-mathjax-options =(quote ((path "http://orgmode....=
16832 :CUSTOM_ID: org-export-html-mathjax-options
16835 - *Type:* (list :greedy t (list :tag "pa...
16836 - *Since:* Emacs version 24.1
16837 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
16838 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-mathjax-options&sr=1][Find modifications in git logs]]
16840 : Options for MathJax setup.
16842 : path The path where to find MathJax
16843 : scale Scaling for the HTML-CSS backend, usually between 100 and 133
16844 : align How to align display math: left, center, or right
16845 : indent If align is not center, how far from the left/right side?
16846 : mathml Should a MathML player be used if available?
16847 : This is faster and reduces bandwidth use, but currently
16848 : sometimes has lower spacing quality. Therefore, the default is
16849 : nil. When browsers get better, this switch can be flipped.
16851 : You can also customize this for each buffer, using something like
16853 : #+MATHJAX: scale:"133" align:"right" mathml:t path:"/MathJax/"
16855 ** org-html-mathjax-options =(quote ((path "http://orgmode....=
16857 :CUSTOM_ID: org-html-mathjax-options
16860 - *Type:* (list :greedy t (list :tag "pa...
16861 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
16862 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-mathjax-options&sr=1][Find modifications in git logs]]
16864 : Options for MathJax setup.
16866 : path The path where to find MathJax
16867 : scale Scaling for the HTML-CSS backend, usually between 100 and 133
16868 : align How to align display math: left, center, or right
16869 : indent If align is not center, how far from the left/right side?
16870 : mathml Should a MathML player be used if available?
16871 : This is faster and reduces bandwidth use, but currently
16872 : sometimes has lower spacing quality. Therefore, the default is
16873 : nil. When browsers get better, this switch can be flipped.
16875 : You can also customize this for each buffer, using something like
16877 : #+MATHJAX: scale:"133" align:"right" mathml:t path:"/MathJax/"
16879 ** org-man-source-highlight =nil=
16881 :CUSTOM_ID: org-man-source-highlight
16885 - *Since:* Emacs version 24.4
16886 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
16887 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-source-highlight&sr=1][Find modifications in git logs]]
16889 : Use GNU source highlight to embellish source blocks
16891 ** org-log-redeadline =nil=
16893 :CUSTOM_ID: org-log-redeadline
16896 - *Type:* (choice (const :tag "No loggin...
16897 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16898 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-redeadline&sr=1][Find modifications in git logs]]
16900 : Information to record when the deadline date of a tasks is modified.
16902 : Possible values are:
16904 : nil Don't add anything, just change the date
16905 : time Add a time stamp to the task
16906 : note Prompt for a note and add it with template `org-log-note-headings'
16908 : This option can also be set with on a per-file-basis with
16910 : #+STARTUP: nologredeadline
16911 : #+STARTUP: logredeadline
16912 : #+STARTUP: lognoteredeadline
16914 : You can have local logging settings for a subtree by setting the LOGGING
16915 : property to one or more of these keywords.
16917 ** org-latex-default-packages-alist =(quote (("AUTO" "inputenc" t) ...=
16919 :CUSTOM_ID: org-latex-default-packages-alist
16922 - *Type:* (repeat (choice (list :tag "op...
16923 - *Since:* Emacs version 24.1
16924 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
16925 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-default-packages-alist&sr=1][Find modifications in git logs]]
16927 : Alist of default packages to be inserted in the header.
16929 : Change this only if one of the packages here causes an
16930 : incompatibility with another package you are using.
16932 : The packages in this list are needed by one part or another of
16933 : Org mode to function properly:
16935 : - inputenc, fontenc: for basic font and character selection
16936 : - amstext: for subscript and superscript
16937 : - textcomp, marvosymb, wasysym, latexsym, amssym: for various
16938 : symbols used for interpreting the entities in `org-entities'.
16939 : You can skip some of these packages if you don't use any of the
16941 : - graphicx: for including images
16942 : - float, wrapfig: for figure placement
16943 : - longtable: for long tables
16944 : - hyperref: for cross references
16946 : Therefore you should not modify this variable unless you know
16947 : what you are doing. The one reason to change it anyway is that
16948 : you might be loading some other package that conflicts with one
16949 : of the default packages. Each cell is of the format
16950 : ( "options" "package" snippet-flag). If SNIPPET-FLAG is t,
16951 : the package also needs to be included when compiling LaTeX
16952 : snippets into images for inclusion into non-LaTeX output.
16954 ** org-habit-graph-column =40=
16956 :CUSTOM_ID: org-habit-graph-column
16960 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
16961 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-graph-column&sr=1][Find modifications in git logs]]
16963 : The absolute column at which to insert habit consistency graphs.
16964 : Note that consistency graphs will overwrite anything else in the buffer.
16966 ** org-list-indent-offset =0=
16968 :CUSTOM_ID: org-list-indent-offset
16972 - *Since:* Emacs version 24.1
16973 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
16974 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-indent-offset&sr=1][Find modifications in git logs]]
16976 : Additional indentation for sub-items in a list.
16977 : By setting this to a small number, usually 1 or 2, one can more
16978 : clearly distinguish sub-items in a list.
16980 ** org-agenda-skip-timestamp-if-deadline-is-shown =nil=
16982 :CUSTOM_ID: org-agenda-skip-timestamp-if-deadline-is-shown
16985 - *Type:* (choice (const :tag "Never" ni...
16986 - *Since:* Emacs version 24.1
16987 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
16988 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-timestamp-if-deadline-is-shown&sr=1][Find modifications in git logs]]
16990 : Non-nil means skip timestamp line if same entry shows because of deadline.
16991 : In the agenda of today, an entry can show up multiple times
16992 : because it has both a plain timestamp and has a nearby deadline.
16993 : When this variable is t, then only the deadline is shown and the
16994 : fact that the entry has a timestamp for or including today is not
16995 : shown. When this variable is nil, the entry will be shown
16998 ** org-feed-retrieve-method =(quote url-retrieve-synchronou...=
17000 :CUSTOM_ID: org-feed-retrieve-method
17003 - *Type:* (choice (const :tag "Internall...
17004 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
17005 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-retrieve-method&sr=1][Find modifications in git logs]]
17007 : The method to be used to retrieve a feed URL.
17008 : This can be `curl' or `wget' to call these external programs, or it can be
17009 : an Emacs Lisp function that will return a buffer containing the content
17010 : of the file pointed to by the URL.
17012 ** org-icalendar-include-body =t=
17014 :CUSTOM_ID: org-icalendar-include-body
17017 - *Type:* (choice (const :tag "Nothing" ...
17018 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
17019 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-include-body&sr=1][Find modifications in git logs]]
17021 : Amount of text below headline to be included in iCalendar export.
17022 : This is a number of characters that should maximally be included.
17023 : Properties, scheduling and clocking lines will always be removed.
17024 : The text will be inserted into the DESCRIPTION field.
17026 ** org-export-email-info =nil=
17028 :CUSTOM_ID: org-export-email-info
17032 - *Since:* Emacs version 24.1
17033 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
17034 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-email-info&sr=1][Find modifications in git logs]]
17036 : Non-nil means insert author name and email into the exported file.
17038 : This option can also be set with the +OPTIONS line,
17041 ** org-agenda-add-entry-text-descriptive-links =t=
17043 :CUSTOM_ID: org-agenda-add-entry-text-descriptive-links
17047 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
17048 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-add-entry-text-descriptive-links&sr=1][Find modifications in git logs]]
17050 : Non-nil means export org-links as descriptive links in agenda added text.
17051 : This variable applies to the text added to the agenda when
17052 : `org-agenda-add-entry-text-maxlines' is larger than 0.
17053 : When this variable nil, the URL will (also) be shown.
17055 ** org-table-number-fraction =0.5=
17057 :CUSTOM_ID: org-table-number-fraction
17061 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
17062 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-number-fraction&sr=1][Find modifications in git logs]]
17064 : Fraction of numbers in a column required to make the column align right.
17065 : In a column all non-white fields are considered. If at least
17066 : this fraction of fields is matched by `org-table-number-regexp',
17067 : alignment to the right border applies.
17069 ** org-publish-sitemap-date-format ="%Y-%m-%d"=
17071 :CUSTOM_ID: org-publish-sitemap-date-format
17075 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
17076 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-sitemap-date-format&sr=1][Find modifications in git logs]]
17078 : Format for printing a date in the sitemap.
17079 : See `format-time-string' for allowed formatters.
17081 ** org-agenda-text-search-extra-files =nil=
17083 :CUSTOM_ID: org-agenda-text-search-extra-files
17086 - *Type:* (set :greedy t (const :tag "Ag...
17087 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17088 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-text-search-extra-files&sr=1][Find modifications in git logs]]
17090 : List of extra files to be searched by text search commands.
17091 : These files will be search in addition to the agenda files by the
17092 : commands `org-search-view' (`C-c a s') and `org-occur-in-agenda-files'.
17093 : Note that these files will only be searched for text search commands,
17094 : not for the other agenda views like todo lists, tag searches or the weekly
17095 : agenda. This variable is intended to list notes and possibly archive files
17096 : that should also be searched by these two commands.
17097 : In fact, if the first element in the list is the symbol `agenda-archives',
17098 : than all archive files of all agenda files will be added to the search
17101 ** org-export-with-author =t=
17103 :CUSTOM_ID: org-export-with-author
17107 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
17108 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-author&sr=1][Find modifications in git logs]]
17110 : Non-nil means insert author name into the exported file.
17111 : This option can also be set with the OPTIONS keyword,
17112 : e.g. "author:nil".
17114 ** org-clock-history-length =5=
17116 :CUSTOM_ID: org-clock-history-length
17120 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
17121 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-history-length&sr=1][Find modifications in git logs]]
17123 : Number of clock tasks to remember in history.
17125 ** org-deadline-warning-days =14=
17127 :CUSTOM_ID: org-deadline-warning-days
17131 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17132 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-deadline-warning-days&sr=1][Find modifications in git logs]]
17134 : Number of days before expiration during which a deadline becomes active.
17135 : This variable governs the display in sparse trees and in the agenda.
17136 : When 0 or negative, it means use this number (the absolute value of it)
17137 : even if a deadline has a different individual lead time specified.
17139 : Custom commands can set this variable in the options section.
17141 ** org-texinfo-inactive-timestamp-format ="@emph{%s}"=
17143 :CUSTOM_ID: org-texinfo-inactive-timestamp-format
17147 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
17148 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-inactive-timestamp-format&sr=1][Find modifications in git logs]]
17150 : A printf format string to be applied to inactive timestamps.
17152 ** org-mobile-index-file ="index.org"=
17154 :CUSTOM_ID: org-mobile-index-file
17158 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
17159 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-index-file&sr=1][Find modifications in git logs]]
17161 : The index file with links to all Org files that should be loaded by MobileOrg.
17162 : Relative to `org-mobile-directory'. The Address field in the MobileOrg setup
17163 : should point to this file.
17165 ** org-export-html-date-format-string ="%Y-%m-%dT%R%z"=
17167 :CUSTOM_ID: org-export-html-date-format-string
17171 - *Since:* Emacs version 24.1
17172 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
17173 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-date-format-string&sr=1][Find modifications in git logs]]
17175 : Format string to format the date and time.
17177 : The default is an extended format of the ISO 8601 specification.
17179 ** org-ctags-path-to-ctags =(case system-type (windows-nt ...=
17181 :CUSTOM_ID: org-ctags-path-to-ctags
17185 - *Since:* Emacs version 24.1
17186 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
17187 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-path-to-ctags&sr=1][Find modifications in git logs]]
17189 : Full path to the ctags executable file.
17191 ** org-html-format-headline-function =nil=
17193 :CUSTOM_ID: org-html-format-headline-function
17197 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
17198 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-format-headline-function&sr=1][Find modifications in git logs]]
17200 : Function to format headline text.
17202 : This function will be called with 5 arguments:
17203 : TODO the todo keyword (string or nil).
17204 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
17205 : PRIORITY the priority of the headline (integer or nil)
17206 : TEXT the main headline text (string).
17207 : TAGS the tags (string or nil).
17209 : The function result will be used in the section format string.
17211 ** org-structure-template-alist =(quote (("s" "#+BEGIN_SRC ?\n\...=
17213 :CUSTOM_ID: org-structure-template-alist
17216 - *Type:* (repeat (string :tag "Key") (s...
17217 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17218 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-structure-template-alist&sr=1][Find modifications in git logs]]
17220 : Structure completion elements.
17221 : This is a list of abbreviation keys and values. The value gets inserted
17222 : if you type `<' followed by the key and then press the completion key,
17223 : usually `M-TAB'. %file will be replaced by a file name after prompting
17224 : for the file using completion. The cursor will be placed at the position
17225 : of the `?` in the template.
17226 : There are two templates for each key, the first uses the original Org syntax,
17227 : the second uses Emacs Muse-like syntax tags. These Muse-like tags become
17228 : the default when the /org-mtags.el/ module has been loaded. See also the
17229 : variable `org-mtags-prefer-muse-templates'.
17231 ** org-export-html-home/up-format ="<div id=\"org-div-home-and-up...=
17233 :CUSTOM_ID: org-export-html-home/up-format
17237 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
17238 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-home/up-format&sr=1][Find modifications in git logs]]
17240 : Snippet used to insert the HOME and UP links.
17241 : This is a format string, the first %s will receive the UP link,
17242 : the second the HOME link. If both `org-export-html-link-up' and
17243 : `org-export-html-link-home' are empty, the entire snippet will be
17246 ** org-tag-persistent-alist =nil=
17248 :CUSTOM_ID: org-tag-persistent-alist
17251 - *Type:* (repeat (choice (cons (string ...
17252 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17253 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tag-persistent-alist&sr=1][Find modifications in git logs]]
17255 : List of tags that will always appear in all Org-mode files.
17256 : This is in addition to any in buffer settings or customizations
17257 : of `org-tag-alist'.
17258 : When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
17259 : The value of this variable is an alist, the car of each entry must be a
17260 : keyword as a string, the cdr may be a character that is used to select
17261 : that tag through the fast-tag-selection interface.
17262 : See the manual for details.
17263 : To disable these tags on a per-file basis, insert anywhere in the file:
17264 : #+STARTUP: noptag
17266 ** org-export-with-sub-superscripts =t=
17268 :CUSTOM_ID: org-export-with-sub-superscripts
17271 - *Type:* (choice (const :tag "Interpret...
17272 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
17273 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-sub-superscripts&sr=1][Find modifications in git logs]]
17275 : Non-nil means interpret "_" and "^" for export.
17277 : When this option is turned on, you can use TeX-like syntax for
17278 : sub- and superscripts. Several characters after "_" or "^"
17279 : will be considered as a single item - so grouping with {} is
17280 : normally not needed. For example, the following things will be
17281 : parsed as single sub- or superscripts.
17283 : 10^24 or 10^tau several digits will be considered 1 item.
17284 : 10^-12 or 10^-tau a leading sign with digits or a word
17285 : x^2-y^3 will be read as x^2 - y^3, because items are
17286 : terminated by almost any nonword/nondigit char.
17287 : x_{i^2} or x^(2-i) braces or parenthesis do grouping.
17289 : Still, ambiguity is possible - so when in doubt use {} to enclose
17290 : the sub/superscript. If you set this variable to the symbol
17291 : `{}', the braces are *required* in order to trigger
17292 : interpretations as sub/superscript. This can be helpful in
17293 : documents that need "_" frequently in plain text.
17295 : This option can also be set with the OPTIONS keyword,
17298 ** org-log-done =nil=
17300 :CUSTOM_ID: org-log-done
17303 - *Type:* (choice (const :tag "No loggin...
17304 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17305 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-done&sr=1][Find modifications in git logs]]
17307 : Information to record when a task moves to the DONE state.
17309 : Possible values are:
17311 : nil Don't add anything, just change the keyword
17312 : time Add a time stamp to the task
17313 : note Prompt for a note and add it with template `org-log-note-headings'
17315 : This option can also be set with on a per-file-basis with
17317 : #+STARTUP: nologdone
17318 : #+STARTUP: logdone
17319 : #+STARTUP: lognotedone
17321 : You can have local logging settings for a subtree by setting the LOGGING
17322 : property to one or more of these keywords.
17324 ** org-use-sub-superscripts =t=
17326 :CUSTOM_ID: org-use-sub-superscripts
17329 - *Type:* (choice (const :tag "Always in...
17330 - *Since:* Emacs version 24.1
17331 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17332 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-sub-superscripts&sr=1][Find modifications in git logs]]
17334 : Non-nil means interpret "_" and "^" for display.
17335 : When this option is turned on, you can use TeX-like syntax for sub- and
17336 : superscripts. Several characters after "_" or "^" will be
17337 : considered as a single item - so grouping with {} is normally not
17338 : needed. For example, the following things will be parsed as single
17339 : sub- or superscripts.
17341 : 10^24 or 10^tau several digits will be considered 1 item.
17342 : 10^-12 or 10^-tau a leading sign with digits or a word
17343 : x^2-y^3 will be read as x^2 - y^3, because items are
17344 : terminated by almost any nonword/nondigit char.
17345 : x_{i^2} or x^(2-i) braces or parenthesis do grouping.
17347 : Still, ambiguity is possible - so when in doubt use {} to enclose
17348 : the sub/superscript. If you set this variable to the symbol
17349 : `{}', the braces are *required* in order to trigger
17350 : interpretations as sub/superscript. This can be helpful in
17351 : documents that need "_" frequently in plain text.
17353 ** org-refile-allow-creating-parent-nodes =nil=
17355 :CUSTOM_ID: org-refile-allow-creating-parent-nodes
17358 - *Type:* (choice (const :tag "Never" ni...
17359 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17360 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-allow-creating-parent-nodes&sr=1][Find modifications in git logs]]
17362 : Non-nil means allow to create new nodes as refile targets.
17363 : New nodes are then created by adding "/new node name" to the completion
17364 : of an existing node. When the value of this variable is `confirm',
17365 : new node creation must be confirmed by the user (recommended)
17366 : When nil, the completion must match an existing entry.
17368 : Note that, if the new heading is not seen by the criteria
17369 : listed in `org-refile-targets', multiple instances of the same
17370 : heading would be created by trying again to file under the new
17373 ** org-export-htmlize-css-font-prefix ="org-"=
17375 :CUSTOM_ID: org-export-htmlize-css-font-prefix
17379 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
17380 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-htmlize-css-font-prefix&sr=1][Find modifications in git logs]]
17382 : The prefix for CSS class names for htmlize font specifications.
17384 ** org-log-note-clock-out =nil=
17386 :CUSTOM_ID: org-log-note-clock-out
17390 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17391 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-note-clock-out&sr=1][Find modifications in git logs]]
17393 : Non-nil means record a note when clocking out of an item.
17394 : This can also be configured on a per-file basis by adding one of
17395 : the following lines anywhere in the buffer:
17397 : #+STARTUP: lognoteclock-out
17398 : #+STARTUP: nolognoteclock-out
17400 ** org-ascii-quote-margin =6=
17402 :CUSTOM_ID: org-ascii-quote-margin
17406 - *Since:* Emacs version 24.4
17407 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
17408 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-quote-margin&sr=1][Find modifications in git logs]]
17410 : Width of margin used for quoting text, in characters.
17411 : This margin is applied on both sides of the text.
17413 ** org-confirm-elisp-link-not-regexp =""=
17415 :CUSTOM_ID: org-confirm-elisp-link-not-regexp
17419 - *Since:* Emacs version 24.1
17420 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17421 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-confirm-elisp-link-not-regexp&sr=1][Find modifications in git logs]]
17423 : A regexp to skip confirmation for Elisp links.
17425 ** org-html-table-default-attributes =(quote (:border "2" :cellspaci...=
17427 :CUSTOM_ID: org-html-table-default-attributes
17430 - *Type:* (plist :key-type (symbol :tag ...
17431 - *Since:* Emacs version 24.4
17432 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
17433 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-default-attributes&sr=1][Find modifications in git logs]]
17435 : Default attributes and values which will be used in table tags.
17436 : This is a plist where attributes are symbols, starting with
17437 : colons, and values are strings.
17439 ** org-table-error-on-row-ref-crossing-hline =t=
17441 :CUSTOM_ID: org-table-error-on-row-ref-crossing-hline
17445 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
17446 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-error-on-row-ref-crossing-hline&sr=1][Find modifications in git logs]]
17448 : OBSOLETE VARIABLE, please see `org-table-relative-ref-may-cross-hline'.
17450 ** org-export-html-table-use-header-tags-for-first-column =nil=
17452 :CUSTOM_ID: org-export-html-table-use-header-tags-for-first-column
17456 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
17457 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-table-use-header-tags-for-first-column&sr=1][Find modifications in git logs]]
17459 : Non-nil means format column one in tables with header tags.
17460 : When nil, also column one will use data tags.
17462 ** org-clock-out-remove-zero-time-clocks =nil=
17464 :CUSTOM_ID: org-clock-out-remove-zero-time-clocks
17468 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
17469 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-out-remove-zero-time-clocks&sr=1][Find modifications in git logs]]
17471 : Non-nil means remove the clock line when the resulting time is zero.
17473 ** org-html-preamble-format =(quote (("en" "")))=
17475 :CUSTOM_ID: org-html-preamble-format
17478 - *Type:* (alist :key-type (string :tag ...
17479 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
17480 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-preamble-format&sr=1][Find modifications in git logs]]
17482 : Alist of languages and format strings for the HTML preamble.
17484 : The first element of each list is the language code, as used for
17485 : the LANGUAGE keyword. See `org-export-default-language'.
17487 : The second element of each list is a format string to format the
17488 : preamble itself. This format string can contain these elements:
17490 : %t stands for the title.
17491 : %a stands for the author's name.
17492 : %e stands for the author's email.
17493 : %d stands for the date.
17494 : %c will be replaced by `org-html-creator-string'.
17495 : %v will be replaced by `org-html-validation-link'.
17496 : %T will be replaced by the export time.
17497 : %C will be replaced by the last modification time.
17499 : If you need to use a "%" character, you need to escape it
17502 : See the default value of `org-html-postamble-format' for an
17505 ** org-export-initial-scope =(quote buffer)=
17507 :CUSTOM_ID: org-export-initial-scope
17510 - *Type:* (choice (const :tag "Export cu...
17511 - *Since:* Emacs version 24.1
17512 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
17513 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-initial-scope&sr=1][Find modifications in git logs]]
17515 : The initial scope when exporting with `org-export-dispatch'.
17516 : This variable can be either set to `buffer' or `subtree'.
17518 ** org-agenda-search-view-max-outline-level =nil=
17520 :CUSTOM_ID: org-agenda-search-view-max-outline-level
17524 - *Since:* Emacs version 24.4
17525 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
17526 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-search-view-max-outline-level&sr=1][Find modifications in git logs]]
17528 : Maximum outline level to display in search view.
17529 : E.g. when this is set to 1, the search view will only
17530 : show headlines of level 1.
17532 ** org-agenda-skip-timestamp-if-done =nil=
17534 :CUSTOM_ID: org-agenda-skip-timestamp-if-done
17538 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
17539 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-timestamp-if-done&sr=1][Find modifications in git logs]]
17541 : Non-nil means don't select item by timestamp or -range if it is DONE.
17543 ** org-log-state-notes-insert-after-drawers =nil=
17545 :CUSTOM_ID: org-log-state-notes-insert-after-drawers
17549 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17550 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-state-notes-insert-after-drawers&sr=1][Find modifications in git logs]]
17552 : Non-nil means insert state change notes after any drawers in entry.
17553 : Only the drawers that *immediately* follow the headline and the
17554 : deadline/scheduled line are skipped.
17555 : When nil, insert notes right after the heading and perhaps the line
17556 : with deadline/scheduling if present.
17558 : This variable will have no effect if `org-log-into-drawer' is
17561 ** org-export-show-temporary-export-buffer =t=
17563 :CUSTOM_ID: org-export-show-temporary-export-buffer
17567 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
17568 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-show-temporary-export-buffer&sr=1][Find modifications in git logs]]
17570 : Non-nil means show buffer after exporting to temp buffer.
17571 : When Org exports to a file, the buffer visiting that file is ever
17572 : shown, but remains buried. However, when exporting to
17573 : a temporary buffer, that buffer is popped up in a second window.
17574 : When this variable is nil, the buffer remains buried also in
17577 ** org-beamer-frame-level =1=
17579 :CUSTOM_ID: org-beamer-frame-level
17583 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
17584 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-frame-level&sr=1][Find modifications in git logs]]
17586 : The level at which headlines become frames.
17588 : Headlines at a lower level will be translated into a sectioning
17589 : structure. At a higher level, they will be translated into
17592 : If a headline with a "BEAMER_env" property set to "frame" is
17593 : found within a tree, its level locally overrides this number.
17595 : This variable has no effect on headlines with the "BEAMER_env"
17596 : property set to either "ignoreheading", "appendix", or
17597 : "note", which will respectively, be invisible, become an
17598 : appendix or a note.
17600 : This integer is relative to the minimal level of a headline
17601 : within the parse tree, defined as 1.
17603 ** org-latex-inactive-timestamp-format ="\\textit{%s}"=
17605 :CUSTOM_ID: org-latex-inactive-timestamp-format
17609 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
17610 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-inactive-timestamp-format&sr=1][Find modifications in git logs]]
17612 : A printf format string to be applied to inactive timestamps.
17614 ** org-agenda-skip-function-global =nil=
17616 :CUSTOM_ID: org-agenda-skip-function-global
17620 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
17621 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-function-global&sr=1][Find modifications in git logs]]
17623 : Function to be called at each match during agenda construction.
17624 : If this function returns nil, the current match should not be skipped.
17625 : If the function decided to skip an agenda match, is must return the
17626 : buffer position from which the search should be continued.
17627 : This may also be a Lisp form, which will be evaluated.
17629 : This variable will be applied to every agenda match, including
17630 : tags/property searches and TODO lists. So try to make the test function
17631 : do its checking as efficiently as possible. To implement a skipping
17632 : condition just for specific agenda commands, use the variable
17633 : `org-agenda-skip-function' which can be set in the options section
17634 : of custom agenda commands.
17636 ** org-confirm-elisp-link-function =(quote yes-or-no-p)=
17638 :CUSTOM_ID: org-confirm-elisp-link-function
17641 - *Type:* (choice (const :tag "with yes-...
17642 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17643 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-confirm-elisp-link-function&sr=1][Find modifications in git logs]]
17645 : Non-nil means ask for confirmation before executing Emacs Lisp links.
17646 : Elisp links can be dangerous: just think about a link
17648 : [[elisp:(shell-command "rm -rf ~/*")][Google Search]]
17650 : This link would show up in your Org-mode document as "Google Search",
17651 : but really it would remove your entire home directory.
17652 : Therefore we advise against setting this variable to nil.
17653 : Just change it to `y-or-n-p' if you want to confirm with a
17654 : single keystroke rather than having to type "yes".
17656 ** org-html-inline-image-rules =(quote (("file" . "\\.\\(jpeg\...=
17658 :CUSTOM_ID: org-html-inline-image-rules
17661 - *Type:* (alist :key-type (string :tag ...
17662 - *Since:* Emacs version 24.4
17663 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
17664 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-inline-image-rules&sr=1][Find modifications in git logs]]
17666 : Rules characterizing image files that can be inlined into HTML.
17667 : A rule consists in an association whose key is the type of link
17668 : to consider, and value is a regexp that will be matched against
17671 ** org-man-pdf-process =(quote ("tbl %f | eqn | groff ...=
17673 :CUSTOM_ID: org-man-pdf-process
17676 - *Type:* (choice (repeat :tag "Shell co...
17677 - *Since:* Emacs version 24.4
17678 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
17679 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-pdf-process&sr=1][Find modifications in git logs]]
17681 : Commands to process a Man file to a PDF file.
17682 : This is a list of strings, each of them will be given to the
17683 : shell as a command. %f in the command will be replaced by the
17684 : full file name, %b by the file base name (i.e. without directory
17685 : and extension parts) and %o by the base directory of the file.
17688 : By default, Org uses 3 runs of to do the processing.
17690 : Alternatively, this may be a Lisp function that does the
17691 : processing. This function should accept the file name as
17692 : its single argument.
17694 ** org-texinfo-active-timestamp-format ="@emph{%s}"=
17696 :CUSTOM_ID: org-texinfo-active-timestamp-format
17700 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
17701 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-active-timestamp-format&sr=1][Find modifications in git logs]]
17703 : A printf format string to be applied to active timestamps.
17705 ** org-agenda-compact-blocks =nil=
17707 :CUSTOM_ID: org-agenda-compact-blocks
17711 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
17712 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-compact-blocks&sr=1][Find modifications in git logs]]
17714 : Non-nil means make the block agenda more compact.
17715 : This is done globally by leaving out lines like the agenda span
17716 : name and week number or the separator lines.
17718 ** org-scheduled-delay-days =0=
17720 :CUSTOM_ID: org-scheduled-delay-days
17724 - *Since:* Emacs version 24.4
17725 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17726 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-scheduled-delay-days&sr=1][Find modifications in git logs]]
17728 : Number of days before a scheduled item becomes active.
17729 : This variable governs the display in sparse trees and in the agenda.
17730 : The default value (i.e. 0) means: don't delay scheduled item.
17731 : When negative, it means use this number (the absolute value of it)
17732 : even if a scheduled item has a different individual delay time
17735 : Custom commands can set this variable in the options section.
17737 ** org-disputed-keys =(quote (([(shift up)] . [(meta...=
17739 :CUSTOM_ID: org-disputed-keys
17743 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17744 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-disputed-keys&sr=1][Find modifications in git logs]]
17746 : Keys for which Org-mode and other modes compete.
17747 : This is an alist, cars are the default keys, second element specifies
17748 : the alternative to use when `org-replace-disputed-keys' is t.
17750 : Keys can be specified in any syntax supported by `define-key'.
17751 : The value of this option takes effect only at Org-mode's startup,
17752 : therefore you'll have to restart Emacs to apply it after changing.
17754 ** org-clock-file-time-cell-format ="*%s*"=
17756 :CUSTOM_ID: org-clock-file-time-cell-format
17760 - *Since:* Emacs version 24.1
17761 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
17762 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-file-time-cell-format&sr=1][Find modifications in git logs]]
17764 : Format string for the file time cells.
17766 ** org-latex-default-table-mode =(quote table)=
17768 :CUSTOM_ID: org-latex-default-table-mode
17771 - *Type:* (choice (const :tag "Table" ta...
17772 - *Since:* Emacs version 24.4
17773 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
17774 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-default-table-mode&sr=1][Find modifications in git logs]]
17776 : Default mode for tables.
17778 : Value can be a symbol among:
17780 : `table' Regular LaTeX table.
17782 : `math' In this mode, every cell is considered as being in math
17783 : mode and the complete table will be wrapped within a math
17784 : environment. It is particularly useful to write matrices.
17786 : `inline-math' This mode is almost the same as `math', but the
17787 : math environment will be inlined.
17789 : `verbatim' The table is exported as it appears in the Org
17790 : buffer, within a verbatim environment.
17792 : This value can be overridden locally with, i.e. ":mode math" in
17793 : LaTeX attributes.
17795 : When modifying this variable, it may be useful to change
17796 : `org-latex-default-table-environment' accordingly.
17798 ** org-log-note-headings =(quote ((done . "CLOSING NOTE ...=
17800 :CUSTOM_ID: org-log-note-headings
17803 - *Type:* (list :greedy t (cons (const :...
17804 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17805 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-note-headings&sr=1][Find modifications in git logs]]
17807 : Headings for notes added to entries.
17808 : The value is an alist, with the car being a symbol indicating the note
17809 : context, and the cdr is the heading to be used. The heading may also be the
17811 : %t in the heading will be replaced by a time stamp.
17812 : %T will be an active time stamp instead the default inactive one
17813 : %d will be replaced by a short-format time stamp.
17814 : %D will be replaced by an active short-format time stamp.
17815 : %s will be replaced by the new TODO state, in double quotes.
17816 : %S will be replaced by the old TODO state, in double quotes.
17817 : %u will be replaced by the user name.
17818 : %U will be replaced by the full user name.
17820 : In fact, it is not a good idea to change the `state' entry, because
17821 : agenda log mode depends on the format of these entries.
17823 ** org-export-taskjuggler-default-project-duration =280=
17825 :CUSTOM_ID: org-export-taskjuggler-default-project-duration
17829 - *Since:* Emacs version 24.1
17830 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
17831 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-default-project-duration&sr=1][Find modifications in git logs]]
17833 : Default project duration if no start and end date have been defined
17834 : in the root node of the task tree, i.e. the tree that has been marked
17835 : with `org-export-taskjuggler-project-tag'
17837 ** org-mobile-action-alist =(quote (("edit" org-mobile-edi...=
17839 :CUSTOM_ID: org-mobile-action-alist
17842 - *Type:* (repeat (cons (string :tag "Ac...
17843 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
17844 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-action-alist&sr=1][Find modifications in git logs]]
17846 : Alist with flags and actions for mobile sync.
17847 : When flagging an entry, MobileOrg will create entries that look like
17849 : * F(action:data) [[id:entry-id][entry title]]
17851 : This alist defines that the ACTION in the parentheses of F() should mean,
17852 : i.e. what action should be taken. The :data part in the parenthesis is
17853 : optional. If present, the string after the colon will be passed to the
17854 : action form as the `data' variable.
17855 : The car of each elements of the alist is an actions string. The cdr is
17856 : an Emacs Lisp form that will be evaluated with the cursor on the headline
17859 : For now, it is not recommended to change this variable.
17861 ** org-todo-interpretation =(quote sequence)=
17863 :CUSTOM_ID: org-todo-interpretation
17866 - *Type:* (choice (const sequence) (cons...
17867 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17868 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-interpretation&sr=1][Find modifications in git logs]]
17870 : Controls how TODO keywords are interpreted.
17871 : This variable is in principle obsolete and is only used for
17872 : backward compatibility, if the interpretation of todo keywords is
17873 : not given already in `org-todo-keywords'. See that variable for
17874 : more information.
17876 ** org-publish-sitemap-sort-folders =(quote first)=
17878 :CUSTOM_ID: org-publish-sitemap-sort-folders
17882 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
17883 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-sitemap-sort-folders&sr=1][Find modifications in git logs]]
17885 : A symbol, denoting if folders are sorted first in sitemaps.
17886 : Possible values are `first', `last', and nil.
17887 : If `first', folders will be sorted before files.
17888 : If `last', folders are sorted to the end after the files.
17889 : Any other value will not mix files and folders.
17891 : You can overwrite this default per project in your
17892 : `org-publish-project-alist', using `:sitemap-sort-folders'.
17894 ** org-catch-invisible-edits =nil=
17896 :CUSTOM_ID: org-catch-invisible-edits
17899 - *Type:* (choice (const :tag "Do not ch...
17900 - *Since:* Emacs version 24.1
17901 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17902 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-catch-invisible-edits&sr=1][Find modifications in git logs]]
17904 : Check if in invisible region before inserting or deleting a character.
17905 : Valid values are:
17907 : nil Do not check, so just do invisible edits.
17908 : error Throw an error and do nothing.
17909 : show Make point visible, and do the requested edit.
17910 : show-and-error Make point visible, then throw an error and abort the edit.
17911 : smart Make point visible, and do insertion/deletion if it is
17912 : adjacent to visible text and the change feels predictable.
17913 : Never delete a previously invisible character or add in the
17914 : middle or right after an invisible region. Basically, this
17915 : allows insertion and backward-delete right before ellipses.
17916 : FIXME: maybe in this case we should not even show?
17918 ** org-activate-links =(quote (bracket angle plain ra...=
17920 :CUSTOM_ID: org-activate-links
17923 - *Type:* (set :greedy t (const :tag "Do...
17924 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17925 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-activate-links&sr=1][Find modifications in git logs]]
17927 : Types of links that should be activated in Org-mode files.
17928 : This is a list of symbols, each leading to the activation of a certain link
17929 : type. In principle, it does not hurt to turn on most link types - there may
17930 : be a small gain when turning off unused link types. The types are:
17932 : bracket The recommended [[link][description]] or [[link]] links with hiding.
17933 : angle Links in angular brackets that may contain whitespace like
17934 : <bbdb:Carsten Dominik>.
17935 : plain Plain links in normal text, no whitespace, like http://google.com.
17936 : radio Text that is matched by a radio target, see manual for details.
17937 : tag Tag settings in a headline (link to tag search).
17938 : date Time stamps (link to calendar).
17939 : footnote Footnote labels.
17941 : Changing this variable requires a restart of Emacs to become effective.
17943 ** org-babel-exp-code-template ="#+BEGIN_SRC %lang%flags\n%bod...=
17945 :CUSTOM_ID: org-babel-exp-code-template
17949 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
17950 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-exp-code-template&sr=1][Find modifications in git logs]]
17952 : Template used to export the body of code blocks.
17953 : This template may be customized to include additional information
17954 : such as the code block name, or the values of particular header
17955 : arguments. The template is filled out using `org-fill-template',
17956 : and the following %keys may be used.
17958 : lang ------ the language of the code block
17959 : name ------ the name of the code block
17960 : body ------ the body of the code block
17961 : flags ----- the flags passed to the code block
17963 : In addition to the keys mentioned above, every header argument
17964 : defined for the code block may be used as a key and will be
17965 : replaced with its value.
17967 ** org-descriptive-links =t=
17969 :CUSTOM_ID: org-descriptive-links
17973 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
17974 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-descriptive-links&sr=1][Find modifications in git logs]]
17976 : Non-nil means Org will display descriptive links.
17977 : E.g. [[http://orgmode.org][Org website]] will be displayed as
17978 : "Org Website", hiding the link itself and just displaying its
17979 : description. When set to `nil', Org will display the full links
17982 : You can interactively set the value of this variable by calling
17983 : `org-toggle-link-display' or from the menu Org>Hyperlinks menu.
17985 ** org-export-mark-todo-in-toc =nil=
17987 :CUSTOM_ID: org-export-mark-todo-in-toc
17991 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
17992 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-mark-todo-in-toc&sr=1][Find modifications in git logs]]
17994 : Non-nil means mark TOC lines that contain any open TODO items.
17996 ** org-enable-table-editor =(quote optimized)=
17998 :CUSTOM_ID: org-enable-table-editor
18001 - *Type:* (choice (const :tag "off" nil)...
18002 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18003 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-enable-table-editor&sr=1][Find modifications in git logs]]
18005 : Non-nil means lines starting with "|" are handled by the table editor.
18006 : When nil, such lines will be treated like ordinary lines.
18008 : When equal to the symbol `optimized', the table editor will be optimized to
18009 : do the following:
18010 : - Automatic overwrite mode in front of whitespace in table fields.
18011 : This makes the structure of the table stay in tact as long as the edited
18012 : field does not exceed the column width.
18013 : - Minimize the number of realigns. Normally, the table is aligned each time
18014 : TAB or RET are pressed to move to another field. With optimization this
18015 : happens only if changes to a field might have changed the column width.
18016 : Optimization requires replacing the functions `self-insert-command',
18017 : `delete-char', and `backward-delete-char' in Org-mode buffers, with a
18018 : slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
18019 : very good at guessing when a re-align will be necessary, but you can always
18020 : force one with \[org-ctrl-c-ctrl-c].
18022 : If you would like to use the optimized version in Org-mode, but the
18023 : un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
18025 : This variable can be used to turn on and off the table editor during a session,
18026 : but in order to toggle optimization, a restart is required.
18028 : See also the variable `org-table-auto-blank-field'.
18030 ** org-fast-tag-selection-single-key =nil=
18032 :CUSTOM_ID: org-fast-tag-selection-single-key
18035 - *Type:* (choice (const :tag "No" nil) ...
18036 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18037 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fast-tag-selection-single-key&sr=1][Find modifications in git logs]]
18039 : Non-nil means fast tag selection exits after first change.
18040 : When nil, you have to press RET to exit it.
18041 : During fast tag selection, you can toggle this flag with `C-c'.
18042 : This variable can also have the value `expert'. In this case, the window
18043 : displaying the tags menu is not even shown, until you press C-c again.
18045 ** org-clock-task-overrun-text =nil=
18047 :CUSTOM_ID: org-clock-task-overrun-text
18050 - *Type:* (choice (const :tag "Just mark...
18051 - *Since:* Emacs version 24.1
18052 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
18053 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-task-overrun-text&sr=1][Find modifications in git logs]]
18055 : Extra mode line text to indicate that the clock is overrun.
18056 : The can be nil to indicate that instead of adding text, the clock time
18057 : should get a different face (`org-mode-line-clock-overrun').
18058 : When this is a string, it is prepended to the clock string as an indication,
18059 : also using the face `org-mode-line-clock-overrun'.
18061 ** org-id-link-to-org-use-id =nil=
18063 :CUSTOM_ID: org-id-link-to-org-use-id
18066 - *Type:* (choice (const :tag "Create ID...
18067 - *Since:* Emacs version 24.3
18068 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
18069 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-link-to-org-use-id&sr=1][Find modifications in git logs]]
18071 : Non-nil means storing a link to an Org file will use entry IDs.
18073 : The variable can have the following values:
18075 : t Create an ID if needed to make a link to the current entry.
18077 : create-if-interactive
18078 : If `org-store-link' is called directly (interactively, as a user
18079 : command), do create an ID to support the link. But when doing the
18080 : job for capture, only use the ID if it already exists. The
18081 : purpose of this setting is to avoid proliferation of unwanted
18082 : IDs, just because you happen to be in an Org file when you
18083 : call `org-capture' that automatically and preemptively creates a
18084 : link. If you do want to get an ID link in a capture template to
18085 : an entry not having an ID, create it first by explicitly creating
18086 : a link to it, using `C-c C-l' first.
18088 : create-if-interactive-and-no-custom-id
18089 : Like create-if-interactive, but do not create an ID if there is
18090 : a CUSTOM_ID property defined in the entry.
18093 : Use existing ID, do not create one.
18095 : nil Never use an ID to make a link, instead link using a text search for
18096 : the headline text.
18098 ** org-hide-leading-stars =nil=
18100 :CUSTOM_ID: org-hide-leading-stars
18104 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18105 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-leading-stars&sr=1][Find modifications in git logs]]
18107 : Non-nil means hide the first N-1 stars in a headline.
18108 : This works by using the face `org-hide' for these stars. This
18109 : face is white for a light background, and black for a dark
18110 : background. You may have to customize the face `org-hide' to
18112 : Changing it requires restart of `font-lock-mode' to become effective
18113 : also in regions already fontified.
18114 : You may also set this on a per-file basis by adding one of the following
18115 : lines to the buffer:
18117 : #+STARTUP: hidestars
18118 : #+STARTUP: showstars
18120 ** org-export-taskjuggler-default-reports =(quote ("taskreport \"Gantt Ch...=
18122 :CUSTOM_ID: org-export-taskjuggler-default-reports
18125 - *Type:* (repeat (string :tag "Report")...
18126 - *Since:* Emacs version 24.1
18127 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
18128 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-default-reports&sr=1][Find modifications in git logs]]
18130 : Default reports for the project.
18132 ** org-cycle-include-plain-lists =t=
18134 :CUSTOM_ID: org-cycle-include-plain-lists
18137 - *Type:* (choice (const :tag "Never" ni...
18138 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
18139 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-include-plain-lists&sr=1][Find modifications in git logs]]
18141 : When t, make TAB cycle visibility on plain list items.
18142 : Cycling plain lists works only when the cursor is on a plain list
18143 : item. When the cursor is on an outline heading, plain lists are
18144 : treated as text. This is the most stable way of handling this,
18145 : which is why it is the default.
18147 : When this is the symbol `integrate', then integrate plain list
18148 : items when cycling, as if they were children of outline headings.
18150 : This setting can lead to strange effects when switching visibility
18151 : to `children', because the first "child" in a subtree decides
18152 : what children should be listed. If that first "child" is a
18153 : plain list item with an implied large level number, all true
18154 : children and grand children of the outline heading will be
18155 : exposed in a children' view.
18157 ** org-odt-pixels-per-inch =display-pixels-per-inch=
18159 :CUSTOM_ID: org-odt-pixels-per-inch
18163 - *Since:* Emacs version 24.1
18164 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
18165 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-pixels-per-inch&sr=1][Find modifications in git logs]]
18167 : Scaling factor for converting images pixels to inches.
18168 : Use this for sizing of embedded images. See Info node `(org)
18169 : Images in ODT export' for more information.
18171 ** org-capture-templates =nil=
18173 :CUSTOM_ID: org-capture-templates
18176 - *Type:* (repeat (choice :value ("" "" ...
18177 - *Since:* Emacs version 24.1
18178 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
18179 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-templates&sr=1][Find modifications in git logs]]
18181 : Templates for the creation of new entries.
18183 : Each entry is a list with the following items:
18185 : keys The keys that will select the template, as a string, characters
18186 : only, for example "a" for a template to be selected with a
18187 : single key, or "bt" for selection with two keys. When using
18188 : several keys, keys using the same prefix key must be together
18189 : in the list and preceded by a 2-element entry explaining the
18190 : prefix key, for example
18192 : ("b" "Templates for marking stuff to buy")
18194 : The "C" key is used by default for quick access to the
18195 : customization of the template variable. But if you want to use
18196 : that key for a template, you can.
18198 : description A short string describing the template, will be shown during
18201 : type The type of entry. Valid types are:
18202 : entry an Org-mode node, with a headline. Will be
18203 : filed as the child of the target entry or as
18204 : a top-level entry.
18205 : item a plain list item, will be placed in the
18206 : first plain list at the target
18208 : checkitem a checkbox item. This differs from the
18209 : plain list item only is so far as it uses a
18210 : different default template.
18211 : table-line a new line in the first table at target location.
18212 : plain text to be inserted as it is.
18214 : target Specification of where the captured item should be placed.
18215 : In Org-mode files, targets usually define a node. Entries will
18216 : become children of this node, other types will be added to the
18217 : table or list in the body of this node.
18219 : Most target specifications contain a file name. If that file
18220 : name is the empty string, it defaults to `org-default-notes-file'.
18221 : A file can also be given as a variable, function, or Emacs Lisp
18224 : Valid values are:
18226 : (file "path/to/file")
18227 : Text will be placed at the beginning or end of that file
18229 : (id "id of existing org entry")
18230 : File as child of this entry, or in the body of the entry
18232 : (file+headline "path/to/file" "node headline")
18233 : Fast configuration if the target heading is unique in the file
18235 : (file+olp "path/to/file" "Level 1 heading" "Level 2" ...)
18236 : For non-unique headings, the full path is safer
18238 : (file+regexp "path/to/file" "regexp to find location")
18239 : File to the entry matching regexp
18241 : (file+datetree "path/to/file")
18242 : Will create a heading in a date tree for today's date
18244 : (file+datetree+prompt "path/to/file")
18245 : Will create a heading in a date tree, prompts for date
18247 : (file+function "path/to/file" function-finding-location)
18248 : A function to find the right location in the file
18251 : File to the entry that is currently being clocked
18253 : (function function-finding-location)
18254 : Most general way, write your own function to find both
18255 : file and location
18257 : template The template for creating the capture item. If you leave this
18258 : empty, an appropriate default template will be used. See below
18259 : for more details. Instead of a string, this may also be one of
18261 : (file "/path/to/template-file")
18262 : (function function-returning-the-template)
18264 : in order to get a template from a file, or dynamically
18267 : The rest of the entry is a property list of additional options. Recognized
18270 : :prepend Normally newly captured information will be appended at
18271 : the target location (last child, last table line,
18272 : last list item...). Setting this property will
18275 : :immediate-finish When set, do not offer to edit the information, just
18276 : file it away immediately. This makes sense if the
18277 : template only needs information that can be added
18280 : :jump-to-captured When set, jump to the captured entry when finished.
18282 : :empty-lines Set this to the number of lines the should be inserted
18283 : before and after the new item. Default 0, only common
18284 : other value is 1.
18286 : :empty-lines-before Set this to the number of lines the should be inserted
18287 : before the new item. Overrides :empty-lines for the
18288 : number lines inserted before.
18290 : :empty-lines-after Set this to the number of lines the should be inserted
18291 : after the new item. Overrides :empty-lines for the
18292 : number of lines inserted after.
18294 : :clock-in Start the clock in this item.
18296 : :clock-keep Keep the clock running when filing the captured entry.
18298 : :clock-resume Start the interrupted clock when finishing the capture.
18299 : Note that :clock-keep has precedence over :clock-resume.
18300 : When setting both to `t', the current clock will run and
18301 : the previous one will not be resumed.
18303 : :unnarrowed Do not narrow the target buffer, simply show the
18304 : full buffer. Default is to narrow it so that you
18305 : only see the new stuff.
18307 : :table-line-pos Specification of the location in the table where the
18308 : new line should be inserted. It should be a string like
18309 : "II-3", meaning that the new line should become the
18310 : third line before the second horizontal separator line.
18312 : :kill-buffer If the target file was not yet visited by a buffer when
18313 : capture was invoked, kill the buffer again after capture
18316 : The template defines the text to be inserted. Often this is an
18317 : org-mode entry (so the first line should start with a star) that
18318 : will be filed as a child of the target headline. It can also be
18319 : freely formatted text. Furthermore, the following %-escapes will
18320 : be replaced with content and expanded in this order:
18322 : %[pathname] Insert the contents of the file given by `pathname'.
18323 : %(sexp) Evaluate elisp `(sexp)' and replace it with the results.
18324 : For convenience, %:keyword (see below) placeholders within
18325 : the expression will be expanded prior to this.
18326 : %<...> The result of format-time-string on the ... format specification.
18327 : %t Time stamp, date only.
18328 : %T Time stamp with date and time.
18329 : %u, %U Like the above, but inactive time stamps.
18330 : %i Initial content, copied from the active region. If %i is
18331 : indented, the entire inserted text will be indented as well.
18332 : %a Annotation, normally the link created with `org-store-link'.
18333 : %A Like %a, but prompt for the description part.
18334 : %l Like %a, but only insert the literal link.
18335 : %c Current kill ring head.
18336 : %x Content of the X clipboard.
18337 : %k Title of currently clocked task.
18338 : %K Link to currently clocked task.
18339 : %n User name (taken from the variable `user-full-name').
18340 : %f File visited by current buffer when org-capture was called.
18341 : %F Full path of the file or directory visited by current buffer.
18342 : %:keyword Specific information for certain link types, see below.
18343 : %^g Prompt for tags, with completion on tags in target file.
18344 : %^G Prompt for tags, with completion on all tags in all agenda files.
18345 : %^t Like %t, but prompt for date. Similarly %^T, %^u, %^U.
18346 : You may define a prompt like: %^{Please specify birthday}t
18347 : %^C Interactive selection of which kill or clip to use.
18348 : %^L Like %^C, but insert as link.
18349 : %^{prop}p Prompt the user for a value for property `prop'.
18350 : %^{prompt} Prompt the user for a string and replace this sequence with it.
18351 : A default value and a completion table ca be specified like this:
18352 : %^{prompt|default|completion2|completion3|...}.
18353 : %? After completing the template, position cursor here.
18354 : %\n Insert the text entered at the nth %^{prompt}, where `n' is
18355 : a number, starting from 1.
18357 : Apart from these general escapes, you can access information specific to
18358 : the link type that is created. For example, calling `org-capture' in emails
18359 : or in Gnus will record the author and the subject of the message, which you
18360 : can access with "%:from" and "%:subject", respectively. Here is a
18361 : complete list of what is recorded for each link type.
18363 : Link type | Available information
18364 : ------------------------+------------------------------------------------------
18365 : bbdb | %:type %:name %:company
18366 : vm, wl, mh, mew, rmail, | %:type %:subject %:message-id
18367 : gnus | %:from %:fromname %:fromaddress
18368 : | %:to %:toname %:toaddress
18369 : | %:fromto (either "to NAME" or "from NAME")
18370 : | %:date %:date-timestamp (as active timestamp)
18371 : | %:date-timestamp-inactive (as inactive timestamp)
18372 : gnus | %:group, for messages also all email fields
18373 : w3, w3m | %:type %:url
18374 : info | %:type %:file %:node
18375 : calendar | %:type %:date
18377 ** org-babel-python-mode =(if (or (featurep (quote xemac...=
18379 :CUSTOM_ID: org-babel-python-mode
18383 - *Since:* Emacs version 24.4
18384 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-python.el;hb=HEAD][ob-python.el]]
18385 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-python-mode&sr=1][Find modifications in git logs]]
18387 : Preferred python mode for use in running python interactively.
18388 : This will typically be either 'python or 'python-mode.
18390 ** org-agenda-sorting-strategy =(quote ((agenda habit-down tim...=
18392 :CUSTOM_ID: org-agenda-sorting-strategy
18395 - *Type:* (choice (repeat :tag "General"...
18396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
18397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-sorting-strategy&sr=1][Find modifications in git logs]]
18399 : Sorting structure for the agenda items of a single day.
18400 : This is a list of symbols which will be used in sequence to determine
18401 : if an entry should be listed before another entry. The following
18402 : symbols are recognized:
18404 : time-up Put entries with time-of-day indications first, early first
18405 : time-down Put entries with time-of-day indications first, late first
18406 : timestamp-up Sort by any timestamp, early first
18407 : timestamp-down Sort by any timestamp, late first
18408 : scheduled-up Sort by scheduled timestamp, early first
18409 : scheduled-down Sort by scheduled timestamp, late first
18410 : deadline-up Sort by deadline timestamp, early first
18411 : deadline-down Sort by deadline timestamp, late first
18412 : ts-up Sort by active timestamp, early first
18413 : ts-down Sort by active timestamp, late first
18414 : tsia-up Sort by inactive timestamp, early first
18415 : tsia-down Sort by inactive timestamp, late first
18416 : category-keep Keep the default order of categories, corresponding to the
18417 : sequence in `org-agenda-files'.
18418 : category-up Sort alphabetically by category, A-Z.
18419 : category-down Sort alphabetically by category, Z-A.
18420 : tag-up Sort alphabetically by last tag, A-Z.
18421 : tag-down Sort alphabetically by last tag, Z-A.
18422 : priority-up Sort numerically by priority, high priority last.
18423 : priority-down Sort numerically by priority, high priority first.
18424 : todo-state-up Sort by todo state, tasks that are done last.
18425 : todo-state-down Sort by todo state, tasks that are done first.
18426 : effort-up Sort numerically by estimated effort, high effort last.
18427 : effort-down Sort numerically by estimated effort, high effort first.
18428 : user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
18429 : user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
18430 : habit-up Put entries that are habits first
18431 : habit-down Put entries that are habits last
18432 : alpha-up Sort headlines alphabetically
18433 : alpha-down Sort headlines alphabetically, reversed
18435 : The different possibilities will be tried in sequence, and testing stops
18436 : if one comparison returns a "not-equal". For example, the default
18437 : '(time-up category-keep priority-down)
18438 : means: Pull out all entries having a specified time of day and sort them,
18439 : in order to make a time schedule for the current day the first thing in the
18440 : agenda listing for the day. Of the entries without a time indication, keep
18441 : the grouped in categories, don't sort the categories, but keep them in
18442 : the sequence given in `org-agenda-files'. Within each category sort by
18445 : Leaving out `category-keep' would mean that items will be sorted across
18446 : categories by priority.
18448 : Instead of a single list, this can also be a set of list for specific
18449 : contents, with a context symbol in the car of the list, any of
18450 : `agenda', `todo', `tags', `search' for the corresponding agenda views.
18452 : Custom commands can bind this variable in the options section.
18454 ** org-log-into-drawer =nil=
18456 :CUSTOM_ID: org-log-into-drawer
18459 - *Type:* (choice (const :tag "Not into ...
18460 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18461 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-into-drawer&sr=1][Find modifications in git logs]]
18463 : Non-nil means insert state change notes and time stamps into a drawer.
18464 : When nil, state changes notes will be inserted after the headline and
18465 : any scheduling and clock lines, but not inside a drawer.
18467 : The value of this variable should be the name of the drawer to use.
18468 : LOGBOOK is proposed as the default drawer for this purpose, you can
18469 : also set this to a string to define the drawer of your choice.
18471 : A value of t is also allowed, representing "LOGBOOK".
18473 : A value of t or nil can also be set with on a per-file-basis with
18475 : #+STARTUP: logdrawer
18476 : #+STARTUP: nologdrawer
18478 : If this variable is set, `org-log-state-notes-insert-after-drawers'
18481 : You can set the property LOG_INTO_DRAWER to overrule this setting for
18484 ** org-table-relative-ref-may-cross-hline =t=
18486 :CUSTOM_ID: org-table-relative-ref-may-cross-hline
18489 - *Type:* (choice (const :tag "Allow to ...
18490 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
18491 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-relative-ref-may-cross-hline&sr=1][Find modifications in git logs]]
18493 : Non-nil means relative formula references may cross hlines.
18494 : Here are the allowed values:
18496 : nil Relative references may not cross hlines. They will reference the
18497 : field next to the hline instead. Coming from below, the reference
18498 : will be to the field below the hline. Coming from above, it will be
18499 : to the field above.
18500 : t Relative references may cross hlines.
18501 : error An attempt to cross a hline will throw an error.
18503 : It is probably good to never set this variable to nil, for the sake of
18504 : portability of tables.
18506 ** org-mobile-files-exclude-regexp =""=
18508 :CUSTOM_ID: org-mobile-files-exclude-regexp
18512 - *Since:* Emacs version 24.1
18513 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
18514 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-files-exclude-regexp&sr=1][Find modifications in git logs]]
18516 : A regexp to exclude files from `org-mobile-files'.
18518 ** org-hidden-keywords =nil=
18520 :CUSTOM_ID: org-hidden-keywords
18523 - *Type:* (set (const :tag "#+AUTHOR" au...
18524 - *Since:* Emacs version 24.1
18525 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18526 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hidden-keywords&sr=1][Find modifications in git logs]]
18528 : List of symbols corresponding to keywords to be hidden the org buffer.
18529 : For example, a value '(title) for this list will make the document's title
18530 : appear in the buffer without the initial #+TITLE: keyword.
18532 ** org-tag-faces =nil=
18534 :CUSTOM_ID: org-tag-faces
18537 - *Type:* (repeat (cons (string :tag "Ta...
18538 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
18539 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tag-faces&sr=1][Find modifications in git logs]]
18541 : Faces for specific tags.
18542 : This is a list of cons cells, with tags in the car and faces in the cdr.
18543 : The face can be a symbol, a foreground color (in which case the rest is
18544 : inherited from the `org-tag' face) or a property list of attributes,
18545 : like (:foreground "blue" :weight bold :underline t).
18546 : If you set this variable through customize, it will immediately be effective
18547 : in new buffers and in modified lines.
18548 : If you set it with Lisp, a restart of Emacs is required to activate the
18551 ** org-agenda-window-frame-fractions =(quote (0.5 . 0.75))=
18553 :CUSTOM_ID: org-agenda-window-frame-fractions
18556 - *Type:* (cons (number :tag "Minimum") ...
18557 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
18558 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-window-frame-fractions&sr=1][Find modifications in git logs]]
18560 : The min and max height of the agenda window as a fraction of frame height.
18561 : The value of the variable is a cons cell with two numbers between 0 and 1.
18562 : It only matters if `org-agenda-window-setup' is `reorganize-frame'.
18564 ** org-export-html-todo-kwd-class-prefix =""=
18566 :CUSTOM_ID: org-export-html-todo-kwd-class-prefix
18570 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
18571 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-todo-kwd-class-prefix&sr=1][Find modifications in git logs]]
18573 : Prefix to class names for TODO keywords.
18574 : Each TODO keyword gets a class given by the keyword itself, with this prefix.
18575 : The default prefix is empty because it is nice to just use the keyword
18576 : as a class name. But if you get into conflicts with other, existing
18577 : CSS classes, then this prefix can be very useful.
18579 ** org-time-clocksum-use-fractional =nil=
18581 :CUSTOM_ID: org-time-clocksum-use-fractional
18585 - *Since:* Emacs version 24.3
18586 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18587 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-clocksum-use-fractional&sr=1][Find modifications in git logs]]
18589 : When non-nil, \[org-clock-display] uses fractional times.
18590 : See `org-time-clocksum-format' for more on time clock formats.
18592 ** org-export-html-mathjax-template ="<script type=\"text/javascrip...=
18594 :CUSTOM_ID: org-export-html-mathjax-template
18598 - *Since:* Emacs version 24.1
18599 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
18600 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-mathjax-template&sr=1][Find modifications in git logs]]
18602 : The MathJax setup for XHTML files.
18604 ** org-publish-list-skipped-files =t=
18606 :CUSTOM_ID: org-publish-list-skipped-files
18610 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
18611 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-list-skipped-files&sr=1][Find modifications in git logs]]
18613 : Non-nil means show message about files *not* published.
18615 ** org-ascii-global-margin =0=
18617 :CUSTOM_ID: org-ascii-global-margin
18621 - *Since:* Emacs version 24.4
18622 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
18623 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-global-margin&sr=1][Find modifications in git logs]]
18625 : Width of the left margin, in number of characters.
18627 ** org-default-notes-file =(convert-standard-filename "~/...=
18629 :CUSTOM_ID: org-default-notes-file
18632 - *Type:* (choice (const :tag "Default f...
18633 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18634 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-default-notes-file&sr=1][Find modifications in git logs]]
18636 : Default target for storing notes.
18637 : Used as a fall back file for org-remember.el and org-capture.el, for
18638 : templates that do not specify a target file.
18640 ** org-html-htmlize-font-prefix ="org-"=
18642 :CUSTOM_ID: org-html-htmlize-font-prefix
18646 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
18647 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-htmlize-font-prefix&sr=1][Find modifications in git logs]]
18649 : The prefix for CSS class names for htmlize font specifications.
18651 ** org-rss-use-entry-url-as-guid =t=
18653 :CUSTOM_ID: org-rss-use-entry-url-as-guid
18657 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
18658 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-use-entry-url-as-guid&sr=1][Find modifications in git logs]]
18660 : Use the URL for the <guid> metatag?
18661 : When nil, Org will create ids using `org-icalendar-create-uid'.
18663 ** org-fontify-emphasized-text =t=
18665 :CUSTOM_ID: org-fontify-emphasized-text
18669 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18670 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fontify-emphasized-text&sr=1][Find modifications in git logs]]
18672 : Non-nil means fontify *bold*, /italic/ and _underlined_ text.
18673 : Changing this variable requires a restart of Emacs to take effect.
18675 ** org-agenda-custom-commands-contexts =nil=
18677 :CUSTOM_ID: org-agenda-custom-commands-contexts
18680 - *Type:* (repeat (list :tag "Rule" (str...
18681 - *Since:* Emacs version 24.3
18682 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
18683 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-custom-commands-contexts&sr=1][Find modifications in git logs]]
18685 : Alist of custom agenda keys and contextual rules.
18687 : For example, if you have a custom agenda command "p" and you
18688 : want this command to be accessible only from plain text files,
18691 : '(("p" ((in-file . "\.txt"))))
18693 : Here are the available contexts definitions:
18695 : in-file: command displayed only in matching files
18696 : in-mode: command displayed only in matching modes
18697 : not-in-file: command not displayed in matching files
18698 : not-in-mode: command not displayed in matching modes
18699 : in-buffer: command displayed only in matching buffers
18700 : not-in-buffer: command not displayed in matching buffers
18701 : [function]: a custom function taking no argument
18703 : If you define several checks, the agenda command will be
18704 : accessible if there is at least one valid check.
18706 : You can also bind a key to another agenda custom command
18707 : depending on contextual rules.
18709 : '(("p" "q" ((in-file . "\.txt"))))
18711 : Here it means: in .txt files, use "p" as the key for the
18712 : agenda command otherwise associated with "q". (The command
18713 : originally associated with "q" is not displayed to avoid
18716 ** org-read-date-display-live =t=
18718 :CUSTOM_ID: org-read-date-display-live
18722 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18723 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-read-date-display-live&sr=1][Find modifications in git logs]]
18725 : Non-nil means display current interpretation of date prompt live.
18726 : This display will be in an overlay, in the minibuffer.
18728 ** org-export-html-extension ="html"=
18730 :CUSTOM_ID: org-export-html-extension
18734 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
18735 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-extension&sr=1][Find modifications in git logs]]
18737 : The extension for exported HTML files.
18739 ** org-columns-default-format ="%25ITEM %TODO %3PRIORITY %TAG...=
18741 :CUSTOM_ID: org-columns-default-format
18745 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18746 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-default-format&sr=1][Find modifications in git logs]]
18748 : The default column format, if no other format has been defined.
18749 : This variable can be set on the per-file basis by inserting a line
18751 : #+COLUMNS: %25ITEM .....
18753 ** org-auto-align-tags =t=
18755 :CUSTOM_ID: org-auto-align-tags
18759 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18760 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-auto-align-tags&sr=1][Find modifications in git logs]]
18762 : Non-nil keeps tags aligned when modifying headlines.
18763 : Some operations (i.e. demoting) change the length of a headline and
18764 : therefore shift the tags around. With this option turned on, after
18765 : each such operation the tags are again aligned to `org-tags-column'.
18767 ** org-protocol-data-separator ="/+\\|\\?"=
18769 :CUSTOM_ID: org-protocol-data-separator
18773 - *Since:* Emacs version 24.4
18774 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
18775 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-data-separator&sr=1][Find modifications in git logs]]
18777 : The default data separator to use.
18778 : This should be a single regexp string.
18780 ** org-id-uuid-program ="uuidgen"=
18782 :CUSTOM_ID: org-id-uuid-program
18786 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
18787 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-uuid-program&sr=1][Find modifications in git logs]]
18789 : The uuidgen program.
18791 ** org-table-number-regexp ="^\\([<>]?[-+^.0-9]*[0-9][-+^....=
18793 :CUSTOM_ID: org-table-number-regexp
18796 - *Type:* (choice (const :tag "Positive ...
18797 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
18798 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-number-regexp&sr=1][Find modifications in git logs]]
18800 : Regular expression for recognizing numbers in table columns.
18801 : If a table column contains mostly numbers, it will be aligned to the
18802 : right. If not, it will be aligned to the left.
18804 : The default value of this option is a regular expression which allows
18805 : anything which looks remotely like a number as used in scientific
18806 : context. For example, all of the following will be considered a
18808 : 12 12.2 2.4e-08 2x10^12 4.034+-0.02 2.7(10) >3.5
18810 : Other options offered by the customize interface are more restrictive.
18812 ** org-latex-classes =(quote (("article" "\\document...=
18814 :CUSTOM_ID: org-latex-classes
18817 - *Type:* (repeat (list (string :tag "La...
18818 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
18819 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-classes&sr=1][Find modifications in git logs]]
18821 : Alist of LaTeX classes and associated header and structure.
18822 : If #+LATEX_CLASS is set in the buffer, use its value and the
18823 : associated information. Here is the structure of each cell:
18827 : (numbered-section . unnumbered-section)
18830 : The header string
18831 : -----------------
18833 : The HEADER-STRING is the header that will be inserted into the
18834 : LaTeX file. It should contain the \documentclass macro, and
18835 : anything else that is needed for this setup. To this header, the
18836 : following commands will be added:
18838 : - Calls to \usepackage for all packages mentioned in the
18839 : variables `org-latex-default-packages-alist' and
18840 : `org-latex-packages-alist'. Thus, your header definitions
18841 : should avoid to also request these packages.
18843 : - Lines specified via "#+LATEX_HEADER:" and
18844 : "#+LATEX_HEADER_EXTRA:" keywords.
18846 : If you need more control about the sequence in which the header
18847 : is built up, or if you want to exclude one of these building
18848 : blocks for a particular class, you can use the following
18849 : macro-like placeholders.
18851 : [DEFAULT-PACKAGES] \usepackage statements for default packages
18852 : [NO-DEFAULT-PACKAGES] do not include any of the default packages
18853 : [PACKAGES] \usepackage statements for packages
18854 : [NO-PACKAGES] do not include the packages
18855 : [EXTRA] the stuff from #+LATEX_HEADER(_EXTRA)
18856 : [NO-EXTRA] do not include #+LATEX_HEADER(_EXTRA) stuff
18860 : \documentclass{article}
18861 : [NO-DEFAULT-PACKAGES]
18863 : \providecommand{\alert}[1]{\textbf{#1}}
18866 : will omit the default packages, and will include the
18867 : #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
18868 : to \providecommand, and then place \usepackage commands based
18869 : on the content of `org-latex-packages-alist'.
18871 : If your header, `org-latex-default-packages-alist' or
18872 : `org-latex-packages-alist' inserts
18873 : "\usepackage[AUTO]{inputenc}", AUTO will automatically be
18874 : replaced with a coding system derived from
18875 : `buffer-file-coding-system'. See also the variable
18876 : `org-latex-inputenc-alist' for a way to influence this mechanism.
18878 : The sectioning structure
18879 : ------------------------
18881 : The sectioning structure of the class is given by the elements
18882 : following the header string. For each sectioning level, a number
18883 : of strings is specified. A %s formatter is mandatory in each
18884 : section string and will be replaced by the title of the section.
18886 : Instead of a cons cell (numbered . unnumbered), you can also
18887 : provide a list of 2 or 4 elements,
18889 : (numbered-open numbered-close)
18893 : (numbered-open numbered-close unnumbered-open unnumbered-close)
18895 : providing opening and closing strings for a LaTeX environment
18896 : that should represent the document section. The opening clause
18897 : should have a %s to represent the section title.
18899 : Instead of a list of sectioning commands, you can also specify
18900 : a function name. That function will be called with two
18901 : parameters, the (reduced) level of the headline, and a predicate
18902 : non-nil when the headline should be numbered. It must return
18903 : a format string in which the section title will be added.
18905 ** org-columns-ellipses =".."=
18907 :CUSTOM_ID: org-columns-ellipses
18911 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
18912 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-columns-ellipses&sr=1][Find modifications in git logs]]
18914 : The ellipses to be used when a field in column view is truncated.
18915 : When this is the empty string, as many characters as possible are shown,
18916 : but then there will be no visual indication that the field has been truncated.
18917 : When this is a string of length N, the last N characters of a truncated
18918 : field are replaced by this string. If the column is narrower than the
18919 : ellipses string, only part of the ellipses string will be shown.
18921 ** org-priority-faces =nil=
18923 :CUSTOM_ID: org-priority-faces
18926 - *Type:* (repeat (cons (character :tag ...
18927 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
18928 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-priority-faces&sr=1][Find modifications in git logs]]
18930 : Faces for specific Priorities.
18931 : This is a list of cons cells, with priority character in the car
18932 : and faces in the cdr. The face can be a symbol, a color as
18933 : as a string, or a property list of attributes, like
18934 : (:foreground "blue" :weight bold :underline t).
18935 : If it is a color string, the variable `org-faces-easy-properties'
18936 : determines if it is a foreground or a background color.
18938 ** org-babel-exp-call-line-template =""=
18940 :CUSTOM_ID: org-babel-exp-call-line-template
18944 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-exp.el;hb=HEAD][ob-exp.el]]
18945 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-exp-call-line-template&sr=1][Find modifications in git logs]]
18947 : Template used to export call lines.
18948 : This template may be customized to include the call line name
18949 : with any export markup. The template is filled out using
18950 : `org-fill-template', and the following %keys may be used.
18952 : line --- call line
18954 : An example value would be "\n: call: %line" to export the call line
18955 : wrapped in a verbatim environment.
18957 : Note: the results are inserted separately after the contents of
18960 ** org-ditaa-eps-jar-path =(expand-file-name "DitaaEps.ja...=
18962 :CUSTOM_ID: org-ditaa-eps-jar-path
18966 - *Since:* Emacs version 24.4
18967 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-ditaa.el;hb=HEAD][ob-ditaa.el]]
18968 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ditaa-eps-jar-path&sr=1][Find modifications in git logs]]
18970 : Path to the DitaaEps.jar executable.
18972 ** org-latex-format-drawer-function =nil=
18974 :CUSTOM_ID: org-latex-format-drawer-function
18978 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
18979 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-format-drawer-function&sr=1][Find modifications in git logs]]
18981 : Function called to format a drawer in LaTeX code.
18983 : The function must accept two parameters:
18984 : NAME the drawer name, like "LOGBOOK"
18985 : CONTENTS the contents of the drawer.
18987 : The function should return the string to be exported.
18989 : For example, the variable could be set to the following function
18990 : in order to mimic default behaviour:
18992 : (defun org-latex-format-drawer-default (name contents)
18993 : "Format a drawer element for LaTeX export."
18996 ** org-mobile-agendas =(quote all)=
18998 :CUSTOM_ID: org-mobile-agendas
19001 - *Type:* (choice (const :tag "Default A...
19002 - *Since:* Emacs version 24.1
19003 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
19004 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-agendas&sr=1][Find modifications in git logs]]
19006 : The agendas that should be pushed to MobileOrg.
19009 : default the weekly agenda and the global TODO list
19010 : custom all custom agendas defined by the user
19011 : all the custom agendas and the default ones
19012 : list a list of selection key(s) as string.
19014 ** org-agenda-persistent-marks =nil=
19016 :CUSTOM_ID: org-agenda-persistent-marks
19020 - *Since:* Emacs version 24.1
19021 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19022 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-persistent-marks&sr=1][Find modifications in git logs]]
19024 : Non-nil means marked items will stay marked after a bulk action.
19025 : You can toggle this interactively by typing `p' when prompted for a
19028 ** org-show-siblings =(quote ((default) (isearch t) ...=
19030 :CUSTOM_ID: org-show-siblings
19033 - *Type:* (choice (const :tag "Always" t...
19034 - *Since:* Emacs version 24.4
19035 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19036 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-siblings&sr=1][Find modifications in git logs]]
19038 : Non-nil means show all sibling heading when revealing a location.
19039 : Org-mode often shows locations in an org-mode file which might have
19040 : been invisible before. When this is set, the sibling of the current entry
19041 : heading are all made visible. If `org-show-hierarchy-above' is t,
19042 : the same happens on each level of the hierarchy above the current entry.
19044 : By default this is on for the isearch context, off for all other contexts.
19045 : Turning this off for example for sparse trees makes them very compact,
19046 : but makes it harder to edit the location of the match. In such a case,
19047 : use the command \[org-reveal] to show more context.
19048 : Instead of t, this can also be an alist specifying this option for different
19049 : contexts. See `org-show-hierarchy-above' for valid contexts.
19051 ** org-effort-durations =(\` (("h" . 60) ("d" \, (* 60 ...=
19053 :CUSTOM_ID: org-effort-durations
19056 - *Type:* (alist :key-type (string :tag ...
19057 - *Since:* Emacs version 24.1
19058 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19059 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-effort-durations&sr=1][Find modifications in git logs]]
19061 : Conversion factor to minutes for an effort modifier.
19063 : Each entry has the form (MODIFIER . MINUTES).
19065 : In an effort string, a number followed by MODIFIER is multiplied
19066 : by the specified number of MINUTES to obtain an effort in
19069 : For example, if the value of this variable is (("hours" . 60)), then an
19070 : effort string "2hours" is equivalent to 120 minutes.
19072 ** org-level-color-stars-only =nil=
19074 :CUSTOM_ID: org-level-color-stars-only
19078 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19079 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-level-color-stars-only&sr=1][Find modifications in git logs]]
19081 : Non-nil means fontify only the stars in each headline.
19082 : When nil, the entire headline is fontified.
19083 : Changing it requires restart of `font-lock-mode' to become effective
19084 : also in regions already fontified.
19086 ** org-archive-tag ="ARCHIVE"=
19088 :CUSTOM_ID: org-archive-tag
19092 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19093 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-tag&sr=1][Find modifications in git logs]]
19095 : The tag that marks a subtree as archived.
19096 : An archived subtree does not open during visibility cycling, and does
19097 : not contribute to the agenda listings.
19098 : After changing this, font-lock must be restarted in the relevant buffers to
19099 : get the proper fontification.
19101 ** org-agenda-with-colors =t=
19103 :CUSTOM_ID: org-agenda-with-colors
19107 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19108 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-with-colors&sr=1][Find modifications in git logs]]
19110 : Non-nil means use colors in agenda views.
19112 ** org-mobile-encryption-tempfile ="~/orgtmpcrypt"=
19114 :CUSTOM_ID: org-mobile-encryption-tempfile
19117 - *Type:* directory
19118 - *Since:* Emacs version 24.1
19119 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
19120 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-encryption-tempfile&sr=1][Find modifications in git logs]]
19122 : File that is being used as a temporary file for encryption.
19123 : This must be local file on your local machine (not on the WebDAV server).
19124 : You might want to put this file into a directory where only you have access.
19126 ** org-texinfo-default-class ="info"=
19128 :CUSTOM_ID: org-texinfo-default-class
19131 - *Type:* (string :tag "Texinfo class")
19132 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
19133 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-default-class&sr=1][Find modifications in git logs]]
19135 : The default Texinfo class.
19137 ** org-man-tables-centered =t=
19139 :CUSTOM_ID: org-man-tables-centered
19143 - *Since:* Emacs version 24.4
19144 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
19145 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-tables-centered&sr=1][Find modifications in git logs]]
19147 : When non-nil, tables are exported in a center environment.
19149 ** org-agenda-follow-indirect =nil=
19151 :CUSTOM_ID: org-agenda-follow-indirect
19155 - *Since:* Emacs version 24.1
19156 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19157 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-follow-indirect&sr=1][Find modifications in git logs]]
19159 : Non-nil means `org-agenda-follow-mode' displays only the
19160 : current item's tree, in an indirect buffer.
19162 ** org-agenda-start-with-entry-text-mode =nil=
19164 :CUSTOM_ID: org-agenda-start-with-entry-text-mode
19168 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19169 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-start-with-entry-text-mode&sr=1][Find modifications in git logs]]
19171 : The initial value of entry-text-mode in a newly created agenda window.
19173 ** org-crypt-disable-auto-save =(quote ask)=
19175 :CUSTOM_ID: org-crypt-disable-auto-save
19178 - *Type:* (choice (const :tag "Always" t...
19179 - *Since:* Emacs version 24.1
19180 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
19181 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-crypt-disable-auto-save&sr=1][Find modifications in git logs]]
19183 : What org-decrypt should do if `auto-save-mode' is enabled.
19185 : t : Disable auto-save-mode for the current buffer
19186 : prior to decrypting an entry.
19188 : nil : Leave auto-save-mode enabled.
19189 : This may cause data to be written to disk unencrypted!
19191 : 'ask : Ask user whether or not to disable auto-save-mode
19192 : for the current buffer.
19194 : 'encrypt : Leave auto-save-mode enabled for the current buffer,
19195 : but automatically re-encrypt all decrypted entries
19196 : *before* auto-saving.
19197 : NOTE: This only works for entries which have a tag
19198 : that matches `org-crypt-tag-matcher'.
19200 ** org-calendar-insert-diary-entry-key =[105]=
19202 :CUSTOM_ID: org-calendar-insert-diary-entry-key
19206 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19207 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-insert-diary-entry-key&sr=1][Find modifications in git logs]]
19209 : The key to be installed in `calendar-mode-map' for adding diary entries.
19210 : This option is irrelevant until `org-agenda-diary-file' has been configured
19211 : to point to an Org-mode file. When that is the case, the command
19212 : `org-agenda-diary-entry' will be bound to the key given here, by default
19213 : `i'. In the calendar, `i' normally adds entries to `diary-file'. So
19214 : if you want to continue doing this, you need to change this to a different
19217 ** org-ctrl-k-protect-subtree =nil=
19219 :CUSTOM_ID: org-ctrl-k-protect-subtree
19222 - *Type:* (choice (const :tag "Do not pr...
19223 - *Since:* Emacs version 24.1
19224 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19225 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctrl-k-protect-subtree&sr=1][Find modifications in git logs]]
19227 : Non-nil means, do not delete a hidden subtree with C-k.
19228 : When set to the symbol `error', simply throw an error when C-k is
19229 : used to kill (part-of) a headline that has hidden text behind it.
19230 : Any other non-nil value will result in a query to the user, if it is
19231 : OK to kill that hidden subtree. When nil, kill without remorse.
19233 ** org-ascii-bullets =(quote ((ascii 42 43 45) (lati...=
19235 :CUSTOM_ID: org-ascii-bullets
19238 - *Type:* (list (cons :tag "Bullet chara...
19239 - *Since:* Emacs version 24.4
19240 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
19241 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-bullets&sr=1][Find modifications in git logs]]
19243 : Bullet characters for headlines converted to lists in ASCII export.
19245 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
19246 : and whose value is a list of characters.
19248 : The first character is used for the first level considered as low
19249 : level, and so on. If there are more levels than characters given
19250 : here, the list will be repeated.
19252 : Note that this variable doesn't affect plain lists
19255 ** org-mouse-punctuation =":"=
19257 :CUSTOM_ID: org-mouse-punctuation
19261 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mouse.el;hb=HEAD][org-mouse.el]]
19262 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-punctuation&sr=1][Find modifications in git logs]]
19264 : Punctuation used when inserting text by drag and drop.
19266 ** org-hierarchical-todo-statistics =t=
19268 :CUSTOM_ID: org-hierarchical-todo-statistics
19272 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19273 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hierarchical-todo-statistics&sr=1][Find modifications in git logs]]
19275 : Non-nil means TODO statistics covers just direct children.
19276 : When nil, all entries in the subtree are considered.
19277 : This has only an effect if `org-provide-todo-statistics' is set.
19278 : To set this to nil for only a single subtree, use a COOKIE_DATA
19279 : property and include the word "recursive" into the value.
19281 ** org-html-mathjax-template ="<script type=\"text/javascrip...=
19283 :CUSTOM_ID: org-html-mathjax-template
19287 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
19288 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-mathjax-template&sr=1][Find modifications in git logs]]
19290 : The MathJax setup for XHTML files.
19292 ** org-agenda-timerange-leaders =(quote ("" "(%d/%d): "))=
19294 :CUSTOM_ID: org-agenda-timerange-leaders
19297 - *Type:* (list (string :tag "Deadline t...
19298 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19299 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-timerange-leaders&sr=1][Find modifications in git logs]]
19301 : Text preceding timerange entries in the agenda view.
19302 : This is a list with two strings. The first applies when the range
19303 : is entirely on one day. The second applies if the range spans several days.
19304 : The strings may have two "%d" format specifiers which will be filled
19305 : with the sequence number of the days, and the total number of days in the
19306 : range, respectively.
19308 ** org-agenda-block-separator =61=
19310 :CUSTOM_ID: org-agenda-block-separator
19313 - *Type:* (choice (const :tag "Disabled"...
19314 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19315 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-block-separator&sr=1][Find modifications in git logs]]
19317 : The separator between blocks in the agenda.
19318 : If this is a string, it will be used as the separator, with a newline added.
19319 : If it is a character, it will be repeated to fill the window width.
19320 : If nil the separator is disabled. In `org-agenda-custom-commands' this
19321 : addresses the separator between the current and the previous block.
19323 ** org-src-tab-acts-natively =nil=
19325 :CUSTOM_ID: org-src-tab-acts-natively
19329 - *Since:* Emacs version 24.1
19330 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
19331 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-tab-acts-natively&sr=1][Find modifications in git logs]]
19333 : If non-nil, the effect of TAB in a code block is as if it were
19334 : issued in the language major mode buffer.
19336 ** org-agenda-span =(quote week)=
19338 :CUSTOM_ID: org-agenda-span
19341 - *Type:* (choice (const :tag "Day" day)...
19342 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19343 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-span&sr=1][Find modifications in git logs]]
19345 : Number of days to include in overview display.
19346 : Can be day, week, month, year, or any number of days.
19347 : Custom commands can set this variable in the options section.
19349 ** org-habit-show-habits-only-for-today =t=
19351 :CUSTOM_ID: org-habit-show-habits-only-for-today
19355 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
19356 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-show-habits-only-for-today&sr=1][Find modifications in git logs]]
19358 : If non-nil, only show habits on today's agenda, and not for future days.
19359 : Note that even when shown for future days, the graph is always
19360 : relative to the current effective date.
19362 ** org-clock-out-switch-to-state =nil=
19364 :CUSTOM_ID: org-clock-out-switch-to-state
19367 - *Type:* (choice (const :tag "Don't for...
19368 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
19369 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-out-switch-to-state&sr=1][Find modifications in git logs]]
19371 : Set task to a special todo state after clocking out.
19372 : The value should be the state to which the entry should be
19373 : switched. If the value is a function, it must take one
19374 : parameter (the current TODO state of the item) and return the
19375 : state to switch it to.
19377 ** org-export-with-clocks =nil=
19379 :CUSTOM_ID: org-export-with-clocks
19383 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
19384 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-clocks&sr=1][Find modifications in git logs]]
19386 : Non-nil means export CLOCK keywords.
19387 : This option can also be set with the OPTIONS keyword,
19390 ** org-inlinetask-min-level =15=
19392 :CUSTOM_ID: org-inlinetask-min-level
19395 - *Type:* (choice (const :tag "Off" nil)...
19396 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-inlinetask.el;hb=HEAD][org-inlinetask.el]]
19397 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-inlinetask-min-level&sr=1][Find modifications in git logs]]
19399 : Minimum level a headline must have before it is treated as an inline task.
19400 : Don't set it to something higher than `29' or clocking will break since this
19401 : is the hardcoded maximum number of stars `org-clock-sum' will work with.
19403 : It is strongly recommended that you set `org-cycle-max-level' not at all,
19404 : or to a number smaller than this one. In fact, when `org-cycle-max-level' is
19405 : not set, it will be assumed to be one less than the value of smaller than
19406 : the value of this variable.
19408 ** org-agenda-start-with-follow-mode =nil=
19410 :CUSTOM_ID: org-agenda-start-with-follow-mode
19414 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19415 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-start-with-follow-mode&sr=1][Find modifications in git logs]]
19417 : The initial value of follow mode in a newly created agenda window.
19419 ** org-agenda-confirm-kill =1=
19421 :CUSTOM_ID: org-agenda-confirm-kill
19424 - *Type:* (choice (const :tag "Never" ni...
19425 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19426 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-confirm-kill&sr=1][Find modifications in git logs]]
19428 : When set, remote killing from the agenda buffer needs confirmation.
19429 : When t, a confirmation is always needed. When a number N, confirmation is
19430 : only needed when the text to be killed contains more than N non-white lines.
19432 ** org-clock-clocked-in-display =(quote mode-line)=
19434 :CUSTOM_ID: org-clock-clocked-in-display
19437 - *Type:* (choice (const :tag "Mode line...
19438 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
19439 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-clocked-in-display&sr=1][Find modifications in git logs]]
19441 : When clocked in for a task, org-mode can display the current
19442 : task and accumulated time in the mode line and/or frame title.
19443 : Allowed values are:
19445 : both displays in both mode line and frame title
19446 : mode-line displays only in mode line (default)
19447 : frame-title displays only in frame title
19448 : nil current clock is not displayed
19450 ** org-agenda-cmp-user-defined =nil=
19452 :CUSTOM_ID: org-agenda-cmp-user-defined
19456 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19457 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-cmp-user-defined&sr=1][Find modifications in git logs]]
19459 : A function to define the comparison `user-defined'.
19460 : This function must receive two arguments, agenda entry a and b.
19461 : If a>b, return +1. If a<b, return -1. If they are equal as seen by
19462 : the user comparison, return nil.
19463 : When this is defined, you can make `user-defined-up' and `user-defined-down'
19464 : part of an agenda sorting strategy.
19466 ** org-attach-method =(quote cp)=
19468 :CUSTOM_ID: org-attach-method
19471 - *Type:* (choice (const :tag "Copy" cp)...
19472 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
19473 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-method&sr=1][Find modifications in git logs]]
19475 : The preferred method to attach a file.
19476 : Allowed values are:
19478 : mv rename the file to move it into the attachment directory
19480 : ln create a hard link. Note that this is not supported
19481 : on all systems, and then the result is not defined.
19482 : lns create a symbol link. Note that this is not supported
19483 : on all systems, and then the result is not defined.
19485 ** org-export-with-planning =nil=
19487 :CUSTOM_ID: org-export-with-planning
19491 - *Since:* Emacs version 24.4
19492 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
19493 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-planning&sr=1][Find modifications in git logs]]
19495 : Non-nil means include planning info in export.
19497 : Planning info is the line containing either SCHEDULED:,
19498 : DEADLINE:, CLOSED: time-stamps, or a combination of them.
19500 : This option can also be set with the OPTIONS keyword,
19503 ** org-odt-use-date-fields =nil=
19505 :CUSTOM_ID: org-odt-use-date-fields
19509 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
19510 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-use-date-fields&sr=1][Find modifications in git logs]]
19512 : Non-nil, if timestamps should be exported as date fields.
19514 : When nil, export timestamps as plain text.
19516 : When non-nil, map `org-time-stamp-custom-formats' to a pair of
19517 : OpenDocument date-styles with names "OrgDate1" and "OrgDate2"
19518 : respectively. A timestamp with no time component is formatted
19519 : with style "OrgDate1" while one with explicit hour and minutes
19520 : is formatted with style "OrgDate2".
19522 : This feature is experimental. Most (but not all) of the common
19523 : %-specifiers in `format-time-string' are supported.
19524 : Specifically, locale-dependent specifiers like "%c", "%x" are
19525 : formatted as canonical Org timestamps. For finer control, avoid
19526 : these %-specifiers.
19528 : Textutal specifiers like "%b", "%h", "%B", "%a", "%A"
19529 : etc., are displayed by the application in the default language
19530 : and country specified in `org-odt-styles-file'. Note that the
19531 : default styles file uses language "en" and country "GB". You
19532 : can localize the week day and month strings in the exported
19533 : document by setting the default language and country either using
19534 : the application UI or through a custom styles file.
19536 : See `org-odt--build-date-styles' for implementation details.
19538 ** org-agenda-columns-add-appointments-to-effort-sum =nil=
19540 :CUSTOM_ID: org-agenda-columns-add-appointments-to-effort-sum
19544 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19545 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-columns-add-appointments-to-effort-sum&sr=1][Find modifications in git logs]]
19547 : Non-nil means the duration of an appointment will add to day effort.
19548 : The property to which appointment durations will be added is the one given
19549 : in the option `org-effort-property'. If an appointment does not have
19550 : an end time, `org-agenda-default-appointment-duration' will be used. If that
19551 : is not set, an appointment without end time will not contribute to the time
19554 ** org-agenda-todo-ignore-deadlines =nil=
19556 :CUSTOM_ID: org-agenda-todo-ignore-deadlines
19559 - *Type:* (choice (const :tag "Ignore ne...
19560 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19561 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-ignore-deadlines&sr=1][Find modifications in git logs]]
19563 : Non-nil means ignore some deadlined TODO items when making TODO list.
19564 : There are different motivations for using different values, please think
19565 : carefully when configuring this variable.
19567 : This applies when creating the global todo list.
19568 : Valid values are:
19570 : near Don't show near deadline entries. A deadline is near when it is
19571 : closer than `org-deadline-warning-days' days. The idea behind this
19572 : is that such items will appear in the agenda anyway.
19574 : far Don't show TODO entries where a deadline has been defined, but
19575 : the deadline is not near. This is useful if you don't want to
19576 : use the todo list to figure out what to do now.
19578 : past Don't show entries with a deadline timestamp for today or in the past.
19580 : future Don't show entries with a deadline timestamp in the future, not even
19581 : when they become `near' ones. Use it with caution.
19583 : all Ignore all TODO entries that do have a deadline.
19585 : t Same as `near', for backward compatibility.
19587 : This variable can also have an integer as a value. See
19588 : `org-agenda-todo-ignore-timestamp' for more details.
19590 : See also `org-agenda-todo-ignore-with-date'.
19591 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
19592 : to make his option also apply to the tags-todo list.
19594 ** org-attach-allow-inheritance =t=
19596 :CUSTOM_ID: org-attach-allow-inheritance
19600 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
19601 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-allow-inheritance&sr=1][Find modifications in git logs]]
19603 : Non-nil means allow attachment directories be inherited.
19605 ** org-indent-mode-turns-on-hiding-stars =t=
19607 :CUSTOM_ID: org-indent-mode-turns-on-hiding-stars
19611 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
19612 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-mode-turns-on-hiding-stars&sr=1][Find modifications in git logs]]
19614 : Non-nil means setting the variable `org-indent-mode' will turn on `org-hide-leading-stars'.
19616 ** org-export-html-link-up =""=
19618 :CUSTOM_ID: org-export-html-link-up
19621 - *Type:* (string :tag "File or URL")
19622 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
19623 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-link-up&sr=1][Find modifications in git logs]]
19625 : Where should the "UP" link of exported HTML pages lead?
19627 ** org-bibtex-type-property-name ="btype"=
19629 :CUSTOM_ID: org-bibtex-type-property-name
19633 - *Since:* Emacs version 24.1
19634 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
19635 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-type-property-name&sr=1][Find modifications in git logs]]
19637 : Property in which to store bibtex entry type (e.g., article).
19639 ** org-html-link-up =""=
19641 :CUSTOM_ID: org-html-link-up
19644 - *Type:* (string :tag "File or URL")
19645 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
19646 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-link-up&sr=1][Find modifications in git logs]]
19648 : Where should the "UP" link of exported HTML pages lead?
19650 ** org-feed-save-after-adding =t=
19652 :CUSTOM_ID: org-feed-save-after-adding
19656 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
19657 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-save-after-adding&sr=1][Find modifications in git logs]]
19659 : Non-nil means save buffer after adding new feed items.
19661 ** org-export-html-table-align-individual-fields =t=
19663 :CUSTOM_ID: org-export-html-table-align-individual-fields
19667 - *Since:* Emacs version 24.1
19668 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
19669 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-table-align-individual-fields&sr=1][Find modifications in git logs]]
19671 : Non-nil means attach style attributes for alignment to each table field.
19672 : When nil, alignment will only be specified in the column tags, but this
19673 : is ignored by some browsers (like Firefox, Safari). Opera does it right
19676 ** org-agenda-jump-prefer-future =(quote org-read-date-prefer-fu...=
19678 :CUSTOM_ID: org-agenda-jump-prefer-future
19681 - *Type:* (choice (const :tag "Use org-r...
19682 - *Since:* Emacs version 24.1
19683 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19684 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-jump-prefer-future&sr=1][Find modifications in git logs]]
19686 : Should the agenda jump command prefer the future for incomplete dates?
19687 : The default is to do the same as configured in `org-read-date-prefer-future'.
19688 : But you can also set a deviating value here.
19689 : This may t or nil, or the symbol `org-read-date-prefer-future'.
19691 ** org-texinfo-format-headline-function =nil=
19693 :CUSTOM_ID: org-texinfo-format-headline-function
19697 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
19698 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-format-headline-function&sr=1][Find modifications in git logs]]
19700 : Function to format headline text.
19702 : This function will be called with 5 arguments:
19703 : TODO the todo keyword (string or nil).
19704 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
19705 : PRIORITY the priority of the headline (integer or nil)
19706 : TEXT the main headline text (string).
19707 : TAGS the tags as a list of strings (list of strings or nil).
19709 : The function result will be used in the section format string.
19711 : As an example, one could set the variable to the following, in
19712 : order to reproduce the default set-up:
19714 : (defun org-texinfo-format-headline (todo todo-type priority text tags)
19715 : "Default format function for a headline."
19716 : (concat (when todo
19717 : (format "\\textbf{\\textsc{\\textsf{%s}}} " todo))
19719 : (format "\\framebox{\\#%c} " priority))
19722 : (format "\\hfill{}\\textsc{%s}"
19723 : (mapconcat 'identity tags ":"))))
19725 ** org-export-backends =(quote (ascii html icalendar l...=
19727 :CUSTOM_ID: org-export-backends
19730 - *Type:* (set :greedy t (const :tag " ...
19731 - *Since:* Emacs version 24.4
19732 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
19733 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-backends&sr=1][Find modifications in git logs]]
19735 : List of export back-ends that should be always available.
19737 : If a description starts with <C>, the file is not part of Emacs
19738 : and loading it will require that you have downloaded and properly
19739 : installed the Org mode distribution.
19741 : Unlike to `org-modules', libraries in this list will not be
19742 : loaded along with Org, but only once the export framework is
19745 : This variable needs to be set before org.el is loaded. If you
19746 : need to make a change while Emacs is running, use the customize
19747 : interface or run the following code, where VALUE stands for the
19748 : new value of the variable, after updating it:
19751 : (setq org-export-registered-backends
19752 : (org-remove-if-not
19753 : (lambda (backend)
19754 : (or (memq backend val)
19758 : (and (org-export-derived-backend-p b (car backend))
19759 : (throw 'parentp t)))
19762 : org-export-registered-backends))
19763 : (let ((new-list (mapcar 'car org-export-registered-backends)))
19764 : (dolist (backend val)
19766 : ((not (load (format "ox-%s" backend) t t))
19767 : (message "Problems while trying to load export back-end `%s'"
19769 : ((not (memq backend new-list)) (push backend new-list))))
19770 : (set-default var new-list)))
19772 : Adding a back-end to this list will also pull the back-end it
19773 : depends on, if any.
19775 ** org-format-latex-signal-error =t=
19777 :CUSTOM_ID: org-format-latex-signal-error
19781 - *Since:* Emacs version 24.1
19782 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19783 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-format-latex-signal-error&sr=1][Find modifications in git logs]]
19785 : Non-nil means signal an error when image creation of LaTeX snippets fails.
19786 : When nil, just push out a message.
19788 ** org-latex-minted-langs =(quote ((emacs-lisp "common-li...=
19790 :CUSTOM_ID: org-latex-minted-langs
19793 - *Type:* (repeat (list (symbol :tag "Ma...
19794 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
19795 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-minted-langs&sr=1][Find modifications in git logs]]
19797 : Alist mapping languages to their minted language counterpart.
19798 : The key is a symbol, the major mode symbol without the "-mode".
19799 : The value is the string that should be inserted as the language
19800 : parameter for the minted package. If the mode name and the
19801 : listings name are the same, the language does not need an entry
19802 : in this list - but it does not hurt if it is present.
19804 : Note that minted uses all lower case for language identifiers,
19805 : and that the full list of language identifiers can be obtained
19808 : pygmentize -L lexers
19810 ** org-edit-src-content-indentation =2=
19812 :CUSTOM_ID: org-edit-src-content-indentation
19816 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
19817 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-content-indentation&sr=1][Find modifications in git logs]]
19819 : Indentation for the content of a source code block.
19820 : This should be the number of spaces added to the indentation of the #+begin
19821 : line in order to compute the indentation of the block content after
19822 : editing it with \[org-edit-src-code]. Has no effect if
19823 : `org-src-preserve-indentation' is non-nil.
19825 ** org-agenda-format-date =(quote org-agenda-format-date-...=
19827 :CUSTOM_ID: org-agenda-format-date
19830 - *Type:* (choice (string :tag "Format s...
19831 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
19832 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-format-date&sr=1][Find modifications in git logs]]
19834 : Format string for displaying dates in the agenda.
19835 : Used by the daily/weekly agenda and by the timeline. This should be
19836 : a format string understood by `format-time-string', or a function returning
19837 : the formatted date as a string. The function must take a single argument,
19838 : a calendar-style date list like (month day year).
19840 ** org-cycle-global-at-bob =nil=
19842 :CUSTOM_ID: org-cycle-global-at-bob
19846 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
19847 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-global-at-bob&sr=1][Find modifications in git logs]]
19849 : Cycle globally if cursor is at beginning of buffer and not at a headline.
19850 : This makes it possible to do global cycling without having to use S-TAB or
19851 : \[universal-argument] TAB. For this special case to work, the first line
19852 : of the buffer must not be a headline -- it may be empty or some other text.
19853 : When used in this way, `org-cycle-hook' is disabled temporarily to make
19854 : sure the cursor stays at the beginning of the buffer. When this option is
19855 : nil, don't do anything special at the beginning of the buffer.
19857 ** org-html-use-unicode-chars =nil=
19859 :CUSTOM_ID: org-html-use-unicode-chars
19863 - *Since:* Emacs version 24.4
19864 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
19865 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-use-unicode-chars&sr=1][Find modifications in git logs]]
19867 : Non-nil means to use unicode characters instead of HTML entities.
19869 ** org-edit-src-turn-on-auto-save =nil=
19871 :CUSTOM_ID: org-edit-src-turn-on-auto-save
19875 - *Since:* Emacs version 24.4
19876 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
19877 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-turn-on-auto-save&sr=1][Find modifications in git logs]]
19879 : Non-nil means turn `auto-save-mode' on when editing a source block.
19880 : This will save the content of the source code editing buffer into
19881 : a newly created file, not the base buffer for this source block.
19883 : If you want to regularily save the base buffer instead of the source
19884 : code editing buffer, see `org-edit-src-auto-save-idle-delay' instead.
19886 ** org-html-tag-class-prefix =""=
19888 :CUSTOM_ID: org-html-tag-class-prefix
19892 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
19893 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-tag-class-prefix&sr=1][Find modifications in git logs]]
19895 : Prefix to class names for TODO keywords.
19896 : Each tag gets a class given by the tag itself, with this prefix.
19897 : The default prefix is empty because it is nice to just use the keyword
19898 : as a class name. But if you get into conflicts with other, existing
19899 : CSS classes, then this prefix can be very useful.
19901 ** org-latex-tables-centered =t=
19903 :CUSTOM_ID: org-latex-tables-centered
19907 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
19908 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-tables-centered&sr=1][Find modifications in git logs]]
19910 : When non-nil, tables are exported in a center environment.
19912 ** org-odt-table-styles =(quote (("OrgEquation" "OrgEqu...=
19914 :CUSTOM_ID: org-odt-table-styles
19917 - *Type:* (choice (const :tag "None" nil...
19918 - *Since:* Emacs version 24.1
19919 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
19920 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-table-styles&sr=1][Find modifications in git logs]]
19922 : Specify how Table Styles should be derived from a Table Template.
19923 : This is a list where each element is of the
19924 : form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
19926 : TABLE-STYLE-NAME is the style associated with the table through
19927 : "#+ATTR_ODT: :style TABLE-STYLE-NAME" line.
19929 : TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
19930 : TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
19931 : below) that is included in
19932 : `org-odt-content-template-file'.
19934 : TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
19936 : PARAGRAPH-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
19938 : TABLE-CELL-TYPE := "FirstRow" | "LastColumn" |
19939 : "FirstRow" | "LastRow" |
19940 : "EvenRow" | "OddRow" |
19941 : "EvenColumn" | "OddColumn" | ""
19942 : where "+" above denotes string concatenation.
19944 : TABLE-CELL-OPTIONS is an alist where each element is of the
19945 : form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
19946 : TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles' |
19947 : `use-last-row-styles' |
19948 : `use-first-column-styles' |
19949 : `use-last-column-styles' |
19950 : `use-banding-rows-styles' |
19951 : `use-banding-columns-styles' |
19952 : `use-first-row-styles'
19953 : ON-OR-OFF := `t' | `nil'
19955 : For example, with the following configuration
19957 : (setq org-odt-table-styles
19958 : '(("TableWithHeaderRowsAndColumns" "Custom"
19959 : ((use-first-row-styles . t)
19960 : (use-first-column-styles . t)))
19961 : ("TableWithHeaderColumns" "Custom"
19962 : ((use-first-column-styles . t)))))
19964 : 1. A table associated with "TableWithHeaderRowsAndColumns"
19965 : style will use the following table-cell styles -
19966 : "CustomFirstRowTableCell", "CustomFirstColumnTableCell",
19967 : "CustomTableCell" and the following paragraph styles
19968 : "CustomFirstRowTableParagraph",
19969 : "CustomFirstColumnTableParagraph", "CustomTableParagraph"
19972 : 2. A table associated with "TableWithHeaderColumns" style will
19973 : use the following table-cell styles -
19974 : "CustomFirstColumnTableCell", "CustomTableCell" and the
19975 : following paragraph styles
19976 : "CustomFirstColumnTableParagraph", "CustomTableParagraph"
19979 : Note that TABLE-TEMPLATE-NAME corresponds to the
19980 : "<table:table-template>" elements contained within
19981 : "<office:styles>". The entries (TABLE-STYLE-NAME
19982 : TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
19983 : "table:template-name" and "table:use-first-row-styles" etc
19984 : attributes of "<table:table>" element. Refer ODF-1.2
19985 : specification for more information. Also consult the
19986 : implementation filed under `org-odt-get-table-cell-styles'.
19988 : The TABLE-STYLE-NAME "OrgEquation" is used internally for
19989 : formatting of numbered display equations. Do not delete this
19990 : style from the list.
19992 ** org-protocol-protocol-alist =nil=
19994 :CUSTOM_ID: org-protocol-protocol-alist
19998 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
19999 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-protocol-alist&sr=1][Find modifications in git logs]]
20001 : Register custom handlers for org-protocol.
20003 : Each element of this list must be of the form:
20005 : (module-name :protocol protocol :function func :kill-client nil)
20007 : protocol - protocol to detect in a filename without trailing colon and slashes.
20008 : See rfc1738 section 2.1 for more on this.
20009 : If you define a protocol "my-protocol", `org-protocol-check-filename-for-protocol'
20010 : will search filenames for "org-protocol:/my-protocol:/"
20011 : and trigger your action for every match. `org-protocol' is defined in
20012 : `org-protocol-the-protocol'. Double and triple slashes are compressed
20013 : to one by emacsclient.
20015 : function - function that handles requests with protocol and takes exactly one
20016 : argument: the filename with all protocols stripped. If the function
20017 : returns nil, emacsclient and -server do nothing. Any non-nil return
20018 : value is considered a valid filename and thus passed to the server.
20020 : `org-protocol.el provides some support for handling those filenames,
20021 : if you stay with the conventions used for the standard handlers in
20022 : `org-protocol-protocol-alist-default'. See `org-protocol-split-data'.
20024 : kill-client - If t, kill the client immediately, once the sub-protocol is
20025 : detected. This is necessary for actions that can be interrupted by
20026 : `C-g' to avoid dangling emacsclients. Note, that all other command
20027 : line arguments but the this one will be discarded, greedy handlers
20028 : still receive the whole list of arguments though.
20030 : Here is an example:
20032 : (setq org-protocol-protocol-alist
20034 : :protocol "my-protocol"
20035 : :function my-protocol-handler-function)
20037 : :protocol "your-protocol"
20038 : :function your-protocol-handler-function)))
20040 ** org-refile-use-outline-path =nil=
20042 :CUSTOM_ID: org-refile-use-outline-path
20045 - *Type:* (choice (const :tag "Not" nil)...
20046 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20047 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-use-outline-path&sr=1][Find modifications in git logs]]
20049 : Non-nil means provide refile targets as paths.
20050 : So a level 3 headline will be available as level1/level2/level3.
20052 : When the value is `file', also include the file name (without directory)
20053 : into the path. In this case, you can also stop the completion after
20054 : the file name, to get entries inserted as top level in the file.
20056 : When `full-file-path', include the full file path.
20058 ** org-odt-with-latex =org-export-with-latex=
20060 :CUSTOM_ID: org-odt-with-latex
20063 - *Type:* (choice (const :tag "Do not pr...
20064 - *Since:* Emacs version 24.4
20065 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
20066 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-with-latex&sr=1][Find modifications in git logs]]
20068 : Non-nil means process LaTeX math snippets.
20070 : When set, the exporter will process LaTeX environments and
20073 : This option can also be set with the +OPTIONS line,
20074 : e.g. "tex:mathjax". Allowed values are:
20076 : nil Ignore math snippets.
20077 : `verbatim' Keep everything in verbatim
20078 : `dvipng' Process the LaTeX fragments to images. This will also
20079 : include processing of non-math environments.
20080 : `imagemagick' Convert the LaTeX fragments to pdf files and use
20081 : imagemagick to convert pdf files to png files.
20082 : `mathjax' Do MathJax preprocessing and arrange for MathJax.js to
20084 : t Synonym for `mathjax'.
20086 ** org-format-latex-options =(quote (:foreground default :b...=
20088 :CUSTOM_ID: org-format-latex-options
20092 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20093 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-format-latex-options&sr=1][Find modifications in git logs]]
20095 : Options for creating images from LaTeX fragments.
20096 : This is a property list with the following properties:
20097 : :foreground the foreground color for images embedded in Emacs, e.g. "Black".
20098 : `default' means use the foreground of the default face.
20099 : `auto' means use the foreground from the text face.
20100 : :background the background color, or "Transparent".
20101 : `default' means use the background of the default face.
20102 : `auto' means use the background from the text face.
20103 : :scale a scaling factor for the size of the images, to get more pixels
20104 : :html-foreground, :html-background, :html-scale
20105 : the same numbers for HTML export.
20106 : :matchers a list indicating which matchers should be used to
20107 : find LaTeX fragments. Valid members of this list are:
20108 : "begin" find environments
20109 : "$1" find single characters surrounded by $.$
20110 : "$" find math expressions surrounded by $...$
20111 : "$$" find math expressions surrounded by $$....$$
20112 : "\(" find math expressions surrounded by \(...\)
20113 : "\ [" find math expressions surrounded by \ [...\]
20115 ** org-icalendar-use-deadline =(quote (event-if-not-todo todo...=
20117 :CUSTOM_ID: org-icalendar-use-deadline
20120 - *Type:* (set :greedy t (const :tag "De...
20121 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
20122 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-use-deadline&sr=1][Find modifications in git logs]]
20124 : Contexts where iCalendar export should use a deadline time stamp.
20126 : This is a list with several symbols in it. Valid symbol are:
20127 : `event-if-todo' Deadlines in TODO entries become calendar events.
20128 : `event-if-not-todo' Deadlines in non-TODO entries become calendar events.
20129 : `todo-due' Use deadlines in TODO entries as due-dates
20131 ** org-agenda-show-outline-path =t=
20133 :CUSTOM_ID: org-agenda-show-outline-path
20137 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
20138 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-outline-path&sr=1][Find modifications in git logs]]
20140 : Non-nil means show outline path in echo area after line motion.
20142 ** org-blank-before-new-entry =(quote ((heading . auto) (plai...=
20144 :CUSTOM_ID: org-blank-before-new-entry
20147 - *Type:* (list (cons (const heading) (c...
20148 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20149 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-blank-before-new-entry&sr=1][Find modifications in git logs]]
20151 : Should `org-insert-heading' leave a blank line before new heading/item?
20152 : The value is an alist, with `heading' and `plain-list-item' as CAR,
20153 : and a boolean flag as CDR. The cdr may also be the symbol `auto', in
20154 : which case Org will look at the surrounding headings/items and try to
20155 : make an intelligent decision whether to insert a blank line or not.
20157 : For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
20158 : the setting here is ignored and no empty line is inserted to avoid breaking
20159 : the list structure.
20161 ** org-agenda-todo-ignore-with-date =nil=
20163 :CUSTOM_ID: org-agenda-todo-ignore-with-date
20167 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
20168 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-ignore-with-date&sr=1][Find modifications in git logs]]
20170 : Non-nil means don't show entries with a date in the global todo list.
20171 : You can use this if you prefer to mark mere appointments with a TODO keyword,
20172 : but don't want them to show up in the TODO list.
20173 : When this is set, it also covers deadlines and scheduled items, the settings
20174 : of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
20176 : See also the variable `org-agenda-tags-todo-honor-ignore-options'.
20178 ** org-export-htmlize-output-type =(quote inline-css)=
20180 :CUSTOM_ID: org-export-htmlize-output-type
20183 - *Type:* (choice (const css) (const inl...
20184 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
20185 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-htmlize-output-type&sr=1][Find modifications in git logs]]
20187 : Output type to be used by htmlize when formatting code snippets.
20188 : Choices are `css', to export the CSS selectors only, or `inline-css', to
20189 : export the CSS attribute values inline in the HTML. We use as default
20190 : `inline-css', in order to make the resulting HTML self-containing.
20192 : However, this will fail when using Emacs in batch mode for export, because
20193 : then no rich font definitions are in place. It will also not be good if
20194 : people with different Emacs setup contribute HTML files to a website,
20195 : because the fonts will represent the individual setups. In these cases,
20196 : it is much better to let Org/Htmlize assign classes only, and to use
20197 : a style file to define the look of these classes.
20198 : To get a start for your css file, start Emacs session and make sure that
20199 : all the faces you are interested in are defined, for example by loading files
20200 : in all modes you want. Then, use the command
20201 : \[org-export-htmlize-generate-css] to extract class definitions.
20203 ** org-table-default-size ="5x2"=
20205 :CUSTOM_ID: org-table-default-size
20209 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
20210 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-default-size&sr=1][Find modifications in git logs]]
20212 : The default size for newly created tables, Columns x Rows.
20214 ** org-publish-timestamp-directory =(convert-standard-filename "~/...=
20216 :CUSTOM_ID: org-publish-timestamp-directory
20219 - *Type:* directory
20220 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
20221 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-timestamp-directory&sr=1][Find modifications in git logs]]
20223 : Name of directory in which to store publishing timestamps.
20225 ** org-clock-rounding-minutes =0=
20227 :CUSTOM_ID: org-clock-rounding-minutes
20230 - *Type:* (choice (integer :tag "Minutes...
20231 - *Since:* Emacs version 24.4
20232 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
20233 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-rounding-minutes&sr=1][Find modifications in git logs]]
20235 : Rounding minutes when clocking in or out.
20236 : The default value is 0 so that no rounding is done.
20237 : When set to a non-integer value, use the car of
20238 : `org-time-stamp-rounding-minutes', like for setting a time-stamp.
20240 : E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
20241 : and you clock in: then the clock starts at 14:45. If you clock
20242 : out within the next 5 minutes, the clock line will be removed;
20243 : if you clock out 8 minutes after your clocked in, the clock
20244 : out time will be 14:50.
20246 ** org-odt-display-outline-level =2=
20248 :CUSTOM_ID: org-odt-display-outline-level
20252 - *Since:* Emacs version 24.2
20253 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
20254 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-display-outline-level&sr=1][Find modifications in git logs]]
20256 : Outline levels considered for enumerating captioned entities.
20258 ** org-icalendar-date-time-format =":%Y%m%dT%H%M%S"=
20260 :CUSTOM_ID: org-icalendar-date-time-format
20263 - *Type:* (choice (const :tag "Local tim...
20264 - *Since:* Emacs version 24.1
20265 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
20266 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-date-time-format&sr=1][Find modifications in git logs]]
20268 : Format-string for exporting icalendar DATE-TIME.
20270 : See `format-time-string' for a full documentation. The only
20271 : difference is that `org-icalendar-timezone' is used for %Z.
20273 : Interesting value are:
20274 : - ":%Y%m%dT%H%M%S" for local time
20275 : - ";TZID=%Z:%Y%m%dT%H%M%S" for local time with explicit timezone
20276 : - ":%Y%m%dT%H%M%SZ" for time expressed in Universal Time
20278 ** org-outline-path-complete-in-steps =t=
20280 :CUSTOM_ID: org-outline-path-complete-in-steps
20284 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20285 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-outline-path-complete-in-steps&sr=1][Find modifications in git logs]]
20287 : Non-nil means complete the outline path in hierarchical steps.
20288 : When Org-mode uses the refile interface to select an outline path
20289 : (see variable `org-refile-use-outline-path'), the completion of
20290 : the path can be done is a single go, or if can be done in steps down
20291 : the headline hierarchy. Going in steps is probably the best if you
20292 : do not use a special completion package like `ido' or `icicles'.
20293 : However, when using these packages, going in one step can be very
20294 : fast, while still showing the whole path to the entry.
20296 ** org-export-html-expand =t=
20298 :CUSTOM_ID: org-export-html-expand
20302 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
20303 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-expand&sr=1][Find modifications in git logs]]
20305 : Non-nil means for HTML export, treat @<...> as HTML tag.
20306 : When nil, these tags will be exported as plain text and therefore
20307 : not be interpreted by a browser.
20309 : This option can also be set with the +OPTIONS line, e.g. "@:nil".
20311 ** org-clock-auto-clock-resolution =(quote when-no-clock-is-runnin...=
20313 :CUSTOM_ID: org-clock-auto-clock-resolution
20316 - *Type:* (choice (const :tag "Never" ni...
20317 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
20318 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-auto-clock-resolution&sr=1][Find modifications in git logs]]
20320 : When to automatically resolve open clocks found in Org buffers.
20322 ** org-agenda-deadline-faces =(quote ((1.0 . org-warning) (0...=
20324 :CUSTOM_ID: org-agenda-deadline-faces
20327 - *Type:* (repeat (cons (number :tag "Fr...
20328 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
20329 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-deadline-faces&sr=1][Find modifications in git logs]]
20331 : Faces for showing deadlines in the agenda.
20332 : This is a list of cons cells. The cdr of each cell is a face to be used,
20333 : and it can also just be like '(:foreground "yellow").
20334 : Each car is a fraction of the head-warning time that must have passed for
20335 : this the face in the cdr to be used for display. The numbers must be
20336 : given in descending order. The head-warning time is normally taken
20337 : from `org-deadline-warning-days', but can also be specified in the deadline
20338 : timestamp itself, like this:
20340 : DEADLINE: <2007-08-13 Mon -8d>
20342 : You may use d for days, w for weeks, m for months and y for years. Months
20343 : and years will only be treated in an approximate fashion (30.4 days for a
20344 : month and 365.24 days for a year).
20346 ** org-agenda-log-mode-add-notes =t=
20348 :CUSTOM_ID: org-agenda-log-mode-add-notes
20352 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
20353 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-log-mode-add-notes&sr=1][Find modifications in git logs]]
20355 : Non-nil means add first line of notes to log entries in agenda views.
20356 : If a log item like a state change or a clock entry is associated with
20357 : notes, the first line of these notes will be added to the entry in the
20360 ** org-gnus-nnimap-query-article-no-from-file =nil=
20362 :CUSTOM_ID: org-gnus-nnimap-query-article-no-from-file
20366 - *Since:* Emacs version 24.1
20367 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-gnus.el;hb=HEAD][org-gnus.el]]
20368 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-gnus-nnimap-query-article-no-from-file&sr=1][Find modifications in git logs]]
20370 : If non-nil, `org-gnus-follow-link' will try to translate
20371 : Message-Ids to article numbers by querying the .overview file.
20372 : Normally, this translation is done by querying the IMAP server,
20373 : which is usually very fast. Unfortunately, some (maybe badly
20374 : configured) IMAP servers don't support this operation quickly.
20375 : So if following a link to a Gnus article takes ages, try setting
20376 : this variable to `t'.
20378 ** org-attach-auto-tag ="ATTACH"=
20380 :CUSTOM_ID: org-attach-auto-tag
20383 - *Type:* (choice (const :tag "None" nil...
20384 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
20385 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-auto-tag&sr=1][Find modifications in git logs]]
20387 : Tag that will be triggered automatically when an entry has an attachment.
20389 ** org-treat-S-cursor-todo-selection-as-state-change =t=
20391 :CUSTOM_ID: org-treat-S-cursor-todo-selection-as-state-change
20395 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20396 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-treat-S-cursor-todo-selection-as-state-change&sr=1][Find modifications in git logs]]
20398 : Non-nil means switching TODO states with S-cursor counts as state change.
20399 : This is the default behavior. However, setting this to nil allows a
20400 : convenient way to select a TODO state and bypass any logging associated
20403 ** org-entities-ascii-explanatory =nil=
20405 :CUSTOM_ID: org-entities-ascii-explanatory
20409 - *Since:* Emacs version 24.1
20410 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-entities.el;hb=HEAD][org-entities.el]]
20411 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-entities-ascii-explanatory&sr=1][Find modifications in git logs]]
20413 : Non-nil means replace special entities in ASCII.
20414 : For example, this will replace "\nsup" with "[not a superset of]"
20415 : in backends where the corresponding character is not available.
20417 ** org-tag-alist =nil=
20419 :CUSTOM_ID: org-tag-alist
20422 - *Type:* (repeat (choice (cons (string ...
20423 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20424 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tag-alist&sr=1][Find modifications in git logs]]
20426 : List of tags allowed in Org-mode files.
20427 : When this list is nil, Org-mode will base TAG input on what is already in the
20429 : The value of this variable is an alist, the car of each entry must be a
20430 : keyword as a string, the cdr may be a character that is used to select
20431 : that tag through the fast-tag-selection interface.
20432 : See the manual for details.
20434 ** org-icalendar-timezone =(getenv "TZ")=
20436 :CUSTOM_ID: org-icalendar-timezone
20439 - *Type:* (choice (const :tag "Unspecifi...
20440 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
20441 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-timezone&sr=1][Find modifications in git logs]]
20443 : The time zone string for iCalendar export.
20444 : When nil or the empty string, use output
20445 : from (current-time-zone).
20447 ** org-ascii-inlinetask-width =30=
20449 :CUSTOM_ID: org-ascii-inlinetask-width
20453 - *Since:* Emacs version 24.4
20454 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
20455 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-inlinetask-width&sr=1][Find modifications in git logs]]
20457 : Width of inline tasks, in number of characters.
20458 : This number ignores any margin.
20460 ** org-texinfo-node-description-column =32=
20462 :CUSTOM_ID: org-texinfo-node-description-column
20466 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
20467 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-node-description-column&sr=1][Find modifications in git logs]]
20469 : Column at which to start the description in the node
20472 : If a node title is greater than this length, the description will
20473 : be placed after the end of the title.
20475 ** org-use-last-clock-out-time-as-effective-time =nil=
20477 :CUSTOM_ID: org-use-last-clock-out-time-as-effective-time
20481 - *Since:* Emacs version 24.4
20482 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20483 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-last-clock-out-time-as-effective-time&sr=1][Find modifications in git logs]]
20485 : When non-nil, use the last clock out time for `org-todo'.
20486 : Note that this option has precedence over the combined use of
20487 : `org-use-effective-time' and `org-extend-today-until'.
20489 ** org-texinfo-logfiles-extensions =(quote ("aux" "toc" "cp" "fn" ...=
20491 :CUSTOM_ID: org-texinfo-logfiles-extensions
20494 - *Type:* (repeat (string :tag "Extensio...
20495 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
20496 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-logfiles-extensions&sr=1][Find modifications in git logs]]
20498 : The list of file extensions to consider as Texinfo logfiles.
20499 : The logfiles will be remove if `org-texinfo-remove-logfiles' is
20502 ** org-agenda-persistent-filter =nil=
20504 :CUSTOM_ID: org-agenda-persistent-filter
20508 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
20509 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-persistent-filter&sr=1][Find modifications in git logs]]
20511 : When set, keep filters from one agenda view to the next.
20513 ** org-ascii-table-keep-all-vertical-lines =nil=
20515 :CUSTOM_ID: org-ascii-table-keep-all-vertical-lines
20519 - *Since:* Emacs version 24.4
20520 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
20521 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-table-keep-all-vertical-lines&sr=1][Find modifications in git logs]]
20523 : Non-nil means keep all vertical lines in ASCII tables.
20524 : When nil, vertical lines will be removed except for those needed
20525 : for column grouping.
20527 ** org-global-properties =nil=
20529 :CUSTOM_ID: org-global-properties
20532 - *Type:* (repeat (cons (string :tag "Pr...
20533 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20534 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-global-properties&sr=1][Find modifications in git logs]]
20536 : List of property/value pairs that can be inherited by any entry.
20538 : This list will be combined with the constant `org-global-properties-fixed'.
20540 : The entries in this list are cons cells where the car is a property
20541 : name and cdr is a string with the value.
20543 : You can set buffer-local values for the same purpose in the variable
20544 : `org-file-properties' this by adding lines like
20546 : #+PROPERTY: NAME VALUE
20548 ** org-link-search-must-match-exact-headline =(quote query-to-create)=
20550 :CUSTOM_ID: org-link-search-must-match-exact-headline
20553 - *Type:* (choice (const :tag "Use fuzzy...
20554 - *Since:* Emacs version 24.1
20555 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20556 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-search-must-match-exact-headline&sr=1][Find modifications in git logs]]
20558 : Non-nil means internal links in Org files must exactly match a headline.
20559 : When nil, the link search tries to match a phrase with all words
20560 : in the search text.
20562 ** org-highlight-latex-and-related =nil=
20564 :CUSTOM_ID: org-highlight-latex-and-related
20567 - *Type:* (choice (const :tag "No highli...
20568 - *Since:* Emacs version 24.4
20569 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20570 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-highlight-latex-and-related&sr=1][Find modifications in git logs]]
20572 : Non-nil means highlight LaTeX related syntax in the buffer.
20573 : When non nil, the value should be a list containing any of the
20574 : following symbols:
20575 : `latex' Highlight LaTeX snippets and environments.
20576 : `script' Highlight subscript and superscript.
20577 : `entities' Highlight entities.
20579 ** org-export-html-divs =(quote ("preamble" "content" "...=
20581 :CUSTOM_ID: org-export-html-divs
20584 - *Type:* (list (string :tag " Div for t...
20585 - *Since:* Emacs version 24.1
20586 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
20587 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-divs&sr=1][Find modifications in git logs]]
20589 : The name of the main divs for HTML export.
20590 : This is a list of three strings, the first one for the preamble
20591 : DIV, the second one for the content DIV and the third one for the
20594 ** org-babel-tangle-comment-format-end ="%source-name ends here"=
20596 :CUSTOM_ID: org-babel-tangle-comment-format-end
20600 - *Since:* Emacs version 24.1
20601 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
20602 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-comment-format-end&sr=1][Find modifications in git logs]]
20604 : Format of inserted comments in tangled code files.
20605 : The following format strings can be used to insert special
20606 : information into the output using `org-fill-template'.
20607 : %start-line --- the line number at the start of the code block
20608 : %file --------- the file from which the code block was tangled
20609 : %link --------- Org-mode style link to the code block
20610 : %source-name -- name of the code block
20612 : Whether or not comments are inserted during tangling is
20613 : controlled by the :comments header argument.
20615 ** org-export-html-validation-link ="<a href=\"http://validator.w3...=
20617 :CUSTOM_ID: org-export-html-validation-link
20621 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
20622 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-validation-link&sr=1][Find modifications in git logs]]
20624 : Link to HTML validation service.
20626 ** org-indent-mode-turns-off-org-adapt-indentation =t=
20628 :CUSTOM_ID: org-indent-mode-turns-off-org-adapt-indentation
20632 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
20633 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-mode-turns-off-org-adapt-indentation&sr=1][Find modifications in git logs]]
20635 : Non-nil means setting the variable `org-indent-mode' will turn off indentation adaptation.
20636 : For details see the variable `org-adapt-indentation'.
20638 ** org-texinfo-format-inlinetask-function =nil=
20640 :CUSTOM_ID: org-texinfo-format-inlinetask-function
20644 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
20645 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-format-inlinetask-function&sr=1][Find modifications in git logs]]
20647 : Function called to format an inlinetask in Texinfo code.
20649 : The function must accept six parameters:
20650 : TODO the todo keyword, as a string
20651 : TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
20652 : PRIORITY the inlinetask priority, as a string
20653 : NAME the inlinetask name, as a string.
20654 : TAGS the inlinetask tags, as a list of strings.
20655 : CONTENTS the contents of the inlinetask, as a string.
20657 : The function should return the string to be exported.
20659 : For example, the variable could be set to the following function
20660 : in order to mimic default behaviour:
20662 : (defun org-texinfo-format-inlinetask (todo type priority name tags contents)
20663 : "Format an inline task element for Texinfo export."
20664 : (let ((full-title
20667 : (format "@strong{%s} " todo))
20668 : (when priority (format "#%c " priority))
20672 : (mapconcat 'identity tags ":")))))
20673 : (format (concat "@center %s
20679 : full-title contents))
20681 ** org-html-validation-link ="<a href=\"http://validator.w3...=
20683 :CUSTOM_ID: org-html-validation-link
20687 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
20688 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-validation-link&sr=1][Find modifications in git logs]]
20690 : Link to HTML validation service.
20692 ** org-latex-tables-booktabs =nil=
20694 :CUSTOM_ID: org-latex-tables-booktabs
20698 - *Since:* Emacs version 24.4
20699 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
20700 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-tables-booktabs&sr=1][Find modifications in git logs]]
20702 : When non-nil, display tables in a formal "booktabs" style.
20703 : This option assumes that the "booktabs" package is properly
20704 : loaded in the header of the document. This value can be ignored
20705 : locally with ":booktabs t" and ":booktabs nil" LaTeX
20708 ** org-agenda-file-regexp ="\\`[^.].*\\.org\\'"=
20710 :CUSTOM_ID: org-agenda-file-regexp
20714 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20715 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-file-regexp&sr=1][Find modifications in git logs]]
20717 : Regular expression to match files for `org-agenda-files'.
20718 : If any element in the list in that variable contains a directory instead
20719 : of a normal file, all files in that directory that are matched by this
20720 : regular expression will be included.
20722 ** org-completion-use-ido =nil=
20724 :CUSTOM_ID: org-completion-use-ido
20728 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
20729 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-completion-use-ido&sr=1][Find modifications in git logs]]
20731 : Non-nil means use ido completion wherever possible.
20732 : Note that `ido-mode' must be active for this variable to be relevant.
20733 : If you decide to turn this variable on, you might well want to turn off
20734 : `org-outline-path-complete-in-steps'.
20735 : See also `org-completion-use-iswitchb'.
20737 ** org-attach-expert =nil=
20739 :CUSTOM_ID: org-attach-expert
20743 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
20744 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-expert&sr=1][Find modifications in git logs]]
20746 : Non-nil means do not show the splash buffer with the attach dispatcher.
20748 ** org-icalendar-combined-description =""=
20750 :CUSTOM_ID: org-icalendar-combined-description
20754 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
20755 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-combined-description&sr=1][Find modifications in git logs]]
20757 : Calendar description for the combined iCalendar (all agenda files).
20759 ** org-table-use-standard-references =(quote from)=
20761 :CUSTOM_ID: org-table-use-standard-references
20764 - *Type:* (choice (const :tag "Never, do...
20765 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
20766 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-use-standard-references&sr=1][Find modifications in git logs]]
20768 : Should org-mode work with table references like B3 instead of @3$2?
20769 : Possible values are:
20770 : nil never use them
20771 : from accept as input, do not present for editing
20772 : t accept as input and present for editing
20774 ** org-edit-src-region-extra =nil=
20776 :CUSTOM_ID: org-edit-src-region-extra
20779 - *Type:* (repeat (list (regexp :tag "be...
20780 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
20781 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-region-extra&sr=1][Find modifications in git logs]]
20783 : Additional regexps to identify regions for editing with `org-edit-src-code'.
20784 : For examples see the function `org-edit-src-find-region-and-lang'.
20785 : The regular expression identifying the begin marker should end with a newline,
20786 : and the regexp marking the end line should start with a newline, to make sure
20787 : there are kept outside the narrowed region.
20789 ** org-publish-project-alist =nil=
20791 :CUSTOM_ID: org-publish-project-alist
20795 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
20796 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-project-alist&sr=1][Find modifications in git logs]]
20798 : Association list to control publishing behavior.
20799 : Each element of the alist is a publishing 'project.' The CAR of
20800 : each element is a string, uniquely identifying the project. The
20801 : CDR of each element is in one of the following forms:
20803 : 1. A well-formed property list with an even number of elements,
20804 : alternating keys and values, specifying parameters for the
20805 : publishing process.
20807 : (:property value :property value ... )
20809 : 2. A meta-project definition, specifying of a list of
20812 : (:components ("project-1" "project-2" ...))
20814 : When the CDR of an element of org-publish-project-alist is in
20815 : this second form, the elements of the list after `:components'
20816 : are taken to be components of the project, which group together
20817 : files requiring different publishing options. When you publish
20818 : such a project with \[org-publish], the components all publish.
20820 : When a property is given a value in `org-publish-project-alist',
20821 : its setting overrides the value of the corresponding user
20822 : variable (if any) during publishing. However, options set within
20823 : a file override everything.
20825 : Most properties are optional, but some should always be set:
20827 : `:base-directory'
20829 : Directory containing publishing source files.
20831 : `:base-extension'
20833 : Extension (without the dot!) of source files. This can be
20834 : a regular expression. If not given, "org" will be used as
20835 : default extension.
20837 : `:publishing-directory'
20839 : Directory (possibly remote) where output files will be
20842 : The `:exclude' property may be used to prevent certain files from
20843 : being published. Its value may be a string or regexp matching
20844 : file names you don't want to be published.
20846 : The `:include' property may be used to include extra files. Its
20847 : value may be a list of filenames to include. The filenames are
20848 : considered relative to the base directory.
20850 : When both `:include' and `:exclude' properties are given values,
20851 : the exclusion step happens first.
20853 : One special property controls which back-end function to use for
20854 : publishing files in the project. This can be used to extend the
20855 : set of file types publishable by `org-publish', as well as the
20856 : set of output formats.
20858 : `:publishing-function'
20860 : Function to publish file. Each back-end may define its
20861 : own (i.e. `org-latex-publish-to-pdf',
20862 : `org-html-publish-to-html'). May be a list of functions, in
20863 : which case each function in the list is invoked in turn.
20865 : Another property allows you to insert code that prepares
20866 : a project for publishing. For example, you could call GNU Make
20867 : on a certain makefile, to ensure published files are built up to
20870 : `:preparation-function'
20872 : Function to be called before publishing this project. This
20873 : may also be a list of functions.
20875 : `:completion-function'
20877 : Function to be called after publishing this project. This
20878 : may also be a list of functions.
20880 : Some properties control details of the Org publishing process,
20881 : and are equivalent to the corresponding user variables listed in
20882 : the right column. Back-end specific properties may also be
20883 : included. See the back-end documentation for more information.
20885 : :author `user-full-name'
20886 : :creator `org-export-creator-string'
20887 : :email `user-mail-address'
20888 : :exclude-tags `org-export-exclude-tags'
20889 : :headline-levels `org-export-headline-levels'
20890 : :language `org-export-default-language'
20891 : :preserve-breaks `org-export-preserve-breaks'
20892 : :section-numbers `org-export-with-section-numbers'
20893 : :select-tags `org-export-select-tags'
20894 : :time-stamp-file `org-export-time-stamp-file'
20895 : :with-archived-trees `org-export-with-archived-trees'
20896 : :with-author `org-export-with-author'
20897 : :with-creator `org-export-with-creator'
20898 : :with-date `org-export-with-date'
20899 : :with-drawers `org-export-with-drawers'
20900 : :with-email `org-export-with-email'
20901 : :with-emphasize `org-export-with-emphasize'
20902 : :with-entities `org-export-with-entities'
20903 : :with-fixed-width `org-export-with-fixed-width'
20904 : :with-footnotes `org-export-with-footnotes'
20905 : :with-inlinetasks `org-export-with-inlinetasks'
20906 : :with-latex `org-export-with-latex'
20907 : :with-priority `org-export-with-priority'
20908 : :with-smart-quotes `org-export-with-smart-quotes'
20909 : :with-special-strings `org-export-with-special-strings'
20910 : :with-statistics-cookies' `org-export-with-statistics-cookies'
20911 : :with-sub-superscript `org-export-with-sub-superscripts'
20912 : :with-toc `org-export-with-toc'
20913 : :with-tables `org-export-with-tables'
20914 : :with-tags `org-export-with-tags'
20915 : :with-tasks `org-export-with-tasks'
20916 : :with-timestamps `org-export-with-timestamps'
20917 : :with-planning `org-export-with-planning'
20918 : :with-todo-keywords `org-export-with-todo-keywords'
20920 : The following properties may be used to control publishing of
20921 : a site-map of files or summary page for a given project.
20925 : Whether to publish a site-map during
20926 : `org-publish-current-project' or `org-publish-all'.
20928 : `:sitemap-filename'
20930 : Filename for output of sitemap. Defaults to "sitemap.org".
20934 : Title of site-map page. Defaults to name of file.
20936 : `:sitemap-function'
20938 : Plugin function to use for generation of site-map. Defaults
20939 : to `org-publish-org-sitemap', which generates a plain list of
20940 : links to all files in the project.
20944 : Can be `list' (site-map is just an itemized list of the
20945 : titles of the files involved) or `tree' (the directory
20946 : structure of the source files is reflected in the site-map).
20947 : Defaults to `tree'.
20949 : `:sitemap-sans-extension'
20951 : Remove extension from site-map's file-names. Useful to have
20952 : cool URIs (see http://www.w3.org/Provider/Style/URI).
20955 : If you create a site-map file, adjust the sorting like this:
20957 : `:sitemap-sort-folders'
20959 : Where folders should appear in the site-map. Set this to
20960 : `first' (default) or `last' to display folders first or last,
20961 : respectively. Any other value will mix files and folders.
20963 : `:sitemap-sort-files'
20965 : The site map is normally sorted alphabetically. You can
20966 : change this behaviour setting this to `anti-chronologically',
20967 : `chronologically', or nil.
20969 : `:sitemap-ignore-case'
20971 : Should sorting be case-sensitive? Default nil.
20973 : The following property control the creation of a concept index.
20977 : Create a concept index. The file containing the index has to
20978 : be called "theindex.org". If it doesn't exist in the
20979 : project, it will be generated. Contents of the index are
20980 : stored in the file "theindex.inc", which can be included in
20983 : Other properties affecting publication.
20987 : Set this to t to publish only the body of the documents.
20989 ** org-agenda-query-register =111=
20991 :CUSTOM_ID: org-agenda-query-register
20994 - *Type:* character
20995 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
20996 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-query-register&sr=1][Find modifications in git logs]]
20998 : The register holding the current query string.
20999 : The purpose of this is that if you construct a query string interactively,
21000 : you can then use it to define a custom command.
21002 ** org-crypt-key =""=
21004 :CUSTOM_ID: org-crypt-key
21008 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-crypt.el;hb=HEAD][org-crypt.el]]
21009 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-crypt-key&sr=1][Find modifications in git logs]]
21011 : The default key to use when encrypting the contents of a heading.
21013 : This setting can also be overridden in the CRYPTKEY property.
21015 ** org-log-refile =nil=
21017 :CUSTOM_ID: org-log-refile
21020 - *Type:* (choice (const :tag "No loggin...
21021 - *Since:* Emacs version 24.1
21022 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21023 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-refile&sr=1][Find modifications in git logs]]
21025 : Information to record when a task is refiled.
21027 : Possible values are:
21029 : nil Don't add anything
21030 : time Add a time stamp to the task
21031 : note Prompt for a note and add it with template `org-log-note-headings'
21033 : This option can also be set with on a per-file-basis with
21035 : #+STARTUP: nologrefile
21036 : #+STARTUP: logrefile
21037 : #+STARTUP: lognoterefile
21039 : You can have local logging settings for a subtree by setting the LOGGING
21040 : property to one or more of these keywords.
21042 : When bulk-refiling from the agenda, the value `note' is forbidden and
21043 : will temporarily be changed to `time'.
21045 ** org-link-abbrev-alist =nil=
21047 :CUSTOM_ID: org-link-abbrev-alist
21050 - *Type:* (repeat (cons (string :tag "Pr...
21051 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21052 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-abbrev-alist&sr=1][Find modifications in git logs]]
21054 : Alist of link abbreviations.
21055 : The car of each element is a string, to be replaced at the start of a link.
21056 : The cdrs are replacement values, like ("linkkey" . REPLACE). Abbreviated
21057 : links in Org-mode buffers can have an optional tag after a double colon, e.g.
21059 : [[linkkey:tag][description]]
21061 : The 'linkkey' must be a word word, starting with a letter, followed
21062 : by letters, numbers, '-' or '_'.
21064 : If REPLACE is a string, the tag will simply be appended to create the link.
21065 : If the string contains "%s", the tag will be inserted there. If the string
21066 : contains "%h", it will cause a url-encoded version of the tag to be inserted
21067 : at that point (see the function `url-hexify-string'). If the string contains
21068 : the specifier "%(my-function)", then the custom function `my-function' will
21069 : be invoked: this function takes the tag as its only argument and must return
21072 : REPLACE may also be a function that will be called with the tag as the
21073 : only argument to create the link, which should be returned as a string.
21075 : See the manual for examples.
21077 ** org-export-with-inlinetasks =t=
21079 :CUSTOM_ID: org-export-with-inlinetasks
21083 - *Since:* Emacs version 24.4
21084 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
21085 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-inlinetasks&sr=1][Find modifications in git logs]]
21087 : Non-nil means inlinetasks should be exported.
21088 : This option can also be set with the OPTIONS keyword,
21089 : e.g. "inline:nil".
21091 ** org-export-default-language ="en"=
21093 :CUSTOM_ID: org-export-default-language
21096 - *Type:* (string :tag "Language")
21097 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
21098 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-default-language&sr=1][Find modifications in git logs]]
21100 : The default language for export and clocktable translations, as a string.
21101 : This may have an association in
21102 : `org-clock-clocktable-language-setup'. This option can also be
21103 : set with the LANGUAGE keyword.
21105 ** org-agenda-prefix-format =(quote ((agenda . " %i %-12:c%...=
21107 :CUSTOM_ID: org-agenda-prefix-format
21110 - *Type:* (choice (string :tag "General ...
21111 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21112 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-prefix-format&sr=1][Find modifications in git logs]]
21114 : Format specifications for the prefix of items in the agenda views.
21115 : An alist with five entries, each for the different agenda types. The
21116 : keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
21117 : The values are format strings.
21119 : This format works similar to a printf format, with the following meaning:
21121 : %c the category of the item, "Diary" for entries from the diary,
21122 : or as given by the CATEGORY keyword or derived from the file name
21123 : %e the effort required by the item
21124 : %l the level of the item (insert X space(s) if item is of level X)
21125 : %i the icon category of the item, see `org-agenda-category-icon-alist'
21126 : %T the last tag of the item (ignore inherited tags, which come first)
21127 : %t the HH:MM time-of-day specification if one applies to the entry
21128 : %s Scheduling/Deadline information, a short string
21129 : %b show breadcrumbs, i.e., the names of the higher levels
21130 : %(expression) Eval EXPRESSION and replace the control string
21133 : All specifiers work basically like the standard `%s' of printf, but may
21134 : contain two additional characters: a question mark just after the `%'
21135 : and a whitespace/punctuation character just before the final letter.
21137 : If the first character after `%' is a question mark, the entire field
21138 : will only be included if the corresponding value applies to the current
21139 : entry. This is useful for fields which should have fixed width when
21140 : present, but zero width when absent. For example, "%?-12t" will
21141 : result in a 12 character time field if a time of the day is specified,
21142 : but will completely disappear in entries which do not contain a time.
21144 : If there is punctuation or whitespace character just before the
21145 : final format letter, this character will be appended to the field
21146 : value if the value is not empty. For example, the format
21147 : "%-12:c" leads to "Diary: " if the category is "Diary". If
21148 : the category is empty, no additional colon is inserted.
21150 : The default value for the agenda sublist is " %-12:c%?-12t% s",
21153 : - Indent the line with two space characters
21154 : - Give the category a 12 chars wide field, padded with whitespace on
21155 : the right (because of `-'). Append a colon if there is a category
21156 : (because of `:').
21157 : - If there is a time-of-day, put it into a 12 chars wide field. If no
21158 : time, don't put in an empty field, just skip it (because of '?').
21159 : - Finally, put the scheduling information.
21161 : See also the variables `org-agenda-remove-times-when-in-prefix' and
21162 : `org-agenda-remove-tags'.
21164 : Custom commands can set this variable in the options section.
21166 ** org-clock-goto-may-find-recent-task =t=
21168 :CUSTOM_ID: org-clock-goto-may-find-recent-task
21172 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
21173 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-goto-may-find-recent-task&sr=1][Find modifications in git logs]]
21175 : Non-nil means `org-clock-goto' can go to recent task if no active clock.
21177 ** org-export-html-postamble =(quote auto)=
21179 :CUSTOM_ID: org-export-html-postamble
21182 - *Type:* (choice (const :tag "No postam...
21183 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
21184 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-postamble&sr=1][Find modifications in git logs]]
21186 : Non-nil means insert a postamble in HTML export.
21188 : When `t', insert a string as defined by the format string in
21189 : `org-export-html-postamble-format'. When set to a string, this
21190 : string overrides `org-export-html-postamble-format'. When set to
21191 : 'auto, discard `org-export-html-postamble-format' and honor
21192 : `org-export-author/email/creator-info' variables. When set to a
21193 : function, apply this function and insert the returned string.
21194 : The function takes no argument, but you can use `opt-plist' to
21195 : access the current export options.
21197 : Setting :html-postamble in publishing projects will take
21198 : precedence over this variable.
21200 ** org-ascii-text-width =72=
21202 :CUSTOM_ID: org-ascii-text-width
21206 - *Since:* Emacs version 24.4
21207 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
21208 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-text-width&sr=1][Find modifications in git logs]]
21210 : Maximum width of exported text.
21211 : This number includes margin size, as set in
21212 : `org-ascii-global-margin'.
21214 ** org-default-priority =66=
21216 :CUSTOM_ID: org-default-priority
21219 - *Type:* character
21220 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21221 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-default-priority&sr=1][Find modifications in git logs]]
21223 : The default priority of TODO items.
21224 : This is the priority an item gets if no explicit priority is given.
21225 : When starting to cycle on an empty priority the first step in the cycle
21226 : depends on `org-priority-start-cycle-with-default'. The resulting first
21227 : step priority must not exceed the range from `org-highest-priority' to
21228 : `org-lowest-priority' which means that `org-default-priority' has to be
21229 : in this range exclusive or inclusive the range boundaries. Else the
21230 : first step refuses to set the default and the second will fall back
21231 : to (depending on the command used) the highest or lowest priority.
21233 ** org-comment-string ="COMMENT"=
21235 :CUSTOM_ID: org-comment-string
21239 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21240 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-comment-string&sr=1][Find modifications in git logs]]
21242 : Entries starting with this keyword will never be exported.
21243 : An entry can be toggled between COMMENT and normal with
21244 : \[org-toggle-comment].
21245 : Changes become only effective after restarting Emacs.
21247 ** org-table-tab-jumps-over-hlines =t=
21249 :CUSTOM_ID: org-table-tab-jumps-over-hlines
21253 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
21254 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-tab-jumps-over-hlines&sr=1][Find modifications in git logs]]
21256 : Non-nil means tab in the last column of a table with jump over a hline.
21257 : If a horizontal separator line is following the current line,
21258 : `org-table-next-field' can either create a new row before that line, or jump
21259 : over the line. When this option is nil, a new line will be created before
21262 ** org-babel-python-None-to =(quote hline)=
21264 :CUSTOM_ID: org-babel-python-None-to
21268 - *Since:* Emacs version 24.4
21269 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-python.el;hb=HEAD][ob-python.el]]
21270 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-python-None-to&sr=1][Find modifications in git logs]]
21272 : Replace 'None' in python tables with this before returning.
21274 ** org-html-table-caption-above =t=
21276 :CUSTOM_ID: org-html-table-caption-above
21280 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
21281 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-caption-above&sr=1][Find modifications in git logs]]
21283 : When non-nil, place caption string at the beginning of the table.
21284 : Otherwise, place it near the end.
21286 ** org-texinfo-classes =(quote (("info" "\\input texin...=
21288 :CUSTOM_ID: org-texinfo-classes
21291 - *Type:* (repeat (list (string :tag "Te...
21292 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
21293 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-classes&sr=1][Find modifications in git logs]]
21295 : Alist of Texinfo classes and associated header and structure.
21296 : If #+Texinfo_CLASS is set in the buffer, use its value and the
21297 : associated information. Here is the structure of each cell:
21301 : (numbered-section . unnumbered-section)
21304 : The sectioning structure
21305 : ------------------------
21307 : The sectioning structure of the class is given by the elements
21308 : following the header string. For each sectioning level, a number
21309 : of strings is specified. A %s formatter is mandatory in each
21310 : section string and will be replaced by the title of the section.
21312 : Instead of a list of sectioning commands, you can also specify
21313 : a function name. That function will be called with two
21314 : parameters, the (reduced) level of the headline, and a predicate
21315 : non-nil when the headline should be numbered. It must return
21316 : a format string in which the section title will be added.
21318 ** org-sort-agenda-notime-is-late =t=
21320 :CUSTOM_ID: org-sort-agenda-notime-is-late
21324 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21325 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sort-agenda-notime-is-late&sr=1][Find modifications in git logs]]
21327 : Non-nil means items without time are considered late.
21328 : This is only relevant for sorting. When t, items which have no explicit
21329 : time like 15:30 will be considered as 99:01, i.e. later than any items which
21330 : do have a time. When nil, the default time is before 0:00. You can use this
21331 : option to decide if the schedule for today should come before or after timeless
21334 ** org-image-actual-width =t=
21336 :CUSTOM_ID: org-image-actual-width
21339 - *Type:* (choice (const :tag "Use the i...
21340 - *Since:* Emacs version 24.4
21341 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21342 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-image-actual-width&sr=1][Find modifications in git logs]]
21344 : Should we use the actual width of images when inlining them?
21346 : When set to `t', always use the image width.
21348 : When set to a number, use imagemagick (when available) to set
21349 : the image's width to this value.
21351 : When set to a number in a list, try to get the width from any
21352 : #+ATTR.* keyword if it matches a width specification like
21354 : #+ATTR_HTML: :width 300px
21356 : and fall back on that number if none is found.
21358 : When set to nil, try to get the width from an #+ATTR.* keyword
21359 : and fall back on the original width if none is found.
21361 : This requires Emacs >= 24.1, build with imagemagick support.
21363 ** org-latex-default-figure-position ="htb"=
21365 :CUSTOM_ID: org-latex-default-figure-position
21369 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
21370 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-default-figure-position&sr=1][Find modifications in git logs]]
21372 : Default position for latex figures.
21374 ** org-archive-sibling-heading ="Archive"=
21376 :CUSTOM_ID: org-archive-sibling-heading
21380 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
21381 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-sibling-heading&sr=1][Find modifications in git logs]]
21383 : Name of the local archive sibling that is used to archive entries locally.
21384 : Locally means: in the tree, under a sibling.
21385 : See `org-archive-to-archive-sibling' for more information.
21387 ** org-support-shift-select =nil=
21389 :CUSTOM_ID: org-support-shift-select
21392 - *Type:* (choice (const :tag "Never" ni...
21393 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21394 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-support-shift-select&sr=1][Find modifications in git logs]]
21396 : Non-nil means make shift-cursor commands select text when possible.
21398 : In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
21399 : start selecting a region, or enlarge regions started in this way.
21400 : In Org-mode, in special contexts, these same keys are used for
21401 : other purposes, important enough to compete with shift selection.
21402 : Org tries to balance these needs by supporting `shift-select-mode'
21403 : outside these special contexts, under control of this variable.
21405 : The default of this variable is nil, to avoid confusing behavior. Shifted
21406 : cursor keys will then execute Org commands in the following contexts:
21407 : - on a headline, changing TODO state (left/right) and priority (up/down)
21408 : - on a time stamp, changing the time
21409 : - in a plain list item, changing the bullet type
21410 : - in a property definition line, switching between allowed values
21411 : - in the BEGIN line of a clock table (changing the time block).
21412 : Outside these contexts, the commands will throw an error.
21414 : When this variable is t and the cursor is not in a special
21415 : context, Org-mode will support shift-selection for making and
21416 : enlarging regions. To make this more effective, the bullet
21417 : cycling will no longer happen anywhere in an item line, but only
21418 : if the cursor is exactly on the bullet.
21420 : If you set this variable to the symbol `always', then the keys
21421 : will not be special in headlines, property lines, and item lines,
21422 : to make shift selection work there as well. If this is what you
21423 : want, you can use the following alternative commands: `C-c C-t'
21424 : and `C-c ,' to change TODO state and priority, `C-u C-u C-c C-t'
21425 : can be used to switch TODO sets, `C-c -' to cycle item bullet
21426 : types, and properties can be edited by hand or in column view.
21428 : However, when the cursor is on a timestamp, shift-cursor commands
21429 : will still edit the time stamp - this is just too good to give up.
21431 : XEmacs user should have this variable set to nil, because
21432 : `shift-select-mode' is in Emacs 23 or later only.
21434 ** org-use-speed-commands =nil=
21436 :CUSTOM_ID: org-use-speed-commands
21439 - *Type:* (choice (const :tag "Never" ni...
21440 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21441 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-speed-commands&sr=1][Find modifications in git logs]]
21443 : Non-nil means activate single letter commands at beginning of a headline.
21444 : This may also be a function to test for appropriate locations where speed
21445 : commands should be active.
21447 ** org-learn-always-reschedule =nil=
21449 :CUSTOM_ID: org-learn-always-reschedule
21453 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-learn.el;hb=HEAD][org-learn.el]]
21454 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-learn-always-reschedule&sr=1][Find modifications in git logs]]
21456 : If non-nil, always reschedule items, even if retention was "perfect".
21458 ** org-export-highlight-first-table-line =t=
21460 :CUSTOM_ID: org-export-highlight-first-table-line
21464 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
21465 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-highlight-first-table-line&sr=1][Find modifications in git logs]]
21467 : Non-nil means highlight the first table line.
21468 : In HTML export, this means use <th> instead of <td>.
21469 : In tables created with table.el, this applies to the first table line.
21470 : In Org-mode tables, all lines before the first horizontal separator
21471 : line will be formatted with <th> tags.
21473 ** org-agenda-skip-comment-trees =t=
21475 :CUSTOM_ID: org-agenda-skip-comment-trees
21479 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21480 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-comment-trees&sr=1][Find modifications in git logs]]
21482 : Non-nil means skip trees that start with the COMMENT keyword.
21483 : When nil, these trees are also scanned by agenda commands.
21485 ** org-gnus-no-server =nil=
21487 :CUSTOM_ID: org-gnus-no-server
21491 - *Since:* Emacs version 24.4
21492 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-gnus.el;hb=HEAD][org-gnus.el]]
21493 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-gnus-no-server&sr=1][Find modifications in git logs]]
21495 : Should Gnus be started using `gnus-no-server'?
21497 ** org-beamer-frame-default-options =""=
21499 :CUSTOM_ID: org-beamer-frame-default-options
21502 - *Type:* (string :tag "[options]")
21503 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
21504 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-frame-default-options&sr=1][Find modifications in git logs]]
21506 : Default options string to use for frames.
21507 : For example, it could be set to "allowframebreaks".
21509 ** org-replace-disputed-keys =nil=
21511 :CUSTOM_ID: org-replace-disputed-keys
21515 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21516 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-replace-disputed-keys&sr=1][Find modifications in git logs]]
21518 : Non-nil means use alternative key bindings for some keys.
21519 : Org-mode uses S-<cursor> keys for changing timestamps and priorities.
21520 : These keys are also used by other packages like shift-selection-mode'
21521 : (built into Emacs 23), `CUA-mode' or `windmove.el'.
21522 : If you want to use Org-mode together with one of these other modes,
21523 : or more generally if you would like to move some Org-mode commands to
21524 : other keys, set this variable and configure the keys with the variable
21525 : `org-disputed-keys'.
21527 : This option is only relevant at load-time of Org-mode, and must be set
21528 : *before* org.el is loaded. Changing it requires a restart of Emacs to
21529 : become effective.
21531 ** org-html-extension ="html"=
21533 :CUSTOM_ID: org-html-extension
21537 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
21538 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-extension&sr=1][Find modifications in git logs]]
21540 : The extension for exported HTML files.
21542 ** org-export-invisible-backends =nil=
21544 :CUSTOM_ID: org-export-invisible-backends
21547 - *Type:* (repeat (symbol :tag "Back-End...
21548 - *Since:* Emacs version 24.4
21549 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
21550 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-invisible-backends&sr=1][Find modifications in git logs]]
21552 : List of back-ends that shouldn't appear in the dispatcher.
21554 : Any back-end belonging to this list or derived from a back-end
21555 : belonging to it will not appear in the dispatcher menu.
21557 : Indeed, Org may require some export back-ends without notice. If
21558 : these modules are never to be used interactively, adding them
21559 : here will avoid cluttering the dispatcher menu.
21561 ** org-agenda-remove-times-when-in-prefix =t=
21563 :CUSTOM_ID: org-agenda-remove-times-when-in-prefix
21566 - *Type:* (choice (const :tag "Always" t...
21567 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21568 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-remove-times-when-in-prefix&sr=1][Find modifications in git logs]]
21570 : Non-nil means remove duplicate time specifications in agenda items.
21571 : When the format `org-agenda-prefix-format' contains a `%t' specifier, a
21572 : time-of-day specification in a headline or diary entry is extracted and
21573 : placed into the prefix. If this option is non-nil, the original specification
21574 : (a timestamp or -range, or just a plain time(range) specification like
21575 : 11:30-4pm) will be removed for agenda display. This makes the agenda less
21577 : The option can be t or nil. It may also be the symbol `beg', indicating
21578 : that the time should only be removed when it is located at the beginning of
21579 : the headline/diary entry.
21581 ** org-export-html-table-tag ="<table border=\"2\" cellspaci...=
21583 :CUSTOM_ID: org-export-html-table-tag
21587 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
21588 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-table-tag&sr=1][Find modifications in git logs]]
21590 : The HTML tag that is used to start a table.
21591 : This must be a <table> tag, but you may change the options like
21592 : borders and spacing.
21594 ** org-insert-labeled-timestamps-at-point =nil=
21596 :CUSTOM_ID: org-insert-labeled-timestamps-at-point
21600 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21601 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-labeled-timestamps-at-point&sr=1][Find modifications in git logs]]
21603 : Non-nil means SCHEDULED and DEADLINE timestamps are inserted at point.
21604 : When nil, these labeled time stamps are forces into the second line of an
21605 : entry, just after the headline. When scheduling from the global TODO list,
21606 : the time stamp will always be forced into the second line.
21608 ** org-agenda-ndays =nil=
21610 :CUSTOM_ID: org-agenda-ndays
21614 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21615 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-ndays&sr=1][Find modifications in git logs]]
21617 : Number of days to include in overview display.
21618 : Should be 1 or 7.
21619 : Obsolete, see `org-agenda-span'.
21621 ** org-attach-git-annex-cutoff =(* 32 1024)=
21623 :CUSTOM_ID: org-attach-git-annex-cutoff
21626 - *Type:* (choice (const :tag "None" nil...
21627 - *Since:* Emacs version 24.4
21628 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
21629 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-git-annex-cutoff&sr=1][Find modifications in git logs]]
21631 : If non-nil, files larger than this will be annexed instead of stored.
21633 ** org-clock-clocktable-default-properties =(quote (:maxlevel 2 :scope fil...=
21635 :CUSTOM_ID: org-clock-clocktable-default-properties
21639 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
21640 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-clocktable-default-properties&sr=1][Find modifications in git logs]]
21642 : Default properties for new clocktables.
21643 : These will be inserted into the BEGIN line, to make it easy for users to
21646 ** org-icalendar-with-timestamps =(quote active)=
21648 :CUSTOM_ID: org-icalendar-with-timestamps
21651 - *Type:* (choice (const :tag "All times...
21652 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
21653 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-with-timestamps&sr=1][Find modifications in git logs]]
21655 : Non-nil means make an event from plain time stamps.
21657 : It can be set to `active', `inactive', t or nil, in order to make
21658 : an event from, respectively, only active timestamps, only
21659 : inactive ones, all of them or none.
21661 : This variable has precedence over `org-export-with-timestamps'.
21662 : It can also be set with the #+OPTIONS line, e.g. "<:t".
21664 ** org-agenda-include-diary =nil=
21666 :CUSTOM_ID: org-agenda-include-diary
21670 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21671 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-include-diary&sr=1][Find modifications in git logs]]
21673 : If non-nil, include in the agenda entries from the Emacs Calendar's diary.
21674 : Custom commands can set this variable in the options section.
21676 ** org-export-taskjuggler-target-version =2.4=
21678 :CUSTOM_ID: org-export-taskjuggler-target-version
21682 - *Since:* Emacs version 24.1
21683 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
21684 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-target-version&sr=1][Find modifications in git logs]]
21686 : Which version of TaskJuggler the exporter is targeting.
21688 ** org-startup-align-all-tables =nil=
21690 :CUSTOM_ID: org-startup-align-all-tables
21694 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21695 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-align-all-tables&sr=1][Find modifications in git logs]]
21697 : Non-nil means align all tables when visiting a file.
21698 : This is useful when the column width in tables is forced with <N> cookies
21699 : in table fields. Such tables will look correct only after the first re-align.
21700 : This can also be configured on a per-file basis by adding one of
21701 : the following lines anywhere in the buffer:
21703 : #+STARTUP: noalign
21705 ** org-attach-store-link-p =nil=
21707 :CUSTOM_ID: org-attach-store-link-p
21710 - *Type:* (choice (const :tag "Don't sto...
21711 - *Since:* Emacs version 24.1
21712 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
21713 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-store-link-p&sr=1][Find modifications in git logs]]
21715 : Non-nil means store a link to a file when attaching it.
21717 ** org-agenda-skip-deadline-if-done =nil=
21719 :CUSTOM_ID: org-agenda-skip-deadline-if-done
21723 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21724 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-deadline-if-done&sr=1][Find modifications in git logs]]
21726 : Non-nil means don't show deadlines when the corresponding item is done.
21727 : When nil, the deadline is still shown and should give you a happy feeling.
21728 : This is relevant for the daily/weekly agenda. And it applied only to the
21729 : actually date of the deadline. Warnings about approaching and past-due
21730 : deadlines are always turned off when the item is DONE.
21732 ** org-mobile-files =(quote (org-agenda-files))=
21734 :CUSTOM_ID: org-mobile-files
21737 - *Type:* (list :greedy t (option (const...
21738 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
21739 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-files&sr=1][Find modifications in git logs]]
21741 : Files to be staged for MobileOrg.
21742 : This is basically a list of files and directories. Files will be staged
21743 : directly. Directories will be search for files with the extension `.org'.
21744 : In addition to this, the list may also contain the following symbols:
21747 : This means include the complete, unrestricted list of files given in
21748 : the variable `org-agenda-files'.
21749 : org-agenda-text-search-extra-files
21750 : Include the files given in the variable
21751 : `org-agenda-text-search-extra-files'
21753 ** org-export-creator-string =(format "Emacs %s (Org mode %s...=
21755 :CUSTOM_ID: org-export-creator-string
21758 - *Type:* (string :tag "Creator string")
21759 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
21760 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-creator-string&sr=1][Find modifications in git logs]]
21762 : Information about the creator of the document.
21763 : This option can also be set on with the CREATOR keyword.
21765 ** org-latex-text-markup-alist =(quote ((bold . "\\textbf{%s}"...=
21767 :CUSTOM_ID: org-latex-text-markup-alist
21771 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
21772 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-text-markup-alist&sr=1][Find modifications in git logs]]
21774 : Alist of LaTeX expressions to convert text markup.
21776 : The key must be a symbol among `bold', `code', `italic',
21777 : `strike-through', `underline' and `verbatim'. The value is
21778 : a formatting string to wrap fontified text with.
21780 : Value can also be set to the following symbols: `verb' and
21781 : `protectedtexttt'. For the former, Org will use "\verb" to
21782 : create a format string and select a delimiter character that
21783 : isn't in the string. For the latter, Org will use "\texttt"
21784 : to typeset and try to protect special characters.
21786 : If no association can be found for a given markup, text will be
21789 ** org-agenda-insert-diary-strategy =(quote date-tree)=
21791 :CUSTOM_ID: org-agenda-insert-diary-strategy
21794 - *Type:* (choice (const :tag "in a date...
21795 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21796 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-insert-diary-strategy&sr=1][Find modifications in git logs]]
21798 : Where in `org-agenda-diary-file' should new entries be added?
21801 : date-tree in the date tree, as child of the date
21802 : top-level as top-level entries at the end of the file.
21804 ** org-html-with-latex =org-export-with-latex=
21806 :CUSTOM_ID: org-html-with-latex
21809 - *Type:* (choice (const :tag "Do not pr...
21810 - *Since:* Emacs version 24.4
21811 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
21812 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-with-latex&sr=1][Find modifications in git logs]]
21814 : Non-nil means process LaTeX math snippets.
21816 : When set, the exporter will process LaTeX environments and
21819 : This option can also be set with the +OPTIONS line,
21820 : e.g. "tex:mathjax". Allowed values are:
21822 : nil Ignore math snippets.
21823 : `verbatim' Keep everything in verbatim
21824 : `dvipng' Process the LaTeX fragments to images. This will also
21825 : include processing of non-math environments.
21826 : `imagemagick' Convert the LaTeX fragments to pdf files and use
21827 : imagemagick to convert pdf files to png files.
21828 : `mathjax' Do MathJax preprocessing and arrange for MathJax.js to
21830 : t Synonym for `mathjax'.
21832 ** org-yank-adjusted-subtrees =nil=
21834 :CUSTOM_ID: org-yank-adjusted-subtrees
21838 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21839 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-yank-adjusted-subtrees&sr=1][Find modifications in git logs]]
21841 : Non-nil means when yanking subtrees, adjust the level.
21842 : With this setting, `org-paste-subtree' is used to insert the subtree, see
21843 : this function for details.
21845 ** org-export-html-footnote-separator ="<sup>, </sup>"=
21847 :CUSTOM_ID: org-export-html-footnote-separator
21851 - *Since:* Emacs version 24.1
21852 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
21853 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-footnote-separator&sr=1][Find modifications in git logs]]
21855 : Text used to separate footnotes.
21857 ** org-export-with-email =nil=
21859 :CUSTOM_ID: org-export-with-email
21863 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
21864 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-email&sr=1][Find modifications in git logs]]
21866 : Non-nil means insert author email into the exported file.
21867 : This option can also be set with the OPTIONS keyword,
21870 ** org-list-description-max-indent =20=
21872 :CUSTOM_ID: org-list-description-max-indent
21876 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
21877 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-description-max-indent&sr=1][Find modifications in git logs]]
21879 : Maximum indentation for the second line of a description list.
21880 : When the indentation would be larger than this, it will become
21881 : 5 characters instead.
21883 ** org-export-async-init-file =user-init-file=
21885 :CUSTOM_ID: org-export-async-init-file
21888 - *Type:* (file :must-match t)
21889 - *Since:* Emacs version 24.4
21890 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
21891 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-async-init-file&sr=1][Find modifications in git logs]]
21893 : File used to initialize external export process.
21894 : Value must be an absolute file name. It defaults to user's
21895 : initialization file. Though, a specific configuration makes the
21896 : process faster and the export more portable.
21898 ** org-refile-active-region-within-subtree =nil=
21900 :CUSTOM_ID: org-refile-active-region-within-subtree
21904 - *Since:* Emacs version 24.1
21905 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21906 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-refile-active-region-within-subtree&sr=1][Find modifications in git logs]]
21908 : Non-nil means also refile active region within a subtree.
21910 : By default `org-refile' doesn't allow refiling regions if they
21911 : don't contain a set of subtrees, but it might be convenient to
21912 : do so sometimes: in that case, the first line of the region is
21913 : converted to a headline before refiling.
21915 ** org-calendar-to-agenda-key =[99]=
21917 :CUSTOM_ID: org-calendar-to-agenda-key
21921 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21922 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-calendar-to-agenda-key&sr=1][Find modifications in git logs]]
21924 : The key to be installed in `calendar-mode-map' for switching to the agenda.
21925 : The command `org-calendar-goto-agenda' will be bound to this key. The
21926 : default is the character `c' because then `c' can be used to switch back and
21927 : forth between agenda and calendar.
21929 ** org-enforce-todo-dependencies =nil=
21931 :CUSTOM_ID: org-enforce-todo-dependencies
21935 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21936 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-enforce-todo-dependencies&sr=1][Find modifications in git logs]]
21938 : Non-nil means undone TODO entries will block switching the parent to DONE.
21939 : Also, if a parent has an :ORDERED: property, switching an entry to DONE will
21940 : be blocked if any prior sibling is not yet done.
21941 : Finally, if the parent is blocked because of ordered siblings of its own,
21942 : the child will also be blocked.
21944 ** org-icalendar-include-sexps =t=
21946 :CUSTOM_ID: org-icalendar-include-sexps
21950 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
21951 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-include-sexps&sr=1][Find modifications in git logs]]
21953 : Non-nil means export to iCalendar files should also cover sexp entries.
21954 : These are entries like in the diary, but directly in an Org mode
21957 ** org-completion-fallback-command =(quote hippie-expand)=
21959 :CUSTOM_ID: org-completion-fallback-command
21963 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
21964 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-completion-fallback-command&sr=1][Find modifications in git logs]]
21966 : The expansion command called by \[pcomplete] in normal context.
21967 : Normal means, no org-mode-specific context.
21969 ** org-agenda-remove-timeranges-from-blocks =nil=
21971 :CUSTOM_ID: org-agenda-remove-timeranges-from-blocks
21975 - *Since:* Emacs version 24.1
21976 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
21977 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-remove-timeranges-from-blocks&sr=1][Find modifications in git logs]]
21979 : Non-nil means remove time ranges specifications in agenda
21980 : items that span on several days.
21982 ** org-babel-scheme-cmd ="guile"=
21984 :CUSTOM_ID: org-babel-scheme-cmd
21988 - *Since:* Emacs version 24.1
21989 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-scheme.el;hb=HEAD][ob-scheme.el]]
21990 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-scheme-cmd&sr=1][Find modifications in git logs]]
21992 : Name of command used to evaluate scheme blocks.
21994 ** org-time-clocksum-format =(quote (:days "%dd " :hours "%...=
21996 :CUSTOM_ID: org-time-clocksum-format
21999 - *Type:* (choice (string :tag "Format s...
22000 - *Since:* Emacs version 24.4
22001 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22002 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-clocksum-format&sr=1][Find modifications in git logs]]
22004 : The format string used when creating CLOCKSUM lines.
22005 : This is also used when Org mode generates a time duration.
22007 : The value can be a single format string containing two
22008 : %-sequences, which will be filled with the number of hours and
22009 : minutes in that order.
22011 : Alternatively, the value can be a plist associating any of the
22012 : keys :years, :months, :weeks, :days, :hours or :minutes with
22013 : format strings. The time duration is formatted using only the
22014 : time components that are needed and concatenating the results.
22015 : If a time unit in absent, it falls back to the next smallest
22018 : The keys :require-years, :require-months, :require-days,
22019 : :require-weeks, :require-hours, :require-minutes are also
22020 : meaningful. A non-nil value for these keys indicates that the
22021 : corresponding time component should always be included, even if
22027 : (:days "%dd" :hours "%d" :require-hours t :minutes ":%02d"
22028 : :require-minutes t)
22030 : means durations longer than a day will be expressed in days,
22031 : hours and minutes, and durations less than a day will always be
22032 : expressed in hours and minutes (even for durations less than an
22037 : (:days "%dd" :minutes "%dm")
22039 : means durations longer than a day will be expressed in days and
22040 : minutes, and durations less than a day will be expressed entirely
22041 : in minutes (even for durations longer than an hour).
22043 ** org-edit-src-auto-save-idle-delay =0=
22045 :CUSTOM_ID: org-edit-src-auto-save-idle-delay
22049 - *Since:* Emacs version 24.4
22050 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
22051 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-auto-save-idle-delay&sr=1][Find modifications in git logs]]
22053 : Delay before saving a source code buffer back into its base buffer.
22054 : When a positive integer N, save after N seconds of idle time.
22055 : When 0 (the default), don't auto-save.
22057 : If you want to save the source code buffer itself, don't use this.
22058 : Check `org-edit-src-turn-on-auto-save' instead.
22060 ** org-export-html-footnotes-section ="<div id=\"footnotes\">\n<h2 c...=
22062 :CUSTOM_ID: org-export-html-footnotes-section
22066 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
22067 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-footnotes-section&sr=1][Find modifications in git logs]]
22069 : Format for the footnotes section.
22070 : Should contain a two instances of %s. The first will be replaced with the
22071 : language-specific word for "Footnotes", the second one will be replaced
22072 : by the footnotes themselves.
22074 ** org-latex-logfiles-extensions =(quote ("aux" "idx" "log" "out...=
22076 :CUSTOM_ID: org-latex-logfiles-extensions
22079 - *Type:* (repeat (string :tag "Extensio...
22080 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
22081 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-logfiles-extensions&sr=1][Find modifications in git logs]]
22083 : The list of file extensions to consider as LaTeX logfiles.
22084 : The logfiles will be remove if `org-latex-remove-logfiles' is
22087 ** org-link-frame-setup =(quote ((vm . vm-visit-folder-...=
22089 :CUSTOM_ID: org-link-frame-setup
22092 - *Type:* (list (cons (const vm) (choice...
22093 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22094 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-link-frame-setup&sr=1][Find modifications in git logs]]
22096 : Setup the frame configuration for following links.
22097 : When following a link with Emacs, it may often be useful to display
22098 : this link in another window or frame. This variable can be used to
22099 : set this up for the different types of links.
22100 : For VM, use any of
22101 : `vm-visit-folder'
22102 : `vm-visit-folder-other-window'
22103 : `vm-visit-folder-other-frame'
22104 : For Gnus, use any of
22106 : `gnus-other-frame'
22107 : `org-gnus-no-new-news'
22108 : For FILE, use any of
22110 : `find-file-other-window'
22111 : `find-file-other-frame'
22112 : For Wanderlust use any of
22115 : For the calendar, use the variable `calendar-setup'.
22116 : For BBDB, it is currently only possible to display the matches in
22119 ** org-infojs-template ="<script type=\"text/javascrip...=
22121 :CUSTOM_ID: org-infojs-template
22125 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-jsinfo.el;hb=HEAD][org-jsinfo.el]]
22126 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-infojs-template&sr=1][Find modifications in git logs]]
22128 : The template for the export style additions when org-info.js is used.
22129 : Option settings will replace the %MANAGER-OPTIONS cookie.
22131 ** org-track-ordered-property-with-tag =nil=
22133 :CUSTOM_ID: org-track-ordered-property-with-tag
22136 - *Type:* (choice (const :tag "No tracki...
22137 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22138 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-track-ordered-property-with-tag&sr=1][Find modifications in git logs]]
22140 : Should the ORDERED property also be shown as a tag?
22141 : The ORDERED property decides if an entry should require subtasks to be
22142 : completed in sequence. Since a property is not very visible, setting
22143 : this option means that toggling the ORDERED property with the command
22144 : `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
22145 : not relevant for the behavior, but it makes things more visible.
22147 : Note that toggling the tag with tags commands will not change the property
22148 : and therefore not influence behavior!
22150 : This can be t, meaning the tag ORDERED should be used, It can also be a
22151 : string to select a different tag for this task.
22153 ** org-agenda-clockreport-parameter-plist =(quote (:link t :maxlevel 2))=
22155 :CUSTOM_ID: org-agenda-clockreport-parameter-plist
22159 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22160 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clockreport-parameter-plist&sr=1][Find modifications in git logs]]
22162 : Property list with parameters for the clocktable in clockreport mode.
22163 : This is the display mode that shows a clock table in the daily/weekly
22164 : agenda, the properties for this dynamic block can be set here.
22165 : The usual clocktable parameters are allowed here, but you cannot set
22166 : the properties :name, :tstart, :tend, :block, and :scope - these will
22167 : be overwritten to make sure the content accurately reflects the
22168 : current display in the agenda.
22170 ** org-insert-mode-line-in-empty-file =nil=
22172 :CUSTOM_ID: org-insert-mode-line-in-empty-file
22176 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22177 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-insert-mode-line-in-empty-file&sr=1][Find modifications in git logs]]
22179 : Non-nil means insert the first line setting Org-mode in empty files.
22180 : When the function `org-mode' is called interactively in an empty file, this
22181 : normally means that the file name does not automatically trigger Org-mode.
22182 : To ensure that the file will always be in Org-mode in the future, a
22183 : line enforcing Org-mode will be inserted into the buffer, if this option
22186 ** org-export-with-smart-quotes =nil=
22188 :CUSTOM_ID: org-export-with-smart-quotes
22192 - *Since:* Emacs version 24.4
22193 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
22194 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-smart-quotes&sr=1][Find modifications in git logs]]
22196 : Non-nil means activate smart quotes during export.
22197 : This option can also be set with the OPTIONS keyword,
22200 : When setting this to non-nil, you need to take care of
22201 : using the correct Babel package when exporting to LaTeX.
22202 : E.g., you can load Babel for french like this:
22204 : #+LATEX_HEADER: \usepackage[french]{babel}
22206 ** org-clock-clocktable-language-setup =(quote (("en" "File" "L" "Time...=
22208 :CUSTOM_ID: org-clock-clocktable-language-setup
22212 - *Since:* Emacs version 24.1
22213 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
22214 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-clocktable-language-setup&sr=1][Find modifications in git logs]]
22216 : Terms used in clocktable, translated to different languages.
22218 ** org-self-insert-cluster-for-undo =(or (featurep (quote xemacs)) ...=
22220 :CUSTOM_ID: org-self-insert-cluster-for-undo
22224 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22225 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-self-insert-cluster-for-undo&sr=1][Find modifications in git logs]]
22227 : Non-nil means cluster self-insert commands for undo when possible.
22228 : If this is set, then, like in the Emacs command loop, 20 consecutive
22229 : characters will be undone together.
22230 : This is configurable, because there is some impact on typing performance.
22232 ** org-special-ctrl-a/e =nil=
22234 :CUSTOM_ID: org-special-ctrl-a/e
22237 - *Type:* (choice (const :tag "off" nil)...
22238 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22239 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-special-ctrl-a/e&sr=1][Find modifications in git logs]]
22241 : Non-nil means `C-a' and `C-e' behave specially in headlines and items.
22243 : When t, `C-a' will bring back the cursor to the beginning of the
22244 : headline text, i.e. after the stars and after a possible TODO
22245 : keyword. In an item, this will be the position after bullet and
22246 : check-box, if any. When the cursor is already at that position,
22247 : another `C-a' will bring it to the beginning of the line.
22249 : `C-e' will jump to the end of the headline, ignoring the presence
22250 : of tags in the headline. A second `C-e' will then jump to the
22251 : true end of the line, after any tags. This also means that, when
22252 : this variable is non-nil, `C-e' also will never jump beyond the
22253 : end of the heading of a folded section, i.e. not after the
22256 : When set to the symbol `reversed', the first `C-a' or `C-e' works
22257 : normally, going to the true line boundary first. Only a directly
22258 : following, identical keypress will bring the cursor to the
22259 : special positions.
22261 : This may also be a cons cell where the behavior for `C-a' and
22262 : `C-e' is set separately.
22264 ** org-export-html-style-include-default =t=
22266 :CUSTOM_ID: org-export-html-style-include-default
22270 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
22271 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-style-include-default&sr=1][Find modifications in git logs]]
22273 : Non-nil means include the default style in exported HTML files.
22274 : The actual style is defined in `org-export-html-style-default' and should
22275 : not be modified. Use the variables `org-export-html-style' to add
22276 : your own style information.
22278 ** org-icalendar-exclude-tags =nil=
22280 :CUSTOM_ID: org-icalendar-exclude-tags
22283 - *Type:* (repeat (string :tag "Tag"))
22284 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
22285 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-exclude-tags&sr=1][Find modifications in git logs]]
22287 : Tags that exclude a tree from export.
22288 : This variable allows to specify different exclude tags from other
22289 : back-ends. It can also be set with the ICAL_EXCLUDE_TAGS
22292 ** org-learn-fraction =0.5=
22294 :CUSTOM_ID: org-learn-fraction
22298 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-learn.el;hb=HEAD][org-learn.el]]
22299 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-learn-fraction&sr=1][Find modifications in git logs]]
22301 : Controls the rate at which EF is increased or decreased.
22302 : Must be a number between 0 and 1 (the greater it is the faster
22303 : the changes of the OF matrix).
22305 ** org-ascii-caption-above =nil=
22307 :CUSTOM_ID: org-ascii-caption-above
22311 - *Since:* Emacs version 24.4
22312 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
22313 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-caption-above&sr=1][Find modifications in git logs]]
22315 : When non-nil, place caption string before the element.
22316 : Otherwise, place it right after it.
22318 ** org-doi-server-url ="http://dx.doi.org/"=
22320 :CUSTOM_ID: org-doi-server-url
22324 - *Since:* Emacs version 24.3
22325 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22326 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-doi-server-url&sr=1][Find modifications in git logs]]
22328 : The URL of the DOI server.
22330 ** org-odt-styles-file =nil=
22332 :CUSTOM_ID: org-odt-styles-file
22335 - *Type:* (choice (const :tag "Factory s...
22336 - *Since:* Emacs version 24.1
22337 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
22338 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-styles-file&sr=1][Find modifications in git logs]]
22340 : Default styles file for use with ODT export.
22341 : Valid values are one of:
22343 : 2. path to a styles.xml file
22344 : 3. path to a *.odt or a *.ott file
22345 : 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
22348 : In case of option 1, an in-built styles.xml is used. See
22349 : `org-odt-styles-dir' for more information.
22351 : In case of option 3, the specified file is unzipped and the
22352 : styles.xml embedded therein is used.
22354 : In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
22355 : and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
22356 : generated odt file. Use relative path for specifying the
22357 : FILE-MEMBERS. styles.xml must be specified as one of the
22360 : Use options 1, 2 or 3 only if styles.xml alone suffices for
22361 : achieving the desired formatting. Use option 4, if the styles.xml
22362 : references additional files like header and footer images for
22363 : achieving the desired formatting.
22365 : Use "#+ODT_STYLES_FILE: ..." directive to set this variable on
22366 : a per-file basis. For example,
22368 : #+ODT_STYLES_FILE: "/path/to/styles.xml" or
22369 : #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png")).
22371 ** org-startup-with-inline-images =nil=
22373 :CUSTOM_ID: org-startup-with-inline-images
22377 - *Since:* Emacs version 24.1
22378 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22379 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-with-inline-images&sr=1][Find modifications in git logs]]
22381 : Non-nil means show inline images when loading a new Org file.
22382 : This can also be configured on a per-file basis by adding one of
22383 : the following lines anywhere in the buffer:
22384 : #+STARTUP: inlineimages
22385 : #+STARTUP: noinlineimages
22387 ** org-babel-sh-var-quote-fmt ="$(cat <<'BABEL_TABLE'\n%s\nBA...=
22389 :CUSTOM_ID: org-babel-sh-var-quote-fmt
22393 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-sh.el;hb=HEAD][ob-sh.el]]
22394 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-sh-var-quote-fmt&sr=1][Find modifications in git logs]]
22396 : Format string used to escape variables when passed to shell scripts.
22398 ** org-clock-into-drawer =org-log-into-drawer=
22400 :CUSTOM_ID: org-clock-into-drawer
22403 - *Type:* (choice (const :tag "Always" t...
22404 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
22405 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-into-drawer&sr=1][Find modifications in git logs]]
22407 : Should clocking info be wrapped into a drawer?
22408 : When t, clocking info will always be inserted into a :LOGBOOK: drawer.
22409 : If necessary, the drawer will be created.
22410 : When nil, the drawer will not be created, but used when present.
22411 : When an integer and the number of clocking entries in an item
22412 : reaches or exceeds this number, a drawer will be created.
22413 : When a string, it names the drawer to be used.
22415 : The default for this variable is the value of `org-log-into-drawer',
22418 ** org-show-hierarchy-above =(quote ((default . t)))=
22420 :CUSTOM_ID: org-show-hierarchy-above
22423 - *Type:* (choice (const :tag "Always" t...
22424 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22425 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-hierarchy-above&sr=1][Find modifications in git logs]]
22427 : Non-nil means show full hierarchy when revealing a location.
22428 : Org-mode often shows locations in an org-mode file which might have
22429 : been invisible before. When this is set, the hierarchy of headings
22430 : above the exposed location is shown.
22431 : Turning this off for example for sparse trees makes them very compact.
22432 : Instead of t, this can also be an alist specifying this option for different
22433 : contexts. Valid contexts are
22434 : agenda when exposing an entry from the agenda
22435 : org-goto when using the command `org-goto' on key C-c C-j
22436 : occur-tree when using the command `org-occur' on key C-c /
22437 : tags-tree when constructing a sparse tree based on tags matches
22438 : link-search when exposing search matches associated with a link
22439 : mark-goto when exposing the jump goal of a mark
22440 : bookmark-jump when exposing a bookmark location
22441 : isearch when exiting from an incremental search
22442 : default default for all contexts not set explicitly
22444 ** org-agenda-default-appointment-duration =nil=
22446 :CUSTOM_ID: org-agenda-default-appointment-duration
22449 - *Type:* (choice (integer :tag "Minutes...
22450 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22451 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-default-appointment-duration&sr=1][Find modifications in git logs]]
22453 : Default duration for appointments that only have a starting time.
22454 : When nil, no duration is specified in such cases.
22455 : When non-nil, this must be the number of minutes, e.g. 60 for one hour.
22457 ** org-time-stamp-custom-formats =(quote ("<%m/%d/%y %a>" . "<%m...=
22459 :CUSTOM_ID: org-time-stamp-custom-formats
22463 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22464 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-stamp-custom-formats&sr=1][Find modifications in git logs]]
22466 : Custom formats for time stamps. See `format-time-string' for the syntax.
22467 : These are overlaid over the default ISO format if the variable
22468 : `org-display-custom-times' is set. Time like %H:%M should be at the
22469 : end of the second format. The custom formats are also honored by export
22470 : commands, if custom time display is turned on at the time of export.
22472 ** org-agenda-start-on-weekday =1=
22474 :CUSTOM_ID: org-agenda-start-on-weekday
22477 - *Type:* (choice (const :tag "Today" ni...
22478 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22479 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-start-on-weekday&sr=1][Find modifications in git logs]]
22481 : Non-nil means start the overview always on the specified weekday.
22482 : 0 denotes Sunday, 1 denotes Monday, etc.
22483 : When nil, always start on the current day.
22484 : Custom commands can set this variable in the options section.
22486 ** org-table-formula-constants =nil=
22488 :CUSTOM_ID: org-table-formula-constants
22491 - *Type:* (repeat (cons (string :tag "na...
22492 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
22493 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-formula-constants&sr=1][Find modifications in git logs]]
22495 : Alist with constant names and values, for use in table formulas.
22496 : The car of each element is a name of a constant, without the `$' before it.
22497 : The cdr is the value as a string. For example, if you'd like to use the
22498 : speed of light in a formula, you would configure
22500 : (setq org-table-formula-constants '(("c" . "299792458.")))
22502 : and then use it in an equation like `$1*$c'.
22504 : Constants can also be defined on a per-file basis using a line like
22506 : #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
22508 ** org-latex-pdf-process =(quote ("pdflatex -interaction...=
22510 :CUSTOM_ID: org-latex-pdf-process
22513 - *Type:* (choice (repeat :tag "Shell co...
22514 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
22515 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-pdf-process&sr=1][Find modifications in git logs]]
22517 : Commands to process a LaTeX file to a PDF file.
22518 : This is a list of strings, each of them will be given to the
22519 : shell as a command. %f in the command will be replaced by the
22520 : full file name, %b by the file base name (i.e. without directory
22521 : and extension parts) and %o by the base directory of the file.
22523 : The reason why this is a list is that it usually takes several
22524 : runs of `pdflatex', maybe mixed with a call to `bibtex'. Org
22525 : does not have a clever mechanism to detect which of these
22526 : commands have to be run to get to a stable result, and it also
22527 : does not do any error checking.
22529 : By default, Org uses 3 runs of `pdflatex' to do the processing.
22530 : If you have texi2dvi on your system and if that does not cause
22531 : the infamous egrep/locale bug:
22533 : http://lists.gnu.org/archive/html/bug-texinfo/2010-03/msg00031.html
22535 : then `texi2dvi' is the superior choice. Org does offer it as one
22536 : of the customize options.
22538 : Alternatively, this may be a Lisp function that does the
22539 : processing, so you could use this to apply the machinery of
22540 : AUCTeX or the Emacs LaTeX mode. This function should accept the
22541 : file name as its single argument.
22543 ** org-priority-start-cycle-with-default =t=
22545 :CUSTOM_ID: org-priority-start-cycle-with-default
22549 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22550 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-priority-start-cycle-with-default&sr=1][Find modifications in git logs]]
22552 : Non-nil means start with default priority when starting to cycle.
22553 : When this is nil, the first step in the cycle will be (depending on the
22554 : command used) one higher or lower than the default priority.
22555 : See also `org-default-priority'.
22557 ** org-table-export-default-format ="orgtbl-to-tsv"=
22559 :CUSTOM_ID: org-table-export-default-format
22563 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
22564 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-export-default-format&sr=1][Find modifications in git logs]]
22566 : Default export parameters for `org-table-export'.
22567 : These can be overridden for a specific table by setting the
22568 : TABLE_EXPORT_FORMAT property. See the manual section on orgtbl
22569 : radio tables for the different export transformations and
22570 : available parameters.
22572 ** org-html-head-include-default-style =t=
22574 :CUSTOM_ID: org-html-head-include-default-style
22578 - *Since:* Emacs version 24.4
22579 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
22580 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-head-include-default-style&sr=1][Find modifications in git logs]]
22582 : Non-nil means include the default style in exported HTML files.
22583 : The actual style is defined in `org-html-style-default' and
22584 : should not be modified. Use `org-html-head' to use your own
22585 : style information.
22587 ** org-export-table-remove-empty-lines =t=
22589 :CUSTOM_ID: org-export-table-remove-empty-lines
22593 - *Since:* Emacs version 24.1
22594 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
22595 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-table-remove-empty-lines&sr=1][Find modifications in git logs]]
22597 : Remove empty lines when exporting tables.
22598 : This is the global equivalent of the :remove-nil-lines option
22599 : when locally sending a table with #+ORGTBL.
22601 ** org-man-tables-verbatim =nil=
22603 :CUSTOM_ID: org-man-tables-verbatim
22607 - *Since:* Emacs version 24.4
22608 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
22609 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-tables-verbatim&sr=1][Find modifications in git logs]]
22611 : When non-nil, tables are exported verbatim.
22613 ** org-latex-to-mathml-convert-command =nil=
22615 :CUSTOM_ID: org-latex-to-mathml-convert-command
22618 - *Type:* (choice (const :tag "None" nil...
22619 - *Since:* Emacs version 24.1
22620 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22621 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-to-mathml-convert-command&sr=1][Find modifications in git logs]]
22623 : Command to convert LaTeX fragments to MathML.
22624 : Replace format-specifiers in the command as noted below and use
22625 : `shell-command' to convert LaTeX to MathML.
22626 : %j: Executable file in fully expanded form as specified by
22627 : `org-latex-to-mathml-jar-file'.
22628 : %I: Input LaTeX file in fully expanded form
22629 : %o: Output MathML file
22630 : This command is used by `org-create-math-formula'.
22632 : When using MathToWeb as the converter, set this to
22633 : "java -jar %j -unicode -force -df %o %I".
22635 ** org-bibtex-tags =nil=
22637 :CUSTOM_ID: org-bibtex-tags
22640 - *Type:* (repeat :tag "Tag" (string))
22641 - *Since:* Emacs version 24.1
22642 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
22643 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-tags&sr=1][Find modifications in git logs]]
22645 : List of tag(s) that should be added to new bib entries.
22647 ** org-odt-fontify-srcblocks =t=
22649 :CUSTOM_ID: org-odt-fontify-srcblocks
22653 - *Since:* Emacs version 24.1
22654 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
22655 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-fontify-srcblocks&sr=1][Find modifications in git logs]]
22657 : Specify whether or not source blocks need to be fontified.
22658 : Turn this option on if you want to colorize the source code
22659 : blocks in the exported file. For colorization to work, you need
22660 : to make available an enhanced version of `htmlfontify' library.
22662 ** org-habit-today-glyph =33=
22664 :CUSTOM_ID: org-habit-today-glyph
22667 - *Type:* character
22668 - *Since:* Emacs version 24.1
22669 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
22670 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-today-glyph&sr=1][Find modifications in git logs]]
22672 : Glyph character used to identify today.
22674 ** org-ascii-format-drawer-function =nil=
22676 :CUSTOM_ID: org-ascii-format-drawer-function
22680 - *Since:* Emacs version 24.4
22681 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
22682 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-format-drawer-function&sr=1][Find modifications in git logs]]
22684 : Function called to format a drawer in ASCII.
22686 : The function must accept three parameters:
22687 : NAME the drawer name, like "LOGBOOK"
22688 : CONTENTS the contents of the drawer.
22689 : WIDTH the text width within the drawer.
22691 : The function should return either the string to be exported or
22692 : nil to ignore the drawer.
22694 : For example, the variable could be set to the following function
22695 : in order to mimic default behaviour:
22697 : (defun org-ascii-format-drawer-default (name contents width)
22698 : "Format a drawer element for ASCII export."
22701 ** org-tags-exclude-from-inheritance =nil=
22703 :CUSTOM_ID: org-tags-exclude-from-inheritance
22706 - *Type:* (repeat (string :tag "Tag"))
22707 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22708 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-exclude-from-inheritance&sr=1][Find modifications in git logs]]
22710 : List of tags that should never be inherited.
22711 : This is a way to exclude a few tags from inheritance. For way to do
22712 : the opposite, to actively allow inheritance for selected tags,
22713 : see the variable `org-use-tag-inheritance'.
22715 ** org-group-tags =t=
22717 :CUSTOM_ID: org-group-tags
22721 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22722 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-group-tags&sr=1][Find modifications in git logs]]
22724 : When non-nil (the default), use group tags.
22725 : This can be turned on/off through `org-toggle-tags-groups'.
22727 ** org-agenda-max-todos =nil=
22729 :CUSTOM_ID: org-agenda-max-todos
22732 - *Type:* (choice (symbol :tag "No limit...
22733 - *Since:* Emacs version 24.4
22734 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22735 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-max-todos&sr=1][Find modifications in git logs]]
22737 : Maximum number of TODOs to display in an agenda.
22738 : This can be nil (no limit) or an integer or an alist of agenda
22739 : types with an associated number of entries to display in this
22742 ** org-latex-table-scientific-notation ="%s\\,(%s)"=
22744 :CUSTOM_ID: org-latex-table-scientific-notation
22747 - *Type:* (choice (string :tag "Format s...
22748 - *Since:* Emacs version 24.4
22749 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
22750 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-table-scientific-notation&sr=1][Find modifications in git logs]]
22752 : Format string to display numbers in scientific notation.
22753 : The format should have "%s" twice, for mantissa and exponent
22754 : (i.e., "%s\\times10^{%s}").
22756 : When nil, no transformation is made.
22758 ** org-babel-results-keyword ="RESULTS"=
22760 :CUSTOM_ID: org-babel-results-keyword
22764 - *Since:* Emacs version 24.4
22765 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
22766 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-results-keyword&sr=1][Find modifications in git logs]]
22768 : Keyword used to name results generated by code blocks.
22769 : Should be either RESULTS or NAME however any capitalization may
22772 ** org-directory ="~/org"=
22774 :CUSTOM_ID: org-directory
22777 - *Type:* directory
22778 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22779 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-directory&sr=1][Find modifications in git logs]]
22781 : Directory with org files.
22782 : This is just a default location to look for Org files. There is no need
22783 : at all to put your files into this directory. It is only used in the
22784 : following situations:
22786 : 1. When a capture template specifies a target file that is not an
22787 : absolute path. The path will then be interpreted relative to
22789 : 2. When a capture note is filed away in an interactive way (when exiting the
22790 : note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
22791 : with `org-directory' as the default path.
22793 ** org-agenda-timegrid-use-ampm =nil=
22795 :CUSTOM_ID: org-agenda-timegrid-use-ampm
22799 - *Since:* Emacs version 24.1
22800 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22801 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-timegrid-use-ampm&sr=1][Find modifications in git logs]]
22803 : When set, show AM/PM style timestamps on the timegrid.
22805 ** org-export-dispatch-use-expert-ui =nil=
22807 :CUSTOM_ID: org-export-dispatch-use-expert-ui
22811 - *Since:* Emacs version 24.4
22812 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
22813 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-dispatch-use-expert-ui&sr=1][Find modifications in git logs]]
22815 : Non-nil means using a non-intrusive `org-export-dispatch'.
22816 : In that case, no help buffer is displayed. Though, an indicator
22817 : for current export scope is added to the prompt ("b" when
22818 : output is restricted to body only, "s" when it is restricted to
22819 : the current subtree, "v" when only visible elements are
22820 : considered for export, "f" when publishing functions should be
22821 : passed the FORCE argument and "a" when the export should be
22822 : asynchronous). Also, [?] allows to switch back to standard
22825 ** org-table-fix-formulas-confirm =nil=
22827 :CUSTOM_ID: org-table-fix-formulas-confirm
22830 - *Type:* (choice (const :tag "with yes-...
22831 - *Since:* Emacs version 24.1
22832 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
22833 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-fix-formulas-confirm&sr=1][Find modifications in git logs]]
22835 : Whether the user should confirm when Org fixes formulas.
22837 ** org-export-html-tag-class-prefix =""=
22839 :CUSTOM_ID: org-export-html-tag-class-prefix
22843 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
22844 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-tag-class-prefix&sr=1][Find modifications in git logs]]
22846 : Prefix to class names for TODO keywords.
22847 : Each tag gets a class given by the tag itself, with this prefix.
22848 : The default prefix is empty because it is nice to just use the keyword
22849 : as a class name. But if you get into conflicts with other, existing
22850 : CSS classes, then this prefix can be very useful.
22852 ** org-man-table-scientific-notation ="%sE%s"=
22854 :CUSTOM_ID: org-man-table-scientific-notation
22857 - *Type:* (choice (string :tag "Format s...
22858 - *Since:* Emacs version 24.4
22859 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
22860 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-table-scientific-notation&sr=1][Find modifications in git logs]]
22862 : Format string to display numbers in scientific notation.
22863 : The format should have "%s" twice, for mantissa and exponent
22864 : (i.e. "%s\\times10^{%s}").
22866 : When nil, no transformation is made.
22868 ** org-footnote-define-inline =nil=
22870 :CUSTOM_ID: org-footnote-define-inline
22874 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
22875 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-define-inline&sr=1][Find modifications in git logs]]
22877 : Non-nil means define footnotes inline, at reference location.
22878 : When nil, footnotes will be defined in a special section near
22879 : the end of the document. When t, the [fn:label:definition] notation
22880 : will be used to define the footnote at the reference position.
22882 ** org-format-latex-header ="\\documentclass{article}\n\\u...=
22884 :CUSTOM_ID: org-format-latex-header
22888 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
22889 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-format-latex-header&sr=1][Find modifications in git logs]]
22891 : The document header used for processing LaTeX fragments.
22892 : It is imperative that this header make sure that no page number
22893 : appears on the page. The package defined in the variables
22894 : `org-latex-default-packages-alist' and `org-latex-packages-alist'
22895 : will either replace the placeholder "[PACKAGES]" in this
22896 : header, or they will be appended.
22898 ** org-agenda-move-date-from-past-immediately-to-today =t=
22900 :CUSTOM_ID: org-agenda-move-date-from-past-immediately-to-today
22904 - *Since:* Emacs version 24.1
22905 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22906 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-move-date-from-past-immediately-to-today&sr=1][Find modifications in git logs]]
22908 : Non-nil means jump to today when moving a past date forward in time.
22909 : When using S-right in the agenda to move a a date forward, and the date
22910 : stamp currently points to the past, the first key press will move it
22911 : to today. WHen nil, just move one day forward even if the date stays
22914 ** org-bbdb-anniversary-field =(quote anniversary)=
22916 :CUSTOM_ID: org-bbdb-anniversary-field
22920 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bbdb.el;hb=HEAD][org-bbdb.el]]
22921 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bbdb-anniversary-field&sr=1][Find modifications in git logs]]
22923 : The BBDB field which contains anniversaries.
22924 : The anniversaries are stored in the following format
22926 : YYYY-MM-DD Class-or-Format-String
22928 : where class is one of the customized classes for anniversaries;
22929 : birthday and wedding are predefined. Format-String can take three
22930 : substitutions 1) the name of the record containing this
22931 : anniversary, 2) the number of years, and 3) an ordinal suffix for
22934 : Multiple anniversaries can be separated by \n.
22936 ** org-agenda-use-tag-inheritance =(quote (todo search timeline a...=
22938 :CUSTOM_ID: org-agenda-use-tag-inheritance
22941 - *Type:* (choice (const :tag "Use tag i...
22942 - *Since:* Emacs version 24.3
22943 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
22944 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-use-tag-inheritance&sr=1][Find modifications in git logs]]
22946 : List of agenda view types where to use tag inheritance.
22948 : In tags/tags-todo/tags-tree agenda views, tag inheritance is
22949 : controlled by `org-use-tag-inheritance'. In other agenda types,
22950 : `org-use-tag-inheritance' is not used for the selection of the
22951 : agenda entries. Still, you may want the agenda to be aware of
22952 : the inherited tags anyway, e.g. for later tag filtering.
22954 : Allowed value are 'todo, 'search, 'timeline and 'agenda.
22956 : This variable has no effect if `org-agenda-show-inherited-tags'
22957 : is set to 'always. In that case, the agenda is aware of those
22960 : The default value sets tags in every agenda type. Setting this
22961 : option to nil will speed up non-tags agenda view a lot.
22963 ** org-odt-format-drawer-function =nil=
22965 :CUSTOM_ID: org-odt-format-drawer-function
22969 - *Since:* Emacs version 24.4
22970 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
22971 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-format-drawer-function&sr=1][Find modifications in git logs]]
22973 : Function called to format a drawer in ODT code.
22975 : The function must accept two parameters:
22976 : NAME the drawer name, like "LOGBOOK"
22977 : CONTENTS the contents of the drawer.
22979 : The function should return the string to be exported.
22981 : For example, the variable could be set to the following function
22982 : in order to mimic default behaviour:
22984 : (defun org-odt-format-drawer-default (name contents)
22985 : "Format a drawer element for ODT export."
22988 ** org-clock-string-limit =0=
22990 :CUSTOM_ID: org-clock-string-limit
22994 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
22995 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-string-limit&sr=1][Find modifications in git logs]]
22997 : Maximum length of clock strings in the mode line. 0 means no limit.
22999 ** org-indent-indentation-per-level =2=
23001 :CUSTOM_ID: org-indent-indentation-per-level
23005 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
23006 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-indentation-per-level&sr=1][Find modifications in git logs]]
23008 : Indentation per level in number of characters.
23010 ** org-agenda-remove-tags =nil=
23012 :CUSTOM_ID: org-agenda-remove-tags
23015 - *Type:* (choice (const :tag "Always" t...
23016 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
23017 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-remove-tags&sr=1][Find modifications in git logs]]
23019 : Non-nil means remove the tags from the headline copy in the agenda.
23020 : When this is the symbol `prefix', only remove tags when
23021 : `org-agenda-prefix-format' contains a `%T' specifier.
23023 ** org-export-taskjuggler-default-global-properties ="shift s40 \"Part time shift\"...=
23025 :CUSTOM_ID: org-export-taskjuggler-default-global-properties
23028 - *Type:* (string :tag "Preamble")
23029 - *Since:* Emacs version 24.1
23030 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
23031 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-default-global-properties&sr=1][Find modifications in git logs]]
23033 : Default global properties for the project. Here you typically
23034 : define global properties such as shifts, accounts, rates,
23035 : vacation, macros and flags. Any property that is allowed within
23036 : the TaskJuggler file can be inserted. You could for example
23037 : include another TaskJuggler file.
23039 : The global properties are inserted after the project declaration
23040 : but before any resource and task declarations.
23042 ** org-babel-picolisp-cmd ="pil"=
23044 :CUSTOM_ID: org-babel-picolisp-cmd
23048 - *Since:* Emacs version 24.1
23049 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-picolisp.el;hb=HEAD][ob-picolisp.el]]
23050 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-picolisp-cmd&sr=1][Find modifications in git logs]]
23052 : Name of command used to evaluate picolisp blocks.
23054 ** org-clock-idle-time =nil=
23056 :CUSTOM_ID: org-clock-idle-time
23059 - *Type:* (choice (const :tag "Never" ni...
23060 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
23061 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-idle-time&sr=1][Find modifications in git logs]]
23063 : When non-nil, resolve open clocks if the user is idle more than X minutes.
23065 ** org-latex-preview-ltxpng-directory ="ltxpng/"=
23067 :CUSTOM_ID: org-latex-preview-ltxpng-directory
23071 - *Since:* Emacs version 24.3
23072 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23073 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-preview-ltxpng-directory&sr=1][Find modifications in git logs]]
23075 : Path to store latex preview images.
23076 : A relative path here creates many directories relative to the
23077 : processed org files paths. An absolute path puts all preview
23078 : images at the same place.
23080 ** org-list-two-spaces-after-bullet-regexp =nil=
23082 :CUSTOM_ID: org-list-two-spaces-after-bullet-regexp
23085 - *Type:* (choice (const :tag "never" ni...
23086 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
23087 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-two-spaces-after-bullet-regexp&sr=1][Find modifications in git logs]]
23089 : A regular expression matching bullets that should have 2 spaces after them.
23090 : When nil, no bullet will have two spaces after them. When
23091 : a string, it will be used as a regular expression. When the
23092 : bullet type of a list is changed, the new bullet type will be
23093 : matched against this regexp. If it matches, there will be two
23094 : spaces instead of one after the bullet in each item of the list.
23096 ** org-habit-show-all-today =nil=
23098 :CUSTOM_ID: org-habit-show-all-today
23102 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
23103 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-show-all-today&sr=1][Find modifications in git logs]]
23105 : If non-nil, will show the consistency graph of all habits on
23106 : today's agenda, even if they are not scheduled.
23108 ** org-latex-listings-langs =(quote ((emacs-lisp "Lisp") (l...=
23110 :CUSTOM_ID: org-latex-listings-langs
23113 - *Type:* (repeat (list (symbol :tag "Ma...
23114 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23115 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-listings-langs&sr=1][Find modifications in git logs]]
23117 : Alist mapping languages to their listing language counterpart.
23118 : The key is a symbol, the major mode symbol without the "-mode".
23119 : The value is the string that should be inserted as the language
23120 : parameter for the listings package. If the mode name and the
23121 : listings name are the same, the language does not need an entry
23122 : in this list - but it does not hurt if it is present.
23124 ** org-export-html-style-extra =""=
23126 :CUSTOM_ID: org-export-html-style-extra
23130 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
23131 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-style-extra&sr=1][Find modifications in git logs]]
23133 : Additional style information for HTML export.
23134 : The value of this variable is inserted into the HTML buffer right after
23135 : the value of `org-export-html-style'. Use this variable for per-file
23136 : settings of style information, and do not forget to surround the style
23137 : settings with <style>...</style> tags.
23139 ** org-beamer-outline-frame-options =""=
23141 :CUSTOM_ID: org-beamer-outline-frame-options
23144 - *Type:* (string :tag "Outline frame op...
23145 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
23146 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-outline-frame-options&sr=1][Find modifications in git logs]]
23148 : Outline frame options appended after \begin{frame}.
23149 : You might want to put e.g. "allowframebreaks=0.9" here.
23151 ** org-export-with-entities =t=
23153 :CUSTOM_ID: org-export-with-entities
23157 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
23158 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-entities&sr=1][Find modifications in git logs]]
23160 : Non-nil means interpret entities when exporting.
23162 : For example, HTML export converts \alpha to α and \AA to
23165 : For a list of supported names, see the constant `org-entities'
23166 : and the user option `org-entities-user'.
23168 : This option can also be set with the OPTIONS keyword,
23171 ** org-latex-image-default-height =""=
23173 :CUSTOM_ID: org-latex-image-default-height
23177 - *Since:* Emacs version 24.4
23178 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23179 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-image-default-height&sr=1][Find modifications in git logs]]
23181 : Default height for images.
23182 : This value will not be used if a width is provided, or if the
23183 : image is wrapped within a "figure" or "wrapfigure"
23186 ** org-archive-save-context-info =(quote (time file olpath categ...=
23188 :CUSTOM_ID: org-archive-save-context-info
23191 - *Type:* (set :greedy t (const :tag "Ti...
23192 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
23193 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-save-context-info&sr=1][Find modifications in git logs]]
23195 : Parts of context info that should be stored as properties when archiving.
23196 : When a subtree is moved to an archive file, it loses information given by
23197 : context, like inherited tags, the category, and possibly also the TODO
23198 : state (depending on the variable `org-archive-mark-done').
23199 : This variable can be a list of any of the following symbols:
23201 : time The time of archiving.
23202 : file The file where the entry originates.
23203 : ltags The local tags, in the headline of the subtree.
23204 : itags The tags the subtree inherits from further up the hierarchy.
23205 : todo The pre-archive TODO state.
23206 : category The category, taken from file name or #+CATEGORY lines.
23207 : olpath The outline path to the item. These are all headlines above
23208 : the current item, separated by /, like a file path.
23210 : For each symbol present in the list, a property will be created in
23211 : the archived entry, with a prefix "ARCHIVE_", to remember this
23214 ** org-agenda-inhibit-startup =nil=
23216 :CUSTOM_ID: org-agenda-inhibit-startup
23220 - *Since:* Emacs version 24.3
23221 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23222 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-inhibit-startup&sr=1][Find modifications in git logs]]
23224 : Inhibit startup when preparing agenda buffers.
23225 : When this variable is `t' (the default), the initialization of
23226 : the Org agenda buffers is inhibited: e.g. the visibility state
23227 : is not set, the tables are not re-aligned, etc.
23229 ** org-html-container-element ="div"=
23231 :CUSTOM_ID: org-html-container-element
23235 - *Since:* Emacs version 24.4
23236 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
23237 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-container-element&sr=1][Find modifications in git logs]]
23239 : HTML element to use for wrapping top level sections.
23240 : Can be set with the in-buffer HTML_CONTAINER property or for
23241 : publishing, with :html-container.
23243 : Note that changing the default will prevent you from using
23244 : org-info.js for your website.
23246 ** org-display-internal-link-with-indirect-buffer =nil=
23248 :CUSTOM_ID: org-display-internal-link-with-indirect-buffer
23252 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23253 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-display-internal-link-with-indirect-buffer&sr=1][Find modifications in git logs]]
23255 : Non-nil means use indirect buffer to display infile links.
23256 : Activating internal links (from one location in a file to another location
23257 : in the same file) normally just jumps to the location. When the link is
23258 : activated with a \[universal-argument] prefix (or with mouse-3), the link is displayed in
23259 : another window. When this option is set, the other window actually displays
23260 : an indirect buffer clone of the current buffer, to avoid any visibility
23261 : changes to the current buffer.
23263 ** org-archive-subtree-add-inherited-tags =(quote infile)=
23265 :CUSTOM_ID: org-archive-subtree-add-inherited-tags
23268 - *Type:* (choice (const :tag "Never" ni...
23269 - *Since:* Emacs version 24.1
23270 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
23271 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-subtree-add-inherited-tags&sr=1][Find modifications in git logs]]
23273 : Non-nil means append inherited tags when archiving a subtree.
23275 ** org-agenda-skip-scheduled-if-deadline-is-shown =nil=
23277 :CUSTOM_ID: org-agenda-skip-scheduled-if-deadline-is-shown
23280 - *Type:* (choice (const :tag "Never" ni...
23281 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
23282 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-scheduled-if-deadline-is-shown&sr=1][Find modifications in git logs]]
23284 : Non-nil means skip scheduling line if same entry shows because of deadline.
23286 : In the agenda of today, an entry can show up multiple times
23287 : because it is both scheduled and has a nearby deadline, and maybe
23288 : a plain time stamp as well.
23290 : When this variable is nil, the entry will be shown several times.
23292 : When set to t, then only the deadline is shown and the fact that
23293 : the entry is scheduled today or was scheduled previously is not
23296 : When set to the symbol `not-today', skip scheduled previously,
23297 : but not scheduled today.
23299 : When set to the symbol `repeated-after-deadline', skip scheduled
23300 : items if they are repeated beyond the current dealine.
23302 ** org-export-with-section-numbers =t=
23304 :CUSTOM_ID: org-export-with-section-numbers
23308 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
23309 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-section-numbers&sr=1][Find modifications in git logs]]
23311 : Non-nil means add section numbers to headlines when exporting.
23313 : When set to an integer n, numbering will only happen for
23314 : headlines whose relative level is higher or equal to n.
23316 : This option can also be set with the OPTIONS keyword,
23319 ** org-gnus-prefer-web-links =nil=
23321 :CUSTOM_ID: org-gnus-prefer-web-links
23325 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-gnus.el;hb=HEAD][org-gnus.el]]
23326 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-gnus-prefer-web-links&sr=1][Find modifications in git logs]]
23328 : If non-nil, `org-store-link' creates web links to Google groups or Gmane.
23329 : When nil, Gnus will be used for such links.
23330 : Using a prefix arg to the command \[org-store-link] (`org-store-link')
23331 : negates this setting for the duration of the command.
23333 ** org-latex-diary-timestamp-format ="\\textit{%s}"=
23335 :CUSTOM_ID: org-latex-diary-timestamp-format
23339 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23340 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-diary-timestamp-format&sr=1][Find modifications in git logs]]
23342 : A printf format string to be applied to diary timestamps.
23344 ** org-table-formula-use-constants =t=
23346 :CUSTOM_ID: org-table-formula-use-constants
23350 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
23351 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-formula-use-constants&sr=1][Find modifications in git logs]]
23353 : Non-nil means interpret constants in formulas in tables.
23354 : A constant looks like `$c' or `$Grav' and will be replaced before evaluation
23355 : by the value given in `org-table-formula-constants', or by a value obtained
23356 : from the `constants.el' package.
23358 ** org-mobile-directory =""=
23360 :CUSTOM_ID: org-mobile-directory
23363 - *Type:* directory
23364 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
23365 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-directory&sr=1][Find modifications in git logs]]
23367 : The WebDAV directory where the interaction with the mobile takes place.
23369 ** org-export-html-use-infojs =(quote when-configured)=
23371 :CUSTOM_ID: org-export-html-use-infojs
23374 - *Type:* (choice (const :tag "Never" ni...
23375 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-jsinfo.el;hb=HEAD][org-jsinfo.el]]
23376 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-use-infojs&sr=1][Find modifications in git logs]]
23378 : Should Sebastian Rose's Java Script org-info.js be linked into HTML files?
23379 : This option can be nil or t to never or always use the script. It can
23380 : also be the symbol `when-configured', meaning that the script will be
23381 : linked into the export file if and only if there is a "#+INFOJS_OPT:"
23382 : line in the buffer. See also the variable `org-infojs-options'.
23384 ** org-latex-listings =nil=
23386 :CUSTOM_ID: org-latex-listings
23389 - *Type:* (choice (const :tag "Use listi...
23390 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23391 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-listings&sr=1][Find modifications in git logs]]
23393 : Non-nil means export source code using the listings package.
23394 : This package will fontify source code, possibly even with color.
23395 : If you want to use this, you also need to make LaTeX use the
23396 : listings package, and if you want to have color, the color
23397 : package. Just add these to `org-latex-packages-alist', for
23398 : example using customize, or with something like:
23400 : (require 'ox-latex)
23401 : (add-to-list 'org-latex-packages-alist '("" "listings"))
23402 : (add-to-list 'org-latex-packages-alist '("" "color"))
23406 : (setq org-latex-listings 'minted)
23408 : causes source code to be exported using the minted package as
23409 : opposed to listings. If you want to use minted, you need to add
23410 : the minted package to `org-latex-packages-alist', for example
23411 : using customize, or with
23413 : (require 'ox-latex)
23414 : (add-to-list 'org-latex-packages-alist '("" "minted"))
23416 : In addition, it is necessary to install pygments
23417 : (http://pygments.org), and to configure the variable
23418 : `org-latex-pdf-process' so that the -shell-escape option is
23419 : passed to pdflatex.
23421 ** org-archive-mark-done =nil=
23423 :CUSTOM_ID: org-archive-mark-done
23426 - *Type:* (choice (const :tag "No" nil) ...
23427 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
23428 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-mark-done&sr=1][Find modifications in git logs]]
23430 : Non-nil means mark entries as DONE when they are moved to the archive file.
23431 : This can be a string to set the keyword to use. When t, Org-mode will
23432 : use the first keyword in its list that means done.
23434 ** org-display-custom-times =nil=
23436 :CUSTOM_ID: org-display-custom-times
23440 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23441 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-display-custom-times&sr=1][Find modifications in git logs]]
23443 : Non-nil means overlay custom formats over all time stamps.
23444 : The formats are defined through the variable `org-time-stamp-custom-formats'.
23445 : To turn this on on a per-file basis, insert anywhere in the file:
23446 : #+STARTUP: customtime
23448 ** org-latex-with-hyperref =t=
23450 :CUSTOM_ID: org-latex-with-hyperref
23454 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23455 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-with-hyperref&sr=1][Find modifications in git logs]]
23457 : Toggle insertion of \hypersetup{...} in the preamble.
23459 ** org-ctags-new-topic-template ="* <<%t>>\n\n\n\n\n\n"=
23461 :CUSTOM_ID: org-ctags-new-topic-template
23465 - *Since:* Emacs version 24.1
23466 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-ctags.el;hb=HEAD][org-ctags.el]]
23467 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ctags-new-topic-template&sr=1][Find modifications in git logs]]
23469 : Text to insert when creating a new org file via opening a hyperlink.
23470 : The following patterns are replaced in the string:
23471 : `%t' - replaced with the capitalized title of the hyperlink
23473 ** org-extend-today-until =0=
23475 :CUSTOM_ID: org-extend-today-until
23479 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23480 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-extend-today-until&sr=1][Find modifications in git logs]]
23482 : The hour when your day really ends. Must be an integer.
23483 : This has influence for the following applications:
23484 : - When switching the agenda to "today". It it is still earlier than
23485 : the time given here, the day recognized as TODAY is actually yesterday.
23486 : - When a date is read from the user and it is still before the time given
23487 : here, the current date and time will be assumed to be yesterday, 23:59.
23488 : Also, timestamps inserted in capture templates follow this rule.
23490 : IMPORTANT: This is a feature whose implementation is and likely will
23491 : remain incomplete. Really, it is only here because past midnight seems to
23492 : be the favorite working time of John Wiegley :-)
23494 ** org-ascii-charset =(quote ascii)=
23496 :CUSTOM_ID: org-ascii-charset
23499 - *Type:* (choice (const :tag "ASCII" as...
23500 - *Since:* Emacs version 24.4
23501 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
23502 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-charset&sr=1][Find modifications in git logs]]
23504 : The charset allowed to represent various elements and objects.
23505 : Possible values are:
23506 : `ascii' Only use plain ASCII characters
23507 : `latin1' Include Latin-1 characters
23508 : `utf-8' Use all UTF-8 characters
23510 ** org-n-level-faces =(length org-level-faces)=
23512 :CUSTOM_ID: org-n-level-faces
23516 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
23517 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-n-level-faces&sr=1][Find modifications in git logs]]
23519 : The number of different faces to be used for headlines.
23520 : Org-mode defines 8 different headline faces, so this can be at most 8.
23521 : If it is less than 8, the level-1 face gets re-used for level N+1 etc.
23523 ** org-agenda-diary-sexp-prefix =nil=
23525 :CUSTOM_ID: org-agenda-diary-sexp-prefix
23528 - *Type:* (choice (const :tag "None" nil...
23529 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
23530 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-diary-sexp-prefix&sr=1][Find modifications in git logs]]
23532 : A regexp that matches part of a diary sexp entry
23533 : which should be treated as scheduling/deadline information in
23536 : For example, you can use this to extract the `diary-remind-message' from
23537 : `diary-remind' entries.
23539 ** org-ascii-inner-margin =2=
23541 :CUSTOM_ID: org-ascii-inner-margin
23545 - *Since:* Emacs version 24.4
23546 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
23547 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-inner-margin&sr=1][Find modifications in git logs]]
23549 : Width of the inner margin, in number of characters.
23550 : Inner margin is applied between each headline.
23552 ** org-read-date-prefer-future =t=
23554 :CUSTOM_ID: org-read-date-prefer-future
23557 - *Type:* (choice (const :tag "Never" ni...
23558 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23559 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-read-date-prefer-future&sr=1][Find modifications in git logs]]
23561 : Non-nil means assume future for incomplete date input from user.
23562 : This affects the following situations:
23563 : 1. The user gives a month but not a year.
23564 : For example, if it is April and you enter "feb 2", this will be read
23565 : as Feb 2, *next* year. "May 5", however, will be this year.
23566 : 2. The user gives a day, but no month.
23567 : For example, if today is the 15th, and you enter "3", Org-mode will
23568 : read this as the third of *next* month. However, if you enter "17",
23569 : it will be considered as *this* month.
23571 : If you set this variable to the symbol `time', then also the following
23574 : 3. If the user gives a time.
23575 : If the time is before now, it will be interpreted as tomorrow.
23577 : Currently none of this works for ISO week specifications.
23579 : When this option is nil, the current day, month and year will always be
23580 : used as defaults.
23582 : See also `org-agenda-jump-prefer-future'.
23584 ** org-latex-known-errors =(quote (("Reference.*?undefine...=
23586 :CUSTOM_ID: org-latex-known-errors
23589 - *Type:* (repeat (cons (string :tag "Re...
23590 - *Since:* Emacs version 24.4
23591 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23592 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-known-errors&sr=1][Find modifications in git logs]]
23594 : Alist of regular expressions and associated messages for the user.
23595 : The regular expressions are used to find possible errors in the
23596 : log of a latex-run.
23598 ** org-from-is-user-regexp =(let (r1 r2) (when (and user-m...=
23600 :CUSTOM_ID: org-from-is-user-regexp
23604 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23605 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-from-is-user-regexp&sr=1][Find modifications in git logs]]
23607 : Regexp matched against the "From:" header of an email or usenet message.
23608 : It should match if the message is from the user him/herself.
23610 ** org-babel-python-command ="python"=
23612 :CUSTOM_ID: org-babel-python-command
23616 - *Since:* Emacs version 24.4
23617 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-python.el;hb=HEAD][ob-python.el]]
23618 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-python-command&sr=1][Find modifications in git logs]]
23620 : Name of the command for executing Python code.
23622 ** org-latex-title-command ="\\maketitle"=
23624 :CUSTOM_ID: org-latex-title-command
23628 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
23629 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-title-command&sr=1][Find modifications in git logs]]
23631 : The command used to insert the title just after \begin{document}.
23632 : If this string contains the formatting specification "%s" then
23633 : it will be used as a formatting string, passing the title as an
23636 ** org-time-stamp-rounding-minutes =(quote (0 5))=
23638 :CUSTOM_ID: org-time-stamp-rounding-minutes
23641 - *Type:* (list (integer :tag "when inse...
23642 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23643 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-time-stamp-rounding-minutes&sr=1][Find modifications in git logs]]
23645 : Number of minutes to round time stamps to.
23646 : These are two values, the first applies when first creating a time stamp.
23647 : The second applies when changing it with the commands `S-up' and `S-down'.
23648 : When changing the time stamp, this means that it will change in steps
23649 : of N minutes, as given by the second value.
23651 : When a setting is 0 or 1, insert the time unmodified. Useful rounding
23652 : numbers should be factors of 60, so for example 5, 10, 15.
23654 : When this is larger than 1, you can still force an exact time stamp by using
23655 : a double prefix argument to a time stamp command like `C-c .' or `C-c !',
23656 : and by using a prefix arg to `S-up/down' to specify the exact number
23657 : of minutes to shift.
23659 ** org-export-allow-bind-keywords =nil=
23661 :CUSTOM_ID: org-export-allow-bind-keywords
23665 - *Since:* Emacs version 24.4
23666 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
23667 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-allow-bind-keywords&sr=1][Find modifications in git logs]]
23669 : Non-nil means BIND keywords can define local variable values.
23670 : This is a potential security risk, which is why the default value
23671 : is nil. You can also allow them through local buffer variables.
23673 ** org-export-with-fixed-width =t=
23675 :CUSTOM_ID: org-export-with-fixed-width
23679 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
23680 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-fixed-width&sr=1][Find modifications in git logs]]
23682 : Non-nil means lines starting with ":" will be in fixed width font.
23684 : This can be used to have pre-formatted text, fragments of code
23685 : etc. For example:
23686 : : ;; Some Lisp examples
23687 : : (while (defc cnt)
23689 : will be looking just like this in also HTML. See also the QUOTE
23690 : keyword. Not all export backends support this.
23692 : This option can also be set with the OPTIONS keyword,
23695 ** org-footnote-auto-adjust =nil=
23697 :CUSTOM_ID: org-footnote-auto-adjust
23700 - *Type:* (choice (const :tag "Renumber"...
23701 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
23702 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-auto-adjust&sr=1][Find modifications in git logs]]
23704 : Non-nil means automatically adjust footnotes after insert/delete.
23705 : When this is t, after each insertion or deletion of a footnote,
23706 : simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
23707 : If you want to have just sorting or just renumbering, set this variable
23708 : to `sort' or `renumber'.
23710 : The main values of this variable can be set with in-buffer options:
23712 : #+STARTUP: fnadjust
23713 : #+STARTUP: nofnadjust
23715 ** org-indent-boundary-char =32=
23717 :CUSTOM_ID: org-indent-boundary-char
23720 - *Type:* character
23721 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-indent.el;hb=HEAD][org-indent.el]]
23722 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indent-boundary-char&sr=1][Find modifications in git logs]]
23724 : The end of the virtual indentation strings, a single-character string.
23725 : The default is just a space, but if you wish, you can use "|" or so.
23726 : This can be useful on a terminal window - under a windowing system,
23727 : it may be prettier to customize the org-indent face.
23729 ** org-icalendar-categories =(quote (local-tags category))=
23731 :CUSTOM_ID: org-icalendar-categories
23734 - *Type:* (repeat (choice (const :tag "T...
23735 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
23736 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-categories&sr=1][Find modifications in git logs]]
23738 : Items that should be entered into the "categories" field.
23740 : This is a list of symbols, the following are valid:
23741 : `category' The Org mode category of the current file or tree
23742 : `todo-state' The todo state, if any
23743 : `local-tags' The tags, defined in the current line
23744 : `all-tags' All tags, including inherited ones.
23746 ** org-html-infojs-options =(mapcar (lambda (x) (cons (car...=
23748 :CUSTOM_ID: org-html-infojs-options
23751 - *Type:* (set :greedy t :inline t (cons...
23752 - *Since:* Emacs version 24.4
23753 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
23754 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-infojs-options&sr=1][Find modifications in git logs]]
23756 : Options settings for the INFOJS JavaScript.
23757 : Each of the options must have an entry in `org-html-infojs-opts-table'.
23758 : The value can either be a string that will be passed to the script, or
23759 : a property. This property is then assumed to be a property that is defined
23760 : by the Export/Publishing setup of Org.
23761 : The `sdepth' and `tdepth' parameters can also be set to "max", which
23762 : means to use the maximum value consistent with other options.
23764 ** org-export-creator-info =t=
23766 :CUSTOM_ID: org-export-creator-info
23770 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
23771 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-creator-info&sr=1][Find modifications in git logs]]
23773 : Non-nil means the postamble should contain a creator sentence.
23774 : This sentence is "HTML generated by org-mode XX in emacs XXX".
23776 ** org-export-taskjuggler-resource-tag ="taskjuggler_resource"=
23778 :CUSTOM_ID: org-export-taskjuggler-resource-tag
23782 - *Since:* Emacs version 24.1
23783 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-taskjuggler.el;hb=HEAD][org-taskjuggler.el]]
23784 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-taskjuggler-resource-tag&sr=1][Find modifications in git logs]]
23786 : Tag, property or todo used to find the tree containing all the
23787 : resources for the project.
23789 ** org-html-format-drawer-function =nil=
23791 :CUSTOM_ID: org-html-format-drawer-function
23795 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
23796 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-format-drawer-function&sr=1][Find modifications in git logs]]
23798 : Function called to format a drawer in HTML code.
23800 : The function must accept two parameters:
23801 : NAME the drawer name, like "LOGBOOK"
23802 : CONTENTS the contents of the drawer.
23804 : The function should return the string to be exported.
23806 : For example, the variable could be set to the following function
23807 : in order to mimic default behaviour:
23809 : (defun org-html-format-drawer-default (name contents)
23810 : "Format a drawer element for HTML export."
23813 ** org-export-with-emphasize =t=
23815 :CUSTOM_ID: org-export-with-emphasize
23819 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
23820 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-emphasize&sr=1][Find modifications in git logs]]
23822 : Non-nil means interpret *word*, /word/, _word_ and +word+.
23824 : If the export target supports emphasizing text, the word will be
23825 : typeset in bold, italic, with an underline or strike-through,
23828 : This option can also be set with the OPTIONS keyword,
23831 ** org-src-preserve-indentation =nil=
23833 :CUSTOM_ID: org-src-preserve-indentation
23837 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
23838 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-src-preserve-indentation&sr=1][Find modifications in git logs]]
23840 : If non-nil preserve leading whitespace characters on export.
23841 : If non-nil leading whitespace characters in source code blocks
23842 : are preserved on export, and when switching between the org
23843 : buffer and the language mode edit buffer. If this variable is nil
23844 : then, after editing with \[org-edit-src-code], the
23845 : minimum (across-lines) number of leading whitespace characters
23846 : are removed from all lines, and the code block is uniformly
23847 : indented according to the value of `org-edit-src-content-indentation'.
23849 ** org-mobile-allpriorities ="A B C"=
23851 :CUSTOM_ID: org-mobile-allpriorities
23855 - *Since:* Emacs version 24.4
23856 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
23857 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-allpriorities&sr=1][Find modifications in git logs]]
23859 : Default set of priority cookies for the index file.
23861 ** org-html-postamble =(quote auto)=
23863 :CUSTOM_ID: org-html-postamble
23866 - *Type:* (choice (const :tag "No postam...
23867 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
23868 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-postamble&sr=1][Find modifications in git logs]]
23870 : Non-nil means insert a postamble in HTML export.
23872 : When set to 'auto, check against the
23873 : `org-export-with-author/email/creator/date' variables to set the
23874 : content of the postamble. When set to a string, use this string
23875 : as the postamble. When t, insert a string as defined by the
23876 : formatting string in `org-html-postamble-format'.
23878 : When set to a function, apply this function and insert the
23879 : returned string. The function takes the property list of export
23880 : options as its only argument.
23882 : Setting :html-postamble in publishing projects will take
23883 : precedence over this variable.
23885 ** org-export-with-tasks =t=
23887 :CUSTOM_ID: org-export-with-tasks
23890 - *Type:* (choice (const :tag "All tasks...
23891 - *Since:* Emacs version 24.1
23892 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
23893 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-tasks&sr=1][Find modifications in git logs]]
23895 : Non-nil means include TODO items for export.
23897 : This may have the following values:
23898 : t include tasks independent of state.
23899 : `todo' include only tasks that are not yet done.
23900 : `done' include only tasks that are already done.
23901 : nil ignore all tasks.
23902 : list of keywords include tasks with these keywords.
23904 : This option can also be set with the OPTIONS keyword,
23905 : e.g. "tasks:nil".
23907 ** org-loop-over-headlines-in-active-region =nil=
23909 :CUSTOM_ID: org-loop-over-headlines-in-active-region
23912 - *Type:* (choice (const :tag "Don't loo...
23913 - *Since:* Emacs version 24.1
23914 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23915 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-loop-over-headlines-in-active-region&sr=1][Find modifications in git logs]]
23917 : Shall some commands act upon headlines in the active region?
23919 : When set to `t', some commands will be performed in all headlines
23920 : within the active region.
23922 : When set to `start-level', some commands will be performed in all
23923 : headlines within the active region, provided that these headlines
23924 : are of the same level than the first one.
23926 : When set to a string, those commands will be performed on the
23927 : matching headlines within the active region. Such string must be
23928 : a tags/property/todo match as it is used in the agenda tags view.
23930 : The list of commands is: `org-schedule', `org-deadline',
23931 : `org-todo', `org-archive-subtree', `org-archive-set-tag' and
23932 : `org-archive-to-archive-sibling'. The archiving commands skip
23933 : already archived entries.
23935 ** org-show-entry-below =(quote ((default)))=
23937 :CUSTOM_ID: org-show-entry-below
23940 - *Type:* (choice (const :tag "Always" t...
23941 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23942 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-show-entry-below&sr=1][Find modifications in git logs]]
23944 : Non-nil means show the entry below a headline when revealing a location.
23945 : Org-mode often shows locations in an org-mode file which might have
23946 : been invisible before. When this is set, the text below the headline that is
23947 : exposed is also shown.
23949 : By default this is off for all contexts.
23950 : Instead of t, this can also be an alist specifying this option for different
23951 : contexts. See `org-show-hierarchy-above' for valid contexts.
23953 ** org-use-tag-inheritance =t=
23955 :CUSTOM_ID: org-use-tag-inheritance
23958 - *Type:* (choice (const :tag "Not" nil)...
23959 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23960 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-tag-inheritance&sr=1][Find modifications in git logs]]
23962 : Non-nil means tags in levels apply also for sublevels.
23963 : When nil, only the tags directly given in a specific line apply there.
23964 : This may also be a list of tags that should be inherited, or a regexp that
23965 : matches tags that should be inherited. Additional control is possible
23966 : with the variable `org-tags-exclude-from-inheritance' which gives an
23967 : explicit list of tags to be excluded from inheritance, even if the value of
23968 : `org-use-tag-inheritance' would select it for inheritance.
23970 : If this option is t, a match early-on in a tree can lead to a large
23971 : number of matches in the subtree when constructing the agenda or creating
23972 : a sparse tree. If you only want to see the first match in a tree during
23973 : a search, check out the variable `org-tags-match-list-sublevels'.
23975 ** org-open-non-existing-files =nil=
23977 :CUSTOM_ID: org-open-non-existing-files
23981 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
23982 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-open-non-existing-files&sr=1][Find modifications in git logs]]
23984 : Non-nil means `org-open-file' will open non-existing files.
23985 : When nil, an error will be generated.
23986 : This variable applies only to external applications because they
23987 : might choke on non-existing files. If the link is to a file that
23988 : will be opened in Emacs, the variable is ignored.
23990 ** org-agenda-include-deadlines =t=
23992 :CUSTOM_ID: org-agenda-include-deadlines
23996 - *Since:* Emacs version 24.1
23997 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
23998 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-include-deadlines&sr=1][Find modifications in git logs]]
24000 : If non-nil, include entries within their deadline warning period.
24001 : Custom commands can set this variable in the options section.
24003 ** org-html-indent =nil=
24005 :CUSTOM_ID: org-html-indent
24009 - *Since:* Emacs version 24.4
24010 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24011 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-indent&sr=1][Find modifications in git logs]]
24013 : Non-nil means to indent the generated HTML.
24014 : Warning: non-nil may break indentation of source code blocks.
24016 ** org-babel-python-hline-to ="None"=
24018 :CUSTOM_ID: org-babel-python-hline-to
24022 - *Since:* Emacs version 24.4
24023 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-python.el;hb=HEAD][ob-python.el]]
24024 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-python-hline-to&sr=1][Find modifications in git logs]]
24026 : Replace hlines in incoming tables with this when translating to python.
24028 ** org-babel-lob-files =(quote nil)=
24030 :CUSTOM_ID: org-babel-lob-files
24034 - *Since:* Emacs version 24.1
24035 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-lob.el;hb=HEAD][ob-lob.el]]
24036 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-lob-files&sr=1][Find modifications in git logs]]
24038 : Files used to populate the `org-babel-library-of-babel'.
24039 : To add files to this list use the `org-babel-lob-ingest' command.
24041 ** org-agenda-add-entry-text-maxlines =0=
24043 :CUSTOM_ID: org-agenda-add-entry-text-maxlines
24047 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24048 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-add-entry-text-maxlines&sr=1][Find modifications in git logs]]
24050 : Maximum number of entry text lines to be added to agenda.
24051 : This is only relevant when `org-agenda-add-entry-text' is part of
24052 : `org-agenda-before-write-hook', which is the default.
24053 : When this is 0, nothing will happen. When it is greater than 0, it
24054 : specifies the maximum number of lines that will be added for each entry
24055 : that is listed in the agenda view.
24057 : Note that this variable is not used during display, only when exporting
24058 : the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
24059 : and `org-agenda-entry-text-maxlines'.
24061 ** org-latex-image-default-option =""=
24063 :CUSTOM_ID: org-latex-image-default-option
24067 - *Since:* Emacs version 24.4
24068 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
24069 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-image-default-option&sr=1][Find modifications in git logs]]
24071 : Default option for images.
24073 ** org-babel-no-eval-on-ctrl-c-ctrl-c =nil=
24075 :CUSTOM_ID: org-babel-no-eval-on-ctrl-c-ctrl-c
24079 - *Since:* Emacs version 24.1
24080 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-core.el;hb=HEAD][ob-core.el]]
24081 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-no-eval-on-ctrl-c-ctrl-c&sr=1][Find modifications in git logs]]
24083 : Remove code block evaluation from the C-c C-c key binding.
24085 ** org-timer-display =(quote mode-line)=
24087 :CUSTOM_ID: org-timer-display
24090 - *Type:* (choice (const :tag "Mode line...
24091 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
24092 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-display&sr=1][Find modifications in git logs]]
24094 : When a timer is running, org-mode can display it in the mode
24095 : line and/or frame title.
24096 : Allowed values are:
24098 : both displays in both mode line and frame title
24099 : mode-line displays only in mode line (default)
24100 : frame-title displays only in frame title
24101 : nil current timer is not displayed
24103 ** org-odt-content-template-file =nil=
24105 :CUSTOM_ID: org-odt-content-template-file
24109 - *Since:* Emacs version 24.1
24110 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
24111 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-content-template-file&sr=1][Find modifications in git logs]]
24113 : Template file for "content.xml".
24114 : The exporter embeds the exported content just before
24115 : "</office:text>" element.
24117 : If unspecified, the file named "OrgOdtContentTemplate.xml"
24118 : under `org-odt-styles-dir' is used.
24120 ** org-html-inline-images =(quote maybe)=
24122 :CUSTOM_ID: org-html-inline-images
24125 - *Type:* (choice (const :tag "Never" ni...
24126 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24127 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-inline-images&sr=1][Find modifications in git logs]]
24129 : Non-nil means inline images into exported HTML pages.
24130 : This is done using an <img> tag. When nil, an anchor with href is used to
24131 : link to the image. If this option is `maybe', then images in links with
24132 : an empty description will be inlined, while images with a description will
24135 ** org-remove-highlights-with-change =t=
24137 :CUSTOM_ID: org-remove-highlights-with-change
24141 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24142 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-remove-highlights-with-change&sr=1][Find modifications in git logs]]
24144 : Non-nil means any change to the buffer will remove temporary highlights.
24145 : Such highlights are created by `org-occur' and `org-clock-display'.
24146 : When nil, `C-c C-c needs to be used to get rid of the highlights.
24147 : The highlights created by `org-preview-latex-fragment' always need
24148 : `C-c C-c' to be removed.
24150 ** org-export-html-coding-system =nil=
24152 :CUSTOM_ID: org-export-html-coding-system
24155 - *Type:* coding-system
24156 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
24157 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-coding-system&sr=1][Find modifications in git logs]]
24159 : Coding system for HTML export, defaults to `buffer-file-coding-system'.
24161 ** org-html-table-row-tags =(quote ("<tr>" . "</tr>"))=
24163 :CUSTOM_ID: org-html-table-row-tags
24166 - *Type:* (cons (choice :tag "Opening ta...
24167 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24168 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-row-tags&sr=1][Find modifications in git logs]]
24170 : The opening and ending tags for table rows.
24171 : This is customizable so that alignment options can be specified.
24172 : Instead of strings, these can be Lisp forms that will be
24173 : evaluated for each row in order to construct the table row tags.
24175 : During evaluation, these variables will be dynamically bound so that
24176 : you can reuse them:
24178 : `row-number': row number (0 is the first row)
24179 : `rowgroup-number': group number of current row
24180 : `start-rowgroup-p': non-nil means the row starts a group
24181 : `end-rowgroup-p': non-nil means the row ends a group
24182 : `top-row-p': non-nil means this is the top row
24183 : `bottom-row-p': non-nil means this is the bottom row
24187 : (setq org-html-table-row-tags
24188 : (cons '(cond (top-row-p "<tr class=\"tr-top\">")
24189 : (bottom-row-p "<tr class=\"tr-bottom\">")
24190 : (t (if (= (mod row-number 2) 1)
24191 : "<tr class=\"tr-odd\">"
24192 : "<tr class=\"tr-even\">")))
24195 : will use the "tr-top" and "tr-bottom" classes for the top row
24196 : and the bottom row, and otherwise alternate between "tr-odd" and
24197 : "tr-even" for odd and even rows.
24199 ** org-html-allow-name-attribute-in-anchors =t=
24201 :CUSTOM_ID: org-html-allow-name-attribute-in-anchors
24205 - *Since:* Emacs version 24.4
24206 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24207 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-allow-name-attribute-in-anchors&sr=1][Find modifications in git logs]]
24209 : When nil, do not set "name" attribute in anchors.
24210 : By default, anchors are formatted with both "id" and "name"
24211 : attributes, when appropriate.
24213 ** org-icalendar-use-scheduled =(quote (todo-start))=
24215 :CUSTOM_ID: org-icalendar-use-scheduled
24218 - *Type:* (set :greedy t (const :tag "SC...
24219 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
24220 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-use-scheduled&sr=1][Find modifications in git logs]]
24222 : Contexts where iCalendar export should use a scheduling time stamp.
24224 : This is a list with several symbols in it. Valid symbol are:
24225 : `event-if-todo' Scheduling time stamps in TODO entries become an event.
24226 : `event-if-not-todo' Scheduling time stamps in non-TODO entries become an event.
24227 : `todo-start' Scheduling time stamps in TODO entries become start date.
24228 : Some calendar applications show TODO entries only after
24231 ** org-agenda-repeating-timestamp-show-all =t=
24233 :CUSTOM_ID: org-agenda-repeating-timestamp-show-all
24236 - *Type:* (choice (const :tag "Show repe...
24237 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24238 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-repeating-timestamp-show-all&sr=1][Find modifications in git logs]]
24240 : Non-nil means show all occurrences of a repeating stamp in the agenda.
24241 : When set to a list of strings, only show occurrences of repeating
24242 : stamps for these TODO keywords. When nil, only one occurrence is
24243 : shown, either today or the nearest into the future.
24245 ** org-attach-directory ="data/"=
24247 :CUSTOM_ID: org-attach-directory
24250 - *Type:* directory
24251 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
24252 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-directory&sr=1][Find modifications in git logs]]
24254 : The directory where attachments are stored.
24255 : If this is a relative path, it will be interpreted relative to the directory
24256 : where the Org file lives.
24258 ** org-export-with-priority =nil=
24260 :CUSTOM_ID: org-export-with-priority
24264 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
24265 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-priority&sr=1][Find modifications in git logs]]
24267 : Non-nil means include priority cookies in export.
24268 : This option can also be set with the OPTIONS keyword,
24271 ** org-man-source-highlight-langs =(quote ((emacs-lisp "lisp") (l...=
24273 :CUSTOM_ID: org-man-source-highlight-langs
24276 - *Type:* (repeat (list (symbol :tag "Ma...
24277 - *Since:* Emacs version 24.4
24278 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
24279 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-source-highlight-langs&sr=1][Find modifications in git logs]]
24281 : Alist mapping languages to their listing language counterpart.
24282 : The key is a symbol, the major mode symbol without the "-mode".
24283 : The value is the string that should be inserted as the language
24284 : parameter for the listings package. If the mode name and the
24285 : listings name are the same, the language does not need an entry
24286 : in this list - but it does not hurt if it is present.
24288 ** org-clock-persist-query-resume =t=
24290 :CUSTOM_ID: org-clock-persist-query-resume
24294 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
24295 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-persist-query-resume&sr=1][Find modifications in git logs]]
24297 : When non-nil, ask before resuming any stored clock during load.
24299 ** org-tags-column =(if (featurep (quote xemacs)) ...=
24301 :CUSTOM_ID: org-tags-column
24305 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24306 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-tags-column&sr=1][Find modifications in git logs]]
24308 : The column to which tags should be indented in a headline.
24309 : If this number is positive, it specifies the column. If it is negative,
24310 : it means that the tags should be flushright to that column. For example,
24311 : -80 works well for a normal 80 character screen.
24312 : When 0, place tags directly after headline text, with only one space in
24315 ** org-latex-image-default-width =".9\\linewidth"=
24317 :CUSTOM_ID: org-latex-image-default-width
24321 - *Since:* Emacs version 24.4
24322 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
24323 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-image-default-width&sr=1][Find modifications in git logs]]
24325 : Default width for images.
24326 : This value will not be used if a height is provided.
24328 ** org-mobile-inbox-for-pull ="~/org/from-mobile.org"=
24330 :CUSTOM_ID: org-mobile-inbox-for-pull
24334 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
24335 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-inbox-for-pull&sr=1][Find modifications in git logs]]
24337 : The file where captured notes and flags will be appended to.
24338 : During the execution of `org-mobile-pull', the file
24339 : `org-mobile-capture-file' will be emptied it's contents have
24340 : been appended to the file given here. This file should be in
24341 : `org-directory', and not in the staging area or on the web server.
24343 ** org-publish-sitemap-sort-files =(quote alphabetically)=
24345 :CUSTOM_ID: org-publish-sitemap-sort-files
24349 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
24350 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-sitemap-sort-files&sr=1][Find modifications in git logs]]
24352 : Method to sort files in site-maps.
24353 : Possible values are `alphabetically', `chronologically',
24354 : `anti-chronologically' and nil.
24356 : If `alphabetically', files will be sorted alphabetically. If
24357 : `chronologically', files will be sorted with older modification
24358 : time first. If `anti-chronologically', files will be sorted with
24359 : newer modification time first. nil won't sort files.
24361 : You can overwrite this default per project in your
24362 : `org-publish-project-alist', using `:sitemap-sort-files'.
24364 ** org-hide-emphasis-markers =nil=
24366 :CUSTOM_ID: org-hide-emphasis-markers
24370 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24371 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-emphasis-markers&sr=1][Find modifications in git logs]]
24373 : Non-nil mean font-lock should hide the emphasis marker characters.
24375 ** org-capture-use-agenda-date =nil=
24377 :CUSTOM_ID: org-capture-use-agenda-date
24381 - *Since:* Emacs version 24.3
24382 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
24383 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-use-agenda-date&sr=1][Find modifications in git logs]]
24385 : Non-nil means use the date at point when capturing from agendas.
24386 : When nil, you can still capture using the date at point with \[org-agenda-capture].
24388 ** org-habit-following-days =7=
24390 :CUSTOM_ID: org-habit-following-days
24394 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
24395 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-following-days&sr=1][Find modifications in git logs]]
24397 : Number of days after today to appear in consistency graphs.
24399 ** org-cycle-emulate-tab =t=
24401 :CUSTOM_ID: org-cycle-emulate-tab
24404 - *Type:* (choice (const :tag "Never" ni...
24405 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24406 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-emulate-tab&sr=1][Find modifications in git logs]]
24408 : Where should `org-cycle' emulate TAB.
24410 : white Only in completely white lines
24411 : whitestart Only at the beginning of lines, before the first non-white char
24412 : t Everywhere except in headlines
24413 : exc-hl-bol Everywhere except at the start of a headline
24414 : If TAB is used in a place where it does not emulate TAB, the current subtree
24415 : visibility is cycled.
24417 ** org-clock-in-switch-to-state =nil=
24419 :CUSTOM_ID: org-clock-in-switch-to-state
24422 - *Type:* (choice (const :tag "Don't for...
24423 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
24424 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-in-switch-to-state&sr=1][Find modifications in git logs]]
24426 : Set task to a special todo state while clocking it.
24427 : The value should be the state to which the entry should be
24428 : switched. If the value is a function, it must take one
24429 : parameter (the current TODO state of the item) and return the
24430 : state to switch it to.
24432 ** org-plain-list-ordered-item-terminator =t=
24434 :CUSTOM_ID: org-plain-list-ordered-item-terminator
24437 - *Type:* (choice (const :tag "dot like ...
24438 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
24439 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-plain-list-ordered-item-terminator&sr=1][Find modifications in git logs]]
24441 : The character that makes a line with leading number an ordered list item.
24442 : Valid values are ?. and ?). To get both terminators, use t.
24444 ** org-highlight-sparse-tree-matches =t=
24446 :CUSTOM_ID: org-highlight-sparse-tree-matches
24450 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24451 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-highlight-sparse-tree-matches&sr=1][Find modifications in git logs]]
24453 : Non-nil means highlight all matches that define a sparse tree.
24454 : The highlights will automatically disappear the next time the buffer is
24455 : changed by an edit command.
24457 ** org-latex-default-table-environment ="tabular"=
24459 :CUSTOM_ID: org-latex-default-table-environment
24463 - *Since:* Emacs version 24.4
24464 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
24465 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-default-table-environment&sr=1][Find modifications in git logs]]
24467 : Default environment used to build tables.
24469 ** org-edit-src-persistent-message =t=
24471 :CUSTOM_ID: org-edit-src-persistent-message
24475 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-src.el;hb=HEAD][org-src.el]]
24476 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-edit-src-persistent-message&sr=1][Find modifications in git logs]]
24478 : Non-nil means show persistent exit help message while editing src examples.
24479 : The message is shown in the header-line, which will be created in the
24480 : first line of the window showing the editing buffer.
24482 ** org-archive-stamp-time =t=
24484 :CUSTOM_ID: org-archive-stamp-time
24488 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
24489 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-stamp-time&sr=1][Find modifications in git logs]]
24491 : Non-nil means add a time stamp to entries moved to an archive file.
24492 : This variable is obsolete and has no effect anymore, instead add or remove
24493 : `time' from the variable `org-archive-save-context-info'.
24495 ** org-clock-persist-file =(convert-standard-filename (co...=
24497 :CUSTOM_ID: org-clock-persist-file
24501 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
24502 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-persist-file&sr=1][Find modifications in git logs]]
24504 : File to save clock data to.
24506 ** org-footnote-tag-for-non-org-mode-files ="Footnotes:"=
24508 :CUSTOM_ID: org-footnote-tag-for-non-org-mode-files
24511 - *Type:* (choice (string :tag "Collect ...
24512 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
24513 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-tag-for-non-org-mode-files&sr=1][Find modifications in git logs]]
24515 : Tag marking the beginning of footnote section.
24516 : The Org footnote engine can be used in arbitrary text files as well
24517 : as in Org-mode. Outside Org mode, new footnotes are always placed at
24518 : the end of the file. When you normalize the notes, any line containing
24519 : only this tag will be removed, a new one will be inserted at the end
24520 : of the file, followed by the collected and normalized footnotes.
24522 : If you don't want any tag in such buffers, set this variable to nil.
24524 ** org-man-remove-logfiles =t=
24526 :CUSTOM_ID: org-man-remove-logfiles
24530 - *Since:* Emacs version 24.4
24531 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-man.el;hb=HEAD][ox-man.el]]
24532 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-man-remove-logfiles&sr=1][Find modifications in git logs]]
24534 : Non-nil means remove the logfiles produced by PDF production.
24535 : These are the .aux, .log, .out, and .toc files.
24537 ** org-odt-format-headline-function =nil=
24539 :CUSTOM_ID: org-odt-format-headline-function
24543 - *Since:* Emacs version 24.4
24544 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
24545 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-format-headline-function&sr=1][Find modifications in git logs]]
24547 : Function to format headline text.
24549 : This function will be called with 5 arguments:
24550 : TODO the todo keyword (string or nil).
24551 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
24552 : PRIORITY the priority of the headline (integer or nil)
24553 : TEXT the main headline text (string).
24554 : TAGS the tags string, separated with colons (string or nil).
24556 : The function result will be used as headline text.
24558 ** org-agenda-columns-compute-summary-properties =t=
24560 :CUSTOM_ID: org-agenda-columns-compute-summary-properties
24564 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24565 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-columns-compute-summary-properties&sr=1][Find modifications in git logs]]
24567 : Non-nil means recompute all summary properties before column view.
24568 : When column view in the agenda is listing properties that have a summary
24569 : operator, it can go to all relevant buffers and recompute the summaries
24570 : there. This can mean overhead for the agenda column view, but is necessary
24571 : to have thing up to date.
24572 : As a special case, a CLOCKSUM property also makes sure that the clock
24573 : computations are current.
24575 ** org-html-footnotes-section ="<div id=\"footnotes\">\n<h2 c...=
24577 :CUSTOM_ID: org-html-footnotes-section
24581 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24582 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-footnotes-section&sr=1][Find modifications in git logs]]
24584 : Format for the footnotes section.
24585 : Should contain a two instances of %s. The first will be replaced with the
24586 : language-specific word for "Footnotes", the second one will be replaced
24587 : by the footnotes themselves.
24589 ** org-odt-schema-dir =(let* ((schema-dir (catch (quo...=
24591 :CUSTOM_ID: org-odt-schema-dir
24594 - *Type:* (choice (const :tag "Not set" ...
24595 - *Since:* Emacs version 24.1
24596 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
24597 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-schema-dir&sr=1][Find modifications in git logs]]
24599 : Directory that contains OpenDocument schema files.
24601 : This directory contains:
24602 : 1. rnc files for OpenDocument schema
24603 : 2. a "schemas.xml" file that specifies locating rules needed
24604 : for auto validation of OpenDocument XML files.
24606 : Use the customize interface to set this variable. This ensures
24607 : that `rng-schema-locating-files' is updated and auto-validation
24608 : of OpenDocument XML takes place based on the value
24609 : `rng-nxml-auto-validate-flag'.
24611 : The default value of this variable varies depending on the
24612 : version of org in use and is initialized from
24613 : `org-odt-schema-dir-list'. The OASIS schema files are available
24614 : only in the org's private git repository. It is *not* bundled
24615 : with GNU ELPA tar or standard Emacs distribution.
24617 ** org-export-html-inline-image-extensions =(quote ("png" "jpeg" "jpg" "gi...=
24619 :CUSTOM_ID: org-export-html-inline-image-extensions
24622 - *Type:* (repeat (string :tag "Extensio...
24623 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
24624 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-inline-image-extensions&sr=1][Find modifications in git logs]]
24626 : Extensions of image files that can be inlined into HTML.
24628 ** org-latex-long-listings =nil=
24630 :CUSTOM_ID: org-latex-long-listings
24634 - *Since:* Emacs version 24.4
24635 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
24636 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-long-listings&sr=1][Find modifications in git logs]]
24638 : When non-nil no listing will be wrapped within a float.
24640 : Removing floats may break some functionalities. For example, it
24641 : will be impossible to use cross-references to listings when using
24642 : `minted' set-up when this variable is non-nil.
24644 : This value can be locally ignored with ":long-listing t" and
24645 : ":long-listing nil" LaTeX attributes.
24647 ** org-timer-format ="%s "=
24649 :CUSTOM_ID: org-timer-format
24653 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-timer.el;hb=HEAD][org-timer.el]]
24654 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timer-format&sr=1][Find modifications in git logs]]
24656 : The format to insert the time of the timer.
24657 : This format must contain one instance of "%s" which will be replaced by
24658 : the value of the relative timer.
24660 ** org-export-skip-text-before-1st-heading =nil=
24662 :CUSTOM_ID: org-export-skip-text-before-1st-heading
24666 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
24667 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-skip-text-before-1st-heading&sr=1][Find modifications in git logs]]
24669 : Non-nil means skip all text before the first headline when exporting.
24670 : When nil, that text is exported as well.
24672 ** org-agenda-todo-ignore-time-comparison-use-seconds =nil=
24674 :CUSTOM_ID: org-agenda-todo-ignore-time-comparison-use-seconds
24677 - *Type:* (choice (const :tag "Compare t...
24678 - *Since:* Emacs version 24.4
24679 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24680 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-todo-ignore-time-comparison-use-seconds&sr=1][Find modifications in git logs]]
24682 : Time unit to use when possibly ignoring an agenda item.
24684 : See the docstring of various `org-agenda-todo-ignore-*' options.
24685 : The default is to compare time stamps using days. An item is thus
24686 : considered to be in the future if it is at least one day after today.
24687 : Non-nil means to compare time stamps using seconds. An item is then
24688 : considered future if it has a time value later than current time.
24690 ** org-latex-link-with-unknown-path-format ="\\texttt{%s}"=
24692 :CUSTOM_ID: org-latex-link-with-unknown-path-format
24696 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
24697 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-link-with-unknown-path-format&sr=1][Find modifications in git logs]]
24699 : Format string for links with unknown path type.
24701 ** org-todo-keywords =(quote ((sequence "TODO" "DONE...=
24703 :CUSTOM_ID: org-todo-keywords
24706 - *Type:* (choice (repeat :tag "Old synt...
24707 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24708 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-keywords&sr=1][Find modifications in git logs]]
24710 : List of TODO entry keyword sequences and their interpretation.
24711 : \<org-mode-map>This is a list of sequences.
24713 : Each sequence starts with a symbol, either `sequence' or `type',
24714 : indicating if the keywords should be interpreted as a sequence of
24715 : action steps, or as different types of TODO items. The first
24716 : keywords are states requiring action - these states will select a headline
24717 : for inclusion into the global TODO list Org-mode produces. If one of
24718 : the "keywords" is the vertical bar, "|", the remaining keywords
24719 : signify that no further action is necessary. If "|" is not found,
24720 : the last keyword is treated as the only DONE state of the sequence.
24722 : The command \[org-todo] cycles an entry through these states, and one
24723 : additional state where no keyword is present. For details about this
24724 : cycling, see the manual.
24726 : TODO keywords and interpretation can also be set on a per-file basis with
24727 : the special #+SEQ_TODO and #+TYP_TODO lines.
24729 : Each keyword can optionally specify a character for fast state selection
24730 : (in combination with the variable `org-use-fast-todo-selection')
24731 : and specifiers for state change logging, using the same syntax that
24732 : is used in the "#+TODO:" lines. For example, "WAIT(w)" says that
24733 : the WAIT state can be selected with the "w" key. "WAIT(w!)"
24734 : indicates to record a time stamp each time this state is selected.
24736 : Each keyword may also specify if a timestamp or a note should be
24737 : recorded when entering or leaving the state, by adding additional
24738 : characters in the parenthesis after the keyword. This looks like this:
24739 : "WAIT(w@/!)". "@" means to add a note (with time), "!" means to
24740 : record only the time of the state change. With X and Y being either
24741 : "@" or "!", "X/Y" means use X when entering the state, and use
24742 : Y when leaving the state if and only if the *target* state does not
24743 : define X. You may omit any of the fast-selection key or X or /Y,
24744 : so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
24746 : For backward compatibility, this variable may also be just a list
24747 : of keywords. In this case the interpretation (sequence or type) will be
24748 : taken from the (otherwise obsolete) variable `org-todo-interpretation'.
24750 ** org-agenda-skip-additional-timestamps-same-entry =nil=
24752 :CUSTOM_ID: org-agenda-skip-additional-timestamps-same-entry
24756 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24757 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-additional-timestamps-same-entry&sr=1][Find modifications in git logs]]
24759 : When nil, multiple same-day timestamps in entry make multiple agenda lines.
24760 : When non-nil, after the search for timestamps has matched once in an
24761 : entry, the rest of the entry will not be searched.
24763 ** org-log-reschedule =nil=
24765 :CUSTOM_ID: org-log-reschedule
24768 - *Type:* (choice (const :tag "No loggin...
24769 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24770 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-reschedule&sr=1][Find modifications in git logs]]
24772 : Information to record when the scheduling date of a tasks is modified.
24774 : Possible values are:
24776 : nil Don't add anything, just change the date
24777 : time Add a time stamp to the task
24778 : note Prompt for a note and add it with template `org-log-note-headings'
24780 : This option can also be set with on a per-file-basis with
24782 : #+STARTUP: nologreschedule
24783 : #+STARTUP: logreschedule
24784 : #+STARTUP: lognotereschedule
24786 ** org-sparse-tree-default-date-type =(quote scheduled-or-deadline)=
24788 :CUSTOM_ID: org-sparse-tree-default-date-type
24791 - *Type:* (choice (const :tag "Scheduled...
24792 - *Since:* Emacs version 24.3
24793 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24794 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sparse-tree-default-date-type&sr=1][Find modifications in git logs]]
24796 : The default date type when building a sparse tree.
24797 : When this is nil, a date is a scheduled or a deadline timestamp.
24798 : Otherwise, these types are allowed:
24800 : all: all timestamps
24801 : active: only active timestamps (<...>)
24802 : inactive: only inactive timestamps (<...)
24803 : scheduled: only scheduled timestamps
24804 : deadline: only deadline timestamps
24806 ** org-texinfo-text-markup-alist =(quote ((bold . "@strong{%s}")...=
24808 :CUSTOM_ID: org-texinfo-text-markup-alist
24812 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
24813 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-text-markup-alist&sr=1][Find modifications in git logs]]
24815 : Alist of Texinfo expressions to convert text markup.
24817 : The key must be a symbol among `bold', `italic' and `comment'.
24818 : The value is a formatting string to wrap fontified text with.
24820 : Value can also be set to the following symbols: `verb' and
24821 : `code'. For the former, Org will use "@verb" to
24822 : create a format string and select a delimiter character that
24823 : isn't in the string. For the latter, Org will use "@code"
24824 : to typeset and try to protect special characters.
24826 : If no association can be found for a given markup, text will be
24829 ** org-special-ctrl-k =nil=
24831 :CUSTOM_ID: org-special-ctrl-k
24835 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24836 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-special-ctrl-k&sr=1][Find modifications in git logs]]
24838 : Non-nil means `C-k' will behave specially in headlines.
24839 : When nil, `C-k' will call the default `kill-line' command.
24840 : When t, the following will happen while the cursor is in the headline:
24842 : - When the cursor is at the beginning of a headline, kill the entire
24843 : line and possible the folded subtree below the line.
24844 : - When in the middle of the headline text, kill the headline up to the tags.
24845 : - When after the headline text, kill the tags.
24847 ** org-startup-folded =t=
24849 :CUSTOM_ID: org-startup-folded
24852 - *Type:* (choice (const :tag "nofold: s...
24853 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24854 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-folded&sr=1][Find modifications in git logs]]
24856 : Non-nil means entering Org-mode will switch to OVERVIEW.
24857 : This can also be configured on a per-file basis by adding one of
24858 : the following lines anywhere in the buffer:
24860 : #+STARTUP: fold (or `overview', this is equivalent)
24861 : #+STARTUP: nofold (or `showall', this is equivalent)
24862 : #+STARTUP: content
24863 : #+STARTUP: showeverything
24865 : By default, this option is ignored when Org opens agenda files
24866 : for the first time. If you want the agenda to honor the startup
24867 : option, set `org-agenda-inhibit-startup' to nil.
24869 ** org-startup-indented =nil=
24871 :CUSTOM_ID: org-startup-indented
24874 - *Type:* (choice (const :tag "Not" nil)...
24875 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
24876 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-startup-indented&sr=1][Find modifications in git logs]]
24878 : Non-nil means turn on `org-indent-mode' on startup.
24879 : This can also be configured on a per-file basis by adding one of
24880 : the following lines anywhere in the buffer:
24882 : #+STARTUP: indent
24883 : #+STARTUP: noindent
24885 ** org-scheduled-past-days =10000=
24887 :CUSTOM_ID: org-scheduled-past-days
24891 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24892 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-scheduled-past-days&sr=1][Find modifications in git logs]]
24894 : Number of days to continue listing scheduled items not marked DONE.
24895 : When an item is scheduled on a date, it shows up in the agenda on this
24896 : day and will be listed until it is marked done for the number of days
24899 ** org-id-extra-files =(quote org-agenda-text-search-...=
24901 :CUSTOM_ID: org-id-extra-files
24904 - *Type:* (choice (symbol :tag "Variable...
24905 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
24906 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-extra-files&sr=1][Find modifications in git logs]]
24908 : Files to be searched for IDs, besides the agenda files.
24909 : When Org reparses files to remake the list of files and IDs it is tracking,
24910 : it will normally scan the agenda files, the archives related to agenda files,
24911 : any files that are listed as ID containing in the current register, and
24912 : any Org-mode files currently visited by Emacs.
24913 : You can list additional files here.
24914 : This variable is only relevant when `org-id-track-globally' is set.
24916 ** org-html-text-markup-alist =(quote ((bold . "<b>%s</b>") (...=
24918 :CUSTOM_ID: org-html-text-markup-alist
24921 - *Type:* (alist :key-type (symbol :tag ...
24922 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
24923 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-text-markup-alist&sr=1][Find modifications in git logs]]
24925 : Alist of HTML expressions to convert text markup.
24927 : The key must be a symbol among `bold', `code', `italic',
24928 : `strike-through', `underline' and `verbatim'. The value is
24929 : a formatting string to wrap fontified text with.
24931 : If no association can be found for a given markup, text will be
24934 ** org-habit-completed-glyph =42=
24936 :CUSTOM_ID: org-habit-completed-glyph
24939 - *Type:* character
24940 - *Since:* Emacs version 24.1
24941 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
24942 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-completed-glyph&sr=1][Find modifications in git logs]]
24944 : Glyph character used to show completed days on which a task was done.
24946 ** org-agenda-weekend-days =(quote (6 0))=
24948 :CUSTOM_ID: org-agenda-weekend-days
24951 - *Type:* (set :greedy t (const :tag "Mo...
24952 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24953 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-weekend-days&sr=1][Find modifications in git logs]]
24955 : Which days are weekend?
24956 : These days get the special face `org-agenda-date-weekend' in the agenda
24957 : and timeline buffers.
24959 ** org-agenda-time-grid =(quote ((daily today require-t...=
24961 :CUSTOM_ID: org-agenda-time-grid
24964 - *Type:* (list (set :greedy t :tag "Gri...
24965 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24966 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-time-grid&sr=1][Find modifications in git logs]]
24968 : The settings for time grid for agenda display.
24969 : This is a list of three items. The first item is again a list. It contains
24970 : symbols specifying conditions when the grid should be displayed:
24972 : daily if the agenda shows a single day
24973 : weekly if the agenda shows an entire week
24974 : today show grid on current date, independent of daily/weekly display
24975 : require-timed show grid only if at least one item has a time specification
24977 : The second item is a string which will be placed behind the grid time.
24979 : The third item is a list of integers, indicating the times that should have
24982 ** org-agenda-show-all-dates =t=
24984 :CUSTOM_ID: org-agenda-show-all-dates
24988 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
24989 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-show-all-dates&sr=1][Find modifications in git logs]]
24991 : Non-nil means `org-agenda' shows every day in the selected range.
24992 : When nil, only the days which actually have entries are shown.
24994 ** org-agenda-skip-unavailable-files =nil=
24996 :CUSTOM_ID: org-agenda-skip-unavailable-files
25000 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25001 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-unavailable-files&sr=1][Find modifications in git logs]]
25003 : Non-nil means to just skip non-reachable files in `org-agenda-files'.
25004 : A nil value means to remove them, after a query, from the list.
25006 ** org-export-author-info =t=
25008 :CUSTOM_ID: org-export-author-info
25012 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
25013 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-author-info&sr=1][Find modifications in git logs]]
25015 : Non-nil means insert author name and email into the exported file.
25017 : This option can also be set with the +OPTIONS line,
25018 : e.g. "author:nil".
25020 ** org-agenda-files =nil=
25022 :CUSTOM_ID: org-agenda-files
25025 - *Type:* (choice (repeat :tag "List of ...
25026 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25027 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-files&sr=1][Find modifications in git logs]]
25029 : The files to be used for agenda display.
25030 : Entries may be added to this list with \[org-agenda-file-to-front] and removed with
25031 : \[org-remove-file]. You can also use customize to edit the list.
25033 : If an entry is a directory, all files in that directory that are matched by
25034 : `org-agenda-file-regexp' will be part of the file list.
25036 : If the value of the variable is not a list but a single file name, then
25037 : the list of agenda files is actually stored and maintained in that file, one
25038 : agenda file per line. In this file paths can be given relative to
25039 : `org-directory'. Tilde expansion and environment variable substitution
25042 ** org-table-duration-custom-format =(quote hours)=
25044 :CUSTOM_ID: org-table-duration-custom-format
25047 - *Type:* (choice (symbol :tag "Seconds"...
25048 - *Since:* Emacs version 24.1
25049 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
25050 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-duration-custom-format&sr=1][Find modifications in git logs]]
25052 : Format for the output of calc computations like $1+$2;t.
25053 : The default value is 'hours, and will output the results as a
25054 : number of hours. Other allowed values are 'seconds, 'minutes and
25055 : 'days, and the output will be a fraction of seconds, minutes or
25058 ** org-todo-repeat-to-state =nil=
25060 :CUSTOM_ID: org-todo-repeat-to-state
25063 - *Type:* (choice (const :tag "Head of s...
25064 - *Since:* Emacs version 24.1
25065 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25066 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-repeat-to-state&sr=1][Find modifications in git logs]]
25068 : The TODO state to which a repeater should return the repeating task.
25069 : By default this is the first task in a TODO sequence, or the previous state
25070 : in a TODO_TYP set. But you can specify another task here.
25071 : alternatively, set the :REPEAT_TO_STATE: property of the entry.
25073 ** org-agenda-search-headline-for-time =t=
25075 :CUSTOM_ID: org-agenda-search-headline-for-time
25079 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
25080 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-search-headline-for-time&sr=1][Find modifications in git logs]]
25082 : Non-nil means search headline for a time-of-day.
25083 : If the headline contains a time-of-day in one format or another, it will
25084 : be used to sort the entry into the time sequence of items for a day.
25085 : Some people have time stamps in the headline that refer to the creation
25086 : time or so, and then this produces an unwanted side effect. If this is
25087 : the case for your, use this variable to turn off searching the headline
25090 ** org-export-language-setup =(quote (("en" "Author" "Date" ...=
25092 :CUSTOM_ID: org-export-language-setup
25095 - *Type:* (repeat (list (string :tag "HT...
25096 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
25097 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-language-setup&sr=1][Find modifications in git logs]]
25099 : Terms used in export text, translated to different languages.
25100 : Use the variable `org-export-default-language' to set the language,
25101 : or use the +OPTION lines for a per-file setting.
25103 ** org-sort-agenda-noeffort-is-high =t=
25105 :CUSTOM_ID: org-sort-agenda-noeffort-is-high
25109 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
25110 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-sort-agenda-noeffort-is-high&sr=1][Find modifications in git logs]]
25112 : Non-nil means items without effort estimate are sorted as high effort.
25113 : This also applies when filtering an agenda view with respect to the
25114 : < or > effort operator. Then, tasks with no effort defined will be treated
25115 : as tasks with high effort.
25116 : When nil, such items are sorted as 0 minutes effort.
25118 ** org-odt-convert-process ="LibreOffice"=
25120 :CUSTOM_ID: org-odt-convert-process
25123 - *Type:* (choice :convert-widget (lambd...
25124 - *Since:* Emacs version 24.1
25125 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
25126 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-convert-process&sr=1][Find modifications in git logs]]
25128 : Use this converter to convert from "odt" format to other formats.
25129 : During customization, the list of converter names are populated
25130 : from `org-odt-convert-processes'.
25132 ** org-id-prefix =nil=
25134 :CUSTOM_ID: org-id-prefix
25137 - *Type:* (choice (const :tag "No prefix...
25138 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
25139 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-prefix&sr=1][Find modifications in git logs]]
25141 : The prefix for IDs.
25143 : This may be a string, or it can be nil to indicate that no prefix is required.
25144 : When a string, the string should have no space characters as IDs are expected
25145 : to have no space characters in them.
25147 ** org-id-locations-file =(convert-standard-filename (co...=
25149 :CUSTOM_ID: org-id-locations-file
25153 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-id.el;hb=HEAD][org-id.el]]
25154 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-id-locations-file&sr=1][Find modifications in git logs]]
25156 : The file for remembering in which file an ID was defined.
25157 : This variable is only relevant when `org-id-track-globally' is set.
25159 ** org-archive-default-command =(quote org-archive-subtree)=
25161 :CUSTOM_ID: org-archive-default-command
25164 - *Type:* (choice (const org-archive-sub...
25165 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
25166 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-default-command&sr=1][Find modifications in git logs]]
25168 : The default archiving command.
25170 ** org-agenda-skip-scheduled-delay-if-deadline =nil=
25172 :CUSTOM_ID: org-agenda-skip-scheduled-delay-if-deadline
25175 - *Type:* (choice (const :tag "Always ho...
25176 - *Since:* Emacs version 24.4
25177 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
25178 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-skip-scheduled-delay-if-deadline&sr=1][Find modifications in git logs]]
25180 : Non-nil means skip scheduled delay when entry also has a deadline.
25181 : This variable may be set to nil, t, the symbol `post-deadline',
25182 : or a number which will then give the number of days after the actual
25183 : scheduled date when the delay should expire. The symbol `post-deadline'
25184 : eliminates the schedule delay when the date is posterior to the deadline.
25186 ** org-html-head =""=
25188 :CUSTOM_ID: org-html-head
25192 - *Since:* Emacs version 24.4
25193 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
25194 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-head&sr=1][Find modifications in git logs]]
25196 : Org-wide head definitions for exported HTML files.
25198 : This variable can contain the full HTML structure to provide a
25199 : style, including the surrounding HTML tags. You can consider
25200 : including definitions for the following classes: title, todo,
25201 : done, timestamp, timestamp-kwd, tag, target.
25203 : For example, a valid value would be:
25205 : <style type="text/css">
25207 : p { font-weight: normal; color: gray; }
25208 : h1 { color: black; }
25209 : .title { text-align: center; }
25210 : .todo, .timestamp-kwd { color: red; }
25211 : .done { color: green; }
25215 : If you want to refer to an external style, use something like
25217 : <link rel="stylesheet" type="text/css" href="mystyles.css" />
25219 : As the value of this option simply gets inserted into the HTML
25220 : <head> header, you can use it to add any arbitrary text to the
25223 : You can set this on a per-file basis using #+HTML_HEAD:,
25224 : or for publication projects using the :html-head property.
25226 ** org-ditaa-jar-option ="-jar"=
25228 :CUSTOM_ID: org-ditaa-jar-option
25232 - *Since:* Emacs version 24.1
25233 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-ditaa.el;hb=HEAD][ob-ditaa.el]]
25234 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ditaa-jar-option&sr=1][Find modifications in git logs]]
25236 : Option for the ditaa jar file.
25237 : Do not leave leading or trailing spaces in this string.
25239 ** org-pretty-entities-include-sub-superscripts =t=
25241 :CUSTOM_ID: org-pretty-entities-include-sub-superscripts
25245 - *Since:* Emacs version 24.1
25246 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25247 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-pretty-entities-include-sub-superscripts&sr=1][Find modifications in git logs]]
25249 : Non-nil means, pretty entity display includes formatting sub/superscripts.
25251 ** org-mobile-checksum-binary =(or (executable-find "shasum")...=
25253 :CUSTOM_ID: org-mobile-checksum-binary
25257 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-mobile.el;hb=HEAD][org-mobile.el]]
25258 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mobile-checksum-binary&sr=1][Find modifications in git logs]]
25260 : Executable used for computing checksums of agenda files.
25262 ** org-drawers =(quote ("PROPERTIES" "CLOCK" "...=
25264 :CUSTOM_ID: org-drawers
25267 - *Type:* (repeat (string :tag "Drawer N...
25268 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25269 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-drawers&sr=1][Find modifications in git logs]]
25271 : Names of drawers. Drawers are not opened by cycling on the headline above.
25272 : Drawers only open with a TAB on the drawer line itself. A drawer looks like
25277 : The drawer "PROPERTIES" is special for capturing properties through
25278 : the property API.
25280 : Drawers can be defined on the per-file basis with a line like:
25282 : #+DRAWERS: HIDDEN STATE PROPERTIES
25284 ** org-clock-string ="CLOCK:"=
25286 :CUSTOM_ID: org-clock-string
25290 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25291 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-string&sr=1][Find modifications in git logs]]
25293 : String used as prefix for timestamps clocking work hours on an item.
25295 ** org-texinfo-tables-verbatim =nil=
25297 :CUSTOM_ID: org-texinfo-tables-verbatim
25301 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
25302 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-tables-verbatim&sr=1][Find modifications in git logs]]
25304 : When non-nil, tables are exported verbatim.
25306 ** org-protocol-default-template-key =nil=
25308 :CUSTOM_ID: org-protocol-default-template-key
25312 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-protocol.el;hb=HEAD][org-protocol.el]]
25313 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-protocol-default-template-key&sr=1][Find modifications in git logs]]
25315 : The default template key to use.
25316 : This is usually a single character string but can also be a
25317 : string with two characters.
25319 ** org-latex-listings-options =nil=
25321 :CUSTOM_ID: org-latex-listings-options
25324 - *Type:* (repeat (list (string :tag "Li...
25325 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
25326 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-listings-options&sr=1][Find modifications in git logs]]
25328 : Association list of options for the latex listings package.
25330 : These options are supplied as a comma-separated list to the
25331 : \lstset command. Each element of the association list should be
25332 : a list containing two strings: the name of the option, and the
25333 : value. For example,
25335 : (setq org-latex-listings-options
25336 : '(("basicstyle" "\small")
25337 : ("keywordstyle" "\color{black}\bfseries\underbar")))
25339 : will typeset the code in a small size font with underlined, bold
25342 : Note that the same options will be applied to blocks of all
25345 ** org-clock-x11idle-program-name ="x11idle"=
25347 :CUSTOM_ID: org-clock-x11idle-program-name
25351 - *Since:* Emacs version 24.4
25352 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
25353 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-x11idle-program-name&sr=1][Find modifications in git logs]]
25355 : Name of the program which prints X11 idle time in milliseconds.
25357 : You can find x11idle.c in the contrib/scripts directory of the
25358 : Org git distribution. Or, you can do:
25360 : sudo apt-get install xprintidle
25362 : if you are using Debian.
25364 ** org-clock-persist-query-save =nil=
25366 :CUSTOM_ID: org-clock-persist-query-save
25370 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
25371 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-persist-query-save&sr=1][Find modifications in git logs]]
25373 : When non-nil, ask before saving the current clock on exit.
25375 ** org-clock-clocktable-formatter =(quote org-clocktable-write-de...=
25377 :CUSTOM_ID: org-clock-clocktable-formatter
25381 - *Since:* Emacs version 24.1
25382 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
25383 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-clocktable-formatter&sr=1][Find modifications in git logs]]
25385 : Function to turn clocking data into a table.
25386 : For more information, see `org-clocktable-write-default'.
25388 ** org-texinfo-format-drawer-function =nil=
25390 :CUSTOM_ID: org-texinfo-format-drawer-function
25394 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
25395 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-format-drawer-function&sr=1][Find modifications in git logs]]
25397 : Function called to format a drawer in Texinfo code.
25399 : The function must accept two parameters:
25400 : NAME the drawer name, like "LOGBOOK"
25401 : CONTENTS the contents of the drawer.
25403 : The function should return the string to be exported.
25405 : For example, the variable could be set to the following function
25406 : in order to mimic default behaviour:
25408 : (defun org-texinfo-format-drawer-default (name contents)
25409 : "Format a drawer element for Texinfo export."
25412 ** org-treat-insert-todo-heading-as-state-change =nil=
25414 :CUSTOM_ID: org-treat-insert-todo-heading-as-state-change
25418 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25419 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-treat-insert-todo-heading-as-state-change&sr=1][Find modifications in git logs]]
25421 : Non-nil means inserting a TODO heading is treated as state change.
25422 : So when the command \[org-insert-todo-heading] is used, state change
25423 : logging will apply if appropriate. When nil, the new TODO item will
25424 : be inserted directly, and no logging will take place.
25426 ** org-export-html-postamble-format =(quote (("en" "<p class=\"auth...=
25428 :CUSTOM_ID: org-export-html-postamble-format
25432 - *Since:* Emacs version 24.1
25433 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
25434 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-postamble-format&sr=1][Find modifications in git logs]]
25436 : Alist of languages and format strings for the HTML postamble.
25438 : The first element of each list is the language code, as used for
25439 : the #+LANGUAGE keyword.
25441 : The second element of each list is a format string to format the
25442 : postamble itself. This format string can contain these elements:
25444 : %a stands for the author's name.
25445 : %e stands for the author's email.
25446 : %d stands for the date.
25447 : %c will be replaced by information about Org/Emacs versions.
25448 : %v will be replaced by `org-export-html-validation-link'.
25450 : If you need to use a "%" character, you need to escape it
25453 ** org-bibtex-export-arbitrary-fields =nil=
25455 :CUSTOM_ID: org-bibtex-export-arbitrary-fields
25459 - *Since:* Emacs version 24.1
25460 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
25461 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-export-arbitrary-fields&sr=1][Find modifications in git logs]]
25463 : When converting to bibtex allow fields not defined in `org-bibtex-fields'.
25464 : This only has effect if `org-bibtex-prefix' is defined, so as to
25465 : ensure that other org-properties, such as CATEGORY or LOGGING are
25466 : not placed in the exported bibtex entry.
25468 ** org-list-allow-alphabetical =nil=
25470 :CUSTOM_ID: org-list-allow-alphabetical
25474 - *Since:* Emacs version 24.1
25475 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
25476 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-allow-alphabetical&sr=1][Find modifications in git logs]]
25478 : Non-nil means single character alphabetical bullets are allowed.
25479 : Both uppercase and lowercase are handled. Lists with more than
25480 : 26 items will fallback to standard numbering. Alphabetical
25481 : counters like "[@c]" will be recognized.
25483 ** org-fontify-whole-heading-line =nil=
25485 :CUSTOM_ID: org-fontify-whole-heading-line
25489 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25490 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fontify-whole-heading-line&sr=1][Find modifications in git logs]]
25492 : Non-nil means fontify the whole line for headings.
25493 : This is useful when setting a background color for the
25494 : org-level-* faces.
25496 ** org-export-with-statistics-cookies =t=
25498 :CUSTOM_ID: org-export-with-statistics-cookies
25502 - *Since:* Emacs version 24.4
25503 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
25504 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-statistics-cookies&sr=1][Find modifications in git logs]]
25506 : Non-nil means include statistics cookies in export.
25507 : This option can also be set with the OPTIONS keyword,
25510 ** org-hide-block-startup =nil=
25512 :CUSTOM_ID: org-hide-block-startup
25516 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25517 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-hide-block-startup&sr=1][Find modifications in git logs]]
25519 : Non-nil means entering Org-mode will fold all blocks.
25520 : This can also be set in on a per-file basis with
25522 : #+STARTUP: hideblocks
25523 : #+STARTUP: showblocks
25525 ** org-bibtex-prefix =nil=
25527 :CUSTOM_ID: org-bibtex-prefix
25531 - *Since:* Emacs version 24.1
25532 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
25533 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-prefix&sr=1][Find modifications in git logs]]
25535 : Optional prefix for all bibtex property names.
25536 : For example setting to 'BIB_' would allow interoperability with fireforg.
25538 ** org-publish-use-timestamps-flag =t=
25540 :CUSTOM_ID: org-publish-use-timestamps-flag
25544 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
25545 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-use-timestamps-flag&sr=1][Find modifications in git logs]]
25547 : Non-nil means use timestamp checking to publish only changed files.
25548 : When nil, do no timestamp checking and always publish all files.
25550 ** org-beamer-environments-extra =nil=
25552 :CUSTOM_ID: org-beamer-environments-extra
25555 - *Type:* (repeat (list (string :tag "En...
25556 - *Since:* Emacs version 24.4
25557 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-beamer.el;hb=HEAD][ox-beamer.el]]
25558 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-beamer-environments-extra&sr=1][Find modifications in git logs]]
25560 : Environments triggered by tags in Beamer export.
25561 : Each entry has 4 elements:
25563 : name Name of the environment
25564 : key Selection key for `org-beamer-select-environment'
25565 : open The opening template for the environment, with the following escapes
25566 : %a the action/overlay specification
25567 : %A the default action/overlay specification
25568 : %o the options argument of the template
25569 : %h the headline text
25570 : %H if there is headline text, that text in {} braces
25571 : %U if there is headline text, that text in [] brackets
25572 : close The closing string of the environment.
25574 ** org-latex-inputenc-alist =nil=
25576 :CUSTOM_ID: org-latex-inputenc-alist
25579 - *Type:* (repeat (cons (string :tag "De...
25580 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
25581 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-inputenc-alist&sr=1][Find modifications in git logs]]
25583 : Alist of inputenc coding system names, and what should really be used.
25584 : For example, adding an entry
25586 : ("utf8" . "utf8x")
25588 : will cause \usepackage[utf8x]{inputenc} to be used for buffers that
25589 : are written as utf8 files.
25591 ** org-clock-report-include-clocking-task =nil=
25593 :CUSTOM_ID: org-clock-report-include-clocking-task
25597 - *Since:* Emacs version 24.1
25598 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
25599 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-report-include-clocking-task&sr=1][Find modifications in git logs]]
25601 : When non-nil, include the current clocking task time in clock reports.
25603 ** org-texinfo-table-scientific-notation ="%s\\,(%s)"=
25605 :CUSTOM_ID: org-texinfo-table-scientific-notation
25608 - *Type:* (choice (string :tag "Format s...
25609 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
25610 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-table-scientific-notation&sr=1][Find modifications in git logs]]
25612 : Format string to display numbers in scientific notation.
25613 : The format should have "%s" twice, for mantissa and exponent
25614 : (i.e. "%s\\times10^{%s}").
25616 : When nil, no transformation is made.
25618 ** org-clock-sound =nil=
25620 :CUSTOM_ID: org-clock-sound
25623 - *Type:* (choice (const :tag "No sound"...
25624 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-clock.el;hb=HEAD][org-clock.el]]
25625 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-clock-sound&sr=1][Find modifications in git logs]]
25627 : Sound to use for notifications.
25628 : Possible values are:
25630 : nil No sound played
25631 : t Standard Emacs beep
25632 : file name Play this sound file, fall back to beep
25634 ** org-indirect-buffer-display =(quote other-window)=
25636 :CUSTOM_ID: org-indirect-buffer-display
25639 - *Type:* (choice (const :tag "In curren...
25640 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25641 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-indirect-buffer-display&sr=1][Find modifications in git logs]]
25643 : How should indirect tree buffers be displayed?
25644 : This applies to indirect buffers created with the commands
25645 : \[org-tree-to-indirect-buffer] and \[org-agenda-tree-to-indirect-buffer].
25646 : Valid values are:
25647 : current-window Display in the current window
25648 : other-window Just display in another window.
25649 : dedicated-frame Create one new frame, and re-use it each time.
25650 : new-frame Make a new frame each time. Note that in this case
25651 : previously-made indirect buffers are kept, and you need to
25652 : kill these buffers yourself.
25654 ** org-feed-alist =nil=
25656 :CUSTOM_ID: org-feed-alist
25659 - *Type:* (repeat (list :value ("" "http...
25660 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
25661 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-alist&sr=1][Find modifications in git logs]]
25663 : Alist specifying RSS feeds that should create inputs for Org.
25664 : Each entry in this list specified an RSS feed tat should be queried
25665 : to create inbox items in Org. Each entry is a list with the following items:
25667 : name a custom name for this feed
25669 : file the target Org file where entries should be listed
25670 : headline the headline under which entries should be listed
25672 : Additional arguments can be given using keyword-value pairs. Many of these
25673 : specify functions that receive one or a list of "entries" as their single
25674 : argument. An entry is a property list that describes a feed item. The
25675 : property list has properties for each field in the item, for example `:title'
25676 : for the `<title>' field and `:pubDate' for the publication date. In addition,
25677 : it contains the following properties:
25679 : `:item-full-text' the full text in the <item> tag
25680 : `:guid-permalink' t when the guid property is a permalink
25682 : Here are the keyword-value pair allows in `org-feed-alist'.
25684 : :drawer drawer-name
25685 : The name of the drawer for storing feed information. The default is
25686 : "FEEDSTATUS". Using different drawers for different feeds allows
25687 : several feeds to target the same inbox heading.
25689 : :filter filter-function
25690 : A function to select interesting entries in the feed. It gets a single
25691 : entry as parameter. It should return the entry if it is relevant, or
25692 : nil if it is not.
25694 : :template template-string
25695 : The default action on new items in the feed is to add them as children
25696 : under the headline for the feed. The template describes how the entry
25697 : should be formatted. If not given, it defaults to
25698 : `org-feed-default-template'.
25700 : :formatter formatter-function
25701 : Instead of relying on a template, you may specify a function to format
25702 : the outline node to be inserted as a child. This function gets passed
25703 : a property list describing a single feed item, and it should return a
25704 : string that is a properly formatted Org outline node of level 1.
25706 : :new-handler function
25707 : If adding new items as children to the outline is not what you want
25708 : to do with new items, define a handler function that is called with
25709 : a list of all new items in the feed, each one represented as a property
25710 : list. The handler should do what needs to be done, and org-feed will
25711 : mark all items given to this handler as "handled", i.e. they will not
25712 : be passed to this handler again in future readings of the feed.
25713 : When the handler is called, point will be at the feed headline.
25715 : :changed-handler function
25716 : This function gets passed a list of all entries that have been
25717 : handled before, but are now still in the feed and have *changed*
25718 : since last handled (as evidenced by a different sha1 hash).
25719 : When the handler is called, point will be at the feed headline.
25721 : :parse-feed function
25722 : This function gets passed a buffer, and should return a list
25723 : of entries, each being a property list containing the
25724 : `:guid' and `:item-full-text' keys. The default is
25725 : `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an
25728 : :parse-entry function
25729 : This function gets passed an entry as returned by the parse-feed
25730 : function, and should return the entry with interesting properties added.
25731 : The default is `org-feed-parse-rss-entry'; `org-feed-parse-atom-entry'
25732 : is an alternative.
25734 ** org-timeline-show-empty-dates =3=
25736 :CUSTOM_ID: org-timeline-show-empty-dates
25739 - *Type:* (choice (const :tag "None" nil...
25740 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
25741 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-timeline-show-empty-dates&sr=1][Find modifications in git logs]]
25743 : Non-nil means `org-timeline' also shows dates without an entry.
25744 : When nil, only the days which actually have entries are shown.
25745 : When t, all days between the first and the last date are shown.
25746 : When an integer, show also empty dates, but if there is a gap of more than
25747 : N days, just insert a special line indicating the size of the gap.
25749 ** org-habit-show-habits =t=
25751 :CUSTOM_ID: org-habit-show-habits
25755 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
25756 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-show-habits&sr=1][Find modifications in git logs]]
25758 : If non-nil, show habits in agenda buffers.
25760 ** org-file-apps =(quote ((auto-mode . emacs) ("...=
25762 :CUSTOM_ID: org-file-apps
25765 - *Type:* (repeat (cons (choice :value "...
25766 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25767 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-file-apps&sr=1][Find modifications in git logs]]
25769 : External applications for opening `file:path' items in a document.
25770 : Org-mode uses system defaults for different file types, but
25771 : you can use this variable to set the application for a given file
25772 : extension. The entries in this list are cons cells where the car identifies
25773 : files and the cdr the corresponding command. Possible values for the
25774 : file identifier are
25775 : "string" A string as a file identifier can be interpreted in different
25776 : ways, depending on its contents:
25778 : - Alphanumeric characters only:
25779 : Match links with this file extension.
25780 : Example: ("pdf" . "evince %s")
25781 : to open PDFs with evince.
25783 : - Regular expression: Match links where the
25784 : filename matches the regexp. If you want to
25785 : use groups here, use shy groups.
25787 : Example: ("\.x?html\'" . "firefox %s")
25788 : ("\(?:xhtml\|html\)" . "firefox %s")
25789 : to open *.html and *.xhtml with firefox.
25791 : - Regular expression which contains (non-shy) groups:
25792 : Match links where the whole link, including "::", and
25793 : anything after that, matches the regexp.
25794 : In a custom command string, %1, %2, etc. are replaced with
25795 : the parts of the link that were matched by the groups.
25796 : For backwards compatibility, if a command string is given
25797 : that does not use any of the group matches, this case is
25798 : handled identically to the second one (i.e. match against
25800 : In a custom lisp form, you can access the group matches with
25801 : (match-string n link).
25803 : Example: ("\.pdf::\(\d+\)\'" . "evince -p %1 %s")
25804 : to open [[file:document.pdf::5]] with evince at page 5.
25806 : `directory' Matches a directory
25807 : `remote' Matches a remote file, accessible through tramp or efs.
25808 : Remote files most likely should be visited through Emacs
25809 : because external applications cannot handle such paths.
25810 : `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
25811 : so all files Emacs knows how to handle. Using this with
25812 : command `emacs' will open most files in Emacs. Beware that this
25813 : will also open html files inside Emacs, unless you add
25814 : ("html" . default) to the list as well.
25815 : t Default for files not matched by any of the other options.
25816 : `system' The system command to open files, like `open' on Windows
25817 : and Mac OS X, and mailcap under GNU/Linux. This is the command
25818 : that will be selected if you call `C-c C-o' with a double
25819 : \[universal-argument] \[universal-argument] prefix.
25821 : Possible values for the command are:
25822 : `emacs' The file will be visited by the current Emacs process.
25823 : `default' Use the default application for this file type, which is the
25824 : association for t in the list, most likely in the system-specific
25826 : This can be used to overrule an unwanted setting in the
25827 : system-specific variable.
25828 : `system' Use the system command for opening files, like "open".
25829 : This command is specified by the entry whose car is `system'.
25830 : Most likely, the system-specific version of this variable
25831 : does define this command, but you can overrule/replace it
25833 : string A command to be executed by a shell; %s will be replaced
25834 : by the path to the file.
25835 : sexp A Lisp form which will be evaluated. The file path will
25836 : be available in the Lisp variable `file'.
25837 : For more examples, see the system specific constants
25838 : `org-file-apps-defaults-macosx'
25839 : `org-file-apps-defaults-windowsnt'
25840 : `org-file-apps-defaults-gnu'.
25842 ** org-agenda-search-view-force-full-words =nil=
25844 :CUSTOM_ID: org-agenda-search-view-force-full-words
25848 - *Since:* Emacs version 24.1
25849 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
25850 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-search-view-force-full-words&sr=1][Find modifications in git logs]]
25852 : Non-nil means, search words must be matches as complete words.
25853 : When nil, they may also match part of a word.
25855 ** org-footnote-auto-label =t=
25857 :CUSTOM_ID: org-footnote-auto-label
25860 - *Type:* (choice (const :tag "Prompt fo...
25861 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-footnote.el;hb=HEAD][org-footnote.el]]
25862 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-footnote-auto-label&sr=1][Find modifications in git logs]]
25864 : Non-nil means define automatically new labels for footnotes.
25865 : Possible values are:
25867 : nil Prompt the user for each label.
25868 : t Create unique labels of the form [fn:1], [fn:2], etc.
25869 : confirm Like t, but let the user edit the created value.
25870 : The label can be removed from the minibuffer to create
25871 : an anonymous footnote.
25872 : random Automatically generate a unique, random label.
25873 : plain Automatically create plain number labels like [1].
25875 ** org-export-with-latex =t=
25877 :CUSTOM_ID: org-export-with-latex
25880 - *Type:* (choice (const :tag "Do not pr...
25881 - *Since:* Emacs version 24.4
25882 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
25883 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-latex&sr=1][Find modifications in git logs]]
25885 : Non-nil means process LaTeX environments and fragments.
25887 : This option can also be set with the OPTIONS line,
25888 : e.g. "tex:verbatim". Allowed values are:
25890 : nil Ignore math snippets.
25891 : `verbatim' Keep everything in verbatim.
25892 : t Allow export of math snippets.
25894 ** org-texinfo-info-process =(quote ("makeinfo %f"))=
25896 :CUSTOM_ID: org-texinfo-info-process
25899 - *Type:* (repeat :tag "Shell command se...
25900 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-texinfo.el;hb=HEAD][ox-texinfo.el]]
25901 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-texinfo-info-process&sr=1][Find modifications in git logs]]
25903 : Commands to process a Texinfo file to an INFO file.
25904 : This is list of strings, each of them will be given to the shell
25905 : as a command. %f in the command will be replaced by the full
25906 : file name, %b by the file base name (i.e without extension) and
25907 : %o by the base directory of the file.
25909 ** org-log-repeat =(quote time)=
25911 :CUSTOM_ID: org-log-repeat
25914 - *Type:* (choice (const :tag "Don't for...
25915 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
25916 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-log-repeat&sr=1][Find modifications in git logs]]
25918 : Non-nil means record moving through the DONE state when triggering repeat.
25919 : An auto-repeating task is immediately switched back to TODO when
25920 : marked DONE. If you are not logging state changes (by adding "@"
25921 : or "!" to the TODO keyword definition), or set `org-log-done' to
25922 : record a closing note, there will be no record of the task moving
25923 : through DONE. This variable forces taking a note anyway.
25925 : nil Don't force a record
25926 : time Record a time stamp
25927 : note Prompt for a note and add it with template `org-log-note-headings'
25929 : This option can also be set with on a per-file-basis with
25931 : #+STARTUP: nologrepeat
25932 : #+STARTUP: logrepeat
25933 : #+STARTUP: lognoterepeat
25935 : You can have local logging settings for a subtree by setting the LOGGING
25936 : property to one or more of these keywords.
25938 ** org-html-head-include-scripts =t=
25940 :CUSTOM_ID: org-html-head-include-scripts
25944 - *Since:* Emacs version 24.4
25945 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
25946 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-head-include-scripts&sr=1][Find modifications in git logs]]
25948 : Non-nil means include the JavaScript snippets in exported HTML files.
25949 : The actual script is defined in `org-html-scripts' and should
25952 ** org-list-automatic-rules =(quote ((checkbox . t) (indent...=
25954 :CUSTOM_ID: org-list-automatic-rules
25957 - *Type:* (alist :tag "Sets of rules" :k...
25958 - *Since:* Emacs version 24.1
25959 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
25960 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-automatic-rules&sr=1][Find modifications in git logs]]
25962 : Non-nil means apply set of rules when acting on lists.
25963 : By default, automatic actions are taken when using
25964 : \[org-meta-return], \[org-metaright], \[org-metaleft],
25965 : \[org-shiftmetaright], \[org-shiftmetaleft],
25966 : \[org-ctrl-c-minus], \[org-toggle-checkbox] or
25967 : \[org-insert-todo-heading]. You can disable individually these
25968 : rules by setting them to nil. Valid rules are:
25970 : checkbox when non-nil, checkbox statistics is updated each time
25971 : you either insert a new checkbox or toggle a checkbox.
25972 : indent when non-nil, indenting or outdenting list top-item
25973 : with its subtree will move the whole list and
25974 : outdenting a list whose bullet is * to column 0 will
25975 : change that bullet to "-".
25977 ** org-bbdb-anniversary-format-alist =(quote (("birthday" lambda (na...=
25979 :CUSTOM_ID: org-bbdb-anniversary-format-alist
25982 - *Type:* (alist :key-type (string :tag ...
25983 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bbdb.el;hb=HEAD][org-bbdb.el]]
25984 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bbdb-anniversary-format-alist&sr=1][Find modifications in git logs]]
25986 : How different types of anniversaries should be formatted.
25987 : An alist of elements (STRING . FORMAT) where STRING is the name of an
25988 : anniversary class and format is either:
25989 : 1) A format string with the following substitutions (in order):
25990 : - the name of the record containing this anniversary
25991 : - the number of years
25992 : - an ordinal suffix (st, nd, rd, th) for the year
25994 : 2) A function to be called with three arguments: NAME YEARS SUFFIX
25995 : (string int string) returning a string for the diary or nil.
25997 : 3) An Emacs Lisp form that should evaluate to a string (or nil) in the
25998 : scope of variables NAME, YEARS and SUFFIX (among others).
26000 ** org-latex-minted-options =nil=
26002 :CUSTOM_ID: org-latex-minted-options
26005 - *Type:* (repeat (list (string :tag "Mi...
26006 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
26007 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-minted-options&sr=1][Find modifications in git logs]]
26009 : Association list of options for the latex minted package.
26011 : These options are supplied within square brackets in
26012 : \begin{minted} environments. Each element of the alist should
26013 : be a list containing two strings: the name of the option, and the
26014 : value. For example,
26016 : (setq org-latex-minted-options
26017 : '(("bgcolor" "bg") ("frame" "lines")))
26019 : will result in src blocks being exported with
26021 : \begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
26023 : as the start of the minted environment. Note that the same
26024 : options will be applied to blocks of all languages.
26026 ** org-export-with-date =t=
26028 :CUSTOM_ID: org-export-with-date
26032 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
26033 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-date&sr=1][Find modifications in git logs]]
26035 : Non-nil means insert date in the exported document.
26036 : This option can also be set with the OPTIONS keyword,
26039 ** org-publish-sitemap-sort-ignore-case =nil=
26041 :CUSTOM_ID: org-publish-sitemap-sort-ignore-case
26045 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
26046 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-sitemap-sort-ignore-case&sr=1][Find modifications in git logs]]
26048 : Non-nil when site-map sorting should ignore case.
26050 : You can overwrite this default per project in your
26051 : `org-publish-project-alist', using `:sitemap-ignore-case'.
26053 ** org-url-hexify-p =t=
26055 :CUSTOM_ID: org-url-hexify-p
26059 - *Since:* Emacs version 24.3
26060 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26061 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-url-hexify-p&sr=1][Find modifications in git logs]]
26063 : When non-nil, hexify URL when creating a link.
26065 ** org-export-in-background =nil=
26067 :CUSTOM_ID: org-export-in-background
26071 - *Since:* Emacs version 24.4
26072 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox.el;hb=HEAD][ox.el]]
26073 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-in-background&sr=1][Find modifications in git logs]]
26075 : Non-nil means export and publishing commands will run in background.
26076 : Results from an asynchronous export are never displayed
26077 : automatically. But you can retrieve them with \[org-export-stack].
26079 ** org-icalendar-alarm-time =0=
26081 :CUSTOM_ID: org-icalendar-alarm-time
26085 - *Since:* Emacs version 24.1
26086 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
26087 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-alarm-time&sr=1][Find modifications in git logs]]
26089 : Number of minutes for triggering an alarm for exported timed events.
26091 : A zero value (the default) turns off the definition of an alarm trigger
26092 : for timed events. If non-zero, alarms are created.
26094 : - a single alarm per entry is defined
26095 : - The alarm will go off N minutes before the event
26096 : - only a DISPLAY action is defined.
26098 ** org-export-html-style-include-scripts =t=
26100 :CUSTOM_ID: org-export-html-style-include-scripts
26104 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
26105 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-style-include-scripts&sr=1][Find modifications in git logs]]
26107 : Non-nil means include the JavaScript snippets in exported HTML files.
26108 : The actual script is defined in `org-export-html-scripts' and should
26111 ** org-table-formula-evaluate-inline =t=
26113 :CUSTOM_ID: org-table-formula-evaluate-inline
26117 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
26118 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-formula-evaluate-inline&sr=1][Find modifications in git logs]]
26120 : Non-nil means TAB and RET evaluate a formula in current table field.
26121 : If the current field starts with an equal sign, it is assumed to be a formula
26122 : which should be evaluated as described in the manual and in the documentation
26123 : string of the command `org-table-eval-formula'. This feature requires the
26124 : Emacs calc package.
26125 : When this variable is nil, formula calculation is only available through
26126 : the command \[org-table-eval-formula].
26128 ** org-export-with-footnotes =t=
26130 :CUSTOM_ID: org-export-with-footnotes
26134 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
26135 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-footnotes&sr=1][Find modifications in git logs]]
26137 : Non-nil means Org footnotes should be exported.
26138 : This option can also be set with the OPTIONS keyword,
26141 ** org-html-table-header-tags =(quote ("<th scope=\"%s\"%s>" ...=
26143 :CUSTOM_ID: org-html-table-header-tags
26146 - *Type:* (cons (string :tag "Opening ta...
26147 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
26148 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-table-header-tags&sr=1][Find modifications in git logs]]
26150 : The opening tag for table header fields.
26151 : This is customizable so that alignment options can be specified.
26152 : The first %s will be filled with the scope of the field, either row or col.
26153 : The second %s will be replaced by a style entry to align the field.
26154 : See also the variable `org-html-table-use-header-tags-for-first-column'.
26155 : See also the variable `org-html-table-align-individual-fields'.
26157 ** org-odt-format-inlinetask-function =nil=
26159 :CUSTOM_ID: org-odt-format-inlinetask-function
26163 - *Since:* Emacs version 24.4
26164 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
26165 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-format-inlinetask-function&sr=1][Find modifications in git logs]]
26167 : Function called to format an inlinetask in ODT code.
26169 : The function must accept six parameters:
26170 : TODO the todo keyword, as a string
26171 : TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
26172 : PRIORITY the inlinetask priority, as a string
26173 : NAME the inlinetask name, as a string.
26174 : TAGS the inlinetask tags, as a string.
26175 : CONTENTS the contents of the inlinetask, as a string.
26177 : The function should return the string to be exported.
26179 ** org-archive-file-header-format ="\nArchived entries from file ...=
26181 :CUSTOM_ID: org-archive-file-header-format
26185 - *Since:* Emacs version 24.4
26186 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
26187 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-file-header-format&sr=1][Find modifications in git logs]]
26189 : The header format string for newly created archive files.
26190 : When nil, no header will be inserted.
26191 : When a string, a %s formatter will be replaced by the file name.
26193 ** org-babel-tangle-lang-exts =(quote (("emacs-lisp" . "el"))...=
26195 :CUSTOM_ID: org-babel-tangle-lang-exts
26198 - *Type:* (repeat (cons (string "Languag...
26199 - *Since:* Emacs version 24.1
26200 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
26201 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-lang-exts&sr=1][Find modifications in git logs]]
26203 : Alist mapping languages to their file extensions.
26204 : The key is the language name, the value is the string that should
26205 : be inserted as the extension commonly used to identify files
26206 : written in this language. If no entry is found in this list,
26207 : then the name of the language is used.
26209 ** org-agenda-day-face-function =nil=
26211 :CUSTOM_ID: org-agenda-day-face-function
26215 - *Since:* Emacs version 24.1
26216 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26217 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-day-face-function&sr=1][Find modifications in git logs]]
26219 : Function called to determine what face should be used to display a day.
26220 : The only argument passed to that function is the day. It should
26221 : returns a face, or nil if does not want to specify a face and let
26222 : the normal rules apply.
26224 ** org-export-htmlized-org-css-url =nil=
26226 :CUSTOM_ID: org-export-htmlized-org-css-url
26229 - *Type:* (choice (const :tag "Keep inte...
26230 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-org.el;hb=HEAD][ox-org.el]]
26231 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-htmlized-org-css-url&sr=1][Find modifications in git logs]]
26235 ** org-icalendar-combined-name ="OrgMode"=
26237 :CUSTOM_ID: org-icalendar-combined-name
26241 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-icalendar.el;hb=HEAD][ox-icalendar.el]]
26242 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-icalendar-combined-name&sr=1][Find modifications in git logs]]
26244 : Calendar name for the combined iCalendar representing all agenda files.
26246 ** org-rss-extension ="xml"=
26248 :CUSTOM_ID: org-rss-extension
26252 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-rss.el;hb=HEAD][ox-rss.el]]
26253 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-rss-extension&sr=1][Find modifications in git logs]]
26255 : File extension for the RSS 2.0 feed.
26257 ** org-html-protect-char-alist =(quote (("&" . "&") ("<" ....=
26259 :CUSTOM_ID: org-html-protect-char-alist
26262 - *Type:* (repeat (cons (string :tag "Ch...
26263 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
26264 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-protect-char-alist&sr=1][Find modifications in git logs]]
26266 : Alist of characters to be converted by `org-html-protect'.
26268 ** org-habit-preceding-days =21=
26270 :CUSTOM_ID: org-habit-preceding-days
26274 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-habit.el;hb=HEAD][org-habit.el]]
26275 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-habit-preceding-days&sr=1][Find modifications in git logs]]
26277 : Number of days before today to appear in consistency graphs.
26279 ** org-todo-keyword-faces =nil=
26281 :CUSTOM_ID: org-todo-keyword-faces
26284 - *Type:* (repeat (cons (string :tag "Ke...
26285 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
26286 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-todo-keyword-faces&sr=1][Find modifications in git logs]]
26288 : Faces for specific TODO keywords.
26289 : This is a list of cons cells, with TODO keywords in the car
26290 : and faces in the cdr. The face can be a symbol, a color
26291 : as a string (in which case the rest is inherited from the `org-todo' face),
26292 : or a property list of attributes, like
26293 : (:foreground "blue" :weight bold :underline t).
26294 : If it is a color string, the variable `org-faces-easy-properties'
26295 : determines if it is a foreground or a background color.
26297 ** org-provide-todo-statistics =t=
26299 :CUSTOM_ID: org-provide-todo-statistics
26302 - *Type:* (choice (const :tag "Yes, only...
26303 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26304 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-provide-todo-statistics&sr=1][Find modifications in git logs]]
26306 : Non-nil means update todo statistics after insert and toggle.
26307 : ALL-HEADLINES means update todo statistics by including headlines
26308 : with no TODO keyword as well, counting them as not done.
26309 : A list of TODO keywords means the same, but skip keywords that are
26310 : not in this list.
26312 : When this is set, todo statistics is updated in the parent of the
26313 : current entry each time a todo state is changed.
26315 ** org-ascii-indented-line-width =(quote auto)=
26317 :CUSTOM_ID: org-ascii-indented-line-width
26320 - *Type:* (choice (integer :tag "Number ...
26321 - *Since:* Emacs version 24.4
26322 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-ascii.el;hb=HEAD][ox-ascii.el]]
26323 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-ascii-indented-line-width&sr=1][Find modifications in git logs]]
26325 : Additional indentation width for the first line in a paragraph.
26326 : If the value is an integer, indent the first line of each
26327 : paragraph by this number. If it is the symbol `auto' preserve
26328 : indentation from original document.
26330 ** org-html-postamble-format =(quote (("en" "<p class=\"auth...=
26332 :CUSTOM_ID: org-html-postamble-format
26335 - *Type:* (alist :key-type (string :tag ...
26336 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
26337 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-postamble-format&sr=1][Find modifications in git logs]]
26339 : Alist of languages and format strings for the HTML postamble.
26341 : The first element of each list is the language code, as used for
26342 : the LANGUAGE keyword. See `org-export-default-language'.
26344 : The second element of each list is a format string to format the
26345 : postamble itself. This format string can contain these elements:
26347 : %t stands for the title.
26348 : %a stands for the author's name.
26349 : %e stands for the author's email.
26350 : %d stands for the date.
26351 : %c will be replaced by `org-html-creator-string'.
26352 : %v will be replaced by `org-html-validation-link'.
26353 : %T will be replaced by the export time.
26354 : %C will be replaced by the last modification time.
26356 : If you need to use a "%" character, you need to escape it
26359 ** org-archive-reversed-order =nil=
26361 :CUSTOM_ID: org-archive-reversed-order
26365 - *Since:* Emacs version 24.1
26366 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-archive.el;hb=HEAD][org-archive.el]]
26367 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-archive-reversed-order&sr=1][Find modifications in git logs]]
26369 : Non-nil means make the tree first child under the archive heading, not last.
26371 ** org-babel-lisp-dir-fmt ="(let ((*default-pathname-defa...=
26373 :CUSTOM_ID: org-babel-lisp-dir-fmt
26377 - *Since:* Emacs version 24.1
26378 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-lisp.el;hb=HEAD][ob-lisp.el]]
26379 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-lisp-dir-fmt&sr=1][Find modifications in git logs]]
26381 : Format string used to wrap code bodies to set the current directory.
26382 : For example a value of "(progn ;; %s\n %%s)" would ignore the
26383 : current directory string.
26385 ** org-export-headline-levels =3=
26387 :CUSTOM_ID: org-export-headline-levels
26391 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
26392 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-headline-levels&sr=1][Find modifications in git logs]]
26394 : The last level which is still exported as a headline.
26396 : Inferior levels will usually produce itemize or enumerate lists
26397 : when exported, but back-end behaviour may differ.
26399 : This option can also be set with the OPTIONS keyword,
26402 ** org-babel-load-languages =(quote ((emacs-lisp . t)))=
26404 :CUSTOM_ID: org-babel-load-languages
26407 - *Type:* (alist :tag "Babel Languages" ...
26408 - *Since:* Emacs version 24.1
26409 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26410 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-load-languages&sr=1][Find modifications in git logs]]
26412 : Languages which can be evaluated in Org-mode buffers.
26413 : This list can be used to load support for any of the languages
26414 : below, note that each language will depend on a different set of
26415 : system executables and/or Emacs modes. When a language is
26416 : "loaded", then code blocks in that language can be evaluated
26417 : with `org-babel-execute-src-block' bound by default to C-c
26418 : C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
26419 : be set to remove code block evaluation from the C-c C-c
26420 : keybinding. By default only Emacs Lisp (which has no
26421 : requirements) is loaded.
26423 ** org-scheduled-string ="SCHEDULED:"=
26425 :CUSTOM_ID: org-scheduled-string
26429 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26430 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-scheduled-string&sr=1][Find modifications in git logs]]
26432 : String to mark scheduled TODO entries.
26433 : A schedule is this string, followed by a time stamp. Should be a word,
26434 : terminated by a colon. You can insert a schedule keyword and
26435 : a timestamp with \[org-schedule].
26436 : Changes become only effective after restarting Emacs.
26438 ** org-html-divs =(quote ((preamble "div" "pream...=
26440 :CUSTOM_ID: org-html-divs
26443 - *Type:* (list :greedy t (list :tag "Pr...
26444 - *Since:* Emacs version 24.4
26445 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
26446 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-divs&sr=1][Find modifications in git logs]]
26448 : Alist of the three section elements for HTML export.
26449 : The car of each entry is one of 'preamble, 'content or 'postamble.
26450 : The cdrs of each entry are the ELEMENT_TYPE and ID for each
26451 : section of the exported document.
26453 : Note that changing the default will prevent you from using
26454 : org-info.js for your website.
26456 ** org-list-use-circular-motion =nil=
26458 :CUSTOM_ID: org-list-use-circular-motion
26462 - *Since:* Emacs version 24.1
26463 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-list.el;hb=HEAD][org-list.el]]
26464 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-list-use-circular-motion&sr=1][Find modifications in git logs]]
26466 : Non-nil means commands implying motion in lists should be cyclic.
26468 : In that case, the item following the last item is the first one,
26469 : and the item preceding the first item is the last one.
26471 : This affects the behavior of \[org-move-item-up],
26472 : \[org-move-item-down], \[org-next-item] and
26473 : \[org-previous-item].
26475 ** org-babel-R-command ="R --slave --no-save"=
26477 :CUSTOM_ID: org-babel-R-command
26481 - *Since:* Emacs version 24.1
26482 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-R.el;hb=HEAD][ob-R.el]]
26483 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-R-command&sr=1][Find modifications in git logs]]
26485 : Name of command to use for executing R code.
26487 ** org-export-with-timestamps =t=
26489 :CUSTOM_ID: org-export-with-timestamps
26492 - *Type:* (choice (const :tag "All times...
26493 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
26494 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-timestamps&sr=1][Find modifications in git logs]]
26496 : Non nil means allow timestamps in export.
26498 : It can be set to any of the following values:
26499 : t export all timestamps.
26500 : `active' export active timestamps only.
26501 : `inactive' export inactive timestamps only.
26502 : nil do not export timestamps
26504 : This only applies to timestamps isolated in a paragraph
26505 : containing only timestamps. Other timestamps are always
26508 : This option can also be set with the OPTIONS keyword, e.g.
26511 ** org-agenda-columns-show-summaries =t=
26513 :CUSTOM_ID: org-agenda-columns-show-summaries
26517 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26518 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-columns-show-summaries&sr=1][Find modifications in git logs]]
26520 : Non-nil means show summaries for columns displayed in the agenda view.
26522 ** org-property-format ="%-10s %s"=
26524 :CUSTOM_ID: org-property-format
26528 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26529 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-property-format&sr=1][Find modifications in git logs]]
26531 : How property key/value pairs should be formatted by `indent-line'.
26532 : When `indent-line' hits a property definition, it will format the line
26533 : according to this format, mainly to make sure that the values are
26534 : lined-up with respect to each other.
26536 ** org-agenda-deadline-leaders =(quote ("Deadline: " "In %3d ...=
26538 :CUSTOM_ID: org-agenda-deadline-leaders
26541 - *Type:* (list (string :tag "Deadline t...
26542 - *Since:* Emacs version 24.4
26543 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26544 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-deadline-leaders&sr=1][Find modifications in git logs]]
26546 : Text preceding deadline items in the agenda view.
26547 : This is a list with three strings. The first applies when the item has its
26548 : deadline on the current day. The second applies when the deadline is in the
26549 : future, the third one when it is in the past. The strings may contain %d
26550 : to capture the number of days.
26552 ** org-attach-file-list-property ="Attachments"=
26554 :CUSTOM_ID: org-attach-file-list-property
26557 - *Type:* (choice (const :tag "None" nil...
26558 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-attach.el;hb=HEAD][org-attach.el]]
26559 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-attach-file-list-property&sr=1][Find modifications in git logs]]
26561 : The property used to keep a list of attachment belonging to this entry.
26562 : This is not really needed, so you may set this to nil if you don't want it.
26563 : Also, for entries where children inherit the directory, the list of
26564 : attachments is not kept in this property.
26566 ** org-agenda-max-entries =nil=
26568 :CUSTOM_ID: org-agenda-max-entries
26571 - *Type:* (choice (symbol :tag "No limit...
26572 - *Since:* Emacs version 24.4
26573 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26574 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-max-entries&sr=1][Find modifications in git logs]]
26576 : Maximum number of entries to display in an agenda.
26577 : This can be nil (no limit) or an integer or an alist of agenda
26578 : types with an associated number of entries to display in this
26581 ** org-table-automatic-realign =t=
26583 :CUSTOM_ID: org-table-automatic-realign
26587 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
26588 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-automatic-realign&sr=1][Find modifications in git logs]]
26590 : Non-nil means automatically re-align table when pressing TAB or RETURN.
26591 : When nil, aligning is only done with \[org-table-align], or after column
26592 : removal/insertion.
26594 ** org-effort-property ="Effort"=
26596 :CUSTOM_ID: org-effort-property
26599 - *Type:* (string :tag "Property")
26600 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26601 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-effort-property&sr=1][Find modifications in git logs]]
26603 : The property that is being used to keep track of effort estimates.
26604 : Effort estimates given in this property need to have the format H:MM.
26606 ** org-use-fast-todo-selection =t=
26608 :CUSTOM_ID: org-use-fast-todo-selection
26611 - *Type:* (choice (const :tag "Never" ni...
26612 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26613 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-fast-todo-selection&sr=1][Find modifications in git logs]]
26615 : Non-nil means use the fast todo selection scheme with C-c C-t.
26616 : This variable describes if and under what circumstances the cycling
26617 : mechanism for TODO keywords will be replaced by a single-key, direct
26618 : selection scheme.
26620 : When nil, fast selection is never used.
26622 : When the symbol `prefix', it will be used when `org-todo' is called
26623 : with a prefix argument, i.e. `C-u C-c C-t' in an Org-mode buffer, and
26624 : `C-u t' in an agenda buffer.
26626 : When t, fast selection is used by default. In this case, the prefix
26627 : argument forces cycling instead.
26629 : In all cases, the special interface is only used if access keys have
26630 : actually been assigned by the user, i.e. if keywords in the configuration
26631 : are followed by a letter in parenthesis, like TODO(t).
26633 ** org-agenda-tags-todo-honor-ignore-options =nil=
26635 :CUSTOM_ID: org-agenda-tags-todo-honor-ignore-options
26639 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26640 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-tags-todo-honor-ignore-options&sr=1][Find modifications in git logs]]
26642 : Non-nil means honor todo-list ignores options also in tags-todo search.
26644 : `org-agenda-todo-ignore-with-date',
26645 : `org-agenda-todo-ignore-timestamp',
26646 : `org-agenda-todo-ignore-scheduled',
26647 : `org-agenda-todo-ignore-deadlines'
26648 : make the global TODO list skip entries that have time stamps of certain
26649 : kinds. If this option is set, the same options will also apply for the
26650 : tags-todo search, which is the general tags/property matcher
26651 : restricted to unfinished TODO entries only.
26653 ** org-use-fast-tag-selection =(quote auto)=
26655 :CUSTOM_ID: org-use-fast-tag-selection
26658 - *Type:* (choice (const :tag "Always" t...
26659 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26660 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-use-fast-tag-selection&sr=1][Find modifications in git logs]]
26662 : Non-nil means use fast tag selection scheme.
26663 : This is a special interface to select and deselect tags with single keys.
26664 : When nil, fast selection is never used.
26665 : When the symbol `auto', fast selection is used if and only if selection
26666 : characters for tags have been configured, either through the variable
26667 : `org-tag-alist' or through a #+TAGS line in the buffer.
26668 : When t, fast selection is always used and selection keys are assigned
26669 : automatically if necessary.
26671 ** org-cycle-level-faces =t=
26673 :CUSTOM_ID: org-cycle-level-faces
26677 - *Since:* Emacs version 24.1
26678 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
26679 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-cycle-level-faces&sr=1][Find modifications in git logs]]
26681 : Non-nil means level styles cycle after level `org-n-level-faces'.
26682 : Then so level org-n-level-faces+1 is styled like level 1.
26683 : If nil, then all levels >=org-n-level-faces are styled like
26684 : level org-n-level-faces
26686 ** org-bibtex-autogen-keys =nil=
26688 :CUSTOM_ID: org-bibtex-autogen-keys
26692 - *Since:* Emacs version 24.1
26693 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bibtex.el;hb=HEAD][org-bibtex.el]]
26694 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bibtex-autogen-keys&sr=1][Find modifications in git logs]]
26696 : Set to a truth value to use `bibtex-generate-autokey' to generate keys.
26698 ** org-latex-format-inlinetask-function =nil=
26700 :CUSTOM_ID: org-latex-format-inlinetask-function
26704 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-latex.el;hb=HEAD][ox-latex.el]]
26705 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-latex-format-inlinetask-function&sr=1][Find modifications in git logs]]
26707 : Function called to format an inlinetask in LaTeX code.
26709 : The function must accept six parameters:
26710 : TODO the todo keyword, as a string
26711 : TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
26712 : PRIORITY the inlinetask priority, as a string
26713 : NAME the inlinetask name, as a string.
26714 : TAGS the inlinetask tags, as a list of strings.
26715 : CONTENTS the contents of the inlinetask, as a string.
26717 : The function should return the string to be exported.
26719 : For example, the variable could be set to the following function
26720 : in order to mimic default behaviour:
26722 : (defun org-latex-format-inlinetask (todo type priority name tags contents)
26723 : "Format an inline task element for LaTeX export."
26724 : (let ((full-title
26727 : (format "\\textbf{\\textsf{\\textsc{%s}}} " todo))
26728 : (when priority (format "\\framebox{\\#%c} " priority))
26731 : (format "\\hfill{}\\textsc{:%s:}"
26732 : (mapconcat 'identity tags ":")))))
26733 : (format (concat "\\begin{center}\n"
26735 : "\\begin{minipage}[c]{.6\\textwidth}\n"
26737 : "\\rule[.8em]{\\textwidth}{2pt}\n\n"
26739 : "\\end{minipage}}"
26741 : full-title contents))
26743 ** org-agenda-max-tags =nil=
26745 :CUSTOM_ID: org-agenda-max-tags
26748 - *Type:* (choice (symbol :tag "No limit...
26749 - *Since:* Emacs version 24.4
26750 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26751 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-max-tags&sr=1][Find modifications in git logs]]
26753 : Maximum number of tagged entries to display in an agenda.
26754 : This can be nil (no limit) or an integer or an alist of agenda
26755 : types with an associated number of entries to display in this
26758 ** org-capture-bookmark =t=
26760 :CUSTOM_ID: org-capture-bookmark
26764 - *Since:* Emacs version 24.3
26765 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-capture.el;hb=HEAD][org-capture.el]]
26766 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-capture-bookmark&sr=1][Find modifications in git logs]]
26768 : When non-nil, add a bookmark pointing at the last stored
26769 : position when capturing.
26771 ** org-feed-default-template ="\n* %h\n %U\n %description\...=
26773 :CUSTOM_ID: org-feed-default-template
26776 - *Type:* (string :tag "Template")
26777 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-feed.el;hb=HEAD][org-feed.el]]
26778 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-feed-default-template&sr=1][Find modifications in git logs]]
26780 : Template for the Org node created from RSS feed items.
26781 : This is just the default, each feed can specify its own.
26782 : Any fields from the feed item can be interpolated into the template with
26783 : %name, for example %title, %description, %pubDate etc. In addition, the
26784 : following special escapes are valid as well:
26786 : %h The title, or the first line of the description
26787 : %t The date as a stamp, either from <pubDate> (if present), or
26790 : %u,%U Like %t,%T, but inactive time stamps
26791 : %a A link, from <guid> if that is a permalink, else from <link>
26792 : %(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
26793 : %-escapes above can be used as arguments, e.g. %(capitalize \"%h\")
26795 ** org-mouse-1-follows-link =(if (boundp (quote mouse-1-cli...=
26797 :CUSTOM_ID: org-mouse-1-follows-link
26801 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26802 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-mouse-1-follows-link&sr=1][Find modifications in git logs]]
26804 : Non-nil means mouse-1 on a link will follow the link.
26805 : A longer mouse click will still set point. Does not work on XEmacs.
26806 : Needs to be set before org.el is loaded.
26808 ** org-export-html-footnote-format ="<sup>%s</sup>"=
26810 :CUSTOM_ID: org-export-html-footnote-format
26814 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-html.el;hb=HEAD][org-html.el]]
26815 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-html-footnote-format&sr=1][Find modifications in git logs]]
26817 : The format for the footnote reference.
26818 : %s will be replaced by the footnote reference itself.
26820 ** org-agenda-tags-column =(if (featurep (quote xemacs)) ...=
26822 :CUSTOM_ID: org-agenda-tags-column
26826 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26827 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-tags-column&sr=1][Find modifications in git logs]]
26829 : Shift tags in agenda items to this column.
26830 : If this number is positive, it specifies the column. If it is negative,
26831 : it means that the tags should be flushright to that column. For example,
26832 : -80 works well for a normal 80 character screen.
26834 ** org-export-with-tables =t=
26836 :CUSTOM_ID: org-export-with-tables
26840 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-exp.el;hb=HEAD][org-exp.el]]
26841 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-export-with-tables&sr=1][Find modifications in git logs]]
26843 : If non-nil, lines starting with "|" define a table.
26846 : | Name | Address | Birthday |
26847 : |-------------+----------+-----------|
26848 : | Arthur Dent | England | 29.2.2100 |
26850 : This option can also be set with the OPTIONS keyword,
26853 ** org-odt-inline-formula-rules =(quote (("file" . "\\.\\(mathm...=
26855 :CUSTOM_ID: org-odt-inline-formula-rules
26858 - *Type:* (alist :key-type (string :tag ...
26859 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-odt.el;hb=HEAD][ox-odt.el]]
26860 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-odt-inline-formula-rules&sr=1][Find modifications in git logs]]
26862 : Rules characterizing formula files that can be inlined into ODT.
26864 : A rule consists in an association whose key is the type of link
26865 : to consider, and value is a regexp that will be matched against
26868 ** org-html-link-org-files-as-html =t=
26870 :CUSTOM_ID: org-html-link-org-files-as-html
26874 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-html.el;hb=HEAD][ox-html.el]]
26875 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-html-link-org-files-as-html&sr=1][Find modifications in git logs]]
26877 : Non-nil means make file links to `file.org' point to `file.html'.
26878 : When `org-mode' is exporting an `org-mode' file to HTML, links to
26879 : non-html files are directly put into a href tag in HTML.
26880 : However, links to other Org-mode files (recognized by the
26881 : extension `.org.) should become links to the corresponding html
26882 : file, assuming that the linked `org-mode' file will also be
26883 : converted to HTML.
26884 : When nil, the links still point to the plain `.org' file.
26886 ** org-babel-tangle-comment-format-beg ="[[%link][%source-name]]"=
26888 :CUSTOM_ID: org-babel-tangle-comment-format-beg
26892 - *Since:* Emacs version 24.1
26893 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ob-tangle.el;hb=HEAD][ob-tangle.el]]
26894 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-babel-tangle-comment-format-beg&sr=1][Find modifications in git logs]]
26896 : Format of inserted comments in tangled code files.
26897 : The following format strings can be used to insert special
26898 : information into the output using `org-fill-template'.
26899 : %start-line --- the line number at the start of the code block
26900 : %file --------- the file from which the code block was tangled
26901 : %link --------- Org-mode style link to the code block
26902 : %source-name -- name of the code block
26904 : Whether or not comments are inserted during tangling is
26905 : controlled by the :comments header argument.
26907 ** org-agenda-start-with-clockreport-mode =nil=
26909 :CUSTOM_ID: org-agenda-start-with-clockreport-mode
26913 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
26914 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-start-with-clockreport-mode&sr=1][Find modifications in git logs]]
26916 : The initial value of clockreport-mode in a newly created agenda window.
26918 ** org-M-RET-may-split-line =(quote ((default . t)))=
26920 :CUSTOM_ID: org-M-RET-may-split-line
26923 - *Type:* (choice (const :tag "Always" t...
26924 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26925 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-M-RET-may-split-line&sr=1][Find modifications in git logs]]
26927 : Non-nil means M-RET will split the line at the cursor position.
26928 : When nil, it will go to the end of the line before making a
26930 : You may also set this option in a different way for different
26931 : contexts. Valid contexts are:
26933 : headline when creating a new headline
26934 : item when creating a new item
26935 : table in a table field
26936 : default the value to be used for all contexts not explicitly
26939 ** org-table-tab-recognizes-table.el =t=
26941 :CUSTOM_ID: org-table-tab-recognizes-table.el
26945 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26946 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-tab-recognizes-table.el&sr=1][Find modifications in git logs]]
26948 : Non-nil means TAB will automatically notice a table.el table.
26949 : When it sees such a table, it moves point into it and - if necessary -
26950 : calls `table-recognize-table'.
26952 ** org-fontify-quote-and-verse-blocks =nil=
26954 :CUSTOM_ID: org-fontify-quote-and-verse-blocks
26958 - *Since:* Emacs version 24.1
26959 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-faces.el;hb=HEAD][org-faces.el]]
26960 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-fontify-quote-and-verse-blocks&sr=1][Find modifications in git logs]]
26962 : Non-nil means, add a special face to #+begin_quote and #+begin_verse block.
26963 : When nil, format these as normal Org. This is the default, because the
26964 : content of these blocks will still be treated as Org syntax.
26966 ** org-confirm-shell-link-function =(quote yes-or-no-p)=
26968 :CUSTOM_ID: org-confirm-shell-link-function
26971 - *Type:* (choice (const :tag "with yes-...
26972 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org.el;hb=HEAD][org.el]]
26973 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-confirm-shell-link-function&sr=1][Find modifications in git logs]]
26975 : Non-nil means ask for confirmation before executing shell links.
26976 : Shell links can be dangerous: just think about a link
26978 : [[shell:rm -rf ~/*][Google Search]]
26980 : This link would show up in your Org-mode document as "Google Search",
26981 : but really it would remove your entire home directory.
26982 : Therefore we advise against setting this variable to nil.
26983 : Just change it to `y-or-n-p' if you want to confirm with a
26984 : single keystroke rather than having to type "yes".
26986 ** org-bbdb-default-anniversary-format ="birthday"=
26988 :CUSTOM_ID: org-bbdb-default-anniversary-format
26992 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-bbdb.el;hb=HEAD][org-bbdb.el]]
26993 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-bbdb-default-anniversary-format&sr=1][Find modifications in git logs]]
26995 : Default anniversary class.
26997 ** org-datetree-add-timestamp =nil=
26999 :CUSTOM_ID: org-datetree-add-timestamp
27002 - *Type:* (choice (const :tag "Do not ad...
27003 - *Since:* Emacs version 24.3
27004 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-datetree.el;hb=HEAD][org-datetree.el]]
27005 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-datetree-add-timestamp&sr=1][Find modifications in git logs]]
27007 : When non-nil, add a time stamp when create a datetree entry.
27009 ** org-agenda-clock-consistency-checks =(quote (:max-duration "10:00" ...=
27011 :CUSTOM_ID: org-agenda-clock-consistency-checks
27015 - *Since:* Emacs version 24.1
27016 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-agenda.el;hb=HEAD][org-agenda.el]]
27017 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-agenda-clock-consistency-checks&sr=1][Find modifications in git logs]]
27019 : This is a property list, with the following keys:
27021 : :max-duration Mark clocking chunks that are longer than this time.
27022 : This is a time string like "HH:MM", or the number
27023 : of minutes as an integer.
27025 : :min-duration Mark clocking chunks that are shorter that this.
27026 : This is a time string like "HH:MM", or the number
27027 : of minutes as an integer.
27029 : :max-gap Mark gaps between clocking chunks that are longer than
27030 : this duration. A number of minutes, or a string
27033 : :gap-ok-around List of times during the day which are usually not working
27034 : times. When a gap is detected, but the gap contains any
27035 : of these times, the gap is *not* reported. For example,
27036 : if this is ("4:00" "13:00") then gaps that contain
27037 : 4:00 in the morning (i.e. the night) and 13:00
27038 : (i.e. a typical lunch time) do not cause a warning.
27039 : You should have at least one time during the night in this
27040 : list, or otherwise the first task each morning will trigger
27041 : a warning because it follows a long gap.
27043 : Furthermore, the following properties can be used to define faces for
27046 : :default-face the default face, if the specific face is undefined
27047 : :overlap-face face for overlapping clocks
27048 : :gap-face face for gaps between clocks
27049 : :no-end-time-face face for incomplete clocks
27050 : :long-face face for clock intervals that are too long
27051 : :short-face face for clock intervals that are too short
27053 ** org-publish-sitemap-file-entry-format ="%t"=
27055 :CUSTOM_ID: org-publish-sitemap-file-entry-format
27059 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/ox-publish.el;hb=HEAD][ox-publish.el]]
27060 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-publish-sitemap-file-entry-format&sr=1][Find modifications in git logs]]
27062 : Format string for site-map file entry.
27063 : You could use brackets to delimit on what part the link will be.
27066 : %a is the author.
27067 : %d is the date formatted using `org-publish-sitemap-date-format'.
27069 ** org-table-auto-blank-field =t=
27071 :CUSTOM_ID: org-table-auto-blank-field
27075 - *In file:* [[http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=lisp/org-table.el;hb=HEAD][org-table.el]]
27076 - [[http://orgmode.org/w/?p=org-mode.git&a=search&h=HEAD&st=commit&s=org-table-auto-blank-field&sr=1][Find modifications in git logs]]
27078 : Non-nil means automatically blank table field when starting to type into it.
27079 : This only happens when typing immediately after a field motion
27080 : command (TAB, S-TAB or RET).
27081 : Only relevant when `org-enable-table-editor' is equal to `optimized'.