org-maintenance.org: Major update
[worg.git] / doc.org
blob1d9aa9e75a6b49200628f0b6db7774d5aceae0fe
1 #+TITLE: Documentation for Org hooks, commands and options
2 #+AUTHOR: Bastien
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
7 * Definitions
9 This page lists *all hooks, commands and options* of Org 9.0.9.
11 - *Hooks* :: are options containing functions to be run before or after
12      a 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
18      keybinding.
20 - *Options* :: are variables that the user can set through the =customize=
21      interface. Calling =M-x customize-variable RET= then completing
22      over availables options will open the custom interface, which
23      makes it easy to set an option.
25 These are the main "internals" that the uesr may want to know about,
26 and we list them here for further reference.  E.g. You can safely
27 create links to =https://orgmode.org/worg/doc.html#org-agenda= to refer
28 to the documentation 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.
34 * Hooks
35   :PROPERTIES:
36   :CUSTOM_ID: hooks
37   :END:
39 ** org-checkbox-statistics-hook =nil=
40    :PROPERTIES:
41    :CUSTOM_ID: org-checkbox-statistics-hook
42    :END:
43 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
44 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-checkbox-statistics-hook][Find modifications in git logs]]
46 : Hook that is run whenever Org thinks checkbox statistics should be updated.
47 : This hook runs even if checkbox rule in
48 : `org-list-automatic-rules' does not apply, so it can be used to
49 : implement alternative ways of collecting statistics
50 : information.
52 ** org-todo-setup-filter-hook =nil=
53    :PROPERTIES:
54    :CUSTOM_ID: org-todo-setup-filter-hook
55    :END:
56 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
57 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-setup-filter-hook][Find modifications in git logs]]
59 : Hook for functions that pre-filter todo specs.
60 : Each function takes a todo spec and returns either nil or the spec
61 : transformed into canonical form.
63 ** org-timer-continue-hook =nil=
64    :PROPERTIES:
65    :CUSTOM_ID: org-timer-continue-hook
66    :END:
67 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
68 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-continue-hook][Find modifications in git logs]]
70 : Hook run after relative or countdown timer is continued.
72 ** org-clock-in-hook =nil=
73    :PROPERTIES:
74    :CUSTOM_ID: org-clock-in-hook
75    :END:
76 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
77 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in-hook][Find modifications in git logs]]
79 : Hook run when starting the clock.
81 ** org-clock-before-select-task-hook =nil=
82    :PROPERTIES:
83    :CUSTOM_ID: org-clock-before-select-task-hook
84    :END:
85 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
86 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-before-select-task-hook][Find modifications in git logs]]
88 : Hook called in task selection just before prompting the user.
90 ** org-property-allowed-value-functions =nil=
91    :PROPERTIES:
92    :CUSTOM_ID: org-beamer-mode-off-hook
93    :END:
94 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
95 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-allowed-value-functions][Find modifications in git logs]]
97 : Hook for functions supplying allowed values for a specific property.
98 : The functions must take a single argument, the name of the property, and
99 : return a flat list of allowed values.  If ":ETC" is one of
100 : the values, this means that these values are intended as defaults for
101 : completion, but that other values should be allowed too.
102 : The functions must return nil if they are not responsible for this
103 : property.
105 ** org-after-todo-state-change-hook =(funcall (function (closure (f...=
106    :PROPERTIES:
107    :CUSTOM_ID: org-after-todo-state-change-hook
108    :END:
109 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
110 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-todo-state-change-hook][Find modifications in git logs]]
112 : Hook which is run after the state of a TODO item was changed.
113 : The new state (a string with a TODO keyword, or nil) is available in the
114 : Lisp variable `org-state'.
116 ** org-capture-prepare-finalize-hook =(funcall (function (closure (o...=
117    :PROPERTIES:
118    :CUSTOM_ID: org-capture-prepare-finalize-hook
119    :END:
120 - *Since:* Emacs version 24.1
121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-prepare-finalize-hook][Find modifications in git logs]]
124 : Hook that is run before the finalization starts.
125 : The capture buffer is current and still narrowed.
127 ** org-timer-stop-hook =nil=
128    :PROPERTIES:
129    :CUSTOM_ID: org-timer-stop-hook
130    :END:
131 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
132 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-stop-hook][Find modifications in git logs]]
134 : Hook run before relative or countdown timer is stopped.
136 ** org-metaleft-hook =nil=
137    :PROPERTIES:
138    :CUSTOM_ID: org-metaleft-hook
139    :END:
140 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
141 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaleft-hook][Find modifications in git logs]]
143 : Hook for functions attaching themselves to `M-left'.
144 : See `org-ctrl-c-ctrl-c-hook' for more information.
146 ** org-export-filter-bold-functions =nil=
147    :PROPERTIES:
148    :CUSTOM_ID: orgstruct-mode-off-hook
149    :END:
150 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
151 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-bold-functions][Find modifications in git logs]]
153 : List of functions applied to transcoded bold text.
154 : Each filter is called with three arguments: the transcoded data,
155 : as a string, the back-end, as a symbol, and the communication
156 : channel, as a plist.  It must return a string or nil.
158 ** org-export-before-parsing-hook =nil=
159    :PROPERTIES:
160    :CUSTOM_ID: org-indent-mode-on-hook
161    :END:
162 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
163 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-before-parsing-hook][Find modifications in git logs]]
165 : Hook run before parsing an export buffer.
167 : This is run after include keywords and macros have been expanded
168 : and Babel code blocks executed, on a copy of the original buffer
169 : being exported.  Visibility and narrowing are preserved.  Point
170 : is at the beginning of the buffer.
172 : Every function in this hook will be called with one argument: the
173 : back-end currently used, as a symbol.
175 ** org-feed-before-adding-hook =(funcall (function (closure (t...=
176    :PROPERTIES:
177    :CUSTOM_ID: org-feed-before-adding-hook
178    :END:
179 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
180 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-before-adding-hook][Find modifications in git logs]]
182 : Hook that is run before adding new feed items to a file.
183 : You might want to commit the file in its current state to version control,
184 : for example.
186 ** org-export-filter-diary-sexp-functions =nil=
187    :PROPERTIES:
188    :CUSTOM_ID: org-export-filter-diary-sexp-functions
189    :END:
190 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
191 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-diary-sexp-functions][Find modifications in git logs]]
193 : List of functions applied to a transcoded diary-sexp.
194 : Each filter is called with three arguments: the transcoded data,
195 : as a string, the back-end, as a symbol, and the communication
196 : channel, as a plist.  It must return a string or nil.
198 ** org-after-todo-statistics-hook =nil=
199    :PROPERTIES:
200    :CUSTOM_ID: org-after-todo-statistics-hook
201    :END:
202 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
203 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-todo-statistics-hook][Find modifications in git logs]]
205 : Hook that is called after a TODO statistics cookie has been updated.
206 : Each function is called with two arguments: the number of not-done entries
207 : and the number of done entries.
209 : For example, the following function, when added to this hook, will switch
210 : an entry to DONE when all children are done, and back to TODO when new
211 : entries are set to a TODO status.  Note that this hook is only called
212 : when there is a statistics cookie in the headline!
214 :  (defun org-summary-todo (n-done n-not-done)
215 :    "Switch entry to DONE when all subentries are done, to TODO otherwise."
216 :    (let (org-log-done org-log-states)   ; turn off logging
217 :      (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
220 ** org-export-filter-export-block-functions =nil=
221    :PROPERTIES:
222    :CUSTOM_ID: org-export-filter-export-block-functions
223    :END:
224 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
225 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-export-block-functions][Find modifications in git logs]]
227 : List of functions applied to a transcoded export-block.
228 : Each filter is called with three arguments: the transcoded data,
229 : as a string, the back-end, as a symbol, and the communication
230 : channel, as a plist.  It must return a string or nil.
232 ** org-babel-after-execute-hook =nil=
233    :PROPERTIES:
234    :CUSTOM_ID: org-babel-after-execute-hook
235    :END:
236 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
237 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-after-execute-hook][Find modifications in git logs]]
239 : Hook for functions to be called after `org-babel-execute-src-block'
241 ** org-icalendar-after-save-hook =nil=
242    :PROPERTIES:
243    :CUSTOM_ID: org-icalendar-after-save-hook
244    :END:
245 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
246 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-after-save-hook][Find modifications in git logs]]
248 : Hook run after an iCalendar file has been saved.
249 : This hook is run with the name of the file as argument.  A good
250 : way to use this is to tell a desktop calendar application to
251 : re-read the iCalendar file.
253 ** org-metaright-hook =nil=
254    :PROPERTIES:
255    :CUSTOM_ID: org-metaright-hook
256    :END:
257 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
258 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaright-hook][Find modifications in git logs]]
260 : Hook for functions attaching themselves to `M-right'.
261 : See `org-ctrl-c-ctrl-c-hook' for more information.
263 ** org-cycle-hook =(funcall (function (closure (f...=
264    :PROPERTIES:
265    :CUSTOM_ID: org-cycle-hook
266    :END:
267 - *Since:* Emacs version 26.1
268 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
269 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-hook][Find modifications in git logs]]
271 : Hook that is run after `org-cycle' has changed the buffer visibility.
272 : The function(s) in this hook must accept a single argument which indicates
273 : the new state that was set by the most recent `org-cycle' command.  The
274 : argument is a symbol.  After a global state change, it can have the values
275 : `overview', `contents', or `all'.  After a local state change, it can have
276 : the values `folded', `children', or `subtree'.
278 ** org-export-filter-subscript-functions =nil=
279    :PROPERTIES:
280    :CUSTOM_ID: org-export-filter-subscript-functions
281    :END:
282 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
283 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-subscript-functions][Find modifications in git logs]]
285 : List of functions applied to a transcoded subscript.
286 : Each filter is called with three arguments: the transcoded data,
287 : as a string, the back-end, as a symbol, and the communication
288 : channel, as a plist.  It must return a string or nil.
290 ** org-export-filter-entity-functions =nil=
291    :PROPERTIES:
292    :CUSTOM_ID: org-export-filter-entity-functions
293    :END:
294 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
295 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-entity-functions][Find modifications in git logs]]
297 : List of functions applied to a transcoded entity.
298 : Each filter is called with three arguments: the transcoded data,
299 : as a string, the back-end, as a symbol, and the communication
300 : channel, as a plist.  It must return a string or nil.
302 ** org-after-sorting-entries-or-items-hook =nil=
303    :PROPERTIES:
304    :CUSTOM_ID: org-after-sorting-entries-or-items-hook
305    :END:
306 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
307 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-sorting-entries-or-items-hook][Find modifications in git logs]]
309 : Hook that is run after a bunch of entries or items have been sorted.
310 : When children are sorted, the cursor is in the parent line when this
311 : hook gets called.  When a region or a plain list is sorted, the cursor
312 : will be in the first entry of the sorted region/list.
314 ** org-timer-done-hook =nil=
315    :PROPERTIES:
316    :CUSTOM_ID: org-timer-done-hook
317    :END:
318 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
319 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-done-hook][Find modifications in git logs]]
321 : Hook run after countdown timer reaches zero.
323 ** org-shiftmetaup-hook =nil=
324    :PROPERTIES:
325    :CUSTOM_ID: org-shiftmetaup-hook
326    :END:
327 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
328 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaup-hook][Find modifications in git logs]]
330 : Hook for functions attaching themselves to `M-S-up'.
331 : See `org-ctrl-c-ctrl-c-hook' for more information.
333 ** org-tab-after-check-for-table-hook =nil=
334    :PROPERTIES:
335    :CUSTOM_ID: org-tab-after-check-for-table-hook
336    :END:
337 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
338 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tab-after-check-for-table-hook][Find modifications in git logs]]
340 : Hook for functions to attach themselves to TAB.
341 : See `org-ctrl-c-ctrl-c-hook' for more information.
342 : This hook runs after it has been established that the cursor is not in a
343 : table, but before checking if the cursor is in a headline or if global cycling
344 : should be done.
345 : If any function in this hook returns t, not other actions like visibility
346 : cycling will be done.
348 ** org-open-at-point-functions =nil=
349    :PROPERTIES:
350    :CUSTOM_ID: org-open-at-point-functions
351    :END:
352 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
353 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-at-point-functions][Find modifications in git logs]]
355 : Hook that is run when following a link at point.
357 : Functions in this hook must return t if they identify and follow
358 : a link at point.  If they don't find anything interesting at point,
359 : they must return nil.
361 ** org-property-changed-functions =nil=
362    :PROPERTIES:
363    :CUSTOM_ID: org-property-changed-functions
364    :END:
365 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
366 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-changed-functions][Find modifications in git logs]]
368 : Hook called when the value of a property has changed.
369 : Each hook function should accept two arguments, the name of the property
370 : and the new value.
372 ** orgstruct-mode-hook =nil=
373    :PROPERTIES:
374    :CUSTOM_ID: orgstruct-mode-hook
375    :END:
376 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
377 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct-mode-hook][Find modifications in git logs]]
379 : Hook run after entering or leaving `orgstruct-mode'.
380 : No problems result if this variable is not bound.
381 : `add-hook' automatically binds it.  (This is true for all hook variables.)
383 ** org-mobile-pre-push-hook =nil=
384    :PROPERTIES:
385    :CUSTOM_ID: org-mobile-pre-push-hook
386    :END:
387 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
388 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-pre-push-hook][Find modifications in git logs]]
390 : Hook run before running `org-mobile-push'.
391 : This could be used to clean up `org-mobile-directory', for example to
392 : remove files that used to be included in the agenda but no longer are.
393 : The presence of such files would not really be a problem, but after time
394 : they may accumulate.
396 ** org-export-filter-link-functions =nil=
397    :PROPERTIES:
398    :CUSTOM_ID: org-export-filter-link-functions
399    :END:
400 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
401 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-link-functions][Find modifications in git logs]]
403 : List of functions applied to a transcoded link.
404 : Each filter is called with three arguments: the transcoded data,
405 : as a string, the back-end, as a symbol, and the communication
406 : channel, as a plist.  It must return a string or nil.
408 ** org-shiftright-final-hook =nil=
409    :PROPERTIES:
410    :CUSTOM_ID: org-shiftright-final-hook
411    :END:
412 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
413 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftright-final-hook][Find modifications in git logs]]
415 : Hook for functions attaching themselves to `S-right'.
416 : This one runs after all other options except shift-select have been excluded.
417 : See `org-ctrl-c-ctrl-c-hook' for more information.
419 ** org-capture-mode-hook =nil=
420    :PROPERTIES:
421    :CUSTOM_ID: org-capture-mode-hook
422    :END:
423 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
424 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-mode-hook][Find modifications in git logs]]
426 : Hook run after entering or leaving `org-capture-mode'.
427 : No problems result if this variable is not bound.
428 : `add-hook' automatically binds it.  (This is true for all hook variables.)
430 ** org-mobile-post-pull-hook =nil=
431    :PROPERTIES:
432    :CUSTOM_ID: org-src-mode-off-hook
433    :END:
434 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
435 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-post-pull-hook][Find modifications in git logs]]
437 : Hook run after running `org-mobile-pull', only if new items were found.
438 : If Emacs does not have direct write access to the WebDAV directory used
439 : by the mobile device, this hook should be used to copy the emptied
440 : capture file `mobileorg.org' back to the WebDAV directory, for example
441 : using `rsync' or `scp'.
443 ** org-table-follow-field-mode-hook =nil=
444    :PROPERTIES:
445    :CUSTOM_ID: org-table-follow-field-mode-hook
446    :END:
447 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
448 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-follow-field-mode-hook][Find modifications in git logs]]
450 : Hook run after entering or leaving `org-table-follow-field-mode'.
451 : No problems result if this variable is not bound.
452 : `add-hook' automatically binds it.  (This is true for all hook variables.)
454 ** org-export-filter-underline-functions =nil=
455    :PROPERTIES:
456    :CUSTOM_ID: org-export-filter-underline-functions
457    :END:
458 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
459 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-underline-functions][Find modifications in git logs]]
461 : List of functions applied to transcoded underline text.
462 : Each filter is called with three arguments: the transcoded data,
463 : as a string, the back-end, as a symbol, and the communication
464 : channel, as a plist.  It must return a string or nil.
466 ** org-export-filter-target-functions =nil=
467    :PROPERTIES:
468    :CUSTOM_ID: org-capture-mode-off-hook
469    :END:
470 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
471 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-target-functions][Find modifications in git logs]]
473 : List of functions applied to a transcoded target.
474 : Each filter is called with three arguments: the transcoded data,
475 : as a string, the back-end, as a symbol, and the communication
476 : channel, as a plist.  It must return a string or nil.
478 ** org-shiftdown-hook =nil=
479    :PROPERTIES:
480    :CUSTOM_ID: org-shiftdown-hook
481    :END:
482 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
483 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftdown-hook][Find modifications in git logs]]
485 : Hook for functions attaching themselves to `S-down'.
486 : See `org-ctrl-c-ctrl-c-hook' for more information.
488 ** org-ctrl-c-ctrl-c-final-hook =nil=
489    :PROPERTIES:
490    :CUSTOM_ID: org-ctrl-c-ctrl-c-final-hook
491    :END:
492 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
493 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-ctrl-c-final-hook][Find modifications in git logs]]
495 : Hook for functions attaching themselves to `C-c C-c'.
497 : This can be used to add additional functionality to the C-c C-c
498 : key which executes context-dependent commands.  This hook is run
499 : after any other test, while `org-ctrl-c-ctrl-c-hook' is run
500 : before the first test.
502 : Each function will be called with no arguments.  The function
503 : must check if the context is appropriate for it to act.  If yes,
504 : it should do its thing and then return a non-nil value.  If the
505 : context is wrong, just do nothing and return nil.
507 ** org-archive-hook =nil=
508    :PROPERTIES:
509    :CUSTOM_ID: org-archive-hook
510    :END:
511 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
512 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-hook][Find modifications in git logs]]
514 : Hook run after successfully archiving a subtree.
515 : Hook functions are called with point on the subtree in the
516 : original file.  At this stage, the subtree has been added to the
517 : archive location, but not yet deleted from the original file.
519 ** org-shiftleft-hook =nil=
520    :PROPERTIES:
521    :CUSTOM_ID: org-shiftleft-hook
522    :END:
523 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
524 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftleft-hook][Find modifications in git logs]]
526 : Hook for functions attaching themselves to `S-left'.
527 : See `org-ctrl-c-ctrl-c-hook' for more information.
529 ** org-todo-get-default-hook =nil=
530    :PROPERTIES:
531    :CUSTOM_ID: org-todo-get-default-hook
532    :END:
533 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
534 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-get-default-hook][Find modifications in git logs]]
536 : Hook for functions that get a default item for todo.
537 : Each function takes arguments (NEW-MARK OLD-MARK) and returns either
538 : nil or a string to be used for the todo mark.
540 ** org-export-filter-body-functions =nil=
541    :PROPERTIES:
542    :CUSTOM_ID: org-export-filter-body-functions
543    :END:
544 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
545 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-body-functions][Find modifications in git logs]]
547 : List of functions applied to transcoded body.
548 : Each filter is called with three arguments: a string which
549 : contains no Org syntax, the back-end, as a symbol, and the
550 : communication channel, as a plist.  It must return a string or
551 : nil.
553 ** org-clock-cancel-hook =nil=
554    :PROPERTIES:
555    :CUSTOM_ID: org-clock-cancel-hook
556    :END:
557 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
558 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-cancel-hook][Find modifications in git logs]]
560 : Hook run when canceling the current clock.
562 ** org-open-link-functions =nil=
563    :PROPERTIES:
564    :CUSTOM_ID: org-open-link-functions
565    :END:
566 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
567 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-link-functions][Find modifications in git logs]]
569 : Hook for functions finding a plain text link.
570 : These functions must take a single argument, the link content.
571 : They will be called for links that look like [[link text][description]]
572 : when LINK TEXT does not have a protocol like "http:" and does not look
573 : like a filename (e.g. "./blue.png").
575 : These functions will be called *before* Org attempts to resolve the
576 : link by doing text searches in the current buffer - so if you want a
577 : link "[[target]]" to still find "<<target>>", your function should
578 : handle this as a special case.
580 : When the function does handle the link, it must return a non-nil value.
581 : If it decides that it is not responsible for this link, it must return
582 : nil to indicate that that Org can continue with other options like
583 : exact and fuzzy text search.
585 ** org-export-filter-code-functions =nil=
586    :PROPERTIES:
587    :CUSTOM_ID: org-export-filter-code-functions
588    :END:
589 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
590 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-code-functions][Find modifications in git logs]]
592 : List of functions applied to transcoded code text.
593 : Each filter is called with three arguments: the transcoded data,
594 : as a string, the back-end, as a symbol, and the communication
595 : channel, as a plist.  It must return a string or nil.
597 ** org-shiftmetaright-hook =nil=
598    :PROPERTIES:
599    :CUSTOM_ID: org-shiftmetaright-hook
600    :END:
601 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
602 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaright-hook][Find modifications in git logs]]
604 : Hook for functions attaching themselves to `M-S-right'.
605 : See `org-ctrl-c-ctrl-c-hook' for more information.
607 ** org-export-filter-keyword-functions =nil=
608    :PROPERTIES:
609    :CUSTOM_ID: org-export-filter-keyword-functions
610    :END:
611 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
612 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-keyword-functions][Find modifications in git logs]]
614 : List of functions applied to a transcoded keyword.
615 : Each filter is called with three arguments: the transcoded data,
616 : as a string, the back-end, as a symbol, and the communication
617 : channel, as a plist.  It must return a string or nil.
619 ** org-export-filter-paragraph-functions =nil=
620    :PROPERTIES:
621    :CUSTOM_ID: org-export-filter-paragraph-functions
622    :END:
623 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
624 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-paragraph-functions][Find modifications in git logs]]
626 : List of functions applied to a transcoded paragraph.
627 : Each filter is called with three arguments: the transcoded data,
628 : as a string, the back-end, as a symbol, and the communication
629 : channel, as a plist.  It must return a string or nil.
631 ** org-export-filter-horizontal-rule-functions =nil=
632    :PROPERTIES:
633    :CUSTOM_ID: org-export-filter-horizontal-rule-functions
634    :END:
635 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
636 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-horizontal-rule-functions][Find modifications in git logs]]
638 : List of functions applied to a transcoded horizontal-rule.
639 : Each filter is called with three arguments: the transcoded data,
640 : as a string, the back-end, as a symbol, and the communication
641 : channel, as a plist.  It must return a string or nil.
643 ** org-export-filter-property-drawer-functions =nil=
644    :PROPERTIES:
645    :CUSTOM_ID: org-export-filter-property-drawer-functions
646    :END:
647 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
648 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-property-drawer-functions][Find modifications in git logs]]
650 : List of functions applied to a transcoded property-drawer.
651 : Each filter is called with three arguments: the transcoded data,
652 : as a string, the back-end, as a symbol, and the communication
653 : channel, as a plist.  It must return a string or nil.
655 ** org-shiftup-final-hook =nil=
656    :PROPERTIES:
657    :CUSTOM_ID: org-shiftup-final-hook
658    :END:
659 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
660 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftup-final-hook][Find modifications in git logs]]
662 : Hook for functions attaching themselves to `S-up'.
663 : This one runs after all other options except shift-select have been excluded.
664 : See `org-ctrl-c-ctrl-c-hook' for more information.
666 ** org-export-filter-inline-src-block-functions =nil=
667    :PROPERTIES:
668    :CUSTOM_ID: org-export-filter-inline-src-block-functions
669    :END:
670 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
671 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-inline-src-block-functions][Find modifications in git logs]]
673 : List of functions applied to a transcoded inline-src-block.
674 : Each filter is called with three arguments: the transcoded data,
675 : as a string, the back-end, as a symbol, and the communication
676 : channel, as a plist.  It must return a string or nil.
678 ** org-export-stack-mode-hook =nil=
679    :PROPERTIES:
680    :CUSTOM_ID: orgtbl-mode-off-hook
681    :END:
682 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
683 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-mode-hook][Find modifications in git logs]]
685 : Hook run after entering Org-Stack mode.
686 : No problems result if this variable is not bound.
687 : `add-hook' automatically binds it.  (This is true for all hook variables.)
689 ** org-shiftright-hook =nil=
690    :PROPERTIES:
691    :CUSTOM_ID: org-shiftright-hook
692    :END:
693 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
694 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftright-hook][Find modifications in git logs]]
696 : Hook for functions attaching themselves to `S-right'.
697 : See `org-ctrl-c-ctrl-c-hook' for more information.
699 ** org-agenda-before-write-hook =(quote (org-agenda-add-entry-t...=
700    :PROPERTIES:
701    :CUSTOM_ID: org-agenda-before-write-hook
702    :END:
703 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
704 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-before-write-hook][Find modifications in git logs]]
706 : Hook run in a temporary buffer before writing the agenda to an export file.
707 : A useful function for this hook is `org-agenda-add-entry-text'.
709 ** org-export-filter-italic-functions =nil=
710    :PROPERTIES:
711    :CUSTOM_ID: org-export-filter-italic-functions
712    :END:
713 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
714 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-italic-functions][Find modifications in git logs]]
716 : List of functions applied to transcoded italic text.
717 : Each filter is called with three arguments: the transcoded data,
718 : as a string, the back-end, as a symbol, and the communication
719 : channel, as a plist.  It must return a string or nil.
721 ** org-babel-pre-tangle-hook =(funcall (function (closure (t...=
722    :PROPERTIES:
723    :CUSTOM_ID: org-babel-pre-tangle-hook
724    :END:
725 - *Since:* Emacs version 24.1
726 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
727 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-pre-tangle-hook][Find modifications in git logs]]
729 : Hook run at the beginning of `org-babel-tangle'.
731 ** org-export-filter-plain-text-functions =nil=
732    :PROPERTIES:
733    :CUSTOM_ID: org-export-filter-plain-text-functions
734    :END:
735 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
736 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-plain-text-functions][Find modifications in git logs]]
738 : List of functions applied to plain text.
739 : Each filter is called with three arguments: a string which
740 : contains no Org syntax, the back-end, as a symbol, and the
741 : communication channel, as a plist.  It must return a string or
742 : nil.
744 ** org-agenda-after-show-hook =nil=
745    :PROPERTIES:
746    :CUSTOM_ID: org-agenda-after-show-hook
747    :END:
748 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
749 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-after-show-hook][Find modifications in git logs]]
751 : Normal hook run after an item has been shown from the agenda.
752 : Point is in the buffer where the item originated.
754 ** org-timer-start-hook =nil=
755    :PROPERTIES:
756    :CUSTOM_ID: org-timer-start-hook
757    :END:
758 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
759 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-start-hook][Find modifications in git logs]]
761 : Hook run after relative timer is started.
763 ** org-shiftleft-final-hook =nil=
764    :PROPERTIES:
765    :CUSTOM_ID: org-shiftleft-final-hook
766    :END:
767 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
768 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftleft-final-hook][Find modifications in git logs]]
770 : Hook for functions attaching themselves to `S-left'.
771 : This one runs after all other options except shift-select have been excluded.
772 : See `org-ctrl-c-ctrl-c-hook' for more information.
774 ** org-agenda-mode-hook =nil=
775    :PROPERTIES:
776    :CUSTOM_ID: org-agenda-mode-hook
777    :END:
778 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
779 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-mode-hook][Find modifications in git logs]]
781 : Hook run after `org-agenda-mode' is turned on.
782 : The buffer is still writable when this hook is called.
784 ** org-occur-hook =(funcall (function (closure (f...=
785    :PROPERTIES:
786    :CUSTOM_ID: org-occur-hook
787    :END:
788 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
789 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-occur-hook][Find modifications in git logs]]
791 : Hook that is run after `org-occur' has constructed a sparse tree.
792 : This can be used to recenter the window to show as much of the structure
793 : as possible.
795 ** org-agenda-cleanup-fancy-diary-hook =nil=
796    :PROPERTIES:
797    :CUSTOM_ID: org-agenda-cleanup-fancy-diary-hook
798    :END:
799 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
800 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-cleanup-fancy-diary-hook][Find modifications in git logs]]
802 : Hook run when the fancy diary buffer is cleaned up.
804 ** org-export-filter-item-functions =nil=
805    :PROPERTIES:
806    :CUSTOM_ID: org-export-filter-item-functions
807    :END:
808 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
809 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-item-functions][Find modifications in git logs]]
811 : List of functions applied to a transcoded item.
812 : Each filter is called with three arguments: the transcoded data,
813 : as a string, the back-end, as a symbol, and the communication
814 : channel, as a plist.  It must return a string or nil.
816 ** org-export-filter-inlinetask-functions =nil=
817    :PROPERTIES:
818    :CUSTOM_ID: org-table-follow-field-mode-off-hook
819    :END:
820 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
821 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-inlinetask-functions][Find modifications in git logs]]
823 : List of functions applied to a transcoded inlinetask.
824 : Each filter is called with three arguments: the transcoded data,
825 : as a string, the back-end, as a symbol, and the communication
826 : channel, as a plist.  It must return a string or nil.
828 ** org-mode-hook =(funcall (function (closure (f...=
829    :PROPERTIES:
830    :CUSTOM_ID: org-capture-mode-on-hook
831    :END:
832 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
833 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mode-hook][Find modifications in git logs]]
835 : Hook run after entering Org mode.
836 : No problems result if this variable is not bound.
837 : `add-hook' automatically binds it.  (This is true for all hook variables.)
839 ** org-clock-in-prepare-hook =nil=
840    :PROPERTIES:
841    :CUSTOM_ID: org-clock-in-prepare-hook
842    :END:
843 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
844 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in-prepare-hook][Find modifications in git logs]]
846 : Hook run when preparing the clock.
847 : This hook is run before anything happens to the task that
848 : you want to clock in.  For example, you can use this hook
849 : to add an effort property.
851 ** org-export-filter-headline-functions =nil=
852    :PROPERTIES:
853    :CUSTOM_ID: org-export-filter-headline-functions
854    :END:
855 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
856 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-headline-functions][Find modifications in git logs]]
858 : List of functions applied to a transcoded headline.
859 : Each filter is called with three arguments: the transcoded data,
860 : as a string, the back-end, as a symbol, and the communication
861 : channel, as a plist.  It must return a string or nil.
863 ** org-timer-set-hook =nil=
864    :PROPERTIES:
865    :CUSTOM_ID: org-timer-set-hook
866    :END:
867 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
868 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-set-hook][Find modifications in git logs]]
870 : Hook run after countdown timer is set.
872 ** org-export-filter-table-cell-functions =nil=
873    :PROPERTIES:
874    :CUSTOM_ID: org-export-filter-table-cell-functions
875    :END:
876 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
877 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-table-cell-functions][Find modifications in git logs]]
879 : List of functions applied to a transcoded table-cell.
880 : Each filter is called with three arguments: the transcoded data,
881 : as a string, the back-end, as a symbol, and the communication
882 : channel, as a plist.  It must return a string or nil.
884 ** org-speed-command-hook =(funcall (function (closure (o...=
885    :PROPERTIES:
886    :CUSTOM_ID: org-speed-command-hook
887    :END:
888 - *Since:* Emacs version 24.1
889 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
890 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-speed-command-hook][Find modifications in git logs]]
892 : Hook for activating speed commands at strategic locations.
893 : Hook functions are called in sequence until a valid handler is
894 : found.
896 : Each hook takes a single argument, a user-pressed command key
897 : which is also a `self-insert-command' from the global map.
899 : Within the hook, examine the cursor position and the command key
900 : and return nil or a valid handler as appropriate.  Handler could
901 : be one of an interactive command, a function, or a form.
903 : Set `org-use-speed-commands' to non-nil value to enable this
904 : hook.  The default setting is `org-speed-command-activate'.
906 ** org-metaup-hook =nil=
907    :PROPERTIES:
908    :CUSTOM_ID: org-metaup-hook
909    :END:
910 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
911 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaup-hook][Find modifications in git logs]]
913 : Hook for functions attaching themselves to `M-up'.
914 : See `org-ctrl-c-ctrl-c-hook' for more information.
916 ** org-ctrl-c-ctrl-c-hook =nil=
917    :PROPERTIES:
918    :CUSTOM_ID: org-ctrl-c-ctrl-c-hook
919    :END:
920 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
921 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-ctrl-c-hook][Find modifications in git logs]]
923 : Hook for functions attaching themselves to `C-c C-c'.
925 : This can be used to add additional functionality to the C-c C-c
926 : key which executes context-dependent commands.  This hook is run
927 : before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
928 : run after the last test.
930 : Each function will be called with no arguments.  The function
931 : must check if the context is appropriate for it to act.  If yes,
932 : it should do its thing and then return a non-nil value.  If the
933 : context is wrong, just do nothing and return nil.
935 ** orgtbl-mode-hook =nil=
936    :PROPERTIES:
937    :CUSTOM_ID: orgtbl-mode-hook
938    :END:
939 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
940 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-mode-hook][Find modifications in git logs]]
942 : Hook run after entering or leaving `orgtbl-mode'.
943 : No problems result if this variable is not bound.
944 : `add-hook' automatically binds it.  (This is true for all hook variables.)
946 ** org-load-hook =(funcall (function (closure (f...=
947    :PROPERTIES:
948    :CUSTOM_ID: org-load-hook
949    :END:
950 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
951 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-load-hook][Find modifications in git logs]]
953 : Hook that is run after org.el has been loaded.
955 ** org-todo-statistics-hook =nil=
956    :PROPERTIES:
957    :CUSTOM_ID: org-todo-statistics-hook
958    :END:
959 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
960 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-statistics-hook][Find modifications in git logs]]
962 : Hook that is run whenever Org thinks TODO statistics should be updated.
963 : This hook runs even if there is no statistics cookie present, in which case
964 : `org-after-todo-statistics-hook' would not run.
966 ** org-pre-cycle-hook =(funcall (function (closure (f...=
967    :PROPERTIES:
968    :CUSTOM_ID: org-pre-cycle-hook
969    :END:
970 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
971 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-pre-cycle-hook][Find modifications in git logs]]
973 : Hook that is run before visibility cycling is happening.
974 : The function(s) in this hook must accept a single argument which indicates
975 : the new state that will be set right after running this hook.  The
976 : argument is a symbol.  Before a global state change, it can have the values
977 : `overview', `content', or `all'.  Before a local state change, it can have
978 : the values `folded', `children', or `subtree'.
980 ** org-export-filter-planning-functions =nil=
981    :PROPERTIES:
982    :CUSTOM_ID: org-export-filter-planning-functions
983    :END:
984 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
985 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-planning-functions][Find modifications in git logs]]
987 : List of functions applied to a transcoded planning.
988 : Each filter is called with three arguments: the transcoded data,
989 : as a string, the back-end, as a symbol, and the communication
990 : channel, as a plist.  It must return a string or nil.
992 ** org-export-filter-options-functions =nil=
993    :PROPERTIES:
994    :CUSTOM_ID: org-export-filter-options-functions
995    :END:
996 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
997 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-options-functions][Find modifications in git logs]]
999 : List of functions applied to the export options.
1000 : Each filter is called with two arguments: the export options, as
1001 : a plist, and the back-end, as a symbol.  It must return
1002 : a property list containing export options.
1004 ** orgstruct-setup-hook =(funcall (function (closure (o...=
1005    :PROPERTIES:
1006    :CUSTOM_ID: org-cdlatex-mode-off-hook
1007    :END:
1008 - *Since:* Emacs version 24.4
1009 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1010 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct-setup-hook][Find modifications in git logs]]
1012 : Hook run after orgstruct-mode-map is filled.
1014 ** org-capture-after-finalize-hook =(funcall (function (closure (o...=
1015    :PROPERTIES:
1016    :CUSTOM_ID: org-capture-after-finalize-hook
1017    :END:
1018 - *Since:* Emacs version 24.1
1019 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
1020 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-after-finalize-hook][Find modifications in git logs]]
1022 : Hook that is run right after a capture process is finalized.
1023 : Suitable for window cleanup.
1025 ** org-mobile-before-process-capture-hook =nil=
1026    :PROPERTIES:
1027    :CUSTOM_ID: org-mobile-before-process-capture-hook
1028    :END:
1029 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
1030 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-before-process-capture-hook][Find modifications in git logs]]
1032 : Hook that is run after content was moved to `org-mobile-inbox-for-pull'.
1033 : The inbox file is visited by the current buffer, and the buffer is
1034 : narrowed to the newly captured data.
1036 ** org-export-filter-statistics-cookie-functions =nil=
1037    :PROPERTIES:
1038    :CUSTOM_ID: org-export-filter-statistics-cookie-functions
1039    :END:
1040 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1041 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-statistics-cookie-functions][Find modifications in git logs]]
1043 : List of functions applied to a transcoded statistics-cookie.
1044 : Each filter is called with three arguments: the transcoded data,
1045 : as a string, the back-end, as a symbol, and the communication
1046 : channel, as a plist.  It must return a string or nil.
1048 ** org-export-filter-dynamic-block-functions =nil=
1049    :PROPERTIES:
1050    :CUSTOM_ID: org-export-filter-dynamic-block-functions
1051    :END:
1052 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1053 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-dynamic-block-functions][Find modifications in git logs]]
1055 : List of functions applied to a transcoded dynamic-block.
1056 : Each filter is called with three arguments: the transcoded data,
1057 : as a string, the back-end, as a symbol, and the communication
1058 : channel, as a plist.  It must return a string or nil.
1060 ** org-export-filter-quote-block-functions =nil=
1061    :PROPERTIES:
1062    :CUSTOM_ID: org-export-filter-quote-block-functions
1063    :END:
1064 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1065 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-quote-block-functions][Find modifications in git logs]]
1067 : List of functions applied to a transcoded quote block.
1068 : Each filter is called with three arguments: the transcoded quote
1069 : data, as a string, the back-end, as a symbol, and the
1070 : communication channel, as a plist.  It must return a string or
1071 : nil.
1073 ** org-mobile-post-push-hook =nil=
1074    :PROPERTIES:
1075    :CUSTOM_ID: org-mobile-post-push-hook
1076    :END:
1077 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
1078 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-post-push-hook][Find modifications in git logs]]
1080 : Hook run after running `org-mobile-push'.
1081 : If Emacs does not have direct write access to the WebDAV directory used
1082 : by the mobile device, this hook should be used to copy all files from the
1083 : local staging directory `org-mobile-directory' to the WebDAV directory,
1084 : for example using `rsync' or `scp'.
1086 ** org-export-before-processing-hook =nil=
1087    :PROPERTIES:
1088    :CUSTOM_ID: org-export-before-processing-hook
1089    :END:
1090 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1091 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-before-processing-hook][Find modifications in git logs]]
1093 : Hook run at the beginning of the export process.
1095 : This is run before include keywords and macros are expanded and
1096 : Babel code blocks executed, on a copy of the original buffer
1097 : being exported.  Visibility and narrowing are preserved.  Point
1098 : is at the beginning of the buffer.
1100 : Every function in this hook will be called with one argument: the
1101 : back-end currently used, as a symbol.
1103 ** org-export-filter-clock-functions =nil=
1104    :PROPERTIES:
1105    :CUSTOM_ID: org-export-filter-clock-functions
1106    :END:
1107 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1108 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-clock-functions][Find modifications in git logs]]
1110 : List of functions applied to a transcoded clock.
1111 : Each filter is called with three arguments: the transcoded data,
1112 : as a string, the back-end, as a symbol, and the communication
1113 : channel, as a plist.  It must return a string or nil.
1115 ** org-export-filter-superscript-functions =nil=
1116    :PROPERTIES:
1117    :CUSTOM_ID: org-export-filter-superscript-functions
1118    :END:
1119 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1120 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-superscript-functions][Find modifications in git logs]]
1122 : List of functions applied to a transcoded superscript.
1123 : Each filter is called with three arguments: the transcoded data,
1124 : as a string, the back-end, as a symbol, and the communication
1125 : channel, as a plist.  It must return a string or nil.
1127 ** org-export-filter-verbatim-functions =nil=
1128    :PROPERTIES:
1129    :CUSTOM_ID: org-export-filter-verbatim-functions
1130    :END:
1131 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1132 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-verbatim-functions][Find modifications in git logs]]
1134 : List of functions applied to transcoded verbatim text.
1135 : Each filter is called with three arguments: the transcoded data,
1136 : as a string, the back-end, as a symbol, and the communication
1137 : channel, as a plist.  It must return a string or nil.
1139 ** org-export-filter-radio-target-functions =nil=
1140    :PROPERTIES:
1141    :CUSTOM_ID: org-export-filter-radio-target-functions
1142    :END:
1143 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1144 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-radio-target-functions][Find modifications in git logs]]
1146 : List of functions applied to a transcoded radio-target.
1147 : Each filter is called with three arguments: the transcoded data,
1148 : as a string, the back-end, as a symbol, and the communication
1149 : channel, as a plist.  It must return a string or nil.
1151 ** org-export-filter-footnote-definition-functions =nil=
1152    :PROPERTIES:
1153    :CUSTOM_ID: org-export-filter-footnote-definition-functions
1154    :END:
1155 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1156 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-footnote-definition-functions][Find modifications in git logs]]
1158 : List of functions applied to a transcoded footnote-definition.
1159 : Each filter is called with three arguments: the transcoded data,
1160 : as a string, the back-end, as a symbol, and the communication
1161 : channel, as a plist.  It must return a string or nil.
1163 ** org-cdlatex-mode-hook =nil=
1164    :PROPERTIES:
1165    :CUSTOM_ID: org-cdlatex-mode-hook
1166    :END:
1167 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1168 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cdlatex-mode-hook][Find modifications in git logs]]
1170 : Hook run after entering or leaving `org-cdlatex-mode'.
1171 : No problems result if this variable is not bound.
1172 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1174 ** org-export-filter-center-block-functions =nil=
1175    :PROPERTIES:
1176    :CUSTOM_ID: org-export-filter-center-block-functions
1177    :END:
1178 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1179 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-center-block-functions][Find modifications in git logs]]
1181 : List of functions applied to a transcoded center block.
1182 : Each filter is called with three arguments: the transcoded data,
1183 : as a string, the back-end, as a symbol, and the communication
1184 : channel, as a plist.  It must return a string or nil.
1186 ** org-export-filter-plain-list-functions =nil=
1187    :PROPERTIES:
1188    :CUSTOM_ID: org-export-filter-plain-list-functions
1189    :END:
1190 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1191 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-plain-list-functions][Find modifications in git logs]]
1193 : List of functions applied to a transcoded plain-list.
1194 : Each filter is called with three arguments: the transcoded data,
1195 : as a string, the back-end, as a symbol, and the communication
1196 : channel, as a plist.  It must return a string or nil.
1198 ** org-export-filter-strike-through-functions =nil=
1199    :PROPERTIES:
1200    :CUSTOM_ID: org-export-filter-strike-through-functions
1201    :END:
1202 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1203 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-strike-through-functions][Find modifications in git logs]]
1205 : List of functions applied to transcoded strike-through text.
1206 : Each filter is called with three arguments: the transcoded data,
1207 : as a string, the back-end, as a symbol, and the communication
1208 : channel, as a plist.  It must return a string or nil.
1210 ** org-export-filter-parse-tree-functions =nil=
1211    :PROPERTIES:
1212    :CUSTOM_ID: org-export-filter-parse-tree-functions
1213    :END:
1214 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1215 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-parse-tree-functions][Find modifications in git logs]]
1217 : List of functions applied to the parsed tree.
1218 : Each filter is called with three arguments: the parse tree, as
1219 : returned by `org-element-parse-buffer', the back-end, as
1220 : a symbol, and the communication channel, as a plist.  It must
1221 : return the modified parse tree to transcode.
1223 ** org-publish-after-publishing-hook =nil=
1224    :PROPERTIES:
1225    :CUSTOM_ID: org-publish-after-publishing-hook
1226    :END:
1227 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
1228 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-after-publishing-hook][Find modifications in git logs]]
1230 : Hook run each time a file is published.
1231 : Every function in this hook will be called with two arguments:
1232 : the name of the original file and the name of the file
1233 : produced.
1235 ** org-clock-out-hook =nil=
1236    :PROPERTIES:
1237    :CUSTOM_ID: org-clock-out-hook
1238    :END:
1239 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
1240 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-out-hook][Find modifications in git logs]]
1242 : Hook run when stopping the current clock.
1244 ** org-follow-link-hook =(funcall (function (closure (f...=
1245    :PROPERTIES:
1246    :CUSTOM_ID: org-cdlatex-mode-on-hook
1247    :END:
1248 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1249 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-follow-link-hook][Find modifications in git logs]]
1251 : Hook that is run after a link has been followed.
1253 ** org-metareturn-hook =nil=
1254    :PROPERTIES:
1255    :CUSTOM_ID: org-metareturn-hook
1256    :END:
1257 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1258 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metareturn-hook][Find modifications in git logs]]
1260 : Hook for functions attaching themselves to `M-RET'.
1261 : See `org-ctrl-c-ctrl-c-hook' for more information.
1263 ** org-after-demote-entry-hook =nil=
1264    :PROPERTIES:
1265    :CUSTOM_ID: org-after-demote-entry-hook
1266    :END:
1267 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1268 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-demote-entry-hook][Find modifications in git logs]]
1270 : Hook run after an entry has been demoted.
1271 : The cursor will be at the beginning of the entry.
1272 : When a subtree is being demoted, the hook will be called for each node.
1274 ** org-shiftdown-final-hook =nil=
1275    :PROPERTIES:
1276    :CUSTOM_ID: org-shiftdown-final-hook
1277    :END:
1278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftdown-final-hook][Find modifications in git logs]]
1281 : Hook for functions attaching themselves to `S-down'.
1282 : This one runs after all other options except shift-select have been excluded.
1283 : See `org-ctrl-c-ctrl-c-hook' for more information.
1285 ** org-export-filter-table-row-functions =nil=
1286    :PROPERTIES:
1287    :CUSTOM_ID: org-export-filter-table-row-functions
1288    :END:
1289 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1290 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-table-row-functions][Find modifications in git logs]]
1292 : List of functions applied to a transcoded table-row.
1293 : Each filter is called with three arguments: the transcoded data,
1294 : as a string, the back-end, as a symbol, and the communication
1295 : channel, as a plist.  It must return a string or nil.
1297 ** org-beamer-mode-hook =nil=
1298    :PROPERTIES:
1299    :CUSTOM_ID: org-beamer-mode-hook
1300    :END:
1301 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
1302 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-mode-hook][Find modifications in git logs]]
1304 : Hook run after entering or leaving `org-beamer-mode'.
1305 : No problems result if this variable is not bound.
1306 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1308 ** org-after-promote-entry-hook =nil=
1309    :PROPERTIES:
1310    :CUSTOM_ID: org-store-link-functions
1311    :END:
1312 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1313 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-promote-entry-hook][Find modifications in git logs]]
1315 : Hook run after an entry has been promoted.
1316 : The cursor will be at the beginning of the entry.
1317 : When a subtree is being promoted, the hook will be called for each node.
1319 ** org-after-tags-change-hook =nil=
1320    :PROPERTIES:
1321    :CUSTOM_ID: org-after-tags-change-hook
1322    :END:
1323 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1324 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-tags-change-hook][Find modifications in git logs]]
1326 : Hook that is run after the tags in a line have changed.
1328 ** org-after-refile-insert-hook =nil=
1329    :PROPERTIES:
1330    :CUSTOM_ID: org-after-refile-insert-hook
1331    :END:
1332 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1333 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-after-refile-insert-hook][Find modifications in git logs]]
1335 : Hook run after `org-refile' has inserted its stuff at the new location.
1336 : Note that this is still *before* the stuff will be removed from
1337 : the *old* location.
1339 ** org-export-filter-drawer-functions =nil=
1340    :PROPERTIES:
1341    :CUSTOM_ID: org-export-filter-drawer-functions
1342    :END:
1343 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1344 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-drawer-functions][Find modifications in git logs]]
1346 : List of functions applied to a transcoded drawer.
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-example-block-functions =nil=
1352    :PROPERTIES:
1353    :CUSTOM_ID: org-indent-mode-off-hook
1354    :END:
1355 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1356 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-example-block-functions][Find modifications in git logs]]
1358 : List of functions applied to a transcoded example-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-capture-before-finalize-hook =(funcall (function (closure (o...=
1364    :PROPERTIES:
1365    :CUSTOM_ID: org-capture-before-finalize-hook
1366    :END:
1367 - *Since:* Emacs version 24.1
1368 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
1369 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-before-finalize-hook][Find modifications in git logs]]
1371 : Hook that is run right before a capture process is finalized.
1372 : The capture buffer is still current when this hook runs and it is
1373 : widened to the entire buffer.
1375 ** org-execute-file-search-functions =nil=
1376    :PROPERTIES:
1377    :CUSTOM_ID: org-execute-file-search-functions
1378    :END:
1379 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1380 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-execute-file-search-functions][Find modifications in git logs]]
1382 : List of functions to execute a file search triggered by a link.
1384 : Functions added to this hook must accept a single argument, the
1385 : search string that was part of the file link, the part after the
1386 : double colon.  The function must first check if it would like to
1387 : handle this search, for example by checking the `major-mode' or
1388 : the file extension.  If it decides not to handle this search, it
1389 : should just return nil to give other functions a chance.  If it
1390 : does handle the search, it must return a non-nil value to keep
1391 : other functions from trying.
1393 : Each function can access the current prefix argument through the
1394 : variable `current-prefix-arg'.  Note that a single prefix is used
1395 : to force opening a link in Emacs, so it may be good to only use a
1396 : numeric or double prefix to guide the search function.
1398 : In case this is needed, a function in this hook can also restore
1399 : the window configuration before `org-open-at-point' was called using:
1401 :     (set-window-configuration org-window-config-before-follow-link)
1403 ** org-export-filter-export-snippet-functions =nil=
1404    :PROPERTIES:
1405    :CUSTOM_ID: org-export-filter-export-snippet-functions
1406    :END:
1407 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1408 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-export-snippet-functions][Find modifications in git logs]]
1410 : List of functions applied to a transcoded export-snippet.
1411 : Each filter is called with three arguments: the transcoded data,
1412 : as a string, the back-end, as a symbol, and the communication
1413 : channel, as a plist.  It must return a string or nil.
1415 ** org-timer-pause-hook =nil=
1416    :PROPERTIES:
1417    :CUSTOM_ID: org-timer-pause-hook
1418    :END:
1419 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
1420 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-pause-hook][Find modifications in git logs]]
1422 : Hook run before relative or countdown timer is paused.
1424 ** org-agenda-bulk-custom-functions =nil=
1425    :PROPERTIES:
1426    :CUSTOM_ID: org-agenda-bulk-custom-functions
1427    :END:
1428 - *Since:* Emacs version 24.1
1429 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
1430 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-custom-functions][Find modifications in git logs]]
1432 : Alist of characters and custom functions for bulk actions.
1433 : For example, this value makes those two functions available:
1435 :   \='((?R set-category)
1436 :     (?C bulk-cut))
1438 : With selected entries in an agenda buffer, `B R' will call
1439 : the custom function `set-category' on the selected entries.
1440 : Note that functions in this alist don't need to be quoted.
1442 ** org-export-filter-babel-call-functions =nil=
1443    :PROPERTIES:
1444    :CUSTOM_ID: org-export-filter-babel-call-functions
1445    :END:
1446 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1447 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-babel-call-functions][Find modifications in git logs]]
1449 : List of functions applied to a transcoded babel-call.
1450 : Each filter is called with three arguments: the transcoded data,
1451 : as a string, the back-end, as a symbol, and the communication
1452 : channel, as a plist.  It must return a string or nil.
1454 ** org-reveal-start-hook =nil=
1455    :PROPERTIES:
1456    :CUSTOM_ID: org-reveal-start-hook
1457    :END:
1458 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1459 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reveal-start-hook][Find modifications in git logs]]
1461 : Hook run before revealing a location.
1463 ** org-export-filter-latex-fragment-functions =nil=
1464    :PROPERTIES:
1465    :CUSTOM_ID: org-export-filter-latex-fragment-functions
1466    :END:
1467 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1468 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-latex-fragment-functions][Find modifications in git logs]]
1470 : List of functions applied to a transcoded latex-fragment.
1471 : Each filter is called with three arguments: the transcoded data,
1472 : as a string, the back-end, as a symbol, and the communication
1473 : channel, as a plist.  It must return a string or nil.
1475 ** org-export-filter-latex-environment-functions =nil=
1476    :PROPERTIES:
1477    :CUSTOM_ID: org-export-filter-latex-environment-functions
1478    :END:
1479 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1480 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-latex-environment-functions][Find modifications in git logs]]
1482 : List of functions applied to a transcoded latex-environment.
1483 : Each filter is called with three arguments: the transcoded data,
1484 : as a string, the back-end, as a symbol, and the communication
1485 : channel, as a plist.  It must return a string or nil.
1487 ** org-tab-after-check-for-cycling-hook =nil=
1488    :PROPERTIES:
1489    :CUSTOM_ID: org-tab-after-check-for-cycling-hook
1490    :END:
1491 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1492 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tab-after-check-for-cycling-hook][Find modifications in git logs]]
1494 : Hook for functions to attach themselves to TAB.
1495 : See `org-ctrl-c-ctrl-c-hook' for more information.
1496 : This hook runs after it has been established that not table field motion and
1497 : not visibility should be done because of current context.  This is probably
1498 : the place where a package like yasnippets can hook in.
1500 ** org-log-buffer-setup-hook =(funcall (function (closure (f...=
1501    :PROPERTIES:
1502    :CUSTOM_ID: org-log-buffer-setup-hook
1503    :END:
1504 - *Since:* Emacs version 24.1
1505 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1506 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-buffer-setup-hook][Find modifications in git logs]]
1508 : Hook that is run after an Org log buffer is created.
1510 ** org-babel-tangle-body-hook =(funcall (function (closure (t...=
1511    :PROPERTIES:
1512    :CUSTOM_ID: org-babel-tangle-body-hook
1513    :END:
1514 - *Since:* Emacs version 24.1
1515 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
1516 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-body-hook][Find modifications in git logs]]
1518 : Hook run over the contents of each code block body.
1520 ** org-export-filter-timestamp-functions =nil=
1521    :PROPERTIES:
1522    :CUSTOM_ID: org-export-filter-timestamp-functions
1523    :END:
1524 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1525 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-timestamp-functions][Find modifications in git logs]]
1527 : List of functions applied to a transcoded timestamp.
1528 : Each filter is called with three arguments: the transcoded data,
1529 : as a string, the back-end, as a symbol, and the communication
1530 : channel, as a plist.  It must return a string or nil.
1532 ** org-export-filter-fixed-width-functions =nil=
1533    :PROPERTIES:
1534    :CUSTOM_ID: org-export-filter-fixed-width-functions
1535    :END:
1536 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1537 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-fixed-width-functions][Find modifications in git logs]]
1539 : List of functions applied to a transcoded fixed-width.
1540 : Each filter is called with three arguments: the transcoded data,
1541 : as a string, the back-end, as a symbol, and the communication
1542 : channel, as a plist.  It must return a string or nil.
1544 ** org-insert-heading-hook =(funcall (function (closure (f...=
1545    :PROPERTIES:
1546    :CUSTOM_ID: org-insert-heading-hook
1547    :END:
1548 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1549 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-heading-hook][Find modifications in git logs]]
1551 : Hook being run after inserting a new heading.
1553 ** org-shiftmetadown-hook =nil=
1554    :PROPERTIES:
1555    :CUSTOM_ID: org-shiftmetadown-hook
1556    :END:
1557 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1558 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetadown-hook][Find modifications in git logs]]
1560 : Hook for functions attaching themselves to `M-S-down'.
1561 : See `org-ctrl-c-ctrl-c-hook' for more information.
1563 ** org-shiftup-hook =nil=
1564    :PROPERTIES:
1565    :CUSTOM_ID: org-shiftup-hook
1566    :END:
1567 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1568 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftup-hook][Find modifications in git logs]]
1570 : Hook for functions attaching themselves to `S-up'.
1571 : See `org-ctrl-c-ctrl-c-hook' for more information.
1573 ** org-shiftmetaleft-hook =nil=
1574    :PROPERTIES:
1575    :CUSTOM_ID: org-shiftmetaleft-hook
1576    :END:
1577 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1578 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaleft-hook][Find modifications in git logs]]
1580 : Hook for functions attaching themselves to `M-S-left'.
1581 : See `org-ctrl-c-ctrl-c-hook' for more information.
1583 ** org-lint--report-mode-hook =nil=
1584    :PROPERTIES:
1585    :CUSTOM_ID: org-lint--report-mode-hook
1586    :END:
1587 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
1588 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--report-mode-hook][Find modifications in git logs]]
1590 : Hook run after entering OrgLint mode.
1591 : No problems result if this variable is not bound.
1592 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1594 ** org-ctags-open-link-functions =(funcall (function (closure (t...=
1595    :PROPERTIES:
1596    :CUSTOM_ID: org-ctags-open-link-functions
1597    :END:
1598 - *Since:* Emacs version 24.1
1599 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
1600 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-open-link-functions][Find modifications in git logs]]
1602 : List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active.
1604 ** org-babel-post-tangle-hook =(funcall (function (closure (t...=
1605    :PROPERTIES:
1606    :CUSTOM_ID: org-babel-post-tangle-hook
1607    :END:
1608 - *Since:* Emacs version 24.1
1609 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
1610 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-post-tangle-hook][Find modifications in git logs]]
1612 : Hook run in code files tangled by `org-babel-tangle'.
1614 ** org-tab-first-hook =nil=
1615    :PROPERTIES:
1616    :CUSTOM_ID: org-tab-first-hook
1617    :END:
1618 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1619 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tab-first-hook][Find modifications in git logs]]
1621 : Hook for functions to attach themselves to TAB.
1622 : See `org-ctrl-c-ctrl-c-hook' for more information.
1623 : This hook runs as the first action when TAB is pressed, even before
1624 : `org-cycle' messes around with the `outline-regexp' to cater for
1625 : inline tasks and plain list item folding.
1626 : If any function in this hook returns t, any other actions that
1627 : would have been caused by TAB (such as table field motion or visibility
1628 : cycling) will not occur.
1630 ** org-agenda-finalize-hook =nil=
1631    :PROPERTIES:
1632    :CUSTOM_ID: org-agenda-finalize-hook
1633    :END:
1634 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
1635 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-finalize-hook][Find modifications in git logs]]
1637 : Hook run just before displaying an agenda buffer.
1638 : The buffer is still writable when the hook is called.
1640 : You can modify some of the buffer substrings but you should be
1641 : extra careful not to modify the text properties of the agenda
1642 : headlines as the agenda display heavily relies on them.
1644 ** org-clock-goto-hook =nil=
1645    :PROPERTIES:
1646    :CUSTOM_ID: org-clock-goto-hook
1647    :END:
1648 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
1649 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-goto-hook][Find modifications in git logs]]
1651 : Hook run when selecting the currently clocked-in entry.
1653 ** orgtbl-after-send-table-hook =nil=
1654    :PROPERTIES:
1655    :CUSTOM_ID: orgtbl-after-send-table-hook
1656    :END:
1657 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
1658 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-after-send-table-hook][Find modifications in git logs]]
1660 : Hook for functions attaching to `C-c C-c', if the table is sent.
1661 : This can be used to add additional functionality after the table is sent
1662 : to the receiver position, otherwise, if table is not sent, the functions
1663 : are not run.
1665 ** org-export-filter-footnote-reference-functions =nil=
1666    :PROPERTIES:
1667    :CUSTOM_ID: org-export-filter-footnote-reference-functions
1668    :END:
1669 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1670 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-footnote-reference-functions][Find modifications in git logs]]
1672 : List of functions applied to a transcoded footnote-reference.
1673 : Each filter is called with three arguments: the transcoded data,
1674 : as a string, the back-end, as a symbol, and the communication
1675 : channel, as a plist.  It must return a string or nil.
1677 ** org-export-filter-line-break-functions =nil=
1678    :PROPERTIES:
1679    :CUSTOM_ID: org-export-filter-line-break-functions
1680    :END:
1681 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1682 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-line-break-functions][Find modifications in git logs]]
1684 : List of functions applied to a transcoded line-break.
1685 : Each filter is called with three arguments: the transcoded data,
1686 : as a string, the back-end, as a symbol, and the communication
1687 : channel, as a plist.  It must return a string or nil.
1689 ** org-export-filter-inline-babel-call-functions =nil=
1690    :PROPERTIES:
1691    :CUSTOM_ID: org-export-filter-inline-babel-call-functions
1692    :END:
1693 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1694 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-inline-babel-call-functions][Find modifications in git logs]]
1696 : List of functions applied to a transcoded inline-babel-call.
1697 : Each filter is called with three arguments: the transcoded data,
1698 : as a string, the back-end, as a symbol, and the communication
1699 : channel, as a plist.  It must return a string or nil.
1701 ** org-font-lock-set-keywords-hook =nil=
1702    :PROPERTIES:
1703    :CUSTOM_ID: org-font-lock-set-keywords-hook
1704    :END:
1705 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1706 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-font-lock-set-keywords-hook][Find modifications in git logs]]
1708 : Functions that can manipulate `org-font-lock-extra-keywords'.
1709 : This is called after `org-font-lock-extra-keywords' is defined, but before
1710 : it is installed to be used by font lock.  This can be useful if something
1711 : needs to be inserted at a specific position in the font-lock sequence.
1713 ** org-mobile-pre-pull-hook =nil=
1714    :PROPERTIES:
1715    :CUSTOM_ID: org-mobile-pre-pull-hook
1716    :END:
1717 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
1718 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-pre-pull-hook][Find modifications in git logs]]
1720 : Hook run before executing `org-mobile-pull'.
1721 : If Emacs does not have direct write access to the WebDAV directory used
1722 : by the mobile device, this hook should be used to copy the capture file
1723 : `mobileorg.org' from the WebDAV location to the local staging
1724 : directory `org-mobile-directory'.
1726 ** org-font-lock-hook =nil=
1727    :PROPERTIES:
1728    :CUSTOM_ID: org-font-lock-hook
1729    :END:
1730 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1731 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-font-lock-hook][Find modifications in git logs]]
1733 : Functions to be called for special font lock stuff.
1735 ** org-export-filter-final-output-functions =nil=
1736    :PROPERTIES:
1737    :CUSTOM_ID: orgstruct-mode-on-hook
1738    :END:
1739 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1740 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-final-output-functions][Find modifications in git logs]]
1742 : List of functions applied to the transcoded string.
1743 : Each filter is called with three arguments: the full transcoded
1744 : string, the back-end, as a symbol, and the communication channel,
1745 : as a plist.  It must return a string that will be used as the
1746 : final export output.
1748 ** org-indent-mode-hook =nil=
1749    :PROPERTIES:
1750    :CUSTOM_ID: org-indent-mode-hook
1751    :END:
1752 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
1753 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-mode-hook][Find modifications in git logs]]
1755 : Hook run after entering or leaving `org-indent-mode'.
1756 : No problems result if this variable is not bound.
1757 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1759 ** org-export-filter-special-block-functions =nil=
1760    :PROPERTIES:
1761    :CUSTOM_ID: org-export-filter-special-block-functions
1762    :END:
1763 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1764 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-special-block-functions][Find modifications in git logs]]
1766 : List of functions applied to a transcoded special block.
1767 : Each filter is called with three arguments: the transcoded data,
1768 : as a string, the back-end, as a symbol, and the communication
1769 : channel, as a plist.  It must return a string or nil.
1771 ** org-export-filter-table-functions =nil=
1772    :PROPERTIES:
1773    :CUSTOM_ID: org-export-filter-table-functions
1774    :END:
1775 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1776 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-table-functions][Find modifications in git logs]]
1778 : List of functions applied to a transcoded table.
1779 : Each filter is called with three arguments: the transcoded data,
1780 : as a string, the back-end, as a symbol, and the communication
1781 : channel, as a plist.  It must return a string or nil.
1783 ** org-feed-after-adding-hook =(funcall (function (closure (t...=
1784    :PROPERTIES:
1785    :CUSTOM_ID: org-feed-after-adding-hook
1786    :END:
1787 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
1788 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-after-adding-hook][Find modifications in git logs]]
1790 : Hook that is run after new items have been added to a file.
1791 : Depending on `org-feed-save-after-adding', the buffer will already
1792 : have been saved.
1794 ** org-trigger-hook =nil=
1795    :PROPERTIES:
1796    :CUSTOM_ID: org-trigger-hook
1797    :END:
1798 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1799 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-trigger-hook][Find modifications in git logs]]
1801 : Hook for functions that are triggered by a state change.
1803 : Each function gets as its single argument a property list with at
1804 : least the following elements:
1806 :  (:type type-of-change :position pos-at-entry-start
1807 :   :from old-state :to new-state)
1809 : Depending on the type, more properties may be present.
1811 : This mechanism is currently implemented for:
1813 : TODO state changes
1814 : ------------------
1815 : :type  todo-state-change
1816 : :from  previous state (keyword as a string), or nil, or a symbol
1817 :        `todo' or `done', to indicate the general type of state.
1818 : :to    new state, like in :from
1820 ** org-blocker-hook =nil=
1821    :PROPERTIES:
1822    :CUSTOM_ID: org-export-filter-apply-functions
1823    :END:
1824 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1825 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-blocker-hook][Find modifications in git logs]]
1827 : Hook for functions that are allowed to block a state change.
1829 : Functions in this hook should not modify the buffer.
1830 : Each function gets as its single argument a property list,
1831 : see `org-trigger-hook' for more information about this list.
1833 : If any of the functions in this hook returns nil, the state change
1834 : is blocked.
1836 ** org-export-filter-src-block-functions =nil=
1837    :PROPERTIES:
1838    :CUSTOM_ID: org-export-filter-src-block-functions
1839    :END:
1840 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1841 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-src-block-functions][Find modifications in git logs]]
1843 : List of functions applied to a transcoded src-block.
1844 : Each filter is called with three arguments: the transcoded data,
1845 : as a string, the back-end, as a symbol, and the communication
1846 : channel, as a plist.  It must return a string or nil.
1848 ** org-tab-before-tab-emulation-hook =nil=
1849    :PROPERTIES:
1850    :CUSTOM_ID: org-babel-J-interleave-echos-except-functions
1851    :END:
1852 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1853 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tab-before-tab-emulation-hook][Find modifications in git logs]]
1855 : Hook for functions to attach themselves to TAB.
1856 : See `org-ctrl-c-ctrl-c-hook' for more information.
1857 : This hook runs after every other options for TAB have been exhausted, but
1858 : before indentation and         insertion takes place.
1860 ** org-export-filter-node-property-functions =nil=
1861    :PROPERTIES:
1862    :CUSTOM_ID: org-export-filter-node-property-functions
1863    :END:
1864 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1865 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-node-property-functions][Find modifications in git logs]]
1867 : List of functions applied to a transcoded node-property.
1868 : Each filter is called with three arguments: the transcoded data,
1869 : as a string, the back-end, as a symbol, and the communication
1870 : channel, as a plist.  It must return a string or nil.
1872 ** org-agenda-entry-text-cleanup-hook =nil=
1873    :PROPERTIES:
1874    :CUSTOM_ID: org-agenda-entry-text-cleanup-hook
1875    :END:
1876 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
1877 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-cleanup-hook][Find modifications in git logs]]
1879 : Hook that is run after basic cleanup of entry text to be shown in agenda.
1880 : This cleanup is done in a temporary buffer, so the function may inspect and
1881 : change the entire buffer.
1882 : Some default stuff like drawers and scheduling/deadline dates will already
1883 : have been removed when this is called, as will any matches for regular
1884 : expressions listed in `org-agenda-entry-text-exclude-regexps'.
1886 ** org-create-file-search-functions =nil=
1887    :PROPERTIES:
1888    :CUSTOM_ID: org-create-file-search-functions
1889    :END:
1890 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1891 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-create-file-search-functions][Find modifications in git logs]]
1893 : List of functions to construct the right search string for a file link.
1894 : These functions are called in turn with point at the location to
1895 : which the link should point.
1897 : A function in the hook should first test if it would like to
1898 : handle this file type, for example by checking the `major-mode'
1899 : or the file extension.  If it decides not to handle this file, it
1900 : should just return nil to give other functions a chance.  If it
1901 : does handle the file, it must return the search string to be used
1902 : when following the link.  The search string will be part of the
1903 : file link, given after a double colon, and `org-open-at-point'
1904 : will automatically search for it.  If special measures must be
1905 : taken to make the search successful, another function should be
1906 : added to the companion hook `org-execute-file-search-functions',
1907 : which see.
1909 : A function in this hook may also use `setq' to set the variable
1910 : `description' to provide a suggestion for the descriptive text to
1911 : be used for this link when it gets inserted into an Org buffer
1912 : with \[org-insert-link].
1914 ** org-src-mode-hook =nil=
1915    :PROPERTIES:
1916    :CUSTOM_ID: org-src-mode-hook
1917    :END:
1918 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
1919 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-mode-hook][Find modifications in git logs]]
1921 : Hook run after entering or leaving `org-src-mode'.
1922 : No problems result if this variable is not bound.
1923 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1925 ** org-export-filter-section-functions =nil=
1926    :PROPERTIES:
1927    :CUSTOM_ID: org-export-filter-section-functions
1928    :END:
1929 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1930 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-section-functions][Find modifications in git logs]]
1932 : List of functions applied to a transcoded section.
1933 : Each filter is called with three arguments: the transcoded data,
1934 : as a string, the back-end, as a symbol, and the communication
1935 : channel, as a plist.  It must return a string or nil.
1937 ** org-export-filter-verse-block-functions =nil=
1938    :PROPERTIES:
1939    :CUSTOM_ID: org-export-filter-verse-block-functions
1940    :END:
1941 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
1942 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-filter-verse-block-functions][Find modifications in git logs]]
1944 : List of functions applied to a transcoded verse block.
1945 : Each filter is called with three arguments: the transcoded data,
1946 : as a string, the back-end, as a symbol, and the communication
1947 : channel, as a plist.  It must return a string or nil.
1949 ** org-metadown-hook =nil=
1950    :PROPERTIES:
1951    :CUSTOM_ID: org-metadown-hook
1952    :END:
1953 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1954 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metadown-hook][Find modifications in git logs]]
1956 : Hook for functions attaching themselves to `M-down'.
1957 : See `org-ctrl-c-ctrl-c-hook' for more information.
1958 * Commands
1959   :PROPERTIES:
1960   :CUSTOM_ID: commands
1961   :END:
1963 ** org-agenda-previous-date-line =(&optional arg)=
1964    :PROPERTIES:
1965    :CUSTOM_ID: org-agenda-previous-date-line
1966    :END:
1968 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
1969 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-previous-date-line][Find modifications in git logs]]
1971 : Jump to the previous line indicating a date in agenda buffer.
1972 ** org-table-previous-field
1973    :PROPERTIES:
1974    :CUSTOM_ID: org-table-previous-field
1975    :END:
1977 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
1978 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-previous-field][Find modifications in git logs]]
1980 : Go to the previous field in the table.
1981 : Before doing so, re-align the table if necessary.
1982 ** org-time-stamp-inactive =(&optional arg)=
1983    :PROPERTIES:
1984    :CUSTOM_ID: org-time-stamp-inactive
1985    :END:
1987 - *Access:* ~C-c !, <menu-bar> <Org> <Dates and Scheduling> <Timestamp (inactive)>~
1988 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
1989 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-time-stamp-inactive][Find modifications in git logs]]
1991 : Insert an inactive time stamp.
1992 : An inactive time stamp is enclosed in square brackets instead of angle
1993 : brackets.  It is inactive in the sense that it does not trigger agenda entries,
1994 : does not link to the calendar and cannot be changed with the S-cursor keys.
1995 : So these are more for recording a certain time/date.
1996 ** org-edit-latex-environment
1997    :PROPERTIES:
1998    :CUSTOM_ID: org-edit-latex-environment
1999    :END:
2001 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
2002 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-latex-environment][Find modifications in git logs]]
2004 : Edit LaTeX environment at point.
2006 : The LaTeX environment is copied into a new buffer.  Major mode is
2007 : set to the one associated to "latex" in â€˜org-src-lang-modes’,
2008 : or to â€˜latex-mode’ if there is none.
2010 : When done, exit with â€˜C-c '’.  The edited text will then replace
2011 : the LaTeX environment in the Org mode buffer.
2012 ** org-table-move-column-left
2013    :PROPERTIES:
2014    :CUSTOM_ID: org-table-move-column-left
2015    :END:
2017 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2018 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-column-left][Find modifications in git logs]]
2020 : Move column to the left.
2021 ** org-switchb =(&optional arg)=
2022    :PROPERTIES:
2023    :CUSTOM_ID: org-switchb
2024    :END:
2026 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2027 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-switchb][Find modifications in git logs]]
2029 : Switch between Org buffers.
2031 : With â€˜C-u’ prefix, restrict available buffers to files.
2033 : With â€˜C-u C-u’ prefix, restrict available buffers to agenda files.
2034 ** org-do-demote
2035    :PROPERTIES:
2036    :CUSTOM_ID: org-do-demote
2037    :END:
2039 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2040 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-do-demote][Find modifications in git logs]]
2042 : Demote the current heading lower down the tree.
2043 : If the region is active in â€˜transient-mark-mode’, demote all
2044 : headings in the region.
2045 ** org-attach-reveal =(&optional if-exists)=
2046    :PROPERTIES:
2047    :CUSTOM_ID: org-attach-reveal
2048    :END:
2050 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
2051 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-reveal][Find modifications in git logs]]
2053 : Show the attachment directory of the current task.
2054 : This will attempt to use an external program to show the directory.
2055 ** org-lint--show-source
2056    :PROPERTIES:
2057    :CUSTOM_ID: org-lint--show-source
2058    :END:
2060 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
2061 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--show-source][Find modifications in git logs]]
2063 : Show source line that generated the report at point.
2064 ** org-toggle-archive-tag =(&optional find-done)=
2065    :PROPERTIES:
2066    :CUSTOM_ID: org-toggle-archive-tag
2067    :END:
2069 - *Access:* ~C-c C-x a, <menu-bar> <Org> <Archive> <Toggle ARCHIVE tag>~
2070 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
2071 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-archive-tag][Find modifications in git logs]]
2073 : Toggle the archive tag for the current headline.
2074 : With prefix ARG, check all children of current headline and offer tagging
2075 : the children that do not contain any open TODO items.
2076 ** org-plot/collect-options =(&optional params)=
2077    :PROPERTIES:
2078    :CUSTOM_ID: org-plot/collect-options
2079    :END:
2081 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-plot.el][org-plot.el]]
2082 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plot/collect-options][Find modifications in git logs]]
2084 : Collect options from an org-plot â€˜#+Plot:’ line.
2085 : Accepts an optional property list PARAMS, to which the options
2086 : will be added.  Returns the resulting property list.
2087 ** org-babel-lob-ingest =(&optional file)=
2088    :PROPERTIES:
2089    :CUSTOM_ID: org-babel-lob-ingest
2090    :END:
2092 - *Access:* ~C-c C-v i~
2093 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lob.el][ob-lob.el]]
2094 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lob-ingest][Find modifications in git logs]]
2096 : Add all named source blocks defined in FILE to â€˜org-babel-library-of-babel’.
2097 ** org-columns-delete
2098    :PROPERTIES:
2099    :CUSTOM_ID: org-columns-delete
2100    :END:
2102 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
2103 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-delete][Find modifications in git logs]]
2105 : Delete the column at point from columns view.
2106 ** org-beginning-of-item
2107    :PROPERTIES:
2108    :CUSTOM_ID: org-beginning-of-item
2109    :END:
2111 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
2112 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beginning-of-item][Find modifications in git logs]]
2114 : Go to the beginning of the current item.
2115 : Throw an error when not in a list.
2116 ** org-property-action
2117    :PROPERTIES:
2118    :CUSTOM_ID: org-property-action
2119    :END:
2121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-action][Find modifications in git logs]]
2124 : Do an action on properties.
2125 ** org-eww-copy-for-org-mode
2126    :PROPERTIES:
2127    :CUSTOM_ID: org-eww-copy-for-org-mode
2128    :END:
2130 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-eww.el][org-eww.el]]
2131 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-eww-copy-for-org-mode][Find modifications in git logs]]
2133 : Copy current buffer content or active region with â€˜org-mode’ style links.
2134 : This will encode â€˜link-title’ and â€˜link-location’ with
2135 : â€˜org-make-link-string’, and insert the transformed test into the kill ring,
2136 : so that it can be yanked into an Org mode buffer with links working correctly.
2138 : Further lines starting with a star get quoted with a comma to keep
2139 : the structure of the Org file.
2140 ** org-drag-line-backward =(arg)=
2141    :PROPERTIES:
2142    :CUSTOM_ID: org-drag-line-backward
2143    :END:
2145 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2146 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-drag-line-backward][Find modifications in git logs]]
2148 : Drag the line at point ARG lines backward.
2149 ** org-agenda-filter-by-top-headline =(strip)=
2150    :PROPERTIES:
2151    :CUSTOM_ID: org-agenda-filter-by-top-headline
2152    :END:
2154 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2155 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-by-top-headline][Find modifications in git logs]]
2157 : Keep only those lines that are descendants from the same top headline.
2158 : The top headline is that of the current line.
2159 ** org-cdlatex-mode =(&optional arg)=
2160    :PROPERTIES:
2161    :CUSTOM_ID: org-cdlatex-mode
2162    :END:
2164 - *Access:* ~<menu-bar> <Org> <LaTeX> <Org CDLaTeX mode>~
2165 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2166 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cdlatex-mode][Find modifications in git logs]]
2168 : Toggle the minor â€˜org-cdlatex-mode’.
2169 : This mode supports entering LaTeX environment and math in LaTeX fragments
2170 : in Org mode.
2171 : key             binding
2172 : ---             -------
2174 : C-c           Prefix Command
2175 : '             org-cdlatex-math-modify
2176 : ^ .. _                org-cdlatex-underscore-caret
2177 : `             cdlatex-math-symbol
2179 : C-c {         org-cdlatex-environment-indent
2182 ** org-babel-examplify-region =(beg end &optional results-switches inline)=
2183    :PROPERTIES:
2184    :CUSTOM_ID: org-babel-examplify-region
2185    :END:
2187 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
2188 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-examplify-region][Find modifications in git logs]]
2190 : Comment out region using the inline â€˜==’ or â€˜: â€™ org example quote.
2191 ** org-agenda-undo
2192    :PROPERTIES:
2193    :CUSTOM_ID: org-agenda-undo
2194    :END:
2196 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2197 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-undo][Find modifications in git logs]]
2199 : Undo a remote editing step in the agenda.
2200 : This undoes changes both in the agenda buffer and in the remote buffer
2201 : that have been changed along.
2202 ** org-end-of-item
2203    :PROPERTIES:
2204    :CUSTOM_ID: org-end-of-item
2205    :END:
2207 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
2208 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-end-of-item][Find modifications in git logs]]
2210 : Go to the end of the current item.
2211 : Throw an error when not in a list.
2212 ** org-timer-set-timer =(&optional opt)=
2213    :PROPERTIES:
2214    :CUSTOM_ID: org-timer-set-timer
2215    :END:
2217 - *Access:* ~C-c C-x ;~
2218 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
2219 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-set-timer][Find modifications in git logs]]
2221 : Prompt for a duration in minutes or hh:mm:ss and set a timer.
2223 : If â€˜org-timer-default-timer’ is not "0", suggest this value as
2224 : the default duration for the timer.  If a timer is already set,
2225 : prompt the user if she wants to replace it.
2227 : Called with a numeric prefix argument, use this numeric value as
2228 : the duration of the timer in minutes.
2230 : Called with a â€˜C-u’ prefix arguments, use â€˜org-timer-default-timer’
2231 : without prompting the user for a duration.
2233 : With two â€˜C-u’ prefix arguments, use â€˜org-timer-default-timer’
2234 : without prompting the user for a duration and automatically
2235 : replace any running timer.
2237 : By default, the timer duration will be set to the number of
2238 : minutes in the Effort property, if any.  You can ignore this by
2239 : using three â€˜C-u’ prefix arguments.
2240 ** org-md-export-as-markdown =(&optional async subtreep visible-only)=
2241    :PROPERTIES:
2242    :CUSTOM_ID: org-md-export-as-markdown
2243    :END:
2245 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
2246 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-export-as-markdown][Find modifications in git logs]]
2248 : Export current buffer to a Markdown buffer.
2250 : If narrowing is active in the current buffer, only export its
2251 : narrowed part.
2253 : If a region is active, export that region.
2255 : A non-nil optional argument ASYNC means the process should happen
2256 : asynchronously.  The resulting buffer should be accessible
2257 : through the â€˜org-export-stack’ interface.
2259 : When optional argument SUBTREEP is non-nil, export the sub-tree
2260 : at point, extracting information from the headline properties
2261 : first.
2263 : When optional argument VISIBLE-ONLY is non-nil, don’t export
2264 : contents of hidden elements.
2266 : Export is done in a buffer named "*Org MD Export*", which will
2267 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
2268 : non-nil.
2269 ** org-agenda-clockreport-mode
2270    :PROPERTIES:
2271    :CUSTOM_ID: org-agenda-clockreport-mode
2272    :END:
2274 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2275 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clockreport-mode][Find modifications in git logs]]
2277 : Toggle clocktable mode in an agenda buffer.
2278 ** org-shiftcontrolright
2279    :PROPERTIES:
2280    :CUSTOM_ID: org-shiftcontrolright
2281    :END:
2283 - *Access:* ~<C-S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword set>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword set>~
2284 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2285 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftcontrolright][Find modifications in git logs]]
2287 : Switch to next TODO set.
2288 ** org-schedule =(arg &optional time)=
2289    :PROPERTIES:
2290    :CUSTOM_ID: org-schedule
2291    :END:
2293 - *Access:* ~C-c C-s, <menu-bar> <Org> <Dates and Scheduling> <Schedule Item>~
2294 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2295 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-schedule][Find modifications in git logs]]
2297 : Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
2298 : With one universal prefix argument, remove any scheduling date from the item.
2299 : With two universal prefix arguments, prompt for a delay cookie.
2300 : With argument TIME, scheduled at the corresponding date.  TIME can
2301 : either be an Org date like "2011-07-24" or a delta like "+2d".
2302 ** org-agenda-set-effort
2303    :PROPERTIES:
2304    :CUSTOM_ID: org-agenda-set-effort
2305    :END:
2307 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2308 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-set-effort][Find modifications in git logs]]
2310 : Set the effort property for the current headline.
2311 ** org-table-fedit-abort
2312    :PROPERTIES:
2313    :CUSTOM_ID: org-table-fedit-abort
2314    :END:
2316 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2317 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-abort][Find modifications in git logs]]
2319 : Abort editing formulas, without installing the changes.
2320 ** org-agenda-toggle-deadlines
2321    :PROPERTIES:
2322    :CUSTOM_ID: org-agenda-toggle-deadlines
2323    :END:
2325 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2326 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-toggle-deadlines][Find modifications in git logs]]
2328 : Toggle inclusion of entries with a deadline in an agenda buffer.
2329 ** org-babel-screen-test
2330    :PROPERTIES:
2331    :CUSTOM_ID: org-babel-screen-test
2332    :END:
2334 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-screen.el][ob-screen.el]]
2335 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-screen-test][Find modifications in git logs]]
2337 : Test if the default setup works.
2338 : The terminal should shortly flicker.
2339 ** org-agenda-execute =(arg)=
2340    :PROPERTIES:
2341    :CUSTOM_ID: org-agenda-execute
2342    :END:
2344 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2345 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-execute][Find modifications in git logs]]
2347 : Execute another agenda command, keeping same window.
2348 : So this is just a shortcut for â€˜C-c a’, available
2349 : in the agenda.
2350 ** org-convert-to-odd-levels
2351    :PROPERTIES:
2352    :CUSTOM_ID: org-convert-to-odd-levels
2353    :END:
2355 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd levels>~
2356 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2357 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-convert-to-odd-levels][Find modifications in git logs]]
2359 : Convert an Org file with all levels allowed to one with odd levels.
2360 : This will leave level 1 alone, convert level 2 to level 3, level 3 to
2361 : level 5 etc.
2362 ** org-table-convert
2363    :PROPERTIES:
2364    :CUSTOM_ID: org-table-convert
2365    :END:
2367 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2368 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-convert][Find modifications in git logs]]
2370 : Convert from â€˜org-mode’ table to table.el and back.
2371 : Obviously, this only works within limits.  When an Org table is converted
2372 : to table.el, all horizontal separator lines get lost, because table.el uses
2373 : these as cell boundaries and has no notion of horizontal lines.  A table.el
2374 : table can be converted to an Org table only if it does not do row or column
2375 : spanning.  Multiline cells will become multiple cells.  Beware, Org mode
2376 : does not test if the table can be successfully converted - it blindly
2377 : applies a recipe that works for simple tables.
2378 ** org-table-create-or-convert-from-region =(arg)=
2379    :PROPERTIES:
2380    :CUSTOM_ID: org-table-create-or-convert-from-region
2381    :END:
2383 - *Access:* ~C-c |~
2384 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2385 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-create-or-convert-from-region][Find modifications in git logs]]
2387 : Convert region to table, or create an empty table.
2388 : If there is an active region, convert it to a table, using the function
2389 : â€˜org-table-convert-region’.  See the documentation of that function
2390 : to learn how the prefix argument is interpreted to determine the field
2391 : separator.
2392 : If there is no such region, create an empty table with â€˜org-table-create’.
2393 ** org-plot/gnuplot-to-grid-data =(table data-file params)=
2394    :PROPERTIES:
2395    :CUSTOM_ID: org-plot/gnuplot-to-grid-data
2396    :END:
2398 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-plot.el][org-plot.el]]
2399 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plot/gnuplot-to-grid-data][Find modifications in git logs]]
2401 : Export the data in TABLE to DATA-FILE for gnuplot.
2402 : This means in a format appropriate for grid plotting by gnuplot.
2403 : PARAMS specifies which columns of TABLE should be plotted as independent
2404 : and dependant variables.
2405 ** org-columns-set-tags-or-toggle =(&optional _arg)=
2406    :PROPERTIES:
2407    :CUSTOM_ID: org-columns-set-tags-or-toggle
2408    :END:
2410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
2411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-set-tags-or-toggle][Find modifications in git logs]]
2413 : Toggle checkbox at point, or set tags for current headline.
2414 ** org-table-delete-column
2415    :PROPERTIES:
2416    :CUSTOM_ID: org-table-delete-column
2417    :END:
2419 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2420 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-delete-column][Find modifications in git logs]]
2422 : Delete a column from the table.
2423 ** org-agenda-show-clocking-issues
2424    :PROPERTIES:
2425    :CUSTOM_ID: org-agenda-show-clocking-issues
2426    :END:
2428 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2429 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-clocking-issues][Find modifications in git logs]]
2431 : Add overlays, showing issues with clocking.
2432 : See also the user option â€˜org-agenda-clock-consistency-checks’.
2433 ** org-babel-tangle =(&optional arg target-file lang)=
2434    :PROPERTIES:
2435    :CUSTOM_ID: org-babel-tangle
2436    :END:
2438 - *Access:* ~C-c C-v t, C-c C-v C-t~
2439 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
2440 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle][Find modifications in git logs]]
2442 : Write code blocks to source-specific files.
2443 : Extract the bodies of all source code blocks from the current
2444 : file into their own source-specific files.
2445 : With one universal prefix argument, only tangle the block at point.
2446 : When two universal prefix arguments, only tangle blocks for the
2447 : tangle file of the block at point.
2448 : Optional argument TARGET-FILE can be used to specify a default
2449 : export file for all source blocks.  Optional argument LANG can be
2450 : used to limit the exported source code blocks by language.
2451 ** org-babel-shell-initialize
2452    :PROPERTIES:
2453    :CUSTOM_ID: org-babel-shell-initialize
2454    :END:
2456 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-shell.el][ob-shell.el]]
2457 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-shell-initialize][Find modifications in git logs]]
2459 : Define execution functions associated to shell names.
2460 : This function has to be called whenever â€˜org-babel-shell-names’
2461 : is modified outside the Customize interface.
2462 ** org-agenda-archive-default-with-confirmation
2463    :PROPERTIES:
2464    :CUSTOM_ID: org-agenda-archive-default-with-confirmation
2465    :END:
2467 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2468 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archive-default-with-confirmation][Find modifications in git logs]]
2470 : Archive the entry or subtree belonging to the current agenda entry.
2471 ** org-agenda-remove-restriction-lock =(&optional noupdate)=
2472    :PROPERTIES:
2473    :CUSTOM_ID: org-agenda-remove-restriction-lock
2474    :END:
2476 - *Access:* ~C-c C-x >~
2477 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2478 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-remove-restriction-lock][Find modifications in git logs]]
2480 : Remove the agenda restriction lock.
2481 ** org-icalendar-export-to-ics =(&optional async subtreep visible-only body-only)=
2482    :PROPERTIES:
2483    :CUSTOM_ID: org-icalendar-export-to-ics
2484    :END:
2486 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
2487 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-export-to-ics][Find modifications in git logs]]
2489 : Export current buffer to an iCalendar file.
2491 : If narrowing is active in the current buffer, only export its
2492 : narrowed part.
2494 : If a region is active, export that region.
2496 : A non-nil optional argument ASYNC means the process should happen
2497 : asynchronously.  The resulting file should be accessible through
2498 : the â€˜org-export-stack’ interface.
2500 : When optional argument SUBTREEP is non-nil, export the sub-tree
2501 : at point, extracting information from the headline properties
2502 : first.
2504 : When optional argument VISIBLE-ONLY is non-nil, don’t export
2505 : contents of hidden elements.
2507 : When optional argument BODY-ONLY is non-nil, only write code
2508 : between "BEGIN:VCALENDAR" and "END:VCALENDAR".
2510 : Return ICS file name.
2511 ** org-bibtex =(filename)=
2512    :PROPERTIES:
2513    :CUSTOM_ID: org-bibtex
2514    :END:
2516 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
2517 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex][Find modifications in git logs]]
2519 : Export each headline in the current file to a bibtex entry.
2520 : Headlines are exported using â€˜org-bibtex-headline’.
2521 ** org-table-blank-field
2522    :PROPERTIES:
2523    :CUSTOM_ID: org-table-blank-field
2524    :END:
2526 - *Access:* ~C-c SPC, <menu-bar> <Tbl> <Blank Field>~
2527 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2528 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-blank-field][Find modifications in git logs]]
2530 : Blank the current table field or active region.
2531 ** org-src-associate-babel-session =(info)=
2532    :PROPERTIES:
2533    :CUSTOM_ID: org-src-associate-babel-session
2534    :END:
2536 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
2537 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-associate-babel-session][Find modifications in git logs]]
2539 : Associate edit buffer with comint session.
2540 ** org-ctrl-c-minus
2541    :PROPERTIES:
2542    :CUSTOM_ID: org-ctrl-c-minus
2543    :END:
2545 - *Access:* ~C-c -, <menu-bar> <Tbl> <Row> <Insert Hline>~
2546 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2547 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-minus][Find modifications in git logs]]
2549 : Insert separator line in table or modify bullet status of line.
2550 : Also turns a plain line or a region of lines into list items.
2551 : Calls â€˜org-table-insert-hline’, â€˜org-toggle-item’, or
2552 : â€˜org-cycle-list-bullet’, depending on context.
2553 ** org-update-checkbox-count =(&optional all)=
2554    :PROPERTIES:
2555    :CUSTOM_ID: org-update-checkbox-count
2556    :END:
2558 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
2559 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-update-checkbox-count][Find modifications in git logs]]
2561 : Update the checkbox statistics in the current section.
2563 : This will find all statistic cookies like [57%] and [6/12] and
2564 : update them with the current numbers.
2566 : With optional prefix argument ALL, do this for the whole buffer.
2567 ** org-agenda-redo =(&optional all)=
2568    :PROPERTIES:
2569    :CUSTOM_ID: org-agenda-redo
2570    :END:
2572 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2573 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-redo][Find modifications in git logs]]
2575 : Rebuild possibly ALL agenda view(s) in the current buffer.
2576 ** org-agenda-show-tags
2577    :PROPERTIES:
2578    :CUSTOM_ID: org-agenda-show-tags
2579    :END:
2581 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2582 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-tags][Find modifications in git logs]]
2584 : Show the tags applicable to the current item.
2585 ** org-agenda-manipulate-query-add-re
2586    :PROPERTIES:
2587    :CUSTOM_ID: org-agenda-manipulate-query-add-re
2588    :END:
2590 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2591 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-manipulate-query-add-re][Find modifications in git logs]]
2593 : Manipulate the query by adding a search regexp with positive selection.
2594 : Positive selection means the regexp must match for selection of an entry.
2595 ** org-attach-sync
2596    :PROPERTIES:
2597    :CUSTOM_ID: org-attach-sync
2598    :END:
2600 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
2601 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-sync][Find modifications in git logs]]
2603 : Synchronize the current tasks with its attachments.
2604 : This can be used after files have been added externally.
2605 ** org-babel-view-src-block-info
2606    :PROPERTIES:
2607    :CUSTOM_ID: org-babel-view-src-block-info
2608    :END:
2610 - *Access:* ~C-c C-v I, C-c C-v TAB~
2611 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
2612 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-view-src-block-info][Find modifications in git logs]]
2614 : Display information on the current source block.
2615 : This includes header arguments, language and name, and is largely
2616 : a window into the â€˜org-babel-get-src-block-info’ function.
2617 ** org-table-current-column
2618    :PROPERTIES:
2619    :CUSTOM_ID: org-table-current-column
2620    :END:
2622 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Which Column?>~
2623 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2624 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-current-column][Find modifications in git logs]]
2626 : Find out which column we are in.
2627 ** org-toggle-tags-groups
2628    :PROPERTIES:
2629    :CUSTOM_ID: org-toggle-tags-groups
2630    :END:
2632 - *Access:* ~C-c C-x q~
2633 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2634 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-tags-groups][Find modifications in git logs]]
2636 : Toggle support for group tags.
2637 : Support for group tags is controlled by the option
2638 : â€˜org-group-tags’, which is non-nil by default.
2639 ** org-agenda-quit
2640    :PROPERTIES:
2641    :CUSTOM_ID: org-agenda-quit
2642    :END:
2644 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2645 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-quit][Find modifications in git logs]]
2647 : Exit the agenda.
2649 : When â€˜org-agenda-sticky’ is non-nil, bury the agenda buffer
2650 : instead of killing it.
2652 : When â€˜org-agenda-restore-windows-after-quit’ is non-nil, restore
2653 : the pre-agenda window configuration.
2655 : When column view is active, exit column view instead of the
2656 : agenda.
2657 ** org-timer-stop
2658    :PROPERTIES:
2659    :CUSTOM_ID: org-timer-stop
2660    :END:
2662 - *Access:* ~C-c C-x _~
2663 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
2664 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-stop][Find modifications in git logs]]
2666 : Stop the relative or countdown timer.
2667 ** org-babel-insert-header-arg =(&optional header-arg value)=
2668    :PROPERTIES:
2669    :CUSTOM_ID: org-babel-insert-header-arg
2670    :END:
2672 - *Access:* ~C-c C-v j, C-c C-v C-j~
2673 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
2674 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-insert-header-arg][Find modifications in git logs]]
2676 : Insert a header argument selecting from lists of common args and values.
2677 ** org-clock-cancel
2678    :PROPERTIES:
2679    :CUSTOM_ID: org-clock-cancel
2680    :END:
2682 - *Access:* ~C-c C-x C-q, <menu-bar> <Org> <Logging work> <Clock cancel>~
2683 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
2684 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-cancel][Find modifications in git logs]]
2686 : Cancel the running clock by removing the start timestamp.
2687 ** org-agenda-log-mode =(&optional special)=
2688    :PROPERTIES:
2689    :CUSTOM_ID: org-agenda-log-mode
2690    :END:
2692 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2693 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-log-mode][Find modifications in git logs]]
2695 : Toggle log mode in an agenda buffer.
2697 : With argument SPECIAL, show all possible log items, not only the ones
2698 : configured in â€˜org-agenda-log-mode-items’.
2700 : With a â€˜C-u C-u’ prefix, show *only* log items, nothing else.
2701 ** org-reset-checkbox-state-subtree
2702    :PROPERTIES:
2703    :CUSTOM_ID: org-reset-checkbox-state-subtree
2704    :END:
2706 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
2707 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reset-checkbox-state-subtree][Find modifications in git logs]]
2709 : Reset all checkboxes in an entry subtree.
2710 ** org-property-next-allowed-value =(&optional previous)=
2711    :PROPERTIES:
2712    :CUSTOM_ID: org-property-next-allowed-value
2713    :END:
2715 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2716 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-next-allowed-value][Find modifications in git logs]]
2718 : Switch to the next allowed value for this property.
2719 ** orgtbl-insert-radio-table
2720    :PROPERTIES:
2721    :CUSTOM_ID: orgtbl-insert-radio-table
2722    :END:
2724 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2725 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-insert-radio-table][Find modifications in git logs]]
2727 : Insert a radio table template appropriate for this major mode.
2728 ** org-table-insert-hline =(&optional above)=
2729    :PROPERTIES:
2730    :CUSTOM_ID: org-table-insert-hline
2731    :END:
2733 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2734 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-insert-hline][Find modifications in git logs]]
2736 : Insert a horizontal-line below the current line into the table.
2737 : With prefix ABOVE, insert above the current line.
2738 ** org-todo =(&optional arg)=
2739    :PROPERTIES:
2740    :CUSTOM_ID: org-todo
2741    :END:
2743 - *Access:* ~C-c C-t, <menu-bar> <Org> <TODO Lists> <TODO/DONE/->~
2744 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2745 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo][Find modifications in git logs]]
2747 : Change the TODO state of an item.
2749 : The state of an item is given by a keyword at the start of the heading,
2750 : like
2751 :      *** TODO Write paper
2752 :      *** DONE Call mom
2754 : The different keywords are specified in the variable â€˜org-todo-keywords’.
2755 : By default the available states are "TODO" and "DONE".  So, for this
2756 : example: when the item starts with TODO, it is changed to DONE.
2757 : When it starts with DONE, the DONE is removed.  And when neither TODO nor
2758 : DONE are present, add TODO at the beginning of the heading.
2760 : With â€˜C-u’ prefix ARG, use completion to determine the new state.
2761 : With numeric prefix ARG, switch to that state.
2762 : With a â€˜C-u C-u’ prefix, switch to the next set of TODO keywords (nextset).
2763 : With a â€˜C-u C-u C-u’ prefix, circumvent any state blocking.
2764 : With a numeric prefix arg of 0, inhibit note taking for the change.
2765 : With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
2767 : When called through ELisp, arg is also interpreted in the following way:
2768 : â€˜none’        -> empty state
2769 : ""            -> switch to empty state
2770 : â€˜done’        -> switch to DONE
2771 : â€˜nextset’     -> switch to the next set of keywords
2772 : â€˜previousset’ -> switch to the previous set of keywords
2773 : "WAITING"     -> switch to the specified keyword, but only if it
2774 :                  really is a member of â€˜org-todo-keywords’.
2775 ** org-set-tags-to =(data)=
2776    :PROPERTIES:
2777    :CUSTOM_ID: org-set-tags-to
2778    :END:
2780 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2781 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-tags-to][Find modifications in git logs]]
2783 : Set the tags of the current entry to DATA, replacing the current tags.
2784 : DATA may be a tags string like :aa:bb:cc:, or a list of tags.
2785 : If DATA is nil or the empty string, any tags will be removed.
2786 ** org-agenda-goto-date =(span)=
2787    :PROPERTIES:
2788    :CUSTOM_ID: org-agenda-goto-date
2789    :END:
2791 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2792 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-goto-date][Find modifications in git logs]]
2794 : Jump to DATE in agenda.
2795 ** org-preview-latex-fragment =(&optional arg)=
2796    :PROPERTIES:
2797    :CUSTOM_ID: org-preview-latex-fragment
2798    :END:
2800 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
2801 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-preview-latex-fragment][Find modifications in git logs]]
2803 : Preview the LaTeX fragment at point, or all locally or globally.
2805 : If the cursor is on a LaTeX fragment, create the image and overlay
2806 : it over the source code, if there is none.  Remove it otherwise.
2807 : If there is no fragment at point, display all fragments in the
2808 : current section.
2810 : With prefix ARG, preview or clear image for all fragments in the
2811 : current subtree or in the whole buffer when used before the first
2812 : headline.  With a prefix ARG â€˜C-u C-u’ preview or clear images
2813 : for all fragments in the buffer.
2814 ** org-table-fedit-menu =(event)=
2815    :PROPERTIES:
2816    :CUSTOM_ID: org-table-fedit-menu
2817    :END:
2819 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2820 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-menu][Find modifications in git logs]]
2822 : Org Edit Formulas Menu
2823 ** org-table-move-row-down
2824    :PROPERTIES:
2825    :CUSTOM_ID: org-table-move-row-down
2826    :END:
2828 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
2829 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-row-down][Find modifications in git logs]]
2831 : Move table row down.
2832 ** org-archive-set-tag
2833    :PROPERTIES:
2834    :CUSTOM_ID: org-archive-set-tag
2835    :END:
2837 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
2838 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-set-tag][Find modifications in git logs]]
2840 : Set the ARCHIVE tag.
2841 ** org-info =(&optional node)=
2842    :PROPERTIES:
2843    :CUSTOM_ID: org-info
2844    :END:
2846 - *Access:* ~<menu-bar> <Org> <Documentation> <Info Documentation>~
2847 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2848 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-info][Find modifications in git logs]]
2850 : Read documentation for Org in the info system.
2851 : With optional NODE, go directly to that node.
2852 ** org-goto-right
2853    :PROPERTIES:
2854    :CUSTOM_ID: org-goto-right
2855    :END:
2857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-right][Find modifications in git logs]]
2860 : Finish â€˜org-goto’ by going to the new location.
2861 ** org-sort-list =(&optional with-case sorting-type getkey-func compare-func interactive?)=
2862    :PROPERTIES:
2863    :CUSTOM_ID: org-sort-list
2864    :END:
2866 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
2867 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sort-list][Find modifications in git logs]]
2869 : Sort list items.
2870 : The cursor may be at any item of the list that should be sorted.
2871 : Sublists are not sorted.  Checkboxes, if any, are ignored.
2873 : Sorting can be alphabetically, numerically, by date/time as given
2874 : by a time stamp, by a property or by priority.
2876 : Comparing entries ignores case by default.  However, with an
2877 : optional argument WITH-CASE, the sorting considers case as well.
2879 : The command prompts for the sorting type unless it has been given
2880 : to the function through the SORTING-TYPE argument, which needs to
2881 : be a character, (?n ?N ?a ?A ?t ?T ?f ?F ?x ?X).  Here is the
2882 : detailed meaning of each character:
2884 : n   Numerically, by converting the beginning of the item to a number.
2885 : a   Alphabetically.  Only the first line of item is checked.
2886 : t   By date/time, either the first active time stamp in the entry, if
2887 :     any, or by the first inactive one.  In a timer list, sort the timers.
2888 : x   By "checked" status of a check list.
2890 : Capital letters will reverse the sort order.
2892 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
2893 : a function to be called with point at the beginning of the
2894 : record.  It must return a value that is compatible with COMPARE-FUNC,
2895 : the function used to compare entries.
2897 : Sorting is done against the visible part of the headlines, it
2898 : ignores hidden links.
2900 : A non-nil value for INTERACTIVE? is used to signal that this
2901 : function is being called interactively.
2902 ** org-agenda-clock-in =(&optional arg)=
2903    :PROPERTIES:
2904    :CUSTOM_ID: org-agenda-clock-in
2905    :END:
2907 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2908 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clock-in][Find modifications in git logs]]
2910 : Start the clock on the currently selected item.
2911 ** org-metaup =(&optional _arg)=
2912    :PROPERTIES:
2913    :CUSTOM_ID: org-metaup
2914    :END:
2916 - *Access:* ~<M-up>, <menu-bar> <Org> <Edit Structure> <Move Subtree Up>, <menu-bar> <Tbl> <Row> <Move Row Up>~
2917 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2918 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaup][Find modifications in git logs]]
2920 : Move subtree up or move table row up.
2921 : Calls â€˜org-move-subtree-up’ or â€˜org-table-move-row’ or
2922 : â€˜org-move-item-up’, depending on context.  See the individual commands
2923 : for more information.
2924 ** org-indent-line
2925    :PROPERTIES:
2926    :CUSTOM_ID: org-indent-line
2927    :END:
2929 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
2930 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-line][Find modifications in git logs]]
2932 : Indent line depending on context.
2934 : Indentation is done according to the following rules:
2936 :   - Footnote definitions, diary sexps, headlines and inline tasks
2937 :     have to start at column 0.
2939 :   - On the very first line of an element, consider, in order, the
2940 :     next rules until one matches:
2942 :     1. If there’s a sibling element before, ignoring footnote
2943 :        definitions and inline tasks, indent like its first line.
2945 :     2. If element has a parent, indent like its contents.  More
2946 :        precisely, if parent is an item, indent after the
2947 :        description part, if any, or the bullet (see
2948 :        â€˜org-list-description-max-indent’).  Else, indent like
2949 :        parent’s first line.
2951 :     3. Otherwise, indent relatively to current level, if
2952 :        â€˜org-adapt-indentation’ is non-nil, or to left margin.
2954 :   - On a blank line at the end of an element, indent according to
2955 :     the type of the element.  More precisely
2957 :     1. If element is a plain list, an item, or a footnote
2958 :        definition, indent like the very last element within.
2960 :     2. If element is a paragraph, indent like its last non blank
2961 :        line.
2963 :     3. Otherwise, indent like its very first line.
2965 :   - In the code part of a source block, use language major mode
2966 :     to indent current line if â€˜org-src-tab-acts-natively’ is
2967 :     non-nil.  If it is nil, do nothing.
2969 :   - Otherwise, indent like the first non-blank line above.
2971 : The function doesn’t indent an item as it could break the whole
2972 : list structure.  Instead, use â€˜<M-S-left>’ or â€˜<M-S-right>’.
2974 : Also align node properties according to â€˜org-property-format’.
2975 ** org-agenda-show-the-flagging-note
2976    :PROPERTIES:
2977    :CUSTOM_ID: org-agenda-show-the-flagging-note
2978    :END:
2980 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2981 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-the-flagging-note][Find modifications in git logs]]
2983 : Display the flagging note in the other window.
2984 : When called a second time in direct sequence, offer to remove the FLAGGING
2985 : tag and (if present) the flagging note.
2986 ** org-agenda-entry-text-show
2987    :PROPERTIES:
2988    :CUSTOM_ID: org-agenda-entry-text-show
2989    :END:
2991 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
2992 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-show][Find modifications in git logs]]
2994 : Add entry context for all agenda lines.
2995 ** org-date-from-calendar
2996    :PROPERTIES:
2997    :CUSTOM_ID: org-date-from-calendar
2998    :END:
3000 - *Access:* ~C-c <, <menu-bar> <Org> <Dates and Scheduling> <Date from Calendar>~
3001 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3002 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-date-from-calendar][Find modifications in git logs]]
3004 : Insert time stamp corresponding to cursor date in *Calendar* buffer.
3005 : If there is already a time stamp at the cursor position, update it.
3006 ** org-insert-drawer =(&optional arg drawer)=
3007    :PROPERTIES:
3008    :CUSTOM_ID: org-insert-drawer
3009    :END:
3011 - *Access:* ~C-c C-x d~
3012 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3013 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-drawer][Find modifications in git logs]]
3015 : Insert a drawer at point.
3017 : When optional argument ARG is non-nil, insert a property drawer.
3019 : Optional argument DRAWER, when non-nil, is a string representing
3020 : drawer’s name.  Otherwise, the user is prompted for a name.
3022 : If a region is active, insert the drawer around that region
3023 : instead.
3025 : Point is left between drawer’s boundaries.
3026 ** org-ctags-find-tag =(name)=
3027    :PROPERTIES:
3028    :CUSTOM_ID: org-ctags-find-tag
3029    :END:
3031 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
3032 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-find-tag][Find modifications in git logs]]
3034 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
3035 : Look for a tag called â€˜NAME’ in the current TAGS table.  If it is found,
3036 : visit the file and location where the tag is found.
3037 ** org-agenda-year-view =(&optional year)=
3038    :PROPERTIES:
3039    :CUSTOM_ID: org-agenda-year-view
3040    :END:
3042 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3043 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-year-view][Find modifications in git logs]]
3045 : Switch to yearly view for agenda.
3046 : With argument YEAR, switch to that year.  Years ranging from 70
3047 : years ago to 30 years in the future can also be written as
3048 : 2-digit years.
3049 ** org-babel-result-hide-all
3050    :PROPERTIES:
3051    :CUSTOM_ID: org-babel-result-hide-all
3052    :END:
3054 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
3055 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-result-hide-all][Find modifications in git logs]]
3057 : Fold all results in the current buffer.
3058 ** org-columns-open-link =(&optional arg)=
3059    :PROPERTIES:
3060    :CUSTOM_ID: org-columns-open-link
3061    :END:
3063 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
3064 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-open-link][Find modifications in git logs]]
3067 ** org-add-note
3068    :PROPERTIES:
3069    :CUSTOM_ID: org-add-note
3070    :END:
3072 - *Access:* ~C-c C-z~
3073 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3074 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-add-note][Find modifications in git logs]]
3076 : Add a note to the current entry.
3077 : This is done in the same way as adding a state change note.
3078 ** org-table-fedit-lisp-indent
3079    :PROPERTIES:
3080    :CUSTOM_ID: org-table-fedit-lisp-indent
3081    :END:
3083 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
3084 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-lisp-indent][Find modifications in git logs]]
3086 : Pretty-print and re-indent Lisp expressions in the Formula Editor.
3087 ** org-agenda-set-restriction-lock =(&optional type)=
3088    :PROPERTIES:
3089    :CUSTOM_ID: org-agenda-set-restriction-lock
3090    :END:
3092 - *Access:* ~<menu-bar> <Org> <Set Restriction Lock>, C-c C-x <~
3093 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3094 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-set-restriction-lock][Find modifications in git logs]]
3096 : Set restriction lock for agenda, to current subtree or file.
3097 : Restriction will be the file if TYPE is â€˜file’, or if type is the
3098 : universal prefix '(4), or if the cursor is before the first headline
3099 : in the file.  Otherwise, restriction will be to the current subtree.
3100 ** org-agenda-todo-yesterday =(&optional arg)=
3101    :PROPERTIES:
3102    :CUSTOM_ID: org-agenda-todo-yesterday
3103    :END:
3105 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3106 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-yesterday][Find modifications in git logs]]
3108 : Like â€˜org-agenda-todo’ but the time of change will be 23:59 of yesterday.
3109 ** org-agenda-date-later =(arg &optional what)=
3110    :PROPERTIES:
3111    :CUSTOM_ID: org-agenda-date-later
3112    :END:
3114 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3115 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-later][Find modifications in git logs]]
3117 : Change the date of this item to ARG day(s) later.
3118 ** org-cycle-list-bullet =(&optional which)=
3119    :PROPERTIES:
3120    :CUSTOM_ID: org-cycle-list-bullet
3121    :END:
3123 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
3124 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-list-bullet][Find modifications in git logs]]
3126 : Cycle through the different itemize/enumerate bullets.
3127 : This cycle the entire list level through the sequence:
3129 :    â€˜-’  ->  â€˜+’  ->  â€˜*’  ->  â€˜1.’  ->  â€˜1)’
3131 : If WHICH is a valid string, use that as the new bullet.  If WHICH
3132 : is an integer, 0 means â€˜-’, 1 means â€˜+’ etc.  If WHICH is
3133 : â€˜previous’, cycle backwards.
3134 ** org-beamer-select-environment
3135    :PROPERTIES:
3136    :CUSTOM_ID: org-beamer-select-environment
3137    :END:
3139 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
3140 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-select-environment][Find modifications in git logs]]
3142 : Select the environment to be used by beamer for this entry.
3143 : While this uses (for convenience) a tag selection interface, the
3144 : result of this command will be that the BEAMER_env *property* of
3145 : the entry is set.
3147 : In addition to this, the command will also set a tag as a visual
3148 : aid, but the tag does not have any semantic meaning.
3149 ** org-babel-lilypond-toggle-html-generation
3150    :PROPERTIES:
3151    :CUSTOM_ID: org-babel-lilypond-toggle-html-generation
3152    :END:
3154 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
3155 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-html-generation][Find modifications in git logs]]
3157 : Toggle whether html will be generated by compilation.
3158 ** org-bibtex-read-file =(file)=
3159    :PROPERTIES:
3160    :CUSTOM_ID: org-bibtex-read-file
3161    :END:
3163 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
3164 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-read-file][Find modifications in git logs]]
3166 : Read FILE with â€˜org-bibtex-read-buffer’.
3167 ** org-hide-block-toggle =(&optional force)=
3168    :PROPERTIES:
3169    :CUSTOM_ID: org-hide-block-toggle
3170    :END:
3172 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3173 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-block-toggle][Find modifications in git logs]]
3175 : Toggle the visibility of the current block.
3176 : When optional argument FORCE is â€˜off’, make block visible.  If it
3177 : is non-nil, hide it unconditionally.  Throw an error when not at
3178 : a block.  Return a non-nil value when toggling is successful.
3179 ** orgstruct-mode =(&optional arg)=
3180    :PROPERTIES:
3181    :CUSTOM_ID: orgstruct-mode
3182    :END:
3184 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3185 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct-mode][Find modifications in git logs]]
3187 : Toggle the minor mode â€˜orgstruct-mode’.
3188 : This mode is for using Org mode structure commands in other
3189 : modes.  The following keys behave as if Org mode were active, if
3190 : the cursor is on a headline, or on a plain list item (both as
3191 : defined by Org mode).
3192 ** org-timer-show-remaining-time
3193    :PROPERTIES:
3194    :CUSTOM_ID: org-timer-show-remaining-time
3195    :END:
3197 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
3198 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-show-remaining-time][Find modifications in git logs]]
3200 : Display the remaining time before the timer ends.
3201 ** org-bibtex-import-from-file =(file)=
3202    :PROPERTIES:
3203    :CUSTOM_ID: org-bibtex-import-from-file
3204    :END:
3206 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
3207 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-import-from-file][Find modifications in git logs]]
3209 : Read bibtex entries from FILE and insert as Org headlines after point.
3210 ** org-toggle-custom-properties-visibility
3211    :PROPERTIES:
3212    :CUSTOM_ID: org-toggle-custom-properties-visibility
3213    :END:
3215 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3216 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-custom-properties-visibility][Find modifications in git logs]]
3218 : Display or hide properties in â€˜org-custom-properties’.
3219 ** org-overview
3220    :PROPERTIES:
3221    :CUSTOM_ID: org-overview
3222    :END:
3224 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3225 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-overview][Find modifications in git logs]]
3227 : Switch to overview mode, showing only top-level headlines.
3228 : This shows all headlines with a level equal or greater than the level
3229 : of the first headline in the buffer.  This is important, because if the
3230 : first headline is not level one, then (hide-sublevels 1) gives confusing
3231 : results.
3232 ** org-agenda-date-earlier =(arg &optional what)=
3233    :PROPERTIES:
3234    :CUSTOM_ID: org-agenda-date-earlier
3235    :END:
3237 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3238 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-earlier][Find modifications in git logs]]
3240 : Change the date of this item to ARG day(s) earlier.
3241 ** org-show-entry
3242    :PROPERTIES:
3243    :CUSTOM_ID: org-show-entry
3244    :END:
3246 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3247 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-entry][Find modifications in git logs]]
3249 : Show the body directly following this heading.
3250 : Show the heading too, if it is currently invisible.
3251 ** org-babel-execute-src-block-maybe
3252    :PROPERTIES:
3253    :CUSTOM_ID: org-babel-execute-src-block-maybe
3254    :END:
3256 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
3257 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-execute-src-block-maybe][Find modifications in git logs]]
3259 : Conditionally execute a source block.
3260 : Detect if this is context for a Babel src-block and if so
3261 : then run â€˜org-babel-execute-src-block’.
3262 ** org-beamer-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
3263    :PROPERTIES:
3264    :CUSTOM_ID: org-beamer-export-as-latex
3265    :END:
3267 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
3268 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-export-as-latex][Find modifications in git logs]]
3270 : Export current buffer as a Beamer buffer.
3272 : If narrowing is active in the current buffer, only export its
3273 : narrowed part.
3275 : If a region is active, export that region.
3277 : A non-nil optional argument ASYNC means the process should happen
3278 : asynchronously.  The resulting buffer should be accessible
3279 : through the â€˜org-export-stack’ interface.
3281 : When optional argument SUBTREEP is non-nil, export the sub-tree
3282 : at point, extracting information from the headline properties
3283 : first.
3285 : When optional argument VISIBLE-ONLY is non-nil, don’t export
3286 : contents of hidden elements.
3288 : When optional argument BODY-ONLY is non-nil, only write code
3289 : between "\begin{document}" and "\end{document}".
3291 : EXT-PLIST, when provided, is a property list with external
3292 : parameters overriding Org default settings, but still inferior to
3293 : file-local settings.
3295 : Export is done in a buffer named "*Org BEAMER Export*", which
3296 : will be displayed when â€˜org-export-show-temporary-export-buffer’
3297 : is non-nil.
3298 ** orgtbl-send-table =(&optional maybe)=
3299    :PROPERTIES:
3300    :CUSTOM_ID: orgtbl-send-table
3301    :END:
3303 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
3304 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-send-table][Find modifications in git logs]]
3306 : Send a transformed version of table at point to the receiver position.
3307 : With argument MAYBE, fail quietly if no transformation is defined
3308 : for this table.
3309 ** org-toggle-time-stamp-overlays
3310    :PROPERTIES:
3311    :CUSTOM_ID: org-toggle-time-stamp-overlays
3312    :END:
3314 - *Access:* ~C-c C-x C-t, <menu-bar> <Org> <Dates and Scheduling> <Custom time format>~
3315 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3316 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-time-stamp-overlays][Find modifications in git logs]]
3318 : Toggle the use of custom time stamp formats.
3319 ** org-agenda-priority-up
3320    :PROPERTIES:
3321    :CUSTOM_ID: org-agenda-priority-up
3322    :END:
3324 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3325 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-priority-up][Find modifications in git logs]]
3327 : Increase the priority of line at point, also in Org file.
3328 ** org-edit-src-code =(&optional code edit-buffer-name)=
3329    :PROPERTIES:
3330    :CUSTOM_ID: org-edit-src-code
3331    :END:
3333 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
3334 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-code][Find modifications in git logs]]
3336 : Edit the source or example block at point.
3338 : The code is copied to a separate buffer and the appropriate mode
3339 : is turned on.  When done, exit with â€˜C-c '’.  This will remove the
3340 : original code in the Org buffer, and replace it with the edited
3341 : version.  See â€˜org-src-window-setup’ to configure the display of
3342 : windows containing the Org buffer and the code buffer.
3344 : When optional argument CODE is a string, edit it in a dedicated
3345 : buffer instead.
3347 : When optional argument EDIT-BUFFER-NAME is non-nil, use it as the
3348 : name of the sub-editing buffer.
3349 ** org-org-menu =(event)=
3350    :PROPERTIES:
3351    :CUSTOM_ID: org-org-menu
3352    :END:
3354 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3355 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-org-menu][Find modifications in git logs]]
3357 : Org menu
3358 ** org-show-children =(&optional level)=
3359    :PROPERTIES:
3360    :CUSTOM_ID: org-show-children
3361    :END:
3363 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3364 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-children][Find modifications in git logs]]
3366 : Show all direct subheadings of this heading.
3367 : Prefix arg LEVEL is how many levels below the current level
3368 : should be shown.  Default is enough to cause the following
3369 : heading to appear.
3370 ** org-ctrl-c-star
3371    :PROPERTIES:
3372    :CUSTOM_ID: org-ctrl-c-star
3373    :END:
3375 - *Access:* ~C-c *~
3376 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3377 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-star][Find modifications in git logs]]
3379 : Compute table, or change heading status of lines.
3380 : Calls â€˜org-table-recalculate’ or â€˜org-toggle-heading’,
3381 : depending on context.
3382 ** org-self-insert-command =(N)=
3383    :PROPERTIES:
3384    :CUSTOM_ID: org-self-insert-command
3385    :END:
3387 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3388 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-self-insert-command][Find modifications in git logs]]
3390 : Like â€˜self-insert-command’, use overwrite-mode for whitespace in tables.
3391 : If the cursor is in a table looking at whitespace, the whitespace is
3392 : overwritten, and the table is not marked as requiring realignment.
3393 ** org-agenda-goto-calendar
3394    :PROPERTIES:
3395    :CUSTOM_ID: org-agenda-goto-calendar
3396    :END:
3398 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3399 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-goto-calendar][Find modifications in git logs]]
3401 : Open the Emacs calendar with the date at the cursor.
3402 ** org-backward-element
3403    :PROPERTIES:
3404    :CUSTOM_ID: org-backward-element
3405    :END:
3407 - *Access:* ~M-{~
3408 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3409 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-backward-element][Find modifications in git logs]]
3411 : Move backward by one element.
3412 : Move to the previous element at the same level, when possible.
3413 ** org-mobile-apply =(&optional beg end)=
3414    :PROPERTIES:
3415    :CUSTOM_ID: org-mobile-apply
3416    :END:
3418 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
3419 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-apply][Find modifications in git logs]]
3421 : Apply all change requests in the current buffer.
3422 : If BEG and END are given, only do this in that region.
3423 ** org-speed-move-safe =(cmd)=
3424    :PROPERTIES:
3425    :CUSTOM_ID: org-speed-move-safe
3426    :END:
3428 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3429 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-speed-move-safe][Find modifications in git logs]]
3431 : Execute CMD, but make sure that the cursor always ends up in a headline.
3432 : If not, return to the original position and throw an error.
3433 ** org-html-export-as-html =(&optional async subtreep visible-only body-only ext-plist)=
3434    :PROPERTIES:
3435    :CUSTOM_ID: org-html-export-as-html
3436    :END:
3438 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
3439 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-export-as-html][Find modifications in git logs]]
3441 : Export current buffer to an HTML buffer.
3443 : If narrowing is active in the current buffer, only export its
3444 : narrowed part.
3446 : If a region is active, export that region.
3448 : A non-nil optional argument ASYNC means the process should happen
3449 : asynchronously.  The resulting buffer should be accessible
3450 : through the â€˜org-export-stack’ interface.
3452 : When optional argument SUBTREEP is non-nil, export the sub-tree
3453 : at point, extracting information from the headline properties
3454 : first.
3456 : When optional argument VISIBLE-ONLY is non-nil, don’t export
3457 : contents of hidden elements.
3459 : When optional argument BODY-ONLY is non-nil, only write code
3460 : between "<body>" and "</body>" tags.
3462 : EXT-PLIST, when provided, is a property list with external
3463 : parameters overriding Org default settings, but still inferior to
3464 : file-local settings.
3466 : Export is done in a buffer named "*Org HTML Export*", which
3467 : will be displayed when â€˜org-export-show-temporary-export-buffer’
3468 : is non-nil.
3469 ** org-agenda-day-view =(&optional day-of-month)=
3470    :PROPERTIES:
3471    :CUSTOM_ID: org-agenda-day-view
3472    :END:
3474 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3475 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-day-view][Find modifications in git logs]]
3477 : Switch to daily view for agenda.
3478 : With argument DAY-OF-MONTH, switch to that day of the month.
3479 ** org-refile =(&optional arg default-buffer rfloc msg)=
3480    :PROPERTIES:
3481    :CUSTOM_ID: org-refile
3482    :END:
3484 - *Access:* ~C-c C-w, <menu-bar> <Org> <Edit Structure> <Refile Subtree>~
3485 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3486 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile][Find modifications in git logs]]
3488 : Move the entry or entries at point to another heading.
3490 : The list of target headings is compiled using the information in
3491 : â€˜org-refile-targets’, which see.
3493 : At the target location, the entry is filed as a subitem of the
3494 : target heading.  Depending on â€˜org-reverse-note-order’, the new
3495 : subitem will either be the first or the last subitem.
3497 : If there is an active region, all entries in that region will be
3498 : refiled.  However, the region must fulfill the requirement that
3499 : the first heading sets the top-level of the moved text.
3501 : With a â€˜C-u’ ARG, the command will only visit the target location
3502 : and not actually move anything.
3504 : With a prefix â€˜C-u C-u’, go to the location where the last
3505 : refiling operation has put the subtree.
3507 : With a numeric prefix argument of â€˜2’, refile to the running clock.
3509 : With a numeric prefix argument of â€˜3’, emulate â€˜org-refile-keep’
3510 : being set to t and copy to the target location, don’t move it.
3511 : Beware that keeping refiled entries may result in duplicated ID
3512 : properties.
3514 : RFLOC can be a refile location obtained in a different way.
3516 : MSG is a string to replace "Refile" in the default prompt with
3517 : another verb.  E.g. â€˜org-copy’ sets this parameter to "Copy".
3519 : See also â€˜org-refile-use-outline-path’.
3521 : If you are using target caching (see â€˜org-refile-use-cache’), you
3522 : have to clear the target cache in order to find new targets.
3523 : This can be done with a â€˜0’ prefix (‘C-0 C-c C-w’) or a triple
3524 : prefix argument (‘C-u C-u C-u C-c C-w’).
3525 ** org-clock-display =(&optional arg)=
3526    :PROPERTIES:
3527    :CUSTOM_ID: org-clock-display
3528    :END:
3530 - *Access:* ~C-c C-x C-d, <menu-bar> <Org> <Logging work> <Display times>~
3531 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
3532 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-display][Find modifications in git logs]]
3534 : Show subtree times in the entire buffer.
3536 : By default, show the total time for the range defined in
3537 : â€˜org-clock-display-default-range’.  With â€˜C-u’ prefix, show
3538 : the total time for today instead.
3540 : With â€˜C-u C-u’ prefix, use a custom range, entered at prompt.
3542 : With â€˜C-u C-u C-u’ prefix, display the total time in the
3543 : echo area.
3545 : Use â€˜M-x org-clock-remove-overlays’ to remove the subtree times.
3546 ** org-return =(&optional indent)=
3547    :PROPERTIES:
3548    :CUSTOM_ID: org-return
3549    :END:
3551 - *Access:* ~RET, <menu-bar> <Tbl> <Next Row>~
3552 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3553 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-return][Find modifications in git logs]]
3555 : Goto next table row or insert a newline.
3557 : Calls â€˜org-table-next-row’ or â€˜newline’, depending on context.
3559 : When optional INDENT argument is non-nil, call
3560 : â€˜newline-and-indent’ instead of â€˜newline’.
3562 : When â€˜org-return-follows-link’ is non-nil and point is on
3563 : a timestamp or a link, call â€˜org-open-at-point’.  However, it
3564 : will not happen if point is in a table or on a "dead"
3565 : object (e.g., within a comment).  In these case, you need to use
3566 : â€˜org-open-at-point’ directly.
3567 ** org-feed-show-raw-feed =(feed)=
3568    :PROPERTIES:
3569    :CUSTOM_ID: org-feed-show-raw-feed
3570    :END:
3572 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
3573 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-show-raw-feed][Find modifications in git logs]]
3575 : Show the raw feed buffer of a feed.
3576 ** org-attach-open-in-emacs
3577    :PROPERTIES:
3578    :CUSTOM_ID: org-attach-open-in-emacs
3579    :END:
3581 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
3582 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-open-in-emacs][Find modifications in git logs]]
3584 : Open attachment, force opening in Emacs.
3585 : See â€˜org-attach-open’.
3586 ** org-agenda-filter-remove-all
3587    :PROPERTIES:
3588    :CUSTOM_ID: org-agenda-filter-remove-all
3589    :END:
3591 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3592 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-remove-all][Find modifications in git logs]]
3594 : Remove all filters from the current agenda buffer.
3595 ** org-babel-expand-src-block =(&optional _arg info params)=
3596    :PROPERTIES:
3597    :CUSTOM_ID: org-babel-expand-src-block
3598    :END:
3600 - *Access:* ~C-c C-v v, C-c C-v C-v~
3601 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
3602 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-expand-src-block][Find modifications in git logs]]
3604 : Expand the current source code block.
3605 : Expand according to the source code block’s header
3606 : arguments and pop open the results in a preview buffer.
3607 ** org-ctags-all-tags-in-current-tags-table
3608    :PROPERTIES:
3609    :CUSTOM_ID: org-ctags-all-tags-in-current-tags-table
3610    :END:
3612 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
3613 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-all-tags-in-current-tags-table][Find modifications in git logs]]
3615 : Read all tags defined in the active TAGS file, into a list of strings.
3616 : Return the list.
3617 ** org-table-fedit-ref-right
3618    :PROPERTIES:
3619    :CUSTOM_ID: org-table-fedit-ref-right
3620    :END:
3622 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
3623 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-ref-right][Find modifications in git logs]]
3625 : Shift the reference at point one field to the right.
3626 ** org-toggle-latex-fragment =(&optional arg)=
3627    :PROPERTIES:
3628    :CUSTOM_ID: org-toggle-latex-fragment
3629    :END:
3631 - *Access:* ~C-c C-x C-l~
3632 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3633 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-latex-fragment][Find modifications in git logs]]
3635 : Preview the LaTeX fragment at point, or all locally or globally.
3637 : If the cursor is on a LaTeX fragment, create the image and overlay
3638 : it over the source code, if there is none.  Remove it otherwise.
3639 : If there is no fragment at point, display all fragments in the
3640 : current section.
3642 : With prefix ARG, preview or clear image for all fragments in the
3643 : current subtree or in the whole buffer when used before the first
3644 : headline.  With a prefix ARG â€˜C-u C-u’ preview or clear images
3645 : for all fragments in the buffer.
3646 ** org-agenda-filter-by-effort =(strip)=
3647    :PROPERTIES:
3648    :CUSTOM_ID: org-agenda-filter-by-effort
3649    :END:
3651 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3652 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-by-effort][Find modifications in git logs]]
3654 : Filter agenda entries by effort.
3655 : With no prefix argument, keep entries matching the effort condition.
3656 : With one prefix argument, filter out entries matching the condition.
3657 : With two prefix arguments, remove the effort filters.
3658 ** org-emphasize =(&optional char)=
3659    :PROPERTIES:
3660    :CUSTOM_ID: org-emphasize
3661    :END:
3663 - *Access:* ~C-c C-x C-f, <menu-bar> <Org> <Editing> <Emphasis...>~
3664 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3665 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-emphasize][Find modifications in git logs]]
3667 : Insert or change an emphasis, i.e. a font like bold or italic.
3668 : If there is an active region, change that region to a new emphasis.
3669 : If there is no region, just insert the marker characters and position
3670 : the cursor between them.
3671 : CHAR should be the marker character.  If it is a space, it means to
3672 : remove the emphasis of the selected region.
3673 : If CHAR is not given (for example in an interactive call) it will be
3674 : prompted for.
3675 ** org-columns-edit-value =(&optional key)=
3676    :PROPERTIES:
3677    :CUSTOM_ID: org-columns-edit-value
3678    :END:
3680 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
3681 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-edit-value][Find modifications in git logs]]
3683 : Edit the value of the property at point in column view.
3684 : Where possible, use the standard interface for changing this line.
3685 ** org-kill-line =(&optional _arg)=
3686    :PROPERTIES:
3687    :CUSTOM_ID: org-kill-line
3688    :END:
3690 - *Access:* ~C-k~
3691 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3692 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-kill-line][Find modifications in git logs]]
3694 : Kill line, to tags or end of line.
3695 ** org-capture-kill
3696    :PROPERTIES:
3697    :CUSTOM_ID: org-capture-kill
3698    :END:
3700 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
3701 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-kill][Find modifications in git logs]]
3703 : Abort the current capture process.
3704 ** org-drag-line-forward =(arg)=
3705    :PROPERTIES:
3706    :CUSTOM_ID: org-drag-line-forward
3707    :END:
3709 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3710 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-drag-line-forward][Find modifications in git logs]]
3712 : Drag the line at point ARG lines forward.
3713 ** org-mobile-pull
3714    :PROPERTIES:
3715    :CUSTOM_ID: org-mobile-pull
3716    :END:
3718 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Get Captured and Flagged>, C-c C-x RET g~
3719 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
3720 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-pull][Find modifications in git logs]]
3722 : Pull the contents of â€˜org-mobile-capture-file’ and integrate them.
3723 : Apply all flagged actions, flag entries to be flagged and then call an
3724 : agenda view showing the flagged items.
3725 ** org-agenda-set-property
3726    :PROPERTIES:
3727    :CUSTOM_ID: org-agenda-set-property
3728    :END:
3730 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3731 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-set-property][Find modifications in git logs]]
3733 : Set a property for the current headline.
3734 ** org-table-move-column-right
3735    :PROPERTIES:
3736    :CUSTOM_ID: org-table-move-column-right
3737    :END:
3739 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
3740 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-column-right][Find modifications in git logs]]
3742 : Move column to the right.
3743 ** org-agenda-redo-all =(&optional exhaustive)=
3744    :PROPERTIES:
3745    :CUSTOM_ID: org-agenda-redo-all
3746    :END:
3748 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
3749 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-redo-all][Find modifications in git logs]]
3751 : Rebuild all agenda views in the current buffer.
3752 : With a prefix argument, do so in all agenda buffers.
3753 ** org-toggle-checkbox =(&optional toggle-presence)=
3754    :PROPERTIES:
3755    :CUSTOM_ID: org-toggle-checkbox
3756    :END:
3758 - *Access:* ~C-c C-x C-b~
3759 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
3760 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-checkbox][Find modifications in git logs]]
3762 : Toggle the checkbox in the current line.
3763 : With prefix arg TOGGLE-PRESENCE, add or remove checkboxes.  With
3764 : double prefix, set checkbox to [-].
3766 : When there is an active region, toggle status or presence of the
3767 : first checkbox there, and make every item inside have the same
3768 : status or presence, respectively.
3770 : If the cursor is in a headline, apply this to all checkbox items
3771 : in the text below the heading, taking as reference the first item
3772 : in subtree, ignoring drawers.
3773 ** org-mobile-push
3774    :PROPERTIES:
3775    :CUSTOM_ID: org-mobile-push
3776    :END:
3778 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Push Files and Views>, C-c C-x RET p~
3779 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
3780 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-push][Find modifications in git logs]]
3782 : Push the current state of Org affairs to the target directory.
3783 : This will create the index file, copy all agenda files there, and also
3784 : create all custom agenda views, for upload to the mobile phone.
3785 ** org-mark-subtree =(&optional up)=
3786    :PROPERTIES:
3787    :CUSTOM_ID: org-mark-subtree
3788    :END:
3790 - *Access:* ~C-c @~
3791 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3792 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mark-subtree][Find modifications in git logs]]
3794 : Mark the current subtree.
3795 : This puts point at the start of the current subtree, and mark at
3796 : the end.  If a numeric prefix UP is given, move up into the
3797 : hierarchy of headlines by UP levels before marking the subtree.
3798 ** org-publish-all =(&optional force async)=
3799    :PROPERTIES:
3800    :CUSTOM_ID: org-publish-all
3801    :END:
3803 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
3804 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-all][Find modifications in git logs]]
3806 : Publish all projects.
3807 : With prefix argument FORCE, remove all files in the timestamp
3808 : directory and force publishing all projects.  With a non-nil
3809 : optional argument ASYNC, publishing will be done asynchronously,
3810 : in another process.
3811 ** org-set-property-and-value =(use-last)=
3812    :PROPERTIES:
3813    :CUSTOM_ID: org-set-property-and-value
3814    :END:
3816 - *Access:* ~C-c C-x P~
3817 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3818 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-property-and-value][Find modifications in git logs]]
3820 : Allow to set [PROPERTY]: [value] direction from prompt.
3821 : When use-default, don’t even ask, just use the last
3822 : "[PROPERTY]: [value]" string from the history.
3823 ** org-timer-pause-or-continue =(&optional stop)=
3824    :PROPERTIES:
3825    :CUSTOM_ID: org-timer-pause-or-continue
3826    :END:
3828 - *Access:* ~C-c C-x ,, <menu-bar> <Org> <Dates and Scheduling> <Pause/Continue Timer>, <menu-bar> <Org> <Dates and Scheduling> <Stop Timer>~
3829 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
3830 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-pause-or-continue][Find modifications in git logs]]
3832 : Pause or continue the relative or countdown timer.
3833 : With prefix arg STOP, stop it entirely.
3834 ** org-mode
3835    :PROPERTIES:
3836    :CUSTOM_ID: org-mode
3837    :END:
3839 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
3840 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mode][Find modifications in git logs]]
3842 : Outline-based notes management and organizer, alias
3843 : "Carsten’s outline-mode for keeping track of everything."
3845 : Org mode develops organizational tasks around a NOTES file which
3846 : contains information about projects as plain text.  Org mode is
3847 : implemented on top of Outline mode, which is ideal to keep the content
3848 : of large files well structured.  It supports ToDo items, deadlines and
3849 : time stamps, which magically appear in the diary listing of the Emacs
3850 : calendar.  Tables are easily created with a built-in table editor.
3851 : Plain text URL-like links connect to websites, emails (VM), Usenet
3852 : messages (Gnus), BBDB entries, and any files related to the project.
3853 : For printing and sharing of notes, an Org file (or a part of it)
3854 : can be exported as a structured ASCII or HTML file.
3856 : The following commands are available:
3858 : key             binding
3859 : ---             -------
3861 : C-a           org-beginning-of-line
3862 : C-c           Prefix Command
3863 : C-e           org-end-of-line
3864 : TAB           org-cycle
3865 : C-j           org-return-indent
3866 : C-k           org-kill-line
3867 : RET           org-return
3868 : C-y           org-yank
3869 : ESC           Prefix Command
3870 : |             org-force-self-insert
3871 : C-#           org-table-rotate-recalc-marks
3872 : C-'           org-cycle-agenda-files
3873 : C-,           org-cycle-agenda-files
3874 : <C-M-S-left>  org-decrease-number-at-point
3875 : <C-M-S-right> org-increase-number-at-point
3876 : <C-S-down>    org-shiftcontroldown
3877 : <C-S-left>    org-shiftcontrolleft
3878 : <C-S-return>  org-insert-todo-heading-respect-content
3879 : <C-S-right>   org-shiftcontrolright
3880 : <C-S-up>      org-shiftcontrolup
3881 : <C-return>    org-insert-heading-respect-content
3882 : <C-tab>               org-force-cycle-archived
3883 : <M-S-down>    org-shiftmetadown
3884 : <M-S-left>    org-shiftmetaleft
3885 : <M-S-return>  org-insert-todo-heading
3886 : <M-S-right>   org-shiftmetaright
3887 : <M-S-up>      org-shiftmetaup
3888 : <M-down>      org-metadown
3889 : <M-left>      org-metaleft
3890 : <M-return>    org-meta-return
3891 : <M-right>     org-metaright
3892 : <M-up>                org-metaup
3893 : <S-down>      org-shiftdown
3894 : <S-iso-lefttab>                       org-shifttab
3895 : <S-left>      org-shiftleft
3896 : <S-mouse-2>   org-mouse-yank-link
3897 : <S-return>    org-table-copy-down
3898 : <S-right>     org-shiftright
3899 : <S-tab>               org-shifttab
3900 : <S-up>                org-shiftup
3901 : <backtab>     org-shifttab
3902 : <down-mouse-1>        org-mouse-down-mouse
3903 : <drag-mouse-3>        org-mouse-yank-link
3904 : <mouse-3>     org-mouse-show-context-menu
3905 : <remap>               Prefix Command
3906 : <tab>         org-cycle
3908 : C-M-i         pcomplete
3909 : C-M-t         org-transpose-element
3910 : M-^           org-delete-indentation
3911 : M-a           org-backward-sentence
3912 : M-e           org-forward-sentence
3913 : M-h           org-mark-element
3914 : M-{           org-backward-element
3915 : M-}           org-forward-element
3917 : C-c C-a               org-attach
3918 : C-c C-b               org-backward-heading-same-level
3919 : C-c C-c               org-ctrl-c-ctrl-c
3920 : C-c C-d               org-deadline
3921 : C-c C-e               org-export-dispatch
3922 : C-c C-f               org-forward-heading-same-level
3923 : C-c C-j               org-goto
3924 : C-c C-k               org-kill-note-or-show-branches
3925 : C-c C-l               org-insert-link
3926 : C-c RET               org-ctrl-c-ret
3927 : C-c C-o               org-open-at-point
3928 : C-c C-q               org-set-tags-command
3929 : C-c C-r               org-reveal
3930 : C-c C-s               org-schedule
3931 : C-c C-t               org-todo
3932 : C-c C-v               Prefix Command
3933 : C-c C-w               org-refile
3934 : C-c C-x               Prefix Command
3935 : C-c C-y               org-evaluate-time-range
3936 : C-c C-z               org-add-note
3937 : C-c ESC               Prefix Command
3938 : C-c C-^               org-up-element
3939 : C-c C-_               org-down-element
3940 : C-c SPC               org-table-blank-field
3941 : C-c !         org-time-stamp-inactive
3942 : C-c "         Prefix Command
3943 : C-c #         org-update-statistics-cookies
3944 : C-c $         org-archive-subtree
3945 : C-c %         org-mark-ring-push
3946 : C-c &         org-mark-ring-goto
3947 : C-c '         org-edit-special
3948 : C-c *         org-ctrl-c-star
3949 : C-c +         org-table-sum
3950 : C-c ,         org-priority
3951 : C-c -         org-ctrl-c-minus
3952 : C-c .         org-time-stamp
3953 : C-c /         org-sparse-tree
3954 : C-c :         org-toggle-fixed-width
3955 : C-c ;         org-toggle-comment
3956 : C-c <         org-date-from-calendar
3957 : C-c =         org-table-eval-formula
3958 : C-c >         org-goto-calendar
3959 : C-c ?         org-table-field-info
3960 : C-c @         org-mark-subtree
3961 : C-c [         org-agenda-file-to-front
3962 : C-c \         org-match-sparse-tree
3963 : C-c ]         org-remove-file
3964 : C-c ^         org-sort
3965 : C-c `         org-table-edit-field
3966 : C-c {         org-table-toggle-formula-debugger
3967 : C-c |         org-table-create-or-convert-from-region
3968 : C-c }         org-table-toggle-coordinate-overlays
3969 : C-c ~         org-table-create-with-table.el
3970 : C-c C-*               org-list-make-subtree
3972 : <remap> <backward-paragraph>  org-backward-paragraph
3973 : <remap> <comment-dwim>                org-comment-dwim
3974 : <remap> <delete-backward-char>        org-delete-backward-char
3975 : <remap> <delete-char>         org-delete-char
3976 : <remap> <fill-paragraph>      org-fill-paragraph
3977 : <remap> <forward-paragraph>   org-forward-paragraph
3978 : <remap> <open-line>           org-open-line
3979 : <remap> <outline-backward-same-level>
3980 :                               org-backward-heading-same-level
3981 : <remap> <outline-demote>      org-demote-subtree
3982 : <remap> <outline-forward-same-level>
3983 :                               org-forward-heading-same-level
3984 : <remap> <outline-insert-heading>
3985 :                               org-ctrl-c-ret
3986 : <remap> <outline-mark-subtree>        org-mark-subtree
3987 : <remap> <outline-next-visible-heading>
3988 :                               org-next-visible-heading
3989 : <remap> <outline-previous-visible-heading>
3990 :                               org-previous-visible-heading
3991 : <remap> <outline-promote>     org-promote-subtree
3992 : <remap> <outline-show-branches>
3993 :                               org-kill-note-or-show-branches
3994 : <remap> <outline-show-subtree>        org-show-subtree
3995 : <remap> <self-insert-command> org-self-insert-command
3996 : <remap> <show-children>               org-show-children
3997 : <remap> <transpose-words>     org-transpose-words
3999 : C-c C-a               outline-show-all
4000 :   (that binding is currently shadowed by another mode)
4001 : C-c C-b               outline-backward-same-level
4002 :   (that binding is currently shadowed by another mode)
4003 : C-c C-c               outline-hide-entry
4004 :   (that binding is currently shadowed by another mode)
4005 : C-c C-d               outline-hide-subtree
4006 :   (that binding is currently shadowed by another mode)
4007 : C-c C-e               outline-show-entry
4008 :   (that binding is currently shadowed by another mode)
4009 : C-c C-f               outline-forward-same-level
4010 :   (that binding is currently shadowed by another mode)
4011 : C-c TAB               outline-show-children
4012 : C-c C-k               outline-show-branches
4013 :   (that binding is currently shadowed by another mode)
4014 : C-c C-l               outline-hide-leaves
4015 :   (that binding is currently shadowed by another mode)
4016 : C-c RET               outline-insert-heading
4017 :   (that binding is currently shadowed by another mode)
4018 : C-c C-n               outline-next-visible-heading
4019 : C-c C-o               outline-hide-other
4020 :   (that binding is currently shadowed by another mode)
4021 : C-c C-p               outline-previous-visible-heading
4022 : C-c C-q               outline-hide-sublevels
4023 :   (that binding is currently shadowed by another mode)
4024 : C-c C-s               outline-show-subtree
4025 :   (that binding is currently shadowed by another mode)
4026 : C-c C-t               outline-hide-body
4027 :   (that binding is currently shadowed by another mode)
4028 : C-c C-u               outline-up-heading
4029 : C-c C-v               outline-move-subtree-down
4030 :   (that binding is currently shadowed by another mode)
4031 : C-c C-^               outline-move-subtree-up
4032 :   (that binding is currently shadowed by another mode)
4033 : C-c @         outline-mark-subtree
4034 :   (that binding is currently shadowed by another mode)
4035 : C-c C-<               outline-promote
4036 : C-c C->               outline-demote
4038 : C-M-i         ispell-complete-word
4039 :   (that binding is currently shadowed by another mode)
4041 : C-c " a               orgtbl-ascii-plot
4042 : C-c " g               org-plot/gnuplot
4044 : C-c C-M-l     org-insert-all-links
4045 : C-c M-b               org-previous-block
4046 : C-c M-f               org-next-block
4047 : C-c M-l               org-insert-last-stored-link
4048 : C-c M-w               org-copy
4050 : C-c C-v C-a   org-babel-sha1-hash
4051 : C-c C-v C-b   org-babel-execute-buffer
4052 : C-c C-v C-c   org-babel-check-src-block
4053 : C-c C-v C-d   org-babel-demarcate-block
4054 : C-c C-v C-e   org-babel-execute-maybe
4055 : C-c C-v C-f   org-babel-tangle-file
4056 : C-c C-v TAB   org-babel-view-src-block-info
4057 : C-c C-v C-j   org-babel-insert-header-arg
4058 : C-c C-v C-l   org-babel-load-in-session
4059 : C-c C-v C-n   org-babel-next-src-block
4060 : C-c C-v C-o   org-babel-open-src-block-result
4061 : C-c C-v C-p   org-babel-previous-src-block
4062 : C-c C-v C-r   org-babel-goto-named-result
4063 : C-c C-v C-s   org-babel-execute-subtree
4064 : C-c C-v C-t   org-babel-tangle
4065 : C-c C-v C-u   org-babel-goto-src-block-head
4066 : C-c C-v C-v   org-babel-expand-src-block
4067 : C-c C-v C-x   org-babel-do-key-sequence-in-edit-buffer
4068 : C-c C-v C-z   org-babel-switch-to-session
4069 : C-c C-v ESC   Prefix Command
4070 : C-c C-v I     org-babel-view-src-block-info
4071 : C-c C-v a     org-babel-sha1-hash
4072 : C-c C-v b     org-babel-execute-buffer
4073 : C-c C-v c     org-babel-check-src-block
4074 : C-c C-v d     org-babel-demarcate-block
4075 : C-c C-v e     org-babel-execute-maybe
4076 : C-c C-v f     org-babel-tangle-file
4077 : C-c C-v g     org-babel-goto-named-src-block
4078 : C-c C-v h     org-babel-describe-bindings
4079 : C-c C-v i     org-babel-lob-ingest
4080 : C-c C-v j     org-babel-insert-header-arg
4081 : C-c C-v k     org-babel-remove-result-one-or-many
4082 : C-c C-v l     org-babel-load-in-session
4083 : C-c C-v n     org-babel-next-src-block
4084 : C-c C-v o     org-babel-open-src-block-result
4085 : C-c C-v p     org-babel-previous-src-block
4086 : C-c C-v r     org-babel-goto-named-result
4087 : C-c C-v s     org-babel-execute-subtree
4088 : C-c C-v t     org-babel-tangle
4089 : C-c C-v u     org-babel-goto-src-block-head
4090 : C-c C-v v     org-babel-expand-src-block
4091 : C-c C-v x     org-babel-do-key-sequence-in-edit-buffer
4092 : C-c C-v z     org-babel-switch-to-session-with-code
4094 : C-c C-x C-a   org-archive-subtree-default
4095 : C-c C-x C-b   org-toggle-checkbox
4096 : C-c C-x C-c   org-columns
4097 : C-c C-x C-d   org-clock-display
4098 : C-c C-x C-f   org-emphasize
4099 : C-c C-x TAB   org-clock-in
4100 : C-c C-x C-j   org-clock-goto
4101 : C-c C-x C-l   org-toggle-latex-fragment
4102 : C-c C-x RET   Prefix Command
4103 : C-c C-x C-n   org-next-link
4104 : C-c C-x C-o   org-clock-out
4105 : C-c C-x C-p   org-previous-link
4106 : C-c C-x C-q   org-clock-cancel
4107 : C-c C-x C-r   org-clock-report
4108 : C-c C-x C-s   org-archive-subtree
4109 : C-c C-x C-t   org-toggle-time-stamp-overlays
4110 : C-c C-x C-u   org-dblock-update
4111 : C-c C-x C-v   org-toggle-inline-images
4112 : C-c C-x C-w   org-cut-special
4113 : C-c C-x C-x   org-clock-in-last
4114 : C-c C-x C-y   org-paste-special
4115 : C-c C-x C-z   org-resolve-clocks
4116 : C-c C-x ESC   Prefix Command
4117 : C-c C-x !     org-reload
4118 : C-c C-x ,     org-timer-pause-or-continue
4119 : C-c C-x -     org-timer-item
4120 : C-c C-x .     org-timer
4121 : C-c C-x 0     org-timer-start
4122 : C-c C-x ;     org-timer-set-timer
4123 : C-c C-x <     org-agenda-set-restriction-lock
4124 : C-c C-x >     org-agenda-remove-restriction-lock
4125 : C-c C-x A     org-archive-to-archive-sibling
4126 : C-c C-x E     org-inc-effort
4127 : C-c C-x G     org-feed-goto-inbox
4128 : C-c C-x P     org-set-property-and-value
4129 : C-c C-x [     org-reftex-citation
4130 : C-c C-x \     org-toggle-pretty-entities
4131 : C-c C-x _     org-timer-stop
4132 : C-c C-x a     org-toggle-archive-tag
4133 : C-c C-x b     org-tree-to-indirect-buffer
4134 : C-c C-x c     org-clone-subtree-with-time-shift
4135 : C-c C-x d     org-insert-drawer
4136 : C-c C-x e     org-set-effort
4137 : C-c C-x f     org-footnote-action
4138 : C-c C-x g     org-feed-update-all
4139 : C-c C-x i     org-columns-insert-dblock
4140 : C-c C-x o     org-toggle-ordered-property
4141 : C-c C-x p     org-set-property
4142 : C-c C-x q     org-toggle-tags-groups
4143 : C-c C-x v     org-copy-visible
4145 : C-c C-v C-M-h org-babel-mark-block
4147 : C-c C-x C-M-v org-redisplay-inline-images
4148 : C-c C-x M-w   org-copy-special
4150 : C-c C-x RET g org-mobile-pull
4151 : C-c C-x RET p org-mobile-push
4155 : In addition to any hooks its parent mode â€˜outline-mode’ might have run,
4156 : this mode runs the hook â€˜org-mode-hook’, as the final or penultimate step
4157 : during initialization.
4158 ** org-babel-lilypond-tangle
4159    :PROPERTIES:
4160    :CUSTOM_ID: org-babel-lilypond-tangle
4161    :END:
4163 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
4164 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-tangle][Find modifications in git logs]]
4166 : ob-lilypond specific tangle, attempts to invoke
4167 : =ly-execute-tangled-ly= if tangle is successful.  Also passes
4168 : specific arguments to =org-babel-tangle=
4169 ** org-goto-local-auto-isearch
4170    :PROPERTIES:
4171    :CUSTOM_ID: org-goto-local-auto-isearch
4172    :END:
4174 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4175 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-local-auto-isearch][Find modifications in git logs]]
4177 : Start isearch.
4178 ** org-backward-sentence =(&optional _arg)=
4179    :PROPERTIES:
4180    :CUSTOM_ID: org-backward-sentence
4181    :END:
4183 - *Access:* ~M-a~
4184 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4185 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-backward-sentence][Find modifications in git logs]]
4187 : Go to beginning of sentence, or beginning of table field.
4188 : This will call â€˜backward-sentence’ or â€˜org-table-beginning-of-field’,
4189 : depending on context.
4190 ** org-beamer-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
4191    :PROPERTIES:
4192    :CUSTOM_ID: org-beamer-export-to-pdf
4193    :END:
4195 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
4196 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-export-to-pdf][Find modifications in git logs]]
4198 : Export current buffer as a Beamer presentation (PDF).
4200 : If narrowing is active in the current buffer, only export its
4201 : narrowed part.
4203 : If a region is active, export that region.
4205 : A non-nil optional argument ASYNC means the process should happen
4206 : asynchronously.  The resulting file should be accessible through
4207 : the â€˜org-export-stack’ interface.
4209 : When optional argument SUBTREEP is non-nil, export the sub-tree
4210 : at point, extracting information from the headline properties
4211 : first.
4213 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4214 : contents of hidden elements.
4216 : When optional argument BODY-ONLY is non-nil, only write code
4217 : between "\begin{document}" and "\end{document}".
4219 : EXT-PLIST, when provided, is a property list with external
4220 : parameters overriding Org default settings, but still inferior to
4221 : file-local settings.
4223 : Return PDF file’s name.
4224 ** org-store-agenda-views =(&rest parameters)=
4225    :PROPERTIES:
4226    :CUSTOM_ID: org-store-agenda-views
4227    :END:
4229 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4230 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-store-agenda-views][Find modifications in git logs]]
4232 : Store agenda views.
4233 ** org-babel-load-file =(file &optional compile)=
4234    :PROPERTIES:
4235    :CUSTOM_ID: org-babel-load-file
4236    :END:
4238 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4239 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-load-file][Find modifications in git logs]]
4241 : Load Emacs Lisp source code blocks in the Org FILE.
4242 : This function exports the source code using â€˜org-babel-tangle’
4243 : and then loads the resulting file using â€˜load-file’.  With prefix
4244 : arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
4245 : file to byte-code before it is loaded.
4246 ** org-columns =(&optional global columns-fmt-string)=
4247    :PROPERTIES:
4248    :CUSTOM_ID: org-columns
4249    :END:
4251 - *Access:* ~C-c C-x C-c, <menu-bar> <Org> <TAGS and Properties> <Column view of properties>~
4252 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
4253 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns][Find modifications in git logs]]
4255 : Turn on column view on an Org mode file.
4257 : Column view applies to the whole buffer if point is before the
4258 : first headline.  Otherwise, it applies to the first ancestor
4259 : setting "COLUMNS" property.  If there is none, it defaults to
4260 : the current headline.  With a â€˜C-u’ prefix argument, turn on column
4261 : view for the whole buffer unconditionally.
4263 : When COLUMNS-FMT-STRING is non-nil, use it as the column format.
4264 ** org-check-before-date =(d)=
4265    :PROPERTIES:
4266    :CUSTOM_ID: org-check-before-date
4267    :END:
4269 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4270 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-check-before-date][Find modifications in git logs]]
4272 : Check if there are deadlines or scheduled entries before date D.
4273 ** org-agenda-drag-line-backward =(arg)=
4274    :PROPERTIES:
4275    :CUSTOM_ID: org-agenda-drag-line-backward
4276    :END:
4278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-drag-line-backward][Find modifications in git logs]]
4281 : Drag an agenda line backward by ARG lines.
4282 ** org-yank =(&optional arg)=
4283    :PROPERTIES:
4284    :CUSTOM_ID: org-yank
4285    :END:
4287 - *Access:* ~C-y~
4288 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4289 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-yank][Find modifications in git logs]]
4291 : Yank.  If the kill is a subtree, treat it specially.
4292 : This command will look at the current kill and check if is a single
4293 : subtree, or a series of subtrees[1].  If it passes the test, and if the
4294 : cursor is at the beginning of a line or after the stars of a currently
4295 : empty headline, then the yank is handled specially.  How exactly depends
4296 : on the value of the following variables.
4298 : â€˜org-yank-folded-subtrees’
4299 :     By default, this variable is non-nil, which results in
4300 :     subtree(s) being folded after insertion, except if doing so
4301 :     would swallow text after the yanked text.
4303 : â€˜org-yank-adjusted-subtrees’
4304 :     When non-nil (the default value is nil), the subtree will be
4305 :     promoted or demoted in order to fit into the local outline tree
4306 :     structure, which means that the level will be adjusted so that it
4307 :     becomes the smaller one of the two *visible* surrounding headings.
4309 : Any prefix to this command will cause â€˜yank’ to be called directly with
4310 : no special treatment.  In particular, a simple â€˜C-u’ prefix will just
4311 : plainly yank the text as it is.
4313 : [1] The test checks if the first non-white line is a heading
4314 :     and if there are no other headings with fewer stars.
4315 ** org-agenda-toggle-time-grid
4316    :PROPERTIES:
4317    :CUSTOM_ID: org-agenda-toggle-time-grid
4318    :END:
4320 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4321 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-toggle-time-grid][Find modifications in git logs]]
4323 : Toggle time grid in an agenda buffer.
4324 ** org-agenda-todo-previousset
4325    :PROPERTIES:
4326    :CUSTOM_ID: org-agenda-todo-previousset
4327    :END:
4329 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4330 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-previousset][Find modifications in git logs]]
4332 : Switch TODO entry to previous sequence.
4333 ** org-agenda-priority-down
4334    :PROPERTIES:
4335    :CUSTOM_ID: org-agenda-priority-down
4336    :END:
4338 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4339 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-priority-down][Find modifications in git logs]]
4341 : Decrease the priority of line at point, also in Org file.
4342 ** org-insert-link =(&optional complete-file link-location default-description)=
4343    :PROPERTIES:
4344    :CUSTOM_ID: org-insert-link
4345    :END:
4347 - *Access:* ~C-c C-l, <menu-bar> <Org> <Hyperlinks> <Insert Link>~
4348 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4349 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-link][Find modifications in git logs]]
4351 : Insert a link.  At the prompt, enter the link.
4353 : Completion can be used to insert any of the link protocol prefixes in use.
4355 : The history can be used to select a link previously stored with
4356 : â€˜org-store-link’.  When the empty string is entered (i.e. if you just
4357 : press â€˜RET’ at the prompt), the link defaults to the most recently
4358 : stored link.  As â€˜SPC’ triggers completion in the minibuffer, you need to
4359 : use â€˜M-SPC’ or â€˜C-q SPC’ to force the insertion of a space character.
4361 : You will also be prompted for a description, and if one is given, it will
4362 : be displayed in the buffer instead of the link.
4364 : If there is already a link at point, this command will allow you to edit
4365 : link and description parts.
4367 : With a â€˜C-u’ prefix, prompts for a file to link to.  The file name can be
4368 : selected using completion.  The path to the file will be relative to the
4369 : current directory if the file is in the current directory or a subdirectory.
4370 : Otherwise, the link will be the absolute path as completed in the minibuffer
4371 : (i.e. normally ~/path/to/file).  You can configure this behavior using the
4372 : option â€˜org-link-file-path-type’.
4374 : With a â€˜C-u C-u’ prefix, enforce an absolute path even if the file is in
4375 : the current directory or below.
4377 : A â€˜C-u C-u C-u’ prefix negates â€˜org-keep-stored-link-after-insertion’.
4379 : If â€˜org-make-link-description-function’ is non-nil, this function will be
4380 : called with the link target, and the result will be the default
4381 : link description.
4383 : If the LINK-LOCATION parameter is non-nil, this value will be used as
4384 : the link location instead of reading one interactively.
4386 : If the DEFAULT-DESCRIPTION parameter is non-nil, this value will be used
4387 : as the default description.
4388 ** org-display-outline-path =(&optional file current separator just-return-string)=
4389    :PROPERTIES:
4390    :CUSTOM_ID: org-display-outline-path
4391    :END:
4393 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4394 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-display-outline-path][Find modifications in git logs]]
4396 : Display the current outline path in the echo area.
4398 : If FILE is non-nil, prepend the output with the file name.
4399 : If CURRENT is non-nil, append the current heading to the output.
4400 : SEPARATOR is passed through to â€˜org-format-outline-path’.  It separates
4401 : the different parts of the path and defaults to "/".
4402 : If JUST-RETURN-STRING is non-nil, return a string, don’t display a message.
4403 ** org-timer-change-times-in-region =(beg end delta)=
4404    :PROPERTIES:
4405    :CUSTOM_ID: org-timer-change-times-in-region
4406    :END:
4408 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
4409 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-change-times-in-region][Find modifications in git logs]]
4411 : Change all h:mm:ss time in region by a DELTA.
4412 ** org-indent-block
4413    :PROPERTIES:
4414    :CUSTOM_ID: org-indent-block
4415    :END:
4417 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4418 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-block][Find modifications in git logs]]
4420 : Indent the block at point.
4421 ** org-latex-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
4422    :PROPERTIES:
4423    :CUSTOM_ID: org-latex-export-to-pdf
4424    :END:
4426 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
4427 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-export-to-pdf][Find modifications in git logs]]
4429 : Export current buffer to LaTeX then process through to PDF.
4431 : If narrowing is active in the current buffer, only export its
4432 : narrowed part.
4434 : If a region is active, export that region.
4436 : A non-nil optional argument ASYNC means the process should happen
4437 : asynchronously.  The resulting file should be accessible through
4438 : the â€˜org-export-stack’ interface.
4440 : When optional argument SUBTREEP is non-nil, export the sub-tree
4441 : at point, extracting information from the headline properties
4442 : first.
4444 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4445 : contents of hidden elements.
4447 : When optional argument BODY-ONLY is non-nil, only write code
4448 : between "\begin{document}" and "\end{document}".
4450 : EXT-PLIST, when provided, is a property list with external
4451 : parameters overriding Org default settings, but still inferior to
4452 : file-local settings.
4454 : Return PDF file’s name.
4455 ** org-timestamp-up-day =(&optional arg)=
4456    :PROPERTIES:
4457    :CUSTOM_ID: org-timestamp-up-day
4458    :END:
4460 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4461 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timestamp-up-day][Find modifications in git logs]]
4463 : Increase the date in the time stamp by one day.
4464 : With prefix ARG, change that many days.
4465 ** org-copy-special
4466    :PROPERTIES:
4467    :CUSTOM_ID: org-copy-special
4468    :END:
4470 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Copy Subtree>, <menu-bar> <Tbl> <Rectangle> <Copy Rectangle>, C-c C-x M-w~
4471 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4472 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-copy-special][Find modifications in git logs]]
4474 : Copy region in table or copy current subtree.
4475 : Calls â€˜org-table-copy-region’ or â€˜org-copy-subtree’, depending on
4476 : context.  See the individual commands for more information.
4477 ** org-paste-subtree =(&optional level tree for-yank remove)=
4478    :PROPERTIES:
4479    :CUSTOM_ID: org-paste-subtree
4480    :END:
4482 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4483 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-paste-subtree][Find modifications in git logs]]
4485 : Paste the clipboard as a subtree, with modification of headline level.
4486 : The entire subtree is promoted or demoted in order to match a new headline
4487 : level.
4489 : If the cursor is at the beginning of a headline, the same level as
4490 : that headline is used to paste the tree.
4492 : If not, the new level is derived from the *visible* headings
4493 : before and after the insertion point, and taken to be the inferior headline
4494 : level of the two.  So if the previous visible heading is level 3 and the
4495 : next is level 4 (or vice versa), level 4 will be used for insertion.
4496 : This makes sure that the subtree remains an independent subtree and does
4497 : not swallow low level entries.
4499 : You can also force a different level, either by using a numeric prefix
4500 : argument, or by inserting the heading marker by hand.  For example, if the
4501 : cursor is after "*****", then the tree will be shifted to level 5.
4503 : If optional TREE is given, use this text instead of the kill ring.
4505 : When FOR-YANK is set, this is called by â€˜org-yank’.  In this case, do not
4506 : move back over whitespace before inserting, and move point to the end of
4507 : the inserted text when done.
4509 : When REMOVE is non-nil, remove the subtree from the clipboard.
4510 ** org-agenda-holidays
4511    :PROPERTIES:
4512    :CUSTOM_ID: org-agenda-holidays
4513    :END:
4515 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4516 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-holidays][Find modifications in git logs]]
4518 : Display the holidays for the 3 months around the cursor date.
4519 ** org-version =(&optional here full message)=
4520    :PROPERTIES:
4521    :CUSTOM_ID: org-version
4522    :END:
4524 - *Access:* ~<menu-bar> <Org> <Documentation> <Show Version>~
4525 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4526 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-version][Find modifications in git logs]]
4528 : Show the Org version.
4529 : Interactively, or when MESSAGE is non-nil, show it in echo area.
4530 : With prefix argument, or when HERE is non-nil, insert it at point.
4531 : In non-interactive uses, a reduced version string is output unless
4532 : FULL is given.
4533 ** org-hide-block-toggle-maybe
4534    :PROPERTIES:
4535    :CUSTOM_ID: org-hide-block-toggle-maybe
4536    :END:
4538 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4539 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-block-toggle-maybe][Find modifications in git logs]]
4541 : Toggle visibility of block at point.
4542 : Unlike to â€˜org-hide-block-toggle’, this function does not throw
4543 : an error.  Return a non-nil value when toggling is successful.
4544 ** org-publish-current-file =(&optional force async)=
4545    :PROPERTIES:
4546    :CUSTOM_ID: org-publish-current-file
4547    :END:
4549 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
4550 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-current-file][Find modifications in git logs]]
4552 : Publish the current file.
4553 : With prefix argument FORCE, force publish the file.  When
4554 : optional argument ASYNC is non-nil, publishing will be done
4555 : asynchronously, in another process.
4556 ** org-next-link =(&optional search-backward)=
4557    :PROPERTIES:
4558    :CUSTOM_ID: org-next-link
4559    :END:
4561 - *Access:* ~C-c C-x C-n, <menu-bar> <Org> <Hyperlinks> <Next link>~
4562 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4563 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-next-link][Find modifications in git logs]]
4565 : Move forward to the next link.
4566 : If the link is in hidden text, expose it.
4567 ** org-clock-goto =(&optional select)=
4568    :PROPERTIES:
4569    :CUSTOM_ID: org-clock-goto
4570    :END:
4572 - *Access:* ~C-c C-x C-j, <menu-bar> <Org> <Logging work> <Goto running clock>~
4573 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
4574 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-goto][Find modifications in git logs]]
4576 : Go to the currently clocked-in entry, or to the most recently clocked one.
4577 : With prefix arg SELECT, offer recently clocked tasks for selection.
4578 ** org-babel-do-key-sequence-in-edit-buffer =(key)=
4579    :PROPERTIES:
4580    :CUSTOM_ID: org-babel-do-key-sequence-in-edit-buffer
4581    :END:
4583 - *Access:* ~C-c C-v x, C-c C-v C-x~
4584 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4585 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-do-key-sequence-in-edit-buffer][Find modifications in git logs]]
4587 : Read key sequence and execute the command in edit buffer.
4588 : Enter a key sequence to be executed in the language major-mode
4589 : edit buffer.  For example, TAB will alter the contents of the
4590 : Org code block according to the effect of TAB in the language
4591 : major mode buffer.  For languages that support interactive
4592 : sessions, this can be used to send code from the Org buffer
4593 : to the session for evaluation using the native major mode
4594 : evaluation mechanisms.
4595 ** org-hide-block-all
4596    :PROPERTIES:
4597    :CUSTOM_ID: org-hide-block-all
4598    :END:
4600 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4601 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-block-all][Find modifications in git logs]]
4603 : Fold all blocks in the current buffer.
4604 ** org-promote-subtree
4605    :PROPERTIES:
4606    :CUSTOM_ID: org-promote-subtree
4607    :END:
4609 - *Access:* ~C-c C-<~
4610 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4611 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-promote-subtree][Find modifications in git logs]]
4613 : Promote the entire subtree.
4614 : See also â€˜org-promote’.
4615 ** org-babel-execute-maybe
4616    :PROPERTIES:
4617    :CUSTOM_ID: org-babel-execute-maybe
4618    :END:
4620 - *Access:* ~C-c C-v C-e, C-c C-v e~
4621 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4622 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-execute-maybe][Find modifications in git logs]]
4625 ** org-clock-in =(&optional select start-time)=
4626    :PROPERTIES:
4627    :CUSTOM_ID: org-clock-in
4628    :END:
4630 - *Access:* ~C-c C-x TAB, <menu-bar> <Org> <Logging work> <Clock in>~
4631 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
4632 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in][Find modifications in git logs]]
4634 : Start the clock on the current item.
4636 : If necessary, clock-out of the currently active clock.
4638 : With a â€˜C-u’ prefix argument SELECT, offer a list of recently clocked
4639 : tasks to clock into.
4641 : When SELECT is â€˜C-u C-u’, clock into the current task and mark it as
4642 : the default task, a special task that will always be offered in the
4643 : clocking selection, associated with the letter â€˜d’.
4645 : When SELECT is â€˜C-u C-u C-u’, clock in by using the last clock-out
4646 : time as the start time.  See â€˜org-clock-continuously’ to make this
4647 : the default behavior.
4648 ** org-do-promote
4649    :PROPERTIES:
4650    :CUSTOM_ID: org-do-promote
4651    :END:
4653 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4654 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-do-promote][Find modifications in git logs]]
4656 : Promote the current heading higher up the tree.
4657 : If the region is active in â€˜transient-mark-mode’, promote all
4658 : headings in the region.
4659 ** org-agenda-drag-line-forward =(arg &optional backward)=
4660    :PROPERTIES:
4661    :CUSTOM_ID: org-agenda-drag-line-forward
4662    :END:
4664 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4665 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-drag-line-forward][Find modifications in git logs]]
4667 : Drag an agenda line forward by ARG lines.
4668 : When the optional argument â€˜backward’ is non-nil, move backward.
4669 ** org-inc-effort
4670    :PROPERTIES:
4671    :CUSTOM_ID: org-inc-effort
4672    :END:
4674 - *Access:* ~C-c C-x E~
4675 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4676 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inc-effort][Find modifications in git logs]]
4678 : Increment the value of the effort property in the current entry.
4679 ** org-indent-to-column =(column &optional minimum)=
4680    :PROPERTIES:
4681    :CUSTOM_ID: org-indent-to-column
4682    :END:
4684 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
4685 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-to-column][Find modifications in git logs]]
4687 : Indent from point with tabs and spaces until COLUMN is reached.
4688 : Optional second argument MINIMUM says always do at least MINIMUM spaces
4689 : even if that goes past COLUMN; by default, MINIMUM is zero.
4691 : The return value is COLUMN.
4693 : (fn COLUMN &optional MINIMUM)
4694 ** org-agenda-kill
4695    :PROPERTIES:
4696    :CUSTOM_ID: org-agenda-kill
4697    :END:
4699 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4700 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-kill][Find modifications in git logs]]
4702 : Kill the entry or subtree belonging to the current agenda entry.
4703 ** org-protocol-create =(&optional project-plist)=
4704    :PROPERTIES:
4705    :CUSTOM_ID: org-protocol-create
4706    :END:
4708 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
4709 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-create][Find modifications in git logs]]
4711 : Create a new org-protocol project interactively.
4712 : An org-protocol project is an entry in
4713 : â€˜org-protocol-project-alist’ which is used by
4714 : â€˜org-protocol-open-source’.  Optionally use PROJECT-PLIST to
4715 : initialize the defaults for this project.  If PROJECT-PLIST is
4716 : the cdr of an element in â€˜org-publish-project-alist’, reuse
4717 : :base-directory, :html-extension and :base-extension.
4718 ** org-odt-export-as-odf =(latex-frag &optional odf-file)=
4719    :PROPERTIES:
4720    :CUSTOM_ID: org-odt-export-as-odf
4721    :END:
4723 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
4724 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-export-as-odf][Find modifications in git logs]]
4726 : Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
4727 : Use â€˜org-create-math-formula’ to convert LATEX-FRAG first to
4728 : MathML.  When invoked as an interactive command, use
4729 : â€˜org-latex-regexps’ to infer LATEX-FRAG from currently active
4730 : region.  If no LaTeX fragments are found, prompt for it.  Push
4731 : MathML source to kill ring depending on the value of
4732 : â€˜org-export-copy-to-kill-ring’.
4733 ** org-footnote-new
4734    :PROPERTIES:
4735    :CUSTOM_ID: org-footnote-new
4736    :END:
4738 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
4739 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-new][Find modifications in git logs]]
4741 : Insert a new footnote.
4742 : This command prompts for a label.  If this is a label referencing an
4743 : existing label, only insert the label.  If the footnote label is empty
4744 : or new, let the user edit the definition of the footnote.
4745 ** org-edit-src-save
4746    :PROPERTIES:
4747    :CUSTOM_ID: org-edit-src-save
4748    :END:
4750 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
4751 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-save][Find modifications in git logs]]
4753 : Save parent buffer with current state source-code buffer.
4754 ** org-inlinetask-insert-task =(&optional no-state)=
4755    :PROPERTIES:
4756    :CUSTOM_ID: org-inlinetask-insert-task
4757    :END:
4759 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
4760 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-insert-task][Find modifications in git logs]]
4762 : Insert an inline task.
4763 : If prefix arg NO-STATE is set, ignore â€˜org-inlinetask-default-state’.
4764 ** org-lint--ignore-checker
4765    :PROPERTIES:
4766    :CUSTOM_ID: org-lint--ignore-checker
4767    :END:
4769 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
4770 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--ignore-checker][Find modifications in git logs]]
4772 : Ignore all reports from checker that generated the report at point.
4773 : Checker will also be ignored in all subsequent reports.
4774 ** org-table-import =(file arg)=
4775    :PROPERTIES:
4776    :CUSTOM_ID: org-table-import
4777    :END:
4779 - *Access:* ~<menu-bar> <Tbl> <Import from File>~
4780 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
4781 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-import][Find modifications in git logs]]
4783 : Import FILE as a table.
4784 : The file is assumed to be tab-separated.  Such files can be produced by most
4785 : spreadsheet and database applications.  If no tabs (at least one per line)
4786 : are found, lines will be split on whitespace into fields.
4787 ** org-babel-next-src-block =(&optional arg)=
4788    :PROPERTIES:
4789    :CUSTOM_ID: org-babel-next-src-block
4790    :END:
4792 - *Access:* ~C-c C-v C-n, C-c C-v n~
4793 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4794 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-next-src-block][Find modifications in git logs]]
4796 : Jump to the next source block.
4797 : With optional prefix argument ARG, jump forward ARG many source blocks.
4798 ** org-submit-bug-report
4799    :PROPERTIES:
4800    :CUSTOM_ID: org-submit-bug-report
4801    :END:
4803 - *Access:* ~<menu-bar> <Org> <Send bug report>~
4804 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4805 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-submit-bug-report][Find modifications in git logs]]
4807 : Submit a bug report on Org via mail.
4809 : Don’t hesitate to report any problems or inaccurate documentation.
4811 : If you don’t have setup sending mail from (X)Emacs, please copy the
4812 : output buffer into your mail program, as it gives us important
4813 : information about your Org version and configuration.
4814 ** org-agenda-convert-date
4815    :PROPERTIES:
4816    :CUSTOM_ID: org-agenda-convert-date
4817    :END:
4819 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4820 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-convert-date][Find modifications in git logs]]
4823 ** org-shiftmetaup =(&optional _arg)=
4824    :PROPERTIES:
4825    :CUSTOM_ID: org-shiftmetaup
4826    :END:
4828 - *Access:* ~<M-S-up>, <menu-bar> <Tbl> <Row> <Delete Row>~
4829 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
4830 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaup][Find modifications in git logs]]
4832 : Drag the line at point up.
4833 : In a table, kill the current row.
4834 : On a clock timestamp, update the value of the timestamp like â€˜S-<up>’
4835 : but also adjust the previous clocked item in the clock history.
4836 : Everywhere else, drag the line at point up.
4837 ** org-babel-hash-at-point =(&optional point)=
4838    :PROPERTIES:
4839    :CUSTOM_ID: org-babel-hash-at-point
4840    :END:
4842 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4843 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-hash-at-point][Find modifications in git logs]]
4845 : Return the value of the hash at POINT.
4846 : The hash is also added as the last element of the kill ring.
4847 : This can be called with â€˜C-c C-c’.
4848 ** org-footnote-renumber-fn:N
4849    :PROPERTIES:
4850    :CUSTOM_ID: org-footnote-renumber-fn:N
4851    :END:
4853 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
4854 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-renumber-fn:N][Find modifications in git logs]]
4856 : Order numbered footnotes into a sequence in the document.
4857 ** org-babel-pop-to-session-maybe
4858    :PROPERTIES:
4859    :CUSTOM_ID: org-babel-pop-to-session-maybe
4860    :END:
4862 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4863 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-pop-to-session-maybe][Find modifications in git logs]]
4865 : Conditionally pop to a session.
4866 : Detect if this is context for a org-babel src-block and if so
4867 : then run â€˜org-babel-switch-to-session’.
4868 ** org-agenda-goto =(&optional highlight)=
4869    :PROPERTIES:
4870    :CUSTOM_ID: org-agenda-goto
4871    :END:
4873 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4874 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-goto][Find modifications in git logs]]
4876 : Go to the entry at point in the corresponding Org file.
4877 ** org-mouse-show-overview
4878    :PROPERTIES:
4879    :CUSTOM_ID: org-mouse-show-overview
4880    :END:
4882 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
4883 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-show-overview][Find modifications in git logs]]
4885 : Change visibility of current org buffer to first-level headlines only.
4886 ** org-agenda-switch-to =(&optional delete-other-windows)=
4887    :PROPERTIES:
4888    :CUSTOM_ID: org-agenda-switch-to
4889    :END:
4891 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4892 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-switch-to][Find modifications in git logs]]
4894 : Go to the Org mode file which contains the item at point.
4895 : When optional argument DELETE-OTHER-WINDOWS is non-nil, the
4896 : displayed Org file fills the frame.
4897 ** org-babel-goto-named-src-block =(name)=
4898    :PROPERTIES:
4899    :CUSTOM_ID: org-babel-goto-named-src-block
4900    :END:
4902 - *Access:* ~C-c C-v g~
4903 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
4904 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-goto-named-src-block][Find modifications in git logs]]
4906 : Go to a named source-code block.
4907 ** org-org-export-as-org =(&optional async subtreep visible-only body-only ext-plist)=
4908    :PROPERTIES:
4909    :CUSTOM_ID: org-org-export-as-org
4910    :END:
4912 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-org.el][ox-org.el]]
4913 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-org-export-as-org][Find modifications in git logs]]
4915 : Export current buffer to an Org buffer.
4917 : If narrowing is active in the current buffer, only export its
4918 : narrowed part.
4920 : If a region is active, export that region.
4922 : A non-nil optional argument ASYNC means the process should happen
4923 : asynchronously.  The resulting buffer should be accessible
4924 : through the â€˜org-export-stack’ interface.
4926 : When optional argument SUBTREEP is non-nil, export the sub-tree
4927 : at point, extracting information from the headline properties
4928 : first.
4930 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4931 : contents of hidden elements.
4933 : When optional argument BODY-ONLY is non-nil, strip document
4934 : keywords from output.
4936 : EXT-PLIST, when provided, is a property list with external
4937 : parameters overriding Org default settings, but still inferior to
4938 : file-local settings.
4940 : Export is done in a buffer named "*Org ORG Export*", which will
4941 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
4942 : non-nil.
4943 ** org-export-stack-remove =(&optional source)=
4944    :PROPERTIES:
4945    :CUSTOM_ID: org-export-stack-remove
4946    :END:
4948 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
4949 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-remove][Find modifications in git logs]]
4951 : Remove export results at point from stack.
4952 : If optional argument SOURCE is non-nil, remove it instead.
4953 ** org-table-fedit-ref-left
4954    :PROPERTIES:
4955    :CUSTOM_ID: org-table-fedit-ref-left
4956    :END:
4958 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
4959 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-ref-left][Find modifications in git logs]]
4961 : Shift the reference at point one field to the left.
4962 ** org-timer-start =(&optional offset)=
4963    :PROPERTIES:
4964    :CUSTOM_ID: org-timer-start
4965    :END:
4967 - *Access:* ~C-c C-x 0, <menu-bar> <Org> <Dates and Scheduling> <Start/Restart Timer>~
4968 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
4969 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-start][Find modifications in git logs]]
4971 : Set the starting time for the relative timer to now.
4972 : When called with prefix argument OFFSET, prompt the user for an offset time,
4973 : with the default taken from a timer stamp at point, if any.
4974 : If OFFSET is a string or an integer, it is directly taken to be the offset
4975 : without user interaction.
4976 : When called with a double prefix arg, all timer strings in the active
4977 : region will be shifted by a specific amount.  You will be prompted for
4978 : the amount, with the default to make the first timer string in
4979 : the region 0:00:00.
4980 ** org-agenda-todo-nextset
4981    :PROPERTIES:
4982    :CUSTOM_ID: org-agenda-todo-nextset
4983    :END:
4985 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
4986 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-nextset][Find modifications in git logs]]
4988 : Switch TODO entry to next sequence.
4989 ** org-edit-fixed-width-region
4990    :PROPERTIES:
4991    :CUSTOM_ID: org-edit-fixed-width-region
4992    :END:
4994 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
4995 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-fixed-width-region][Find modifications in git logs]]
4997 : Edit the fixed-width ASCII drawing at point.
4999 : This must be a region where each line starts with a colon
5000 : followed by a space or a newline character.
5002 : A new buffer is created and the fixed-width region is copied into
5003 : it, and the buffer is switched into the major mode defined in
5004 : â€˜org-edit-fixed-width-region-mode’, which see.
5006 : When done, exit with â€˜C-c '’.  The edited text will then replace
5007 : the area in the Org mode buffer.
5008 ** org-dblock-update =(&optional arg)=
5009    :PROPERTIES:
5010    :CUSTOM_ID: org-dblock-update
5011    :END:
5013 - *Access:* ~C-c C-x C-u~
5014 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5015 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-dblock-update][Find modifications in git logs]]
5017 : User command for updating dynamic blocks.
5018 : Update the dynamic block at point.  With prefix ARG, update all dynamic
5019 : blocks in the buffer.
5020 ** org-capture-string =(string &optional keys)=
5021    :PROPERTIES:
5022    :CUSTOM_ID: org-capture-string
5023    :END:
5025 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
5026 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-string][Find modifications in git logs]]
5028 : Capture STRING with the template selected by KEYS.
5029 ** org-clock-select-task =(&optional prompt)=
5030    :PROPERTIES:
5031    :CUSTOM_ID: org-clock-select-task
5032    :END:
5034 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5035 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-select-task][Find modifications in git logs]]
5037 : Select a task that was recently associated with clocking.
5038 ** org-rss-export-as-rss =(&optional async subtreep visible-only)=
5039    :PROPERTIES:
5040    :CUSTOM_ID: org-rss-export-as-rss
5041    :END:
5043 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
5044 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-export-as-rss][Find modifications in git logs]]
5046 : Export current buffer to a RSS buffer.
5048 : If narrowing is active in the current buffer, only export its
5049 : narrowed part.
5051 : If a region is active, export that region.
5053 : A non-nil optional argument ASYNC means the process should happen
5054 : asynchronously.  The resulting buffer should be accessible
5055 : through the â€˜org-export-stack’ interface.
5057 : When optional argument SUBTREEP is non-nil, export the sub-tree
5058 : at point, extracting information from the headline properties
5059 : first.
5061 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5062 : contents of hidden elements.
5064 : Export is done in a buffer named "*Org RSS Export*", which will
5065 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
5066 : non-nil.
5067 ** org-babel-initiate-session =(&optional arg info)=
5068    :PROPERTIES:
5069    :CUSTOM_ID: org-babel-initiate-session
5070    :END:
5072 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
5073 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-initiate-session][Find modifications in git logs]]
5075 : Initiate session for current code block.
5076 : If called with a prefix argument then resolve any variable
5077 : references in the header arguments and assign these variables in
5078 : the session.  Copy the body of the code block to the kill ring.
5079 ** org-table-calc-current-TBLFM =(&optional arg)=
5080    :PROPERTIES:
5081    :CUSTOM_ID: org-table-calc-current-TBLFM
5082    :END:
5084 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5085 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-calc-current-TBLFM][Find modifications in git logs]]
5087 : Apply the #+TBLFM in the line at point to the table.
5088 ** org-table-fedit-ref-down
5089    :PROPERTIES:
5090    :CUSTOM_ID: org-table-fedit-ref-down
5091    :END:
5093 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5094 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-ref-down][Find modifications in git logs]]
5096 : Shift the reference at point one row/hline down.
5097 ** org-clock-modify-effort-estimate =(&optional value)=
5098    :PROPERTIES:
5099    :CUSTOM_ID: org-clock-modify-effort-estimate
5100    :END:
5102 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5103 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-modify-effort-estimate][Find modifications in git logs]]
5105 : Add to or set the effort estimate of the item currently being clocked.
5106 : VALUE can be a number of minutes, or a string with format hh:mm or mm.
5107 : When the string starts with a + or a - sign, the current value of the effort
5108 : property will be changed by that amount.  If the effort value is expressed
5109 : as an â€˜org-effort-durations’ (e.g. "3h"), the modified value will be
5110 : converted to a hh:mm duration.
5112 : This command will update the "Effort" property of the currently
5113 : clocked item, and the value displayed in the mode line.
5114 ** org-agenda-next-line
5115    :PROPERTIES:
5116    :CUSTOM_ID: org-agenda-next-line
5117    :END:
5119 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5120 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-next-line][Find modifications in git logs]]
5122 : Move cursor to the next line, and show if follow mode is active.
5123 ** org-previous-item
5124    :PROPERTIES:
5125    :CUSTOM_ID: org-previous-item
5126    :END:
5128 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
5129 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-previous-item][Find modifications in git logs]]
5131 : Move to the beginning of the previous item.
5132 : Throw an error when not in a list.  Also throw an error when at
5133 : first item, unless â€˜org-list-use-circular-motion’ is non-nil.
5134 ** org-ascii-export-as-ascii =(&optional async subtreep visible-only body-only ext-plist)=
5135    :PROPERTIES:
5136    :CUSTOM_ID: org-ascii-export-as-ascii
5137    :END:
5139 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
5140 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-export-as-ascii][Find modifications in git logs]]
5142 : Export current buffer to a text buffer.
5144 : If narrowing is active in the current buffer, only export its
5145 : narrowed part.
5147 : If a region is active, export that region.
5149 : A non-nil optional argument ASYNC means the process should happen
5150 : asynchronously.  The resulting buffer should be accessible
5151 : through the â€˜org-export-stack’ interface.
5153 : When optional argument SUBTREEP is non-nil, export the sub-tree
5154 : at point, extracting information from the headline properties
5155 : first.
5157 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5158 : contents of hidden elements.
5160 : When optional argument BODY-ONLY is non-nil, strip title and
5161 : table of contents from output.
5163 : EXT-PLIST, when provided, is a property list with external
5164 : parameters overriding Org default settings, but still inferior to
5165 : file-local settings.
5167 : Export is done in a buffer named "*Org ASCII Export*", which
5168 : will be displayed when â€˜org-export-show-temporary-export-buffer’
5169 : is non-nil.
5170 ** org-redisplay-inline-images
5171    :PROPERTIES:
5172    :CUSTOM_ID: org-redisplay-inline-images
5173    :END:
5175 - *Access:* ~C-c C-x C-M-v~
5176 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5177 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-redisplay-inline-images][Find modifications in git logs]]
5179 : Refresh the display of inline images.
5180 ** org-agenda-toggle-archive-tag
5181    :PROPERTIES:
5182    :CUSTOM_ID: org-agenda-toggle-archive-tag
5183    :END:
5185 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5186 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-toggle-archive-tag][Find modifications in git logs]]
5188 : Toggle the archive tag for the current entry.
5189 ** org-agenda-capture =(&optional with-time)=
5190    :PROPERTIES:
5191    :CUSTOM_ID: org-agenda-capture
5192    :END:
5194 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5195 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-capture][Find modifications in git logs]]
5197 : Call â€˜org-capture’ with the date at point.
5198 : With a â€˜C-1’ prefix, use the HH:MM value at point (if any) or the
5199 : current HH:MM time.
5200 ** org-datetree-cleanup
5201    :PROPERTIES:
5202    :CUSTOM_ID: org-datetree-cleanup
5203    :END:
5205 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-datetree.el][org-datetree.el]]
5206 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-datetree-cleanup][Find modifications in git logs]]
5208 : Make sure all entries in the current tree are under the correct date.
5209 : It may be useful to restrict the buffer to the applicable portion
5210 : before running this command, even though the command tries to be smart.
5211 ** org-agenda-date-earlier-hours =(arg)=
5212    :PROPERTIES:
5213    :CUSTOM_ID: org-agenda-date-earlier-hours
5214    :END:
5216 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5217 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-earlier-hours][Find modifications in git logs]]
5219 : Change the time of this item, in hour steps.
5220 ** org-agenda-date-later-minutes =(arg)=
5221    :PROPERTIES:
5222    :CUSTOM_ID: org-agenda-date-later-minutes
5223    :END:
5225 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5226 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-later-minutes][Find modifications in git logs]]
5228 : Change the time of this item, in units of â€˜org-time-stamp-rounding-minutes’.
5229 ** org-table-rotate-recalc-marks =(&optional newchar)=
5230    :PROPERTIES:
5231    :CUSTOM_ID: org-table-rotate-recalc-marks
5232    :END:
5234 - *Access:* ~C-#, <menu-bar> <Tbl> <Calculate> <Toggle Recalculate Mark>~
5235 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5236 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-rotate-recalc-marks][Find modifications in git logs]]
5238 : Rotate the recalculation mark in the first column.
5239 : If in any row, the first field is not consistent with a mark,
5240 : insert a new column for the markers.
5241 : When there is an active region, change all the lines in the region,
5242 : after prompting for the marking character.
5243 : After each change, a message will be displayed indicating the meaning
5244 : of the new mark.
5245 ** org-drag-element-backward
5246    :PROPERTIES:
5247    :CUSTOM_ID: org-drag-element-backward
5248    :END:
5250 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5251 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-drag-element-backward][Find modifications in git logs]]
5253 : Move backward element at point.
5254 ** org-transpose-words
5255    :PROPERTIES:
5256    :CUSTOM_ID: org-transpose-words
5257    :END:
5259 - *Access:* ~M-t~
5260 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5261 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-transpose-words][Find modifications in git logs]]
5263 : Transpose words for Org.
5264 : This uses the â€˜org-mode-transpose-word-syntax-table’ syntax
5265 : table, which interprets characters in â€˜org-emphasis-alist’ as
5266 : word constituents.
5267 ** org-next-block =(arg &optional backward block-regexp)=
5268    :PROPERTIES:
5269    :CUSTOM_ID: org-next-block
5270    :END:
5272 - *Access:* ~C-c M-f~
5273 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5274 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-next-block][Find modifications in git logs]]
5276 : Jump to the next block.
5278 : With a prefix argument ARG, jump forward ARG many blocks.
5280 : When BACKWARD is non-nil, jump to the previous block.
5282 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
5283 : Match data is set according to this regexp when the function
5284 : returns.
5286 : Return point at beginning of the opening line of found block.
5287 : Throw an error if no block is found.
5288 ** org-indent-indent-buffer
5289    :PROPERTIES:
5290    :CUSTOM_ID: org-indent-indent-buffer
5291    :END:
5293 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
5294 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-indent-buffer][Find modifications in git logs]]
5296 : Add indentation properties to the accessible part of the buffer.
5297 ** org-babel-execute-src-block =(&optional arg info params)=
5298    :PROPERTIES:
5299    :CUSTOM_ID: org-babel-execute-src-block
5300    :END:
5302 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
5303 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-execute-src-block][Find modifications in git logs]]
5305 : Execute the current source code block.
5306 : Insert the results of execution into the buffer.  Source code
5307 : execution and the collection and formatting of results can be
5308 : controlled through a variety of header arguments.
5310 : With prefix argument ARG, force re-execution even if an existing
5311 : result cached in the buffer would otherwise have been returned.
5313 : Optionally supply a value for INFO in the form returned by
5314 : â€˜org-babel-get-src-block-info’.
5316 : Optionally supply a value for PARAMS which will be merged with
5317 : the header arguments specified at the front of the source code
5318 : block.
5319 ** org-find-entry-with-id =(ident)=
5320    :PROPERTIES:
5321    :CUSTOM_ID: org-find-entry-with-id
5322    :END:
5324 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5325 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-find-entry-with-id][Find modifications in git logs]]
5327 : Locate the entry that contains the ID property with exact value IDENT.
5328 : IDENT can be a string, a symbol or a number, this function will search for
5329 : the string representation of it.
5330 : Return the position where this entry starts, or nil if there is no such entry.
5331 ** org-table-next-field
5332    :PROPERTIES:
5333    :CUSTOM_ID: org-table-next-field
5334    :END:
5336 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5337 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-next-field][Find modifications in git logs]]
5339 : Go to the next field in the current table, creating new lines as needed.
5340 : Before doing so, re-align the table if necessary.
5341 ** org-table-copy-down =(n)=
5342    :PROPERTIES:
5343    :CUSTOM_ID: org-table-copy-down
5344    :END:
5346 - *Access:* ~<S-return>, <menu-bar> <Tbl> <Copy Field from Above>~
5347 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5348 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-copy-down][Find modifications in git logs]]
5350 : Copy the value of the current field one row below.
5352 : If the field at the cursor is empty, copy the content of the
5353 : nearest non-empty field above.  With argument N, use the Nth
5354 : non-empty field.
5356 : If the current field is not empty, it is copied down to the next
5357 : row, and the cursor is moved with it.  Therefore, repeating this
5358 : command causes the column to be filled row-by-row.
5360 : If the variable â€˜org-table-copy-increment’ is non-nil and the
5361 : field is an integer or a timestamp, it will be incremented while
5362 : copying.  By default, increment by the difference between the
5363 : value in the current field and the one in the field above.  To
5364 : increment using a fixed integer, set â€˜org-table-copy-increment’
5365 : to a number.  In the case of a timestamp, increment by days.
5366 ** org-agenda-cycle-show =(&optional n)=
5367    :PROPERTIES:
5368    :CUSTOM_ID: org-agenda-cycle-show
5369    :END:
5371 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5372 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-cycle-show][Find modifications in git logs]]
5374 : Show the current entry in another window, with default settings.
5376 : Default settings are taken from â€˜org-show-context-detail’.  When
5377 : use repeatedly in immediate succession, the remote entry will
5378 : cycle through visibility
5380 :   children -> subtree -> folded
5382 : When called with a numeric prefix arg, that arg will be passed through to
5383 : â€˜org-agenda-show-1’.  For the interpretation of that argument, see the
5384 : docstring of â€˜org-agenda-show-1’.
5385 ** org-agenda-archive
5386    :PROPERTIES:
5387    :CUSTOM_ID: org-agenda-archive
5388    :END:
5390 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5391 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archive][Find modifications in git logs]]
5393 : Archive the entry or subtree belonging to the current agenda entry.
5394 ** org-babel-lob-execute-maybe
5395    :PROPERTIES:
5396    :CUSTOM_ID: org-babel-lob-execute-maybe
5397    :END:
5399 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lob.el][ob-lob.el]]
5400 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lob-execute-maybe][Find modifications in git logs]]
5402 : Execute a Library of Babel source block, if appropriate.
5403 : Detect if this is context for a Library Of Babel source block and
5404 : if so then run the appropriate source block from the Library.
5405 ** org-timestamp-down =(&optional arg)=
5406    :PROPERTIES:
5407    :CUSTOM_ID: org-timestamp-down
5408    :END:
5410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timestamp-down][Find modifications in git logs]]
5413 : Decrease the date item at the cursor by one.
5414 : If the cursor is on the year, change the year.  If it is on the month,
5415 : the day or the time, change that.
5416 : With prefix ARG, change by that many units.
5417 ** org-agenda-next-date-line =(&optional arg)=
5418    :PROPERTIES:
5419    :CUSTOM_ID: org-agenda-next-date-line
5420    :END:
5422 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5423 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-next-date-line][Find modifications in git logs]]
5425 : Jump to the next line indicating a date in agenda buffer.
5426 ** org-agenda-show-and-scroll-up =(&optional arg)=
5427    :PROPERTIES:
5428    :CUSTOM_ID: org-agenda-show-and-scroll-up
5429    :END:
5431 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5432 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-and-scroll-up][Find modifications in git logs]]
5434 : Display the Org file which contains the item at point.
5436 : When called repeatedly, scroll the window that is displaying the buffer.
5438 : With a â€˜C-u’ prefix, use â€˜org-show-entry’ instead of â€˜outline-show-subtree’
5439 : to display the item, so that drawers and logbooks stay folded.
5440 ** org-mouse-move-tree =(event)=
5441    :PROPERTIES:
5442    :CUSTOM_ID: org-mouse-move-tree
5443    :END:
5445 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
5446 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-move-tree][Find modifications in git logs]]
5449 ** org-timestamp-up =(&optional arg)=
5450    :PROPERTIES:
5451    :CUSTOM_ID: org-timestamp-up
5452    :END:
5454 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5455 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timestamp-up][Find modifications in git logs]]
5457 : Increase the date item at the cursor by one.
5458 : If the cursor is on the year, change the year.  If it is on the month,
5459 : the day or the time, change that.
5460 : With prefix ARG, change by that many units.
5461 ** org-mouse-show-headlines
5462    :PROPERTIES:
5463    :CUSTOM_ID: org-mouse-show-headlines
5464    :END:
5466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
5467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-show-headlines][Find modifications in git logs]]
5469 : Change the visibility of the current org buffer to only show headlines.
5470 ** org-publish =(project &optional force async)=
5471    :PROPERTIES:
5472    :CUSTOM_ID: org-publish
5473    :END:
5475 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
5476 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish][Find modifications in git logs]]
5478 : Publish PROJECT.
5480 : PROJECT is either a project name, as a string, or a project
5481 : alist (see â€˜org-publish-project-alist’ variable).
5483 : When optional argument FORCE is non-nil, force publishing all
5484 : files in PROJECT.  With a non-nil optional argument ASYNC,
5485 : publishing will be done asynchronously, in another process.
5486 ** org-speedbar-set-agenda-restriction
5487    :PROPERTIES:
5488    :CUSTOM_ID: org-speedbar-set-agenda-restriction
5489    :END:
5491 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5492 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-speedbar-set-agenda-restriction][Find modifications in git logs]]
5494 : Restrict future agenda commands to the location at point in speedbar.
5495 : To get rid of the restriction, use â€˜C-c C-x >’.
5496 ** org-mark-ring-push =(&optional pos buffer)=
5497    :PROPERTIES:
5498    :CUSTOM_ID: org-mark-ring-push
5499    :END:
5501 - *Access:* ~C-c %~
5502 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5503 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mark-ring-push][Find modifications in git logs]]
5505 : Put the current position or POS into the mark ring and rotate it.
5506 ** org-mouse-timestamp-today =(&optional shift units)=
5507    :PROPERTIES:
5508    :CUSTOM_ID: org-mouse-timestamp-today
5509    :END:
5511 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
5512 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-timestamp-today][Find modifications in git logs]]
5514 : Change the timestamp into SHIFT UNITS in the future.
5516 : For the acceptable UNITS, see â€˜org-timestamp-change’.
5517 ** org-shiftup =(&optional arg)=
5518    :PROPERTIES:
5519    :CUSTOM_ID: org-shiftup
5520    :END:
5522 - *Access:* ~<S-up>, <menu-bar> <Org> <TODO Lists> <Priority Up>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Later>~
5523 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5524 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftup][Find modifications in git logs]]
5526 : Increase item in timestamp or increase priority of current headline.
5527 : Calls â€˜org-timestamp-up’ or â€˜org-priority-up’, or â€˜org-previous-item’,
5528 : depending on context.  See the individual commands for more information.
5529 ** org-archive-to-archive-sibling
5530    :PROPERTIES:
5531    :CUSTOM_ID: org-archive-to-archive-sibling
5532    :END:
5534 - *Access:* ~C-c C-x A, <menu-bar> <Org> <Archive> <Move subtree to Archive sibling>~
5535 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
5536 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-to-archive-sibling][Find modifications in git logs]]
5538 : Archive the current heading by moving it under the archive sibling.
5540 : The archive sibling is a sibling of the heading with the heading name
5541 : â€˜org-archive-sibling-heading’ and an â€˜org-archive-tag’ tag.  If this
5542 : sibling does not exist, it will be created at the end of the subtree.
5544 : Archiving time is retained in the ARCHIVE_TIME node property.
5545 ** org-publish-project =(project &optional force async)=
5546    :PROPERTIES:
5547    :CUSTOM_ID: org-publish-project
5548    :END:
5550 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
5551 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-project][Find modifications in git logs]]
5553 : Publish PROJECT.
5555 : PROJECT is either a project name, as a string, or a project
5556 : alist (see â€˜org-publish-project-alist’ variable).
5558 : When optional argument FORCE is non-nil, force publishing all
5559 : files in PROJECT.  With a non-nil optional argument ASYNC,
5560 : publishing will be done asynchronously, in another process.
5561 ** org-table-convert-region =(beg0 end0 &optional separator)=
5562    :PROPERTIES:
5563    :CUSTOM_ID: org-table-convert-region
5564    :END:
5566 - *Access:* ~<menu-bar> <Tbl> <Convert Region>~
5567 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5568 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-convert-region][Find modifications in git logs]]
5570 : Convert region to a table.
5572 : The region goes from BEG0 to END0, but these borders will be moved
5573 : slightly, to make sure a beginning of line in the first line is included.
5575 : SEPARATOR specifies the field separator in the lines.  It can have the
5576 : following values:
5578 : (4)     Use the comma as a field separator
5579 : (16)    Use a TAB as field separator
5580 : (64)    Prompt for a regular expression as field separator
5581 : integer  When a number, use that many spaces, or a TAB, as field separator
5582 : regexp   When a regular expression, use it to match the separator
5583 : nil      When nil, the command tries to be smart and figure out the
5584 :          separator in the following way:
5585 :          - when each line contains a TAB, assume TAB-separated material
5586 :          - when each line contains a comma, assume CSV material
5587 :          - else, assume one or more SPACE characters as separator.
5588 ** org-goto-left
5589    :PROPERTIES:
5590    :CUSTOM_ID: org-goto-left
5591    :END:
5593 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5594 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-left][Find modifications in git logs]]
5596 : Finish â€˜org-goto’ by going to the new location.
5597 ** org-babel-goto-src-block-head
5598    :PROPERTIES:
5599    :CUSTOM_ID: org-babel-goto-src-block-head
5600    :END:
5602 - *Access:* ~C-c C-v C-u, C-c C-v u~
5603 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
5604 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-goto-src-block-head][Find modifications in git logs]]
5606 : Go to the beginning of the current code block.
5607 ** org-down-element
5608    :PROPERTIES:
5609    :CUSTOM_ID: org-down-element
5610    :END:
5612 - *Access:* ~C-c C-_~
5613 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5614 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-down-element][Find modifications in git logs]]
5616 : Move to inner element.
5617 ** org-shiftmetaright
5618    :PROPERTIES:
5619    :CUSTOM_ID: org-shiftmetaright
5620    :END:
5622 - *Access:* ~<M-S-right>, <menu-bar> <Org> <Edit Structure> <Demote Subtree>, <menu-bar> <Tbl> <Column> <Insert Column>~
5623 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5624 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaright][Find modifications in git logs]]
5626 : Demote subtree or insert table column.
5627 : Calls â€˜org-demote-subtree’, â€˜org-indent-item-tree’, or
5628 : â€˜org-table-insert-column’, depending on context.  See the
5629 : individual commands for more information.
5630 ** org-edit-export-block
5631    :PROPERTIES:
5632    :CUSTOM_ID: org-edit-export-block
5633    :END:
5635 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
5636 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-export-block][Find modifications in git logs]]
5638 : Edit export block at point.
5640 : A new buffer is created and the block is copied into it, and the
5641 : buffer is switched into an appropriate major mode.  See also
5642 : â€˜org-src-lang-modes’.
5644 : When done, exit with â€˜C-c '’.  The edited text will then replace
5645 : the area in the Org mode buffer.
5647 : Throw an error when not at an export block.
5648 ** org-babel-remove-result =(&optional info keep-keyword)=
5649    :PROPERTIES:
5650    :CUSTOM_ID: org-babel-remove-result
5651    :END:
5653 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
5654 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-remove-result][Find modifications in git logs]]
5656 : Remove the result of the current source block.
5657 ** org-md-export-to-markdown =(&optional async subtreep visible-only)=
5658    :PROPERTIES:
5659    :CUSTOM_ID: org-md-export-to-markdown
5660    :END:
5662 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
5663 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-export-to-markdown][Find modifications in git logs]]
5665 : Export current buffer to a Markdown file.
5667 : If narrowing is active in the current buffer, only export its
5668 : narrowed part.
5670 : If a region is active, export that region.
5672 : A non-nil optional argument ASYNC means the process should happen
5673 : asynchronously.  The resulting file should be accessible through
5674 : the â€˜org-export-stack’ interface.
5676 : When optional argument SUBTREEP is non-nil, export the sub-tree
5677 : at point, extracting information from the headline properties
5678 : first.
5680 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5681 : contents of hidden elements.
5683 : Return output file’s name.
5684 ** org-decrypt-entries
5685    :PROPERTIES:
5686    :CUSTOM_ID: org-decrypt-entries
5687    :END:
5689 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
5690 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-decrypt-entries][Find modifications in git logs]]
5692 : Decrypt all entries in the current buffer.
5693 ** org-timer-item =(&optional arg)=
5694    :PROPERTIES:
5695    :CUSTOM_ID: org-timer-item
5696    :END:
5698 - *Access:* ~C-c C-x -, <menu-bar> <Org> <Dates and Scheduling> <Insert Timer Item>~
5699 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
5700 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-item][Find modifications in git logs]]
5702 : Insert a description-type item with the current timer value.
5703 ** org-clock-update-time-maybe
5704    :PROPERTIES:
5705    :CUSTOM_ID: org-clock-update-time-maybe
5706    :END:
5708 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5709 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-update-time-maybe][Find modifications in git logs]]
5711 : If this is a CLOCK line, update it and return t.
5712 : Otherwise, return nil.
5713 ** org-reftex-citation
5714    :PROPERTIES:
5715    :CUSTOM_ID: org-reftex-citation
5716    :END:
5718 - *Access:* ~C-c C-x [, <menu-bar> <Org> <LaTeX> <Insert citation>~
5719 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5720 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reftex-citation][Find modifications in git logs]]
5722 : Use reftex-citation to insert a citation into the buffer.
5723 : This looks for a line like
5725 : #+BIBLIOGRAPHY: foo plain option:-d
5727 : and derives from it that foo.bib is the bibliography file relevant
5728 : for this document.  It then installs the necessary environment for RefTeX
5729 : to work in this buffer and calls â€˜reftex-citation’  to insert a citation
5730 : into the buffer.
5732 : Export of such citations to both LaTeX and HTML is handled by the contributed
5733 : package ox-bibtex by Taru Karttunen.
5734 ** org-speed-command-help
5735    :PROPERTIES:
5736    :CUSTOM_ID: org-speed-command-help
5737    :END:
5739 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5740 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-speed-command-help][Find modifications in git logs]]
5742 : Show the available speed commands.
5743 ** org-clock-report =(&optional arg)=
5744    :PROPERTIES:
5745    :CUSTOM_ID: org-clock-report
5746    :END:
5748 - *Access:* ~C-c C-x C-r, <menu-bar> <Org> <Logging work> <Create clock table>~
5749 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5750 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-report][Find modifications in git logs]]
5752 : Create a table containing a report about clocked time.
5753 : If the cursor is inside an existing clocktable block, then the table
5754 : will be updated.  If not, a new clocktable will be inserted.  The scope
5755 : of the new clock will be subtree when called from within a subtree, and
5756 : file elsewhere.
5758 : When called with a prefix argument, move to the first clock table in the
5759 : buffer and update it.
5760 ** orgtbl-ret
5761    :PROPERTIES:
5762    :CUSTOM_ID: orgtbl-ret
5763    :END:
5765 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5766 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-ret][Find modifications in git logs]]
5768 : Justification and field motion for â€˜orgtbl-mode’.
5769 ** org-activate-plain-links =(&rest ignore)=
5770    :PROPERTIES:
5771    :CUSTOM_ID: org-activate-plain-links
5772    :END:
5774 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
5775 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-activate-plain-links][Find modifications in git logs]]
5777 : Do nothing and return nil.
5778 : This function accepts any number of arguments, but ignores them.
5780 : (fn &rest IGNORE)
5781 ** org-attach-set-inherit
5782    :PROPERTIES:
5783    :CUSTOM_ID: org-attach-set-inherit
5784    :END:
5786 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
5787 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-set-inherit][Find modifications in git logs]]
5789 : Set the ATTACH_DIR_INHERIT property of the current entry.
5790 : The property defines the directory that is used for attachments
5791 : of the entry and any children that do not explicitly define (by setting
5792 : the ATTACH_DIR property) their own attachment directory.
5793 ** org-clock-mark-default-task
5794    :PROPERTIES:
5795    :CUSTOM_ID: org-clock-mark-default-task
5796    :END:
5798 - *Access:* ~<menu-bar> <Org> <Logging work> <Mark as default task>~
5799 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5800 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-mark-default-task][Find modifications in git logs]]
5802 : Mark current task as default task.
5803 ** org-agenda-later =(arg)=
5804    :PROPERTIES:
5805    :CUSTOM_ID: org-agenda-later
5806    :END:
5808 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5809 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-later][Find modifications in git logs]]
5811 : Go forward in time by the current span.
5812 : With prefix ARG, go forward that many times the current span.
5813 ** org-feed-update =(feed &optional retrieve-only)=
5814    :PROPERTIES:
5815    :CUSTOM_ID: org-feed-update
5816    :END:
5818 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
5819 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-update][Find modifications in git logs]]
5821 : Get inbox items from FEED.
5822 : FEED can be a string with an association in â€˜org-feed-alist’, or
5823 : it can be a list structured like an entry in â€˜org-feed-alist’.
5824 ** org-agenda-date-prompt =(arg)=
5825    :PROPERTIES:
5826    :CUSTOM_ID: org-agenda-date-prompt
5827    :END:
5829 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5830 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-prompt][Find modifications in git logs]]
5832 : Change the date of this item.  Date is prompted for, with default today.
5833 : The prefix ARG is passed to the â€˜org-time-stamp’ command and can therefore
5834 : be used to request time specification in the time stamp.
5835 ** org-agenda-view-mode-dispatch
5836    :PROPERTIES:
5837    :CUSTOM_ID: org-agenda-view-mode-dispatch
5838    :END:
5840 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5841 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-view-mode-dispatch][Find modifications in git logs]]
5843 : Call one of the view mode commands.
5844 ** org-agenda-show-mouse =(ev)=
5845    :PROPERTIES:
5846    :CUSTOM_ID: org-agenda-show-mouse
5847    :END:
5849 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5850 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-mouse][Find modifications in git logs]]
5852 : Display the Org file which contains the item at the mouse click.
5853 ** org-agenda-remove-filter =(type)=
5854    :PROPERTIES:
5855    :CUSTOM_ID: org-agenda-remove-filter
5856    :END:
5858 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5859 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-remove-filter][Find modifications in git logs]]
5862 ** org-agenda-set-tags =(&optional tag onoff)=
5863    :PROPERTIES:
5864    :CUSTOM_ID: org-agenda-set-tags
5865    :END:
5867 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5868 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-set-tags][Find modifications in git logs]]
5870 : Set tags for the current headline.
5871 ** org-clock-remove-overlays =(&optional _beg _end noremove)=
5872    :PROPERTIES:
5873    :CUSTOM_ID: org-clock-remove-overlays
5874    :END:
5876 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
5877 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-remove-overlays][Find modifications in git logs]]
5879 : Remove the occur highlights from the buffer.
5880 : If NOREMOVE is nil, remove this function from the
5881 : â€˜before-change-functions’ in the current buffer.
5882 ** org-set-property =(property value)=
5883    :PROPERTIES:
5884    :CUSTOM_ID: org-set-property
5885    :END:
5887 - *Access:* ~C-c C-x p, <menu-bar> <Org> <TAGS and Properties> <Set property>~
5888 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5889 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-property][Find modifications in git logs]]
5891 : In the current entry, set PROPERTY to VALUE.
5893 : When called interactively, this will prompt for a property name, offering
5894 : completion on existing and default properties.  And then it will prompt
5895 : for a value, offering completion either on allowed values (via an inherited
5896 : xxx_ALL property) or on existing values in other instances of this property
5897 : in the current file.
5899 : Throw an error when trying to set a property with an invalid name.
5900 ** org-store-link =(arg)=
5901    :PROPERTIES:
5902    :CUSTOM_ID: org-store-link
5903    :END:
5905 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Store Link (Global)>, C-c l~
5906 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5907 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-store-link][Find modifications in git logs]]
5909 : Store an org-link to the current location.
5911 : This link is added to â€˜org-stored-links’ and can later be inserted
5912 : into an Org buffer with â€˜org-insert-link’ (‘C-c C-l’).
5914 : For some link types, a â€˜C-u’ prefix ARG is interpreted.  A single
5915 : â€˜C-u’ negates â€˜org-context-in-file-links’ for file links or
5916 : â€˜org-gnus-prefer-web-links’ for links to Usenet articles.
5918 : A â€˜C-u C-u’ prefix ARG forces skipping storing functions that are not
5919 : part of Org core.
5921 : A â€˜C-u C-u C-u’ prefix ARG forces storing a link for each line in the
5922 : active region.
5923 ** org-toggle-item =(arg)=
5924    :PROPERTIES:
5925    :CUSTOM_ID: org-toggle-item
5926    :END:
5928 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
5929 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-item][Find modifications in git logs]]
5931 : Convert headings or normal lines to items, items to normal lines.
5932 : If there is no active region, only the current line is considered.
5934 : If the first non blank line in the region is a headline, convert
5935 : all headlines to items, shifting text accordingly.
5937 : If it is an item, convert all items to normal lines.
5939 : If it is normal text, change region into a list of items.
5940 : With a prefix argument ARG, change the region in a single item.
5941 ** orgtbl-tab =(arg)=
5942    :PROPERTIES:
5943    :CUSTOM_ID: orgtbl-tab
5944    :END:
5946 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5947 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-tab][Find modifications in git logs]]
5949 : Justification and field motion for â€˜orgtbl-mode’.
5950 ** org-table-insert-row =(&optional arg)=
5951    :PROPERTIES:
5952    :CUSTOM_ID: org-table-insert-row
5953    :END:
5955 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5956 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-insert-row][Find modifications in git logs]]
5958 : Insert a new row above the current line into the table.
5959 : With prefix ARG, insert below the current line.
5960 ** org-agenda-show-1 =(&optional more)=
5961    :PROPERTIES:
5962    :CUSTOM_ID: org-agenda-show-1
5963    :END:
5965 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
5966 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-1][Find modifications in git logs]]
5968 : Display the Org file which contains the item at point.
5969 : The prefix arg selects the amount of information to display:
5971 : 0   hide the subtree
5972 : 1   just show the entry according to defaults.
5973 : 2   show the children view
5974 : 3   show the subtree view
5975 : 4   show the entire subtree and any LOGBOOK drawers
5976 : 5   show the entire subtree and any drawers
5977 : With prefix argument FULL-ENTRY, make the entire entry visible
5978 : if it was hidden in the outline.
5979 ** orgstruct-error
5980    :PROPERTIES:
5981    :CUSTOM_ID: orgstruct-error
5982    :END:
5984 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
5985 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct-error][Find modifications in git logs]]
5987 : Error when there is no default binding for a structure key.
5988 ** org-table-edit-formulas
5989    :PROPERTIES:
5990    :CUSTOM_ID: org-table-edit-formulas
5991    :END:
5993 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
5994 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-edit-formulas][Find modifications in git logs]]
5996 : Edit the formulas of the current table in a separate buffer.
5997 ** org-escape-code-in-region =(beg end)=
5998    :PROPERTIES:
5999    :CUSTOM_ID: org-escape-code-in-region
6000    :END:
6002 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
6003 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-escape-code-in-region][Find modifications in git logs]]
6005 : Escape lines between BEG and END.
6006 : Escaping happens when a line starts with "*", "#+", ",*" or
6007 : ",#+" by appending a comma to it.
6008 ** org-timer =(&optional restart no-insert)=
6009    :PROPERTIES:
6010    :CUSTOM_ID: org-timer
6011    :END:
6013 - *Access:* ~C-c C-x ., <menu-bar> <Org> <Dates and Scheduling> <Insert Timer String>~
6014 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
6015 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer][Find modifications in git logs]]
6017 : Insert a H:MM:SS string from the timer into the buffer.
6018 : The first time this command is used, the timer is started.
6020 : When used with a â€˜C-u’ prefix, force restarting the timer.
6022 : When used with a â€˜C-u C-u’ prefix, change all the timer strings
6023 : in the region by a fixed amount.  This can be used to re-calibrate
6024 : a timer that was not started at the correct moment.
6026 : If NO-INSERT is non-nil, return the string instead of inserting
6027 : it in the buffer.
6028 ** org-element-cache-reset =(&optional all)=
6029    :PROPERTIES:
6030    :CUSTOM_ID: org-element-cache-reset
6031    :END:
6033 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-element.el][org-element.el]]
6034 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-element-cache-reset][Find modifications in git logs]]
6036 : Reset cache in current buffer.
6037 : When optional argument ALL is non-nil, reset cache in all Org
6038 : buffers.
6039 ** org-backward-paragraph
6040    :PROPERTIES:
6041    :CUSTOM_ID: org-backward-paragraph
6042    :END:
6044 - *Access:* ~<C-up>~
6045 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6046 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-backward-paragraph][Find modifications in git logs]]
6048 : Move backward to start of previous paragraph or equivalent.
6050 : The function moves point to the beginning of the current
6051 : structural element, which can be a paragraph, a table, a list
6052 : item, etc., or to the beginning of the previous visible one if
6053 : point is already there.  It also provides some special moves for
6054 : convenience:
6056 :   - On an affiliated keyword, jump to the first one.
6057 :   - On a table or a property drawer, move to its beginning.
6058 :   - On a verse or source block, stop before blank lines.
6059 ** org-agenda-show =(&optional full-entry)=
6060    :PROPERTIES:
6061    :CUSTOM_ID: org-agenda-show
6062    :END:
6064 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6065 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show][Find modifications in git logs]]
6067 : Display the Org file which contains the item at point.
6068 : With prefix argument FULL-ENTRY, make the entire entry visible
6069 : if it was hidden in the outline.
6070 ** org-table-kill-row
6071    :PROPERTIES:
6072    :CUSTOM_ID: org-table-kill-row
6073    :END:
6075 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
6076 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-kill-row][Find modifications in git logs]]
6078 : Delete the current row or horizontal line from the table.
6079 ** org-agenda-Quit
6080    :PROPERTIES:
6081    :CUSTOM_ID: org-agenda-Quit
6082    :END:
6084 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6085 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-Quit][Find modifications in git logs]]
6087 : Exit the agenda, killing the agenda buffer.
6088 : Like â€˜org-agenda-quit’, but kill the buffer even when
6089 : â€˜org-agenda-sticky’ is non-nil.
6090 ** org-icalendar-combine-agenda-files =(&optional async)=
6091    :PROPERTIES:
6092    :CUSTOM_ID: org-icalendar-combine-agenda-files
6093    :END:
6095 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
6096 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-combine-agenda-files][Find modifications in git logs]]
6098 : Combine all agenda files into a single iCalendar file.
6100 : A non-nil optional argument ASYNC means the process should happen
6101 : asynchronously.  The resulting file should be accessible through
6102 : the â€˜org-export-stack’ interface.
6104 : The file is stored under the name chosen in
6105 : â€˜org-icalendar-combined-agenda-file’.
6106 ** org-agenda-archive-default
6107    :PROPERTIES:
6108    :CUSTOM_ID: org-agenda-archive-default
6109    :END:
6111 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6112 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archive-default][Find modifications in git logs]]
6114 : Archive the entry or subtree belonging to the current agenda entry.
6115 ** org-agenda-kill-all-agenda-buffers
6116    :PROPERTIES:
6117    :CUSTOM_ID: org-agenda-kill-all-agenda-buffers
6118    :END:
6120 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6121 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-kill-all-agenda-buffers][Find modifications in git logs]]
6123 : Kill all buffers in â€˜org-agenda-mode’.
6124 : This is used when toggling sticky agendas.
6125 ** org-agenda-bulk-action =(&optional arg)=
6126    :PROPERTIES:
6127    :CUSTOM_ID: org-agenda-bulk-action
6128    :END:
6130 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6131 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-action][Find modifications in git logs]]
6133 : Execute an remote-editing action on all marked entries.
6134 : The prefix arg is passed through to the command if possible.
6135 ** org-resolve-clocks =(&optional only-dangling-p prompt-fn last-valid)=
6136    :PROPERTIES:
6137    :CUSTOM_ID: org-resolve-clocks
6138    :END:
6140 - *Access:* ~C-c C-x C-z~
6141 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
6142 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-resolve-clocks][Find modifications in git logs]]
6144 : Resolve all currently open Org clocks.
6145 : If â€˜only-dangling-p’ is non-nil, only ask to resolve dangling
6146 : (i.e., not currently open and valid) clocks.
6147 ** org-babel-lilypond-toggle-midi-play
6148    :PROPERTIES:
6149    :CUSTOM_ID: org-babel-lilypond-toggle-midi-play
6150    :END:
6152 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
6153 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-midi-play][Find modifications in git logs]]
6155 : Toggle whether midi will be played following a successful compilation.
6156 ** org-move-subtree-up =(&optional arg)=
6157    :PROPERTIES:
6158    :CUSTOM_ID: org-move-subtree-up
6159    :END:
6161 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6162 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-move-subtree-up][Find modifications in git logs]]
6164 : Move the current subtree up past ARG headlines of the same level.
6165 ** org-reveal =(&optional siblings)=
6166    :PROPERTIES:
6167    :CUSTOM_ID: org-reveal
6168    :END:
6170 - *Access:* ~C-c C-r, <menu-bar> <Org> <Show/Hide> <Reveal Context>~
6171 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6172 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reveal][Find modifications in git logs]]
6174 : Show current entry, hierarchy above it, and the following headline.
6176 : This can be used to show a consistent set of context around
6177 : locations exposed with â€˜org-show-context’.
6179 : With optional argument SIBLINGS, on each level of the hierarchy all
6180 : siblings are shown.  This repairs the tree structure to what it would
6181 : look like when opened with hierarchical calls to â€˜org-cycle’.
6183 : With a C-u C-u prefix, go to the parent and show the entire tree.
6184 ** org-export-dispatch =(&optional arg)=
6185    :PROPERTIES:
6186    :CUSTOM_ID: org-export-dispatch
6187    :END:
6189 - *Access:* ~C-c C-e, <menu-bar> <Org> <Export/Publish...>~
6190 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
6191 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-dispatch][Find modifications in git logs]]
6193 : Export dispatcher for Org mode.
6195 : It provides an access to common export related tasks in a buffer.
6196 : Its interface comes in two flavors: standard and expert.
6198 : While both share the same set of bindings, only the former
6199 : displays the valid keys associations in a dedicated buffer.
6200 : Scrolling (resp. line-wise motion) in this buffer is done with
6201 : SPC and DEL (resp. C-n and C-p) keys.
6203 : Set variable â€˜org-export-dispatch-use-expert-ui’ to switch to one
6204 : flavor or the other.
6206 : When ARG is â€˜C-u’, repeat the last export action, with the same
6207 : set of options used back then, on the current buffer.
6209 : When ARG is â€˜C-u C-u’, display the asynchronous export stack.
6210 ** org-table-overlay-coordinates
6211    :PROPERTIES:
6212    :CUSTOM_ID: org-table-overlay-coordinates
6213    :END:
6215 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
6216 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-overlay-coordinates][Find modifications in git logs]]
6218 : Add overlays to the table at point, to show row/column coordinates.
6219 ** org-lint--jump-to-source
6220    :PROPERTIES:
6221    :CUSTOM_ID: org-lint--jump-to-source
6222    :END:
6224 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
6225 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--jump-to-source][Find modifications in git logs]]
6227 : Move to source line that generated the report at point.
6228 ** org-columns-next-allowed-value =(&optional previous nth)=
6229    :PROPERTIES:
6230    :CUSTOM_ID: org-columns-next-allowed-value
6231    :END:
6233 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
6234 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-next-allowed-value][Find modifications in git logs]]
6236 : Switch to the next allowed value for this column.
6237 : When PREVIOUS is set, go to the previous value.  When NTH is
6238 : an integer, select that value.
6239 ** org-smart-reschedule =(quality)=
6240    :PROPERTIES:
6241    :CUSTOM_ID: org-smart-reschedule
6242    :END:
6244 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-learn.el][org-learn.el]]
6245 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-smart-reschedule][Find modifications in git logs]]
6248 ** org-table-end-of-field =(&optional n)=
6249    :PROPERTIES:
6250    :CUSTOM_ID: org-table-end-of-field
6251    :END:
6253 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
6254 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-end-of-field][Find modifications in git logs]]
6256 : Move to the end of the current table field.
6257 : If already at or after the end, move to the end of the next table field.
6258 : With numeric argument N, move N-1 fields forward first.
6259 ** org-agenda-recenter =(arg)=
6260    :PROPERTIES:
6261    :CUSTOM_ID: org-agenda-recenter
6262    :END:
6264 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6265 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-recenter][Find modifications in git logs]]
6267 : Display the Org file which contains the item at point and recenter.
6268 ** org-attach-delete-all =(&optional force)=
6269    :PROPERTIES:
6270    :CUSTOM_ID: org-attach-delete-all
6271    :END:
6273 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
6274 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-delete-all][Find modifications in git logs]]
6276 : Delete all attachments from the current task.
6277 : This actually deletes the entire attachment directory.
6278 : A safer way is to open the directory in dired and delete from there.
6279 ** org-toggle-inline-images =(&optional include-linked)=
6280    :PROPERTIES:
6281    :CUSTOM_ID: org-toggle-inline-images
6282    :END:
6284 - *Access:* ~C-c C-x C-v~
6285 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6286 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-inline-images][Find modifications in git logs]]
6288 : Toggle the display of inline images.
6289 : INCLUDE-LINKED is passed to â€˜org-display-inline-images’.
6290 ** org-columns-insert-dblock
6291    :PROPERTIES:
6292    :CUSTOM_ID: org-columns-insert-dblock
6293    :END:
6295 - *Access:* ~C-c C-x i, <menu-bar> <Org> <TAGS and Properties> <Insert Column View DBlock>~
6296 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
6297 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-insert-dblock][Find modifications in git logs]]
6299 : Create a dynamic block capturing a column view table.
6300 ** org-feed-goto-inbox =(feed)=
6301    :PROPERTIES:
6302    :CUSTOM_ID: org-feed-goto-inbox
6303    :END:
6305 - *Access:* ~C-c C-x G, <menu-bar> <Org> <TODO Lists> <Go to the inbox of a feed...>~
6306 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
6307 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-goto-inbox][Find modifications in git logs]]
6309 : Go to the inbox that captures the feed named FEED.
6310 ** org-decrease-number-at-point =(&optional inc)=
6311    :PROPERTIES:
6312    :CUSTOM_ID: org-decrease-number-at-point
6313    :END:
6315 - *Access:* ~<C-M-S-left>~
6316 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6317 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-decrease-number-at-point][Find modifications in git logs]]
6319 : Decrement the number at point.
6320 : With an optional prefix numeric argument INC, decrement using
6321 : this numeric value.
6322 ** org-edit-src-abort
6323    :PROPERTIES:
6324    :CUSTOM_ID: org-edit-src-abort
6325    :END:
6327 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
6328 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-abort][Find modifications in git logs]]
6330 : Abort editing of the src code and return to the Org buffer.
6331 ** org-id-store-link
6332    :PROPERTIES:
6333    :CUSTOM_ID: org-id-store-link
6334    :END:
6336 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
6337 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-store-link][Find modifications in git logs]]
6339 : Store a link to the current entry, using its ID.
6340 ** org-tags-sparse-tree =(&optional todo-only match)=
6341    :PROPERTIES:
6342    :CUSTOM_ID: org-tags-sparse-tree
6343    :END:
6345 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6346 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-sparse-tree][Find modifications in git logs]]
6348 : Create a sparse tree according to tags string MATCH.
6350 : MATCH is a string with match syntax.  It can contain a selection
6351 : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and
6352 : TODO keywords ("TODO=\"WAITING\"") or a combination of
6353 : those.  See the manual for details.
6355 : If optional argument TODO-ONLY is non-nil, only select lines that
6356 : are also TODO tasks.
6357 ** org-agenda-bulk-toggle
6358    :PROPERTIES:
6359    :CUSTOM_ID: org-agenda-bulk-toggle
6360    :END:
6362 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6363 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-toggle][Find modifications in git logs]]
6365 : Toggle the mark at point for bulk action.
6366 ** org-ctrl-c-ret
6367    :PROPERTIES:
6368    :CUSTOM_ID: org-ctrl-c-ret
6369    :END:
6371 - *Access:* ~C-c RET~
6372 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6373 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-ret][Find modifications in git logs]]
6375 : Call â€˜org-table-hline-and-move’ or â€˜org-insert-heading’ dep. on context.
6376 ** org-agenda-date-earlier-minutes =(arg)=
6377    :PROPERTIES:
6378    :CUSTOM_ID: org-agenda-date-earlier-minutes
6379    :END:
6381 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6382 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-earlier-minutes][Find modifications in git logs]]
6384 : Change the time of this item, in units of â€˜org-time-stamp-rounding-minutes’.
6385 ** org-agenda-bulk-mark-all
6386    :PROPERTIES:
6387    :CUSTOM_ID: org-agenda-bulk-mark-all
6388    :END:
6390 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6391 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-mark-all][Find modifications in git logs]]
6393 : Mark all entries for future agenda bulk action.
6394 ** org-cancel-repeater
6395    :PROPERTIES:
6396    :CUSTOM_ID: org-cancel-repeater
6397    :END:
6399 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6400 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cancel-repeater][Find modifications in git logs]]
6402 : Cancel a repeater by setting its numeric value to zero.
6403 ** org-babel-lilypond-toggle-arrange-mode
6404    :PROPERTIES:
6405    :CUSTOM_ID: org-babel-lilypond-toggle-arrange-mode
6406    :END:
6408 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
6409 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-arrange-mode][Find modifications in git logs]]
6411 : Toggle whether in Arrange mode or Basic mode.
6412 ** org-footnote-goto-definition =(label &optional location)=
6413    :PROPERTIES:
6414    :CUSTOM_ID: org-footnote-goto-definition
6415    :END:
6417 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
6418 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-goto-definition][Find modifications in git logs]]
6420 : Move point to the definition of the footnote LABEL.
6422 : LOCATION, when non-nil specifies the buffer position of the
6423 : definition.
6425 : Throw an error if there is no definition or if it cannot be
6426 : reached from current narrowed part of buffer.  Return a non-nil
6427 : value if point was successfully moved.
6428 ** org-agenda-filter-by-regexp =(strip)=
6429    :PROPERTIES:
6430    :CUSTOM_ID: org-agenda-filter-by-regexp
6431    :END:
6433 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6434 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-by-regexp][Find modifications in git logs]]
6436 : Filter agenda entries by a regular expression.
6437 : Regexp filters are cumulative.
6438 : With no prefix argument, keep entries matching the regexp.
6439 : With one prefix argument, filter out entries matching the regexp.
6440 : With two prefix arguments, remove the regexp filters.
6441 ** org-agenda-fontify-priorities
6442    :PROPERTIES:
6443    :CUSTOM_ID: org-agenda-fontify-priorities
6444    :END:
6446 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6447 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-fontify-priorities][Find modifications in git logs]]
6449 : Make highest priority lines bold, and lowest italic.
6450 ** org-shiftright =(&optional arg)=
6451    :PROPERTIES:
6452    :CUSTOM_ID: org-shiftright
6453    :END:
6455 - *Access:* ~<S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Later>~
6456 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6457 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftright][Find modifications in git logs]]
6459 : Cycle the thing at point or in the current line, depending on context.
6460 : Depending on context, this does one of the following:
6462 : - switch a timestamp at point one day into the future
6463 : - on a headline, switch to the next TODO keyword.
6464 : - on an item, switch entire list to the next bullet type
6465 : - on a property line, switch to the next allowed value
6466 : - on a clocktable definition line, move time block into the future
6467 ** org-agenda-refile =(&optional goto rfloc no-update)=
6468    :PROPERTIES:
6469    :CUSTOM_ID: org-agenda-refile
6470    :END:
6472 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6473 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-refile][Find modifications in git logs]]
6475 : Refile the item at point.
6477 : When called with â€˜C-u C-u’, go to the location of the last
6478 : refiled item.
6480 : When called with â€˜C-u C-u C-u’ prefix or when GOTO is 0, clear
6481 : the refile cache.
6483 : RFLOC can be a refile location obtained in a different way.
6485 : When NO-UPDATE is non-nil, don’t redo the agenda buffer.
6486 ** org-caldav-sync
6487    :PROPERTIES:
6488    :CUSTOM_ID: org-caldav-sync
6489    :END:
6491 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-caldav.el][org-caldav.el]]
6492 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-caldav-sync][Find modifications in git logs]]
6494 : Sync Org with calendar.
6495 ** org-shiftmetaleft
6496    :PROPERTIES:
6497    :CUSTOM_ID: org-shiftmetaleft
6498    :END:
6500 - *Access:* ~<M-S-left>, <menu-bar> <Org> <Edit Structure> <Promote Subtree>, <menu-bar> <Tbl> <Column> <Delete Column>~
6501 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6502 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetaleft][Find modifications in git logs]]
6504 : Promote subtree or delete table column.
6505 : Calls â€˜org-promote-subtree’, â€˜org-outdent-item-tree’, or
6506 : â€˜org-table-delete-column’, depending on context.  See the
6507 : individual commands for more information.
6508 ** org-habit-toggle-habits
6509    :PROPERTIES:
6510    :CUSTOM_ID: org-habit-toggle-habits
6511    :END:
6513 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
6514 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-toggle-habits][Find modifications in git logs]]
6516 : Toggle display of habits in an agenda buffer.
6517 ** org-columns-move-left
6518    :PROPERTIES:
6519    :CUSTOM_ID: org-columns-move-left
6520    :END:
6522 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
6523 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-move-left][Find modifications in git logs]]
6525 : Swap this column with the one to the left.
6526 ** org-bibtex-read-buffer =(buffer)=
6527    :PROPERTIES:
6528    :CUSTOM_ID: org-bibtex-read-buffer
6529    :END:
6531 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
6532 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-read-buffer][Find modifications in git logs]]
6534 : Read all bibtex entries in BUFFER and save to â€˜org-bibtex-entries’.
6535 : Return the number of saved entries.
6536 ** org-agenda-show-scroll-down
6537    :PROPERTIES:
6538    :CUSTOM_ID: org-agenda-show-scroll-down
6539    :END:
6541 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6542 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-scroll-down][Find modifications in git logs]]
6544 : Scroll down the window showing the agenda.
6545 ** org-clock-timestamps-up =(&optional n)=
6546    :PROPERTIES:
6547    :CUSTOM_ID: org-clock-timestamps-up
6548    :END:
6550 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
6551 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-timestamps-up][Find modifications in git logs]]
6553 : Increase CLOCK timestamps at cursor.
6554 : Optional argument N tells to change by that many units.
6555 ** org-w3m-copy-for-org-mode
6556    :PROPERTIES:
6557    :CUSTOM_ID: org-w3m-copy-for-org-mode
6558    :END:
6560 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-w3m.el][org-w3m.el]]
6561 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-w3m-copy-for-org-mode][Find modifications in git logs]]
6563 : Copy current buffer content or active region with â€˜org-mode’ style links.
6564 : This will encode â€˜link-title’ and â€˜link-location’ with
6565 : â€˜org-make-link-string’, and insert the transformed test into the kill ring,
6566 : so that it can be yanked into an Org  buffer with links working correctly.
6567 ** org-next-visible-heading =(arg)=
6568    :PROPERTIES:
6569    :CUSTOM_ID: org-next-visible-heading
6570    :END:
6572 - *Access:* ~C-c C-n, <menu-bar> <Org> <Navigate Headings> <Next>~
6573 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6574 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-next-visible-heading][Find modifications in git logs]]
6576 : Move to the next visible heading.
6578 : This function wraps â€˜outline-next-visible-heading’ with
6579 : â€˜org-with-limited-levels’ in order to skip over inline tasks and
6580 : respect customization of â€˜org-odd-levels-only’.
6581 ** org-encrypt-entry
6582    :PROPERTIES:
6583    :CUSTOM_ID: org-encrypt-entry
6584    :END:
6586 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
6587 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-encrypt-entry][Find modifications in git logs]]
6589 : Encrypt the content of the current headline.
6590 ** org-columns-previous-allowed-value
6591    :PROPERTIES:
6592    :CUSTOM_ID: org-columns-previous-allowed-value
6593    :END:
6595 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
6596 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-previous-allowed-value][Find modifications in git logs]]
6598 : Switch to the previous allowed value for this column.
6599 ** org-delete-directory =(directory &optional recursive trash)=
6600    :PROPERTIES:
6601    :CUSTOM_ID: org-delete-directory
6602    :END:
6604 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
6605 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-directory][Find modifications in git logs]]
6607 : Delete the directory named DIRECTORY.  Does not follow symlinks.
6608 : If RECURSIVE is non-nil, delete files in DIRECTORY as well, with
6609 : no error if something else is simultaneously deleting them.
6610 : TRASH non-nil means to trash the directory instead, provided
6611 : â€˜delete-by-moving-to-trash’ is non-nil.
6613 : When called interactively, TRASH is nil if and only if a prefix
6614 : argument is given, and a further prompt asks the user for
6615 : RECURSIVE if DIRECTORY is nonempty.
6617 : (fn DIRECTORY &optional RECURSIVE TRASH)
6618 ** org-table-paste-rectangle
6619    :PROPERTIES:
6620    :CUSTOM_ID: org-table-paste-rectangle
6621    :END:
6623 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
6624 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-paste-rectangle][Find modifications in git logs]]
6626 : Paste a rectangular region into a table.
6627 : The upper right corner ends up in the current field.  All involved fields
6628 : will be overwritten.  If the rectangle does not fit into the present table,
6629 : the table is enlarged as needed.  The process ignores horizontal separator
6630 : lines.
6631 ** org-babel-exp-src-block
6632    :PROPERTIES:
6633    :CUSTOM_ID: org-babel-exp-src-block
6634    :END:
6636 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
6637 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-exp-src-block][Find modifications in git logs]]
6639 : Process source block for export.
6640 : Depending on the ":export" header argument, replace the source
6641 : code block like this:
6643 : both ---- display the code and the results
6645 : code ---- the default, display the code inside the block but do
6646 :           not process
6648 : results - just like none only the block is run on export ensuring
6649 :           that its results are present in the Org mode buffer
6651 : none ---- do not display either code or results upon export
6653 : Assume point is at block opening line.
6654 ** org-indent-mode =(&optional arg)=
6655    :PROPERTIES:
6656    :CUSTOM_ID: org-indent-mode
6657    :END:
6659 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
6660 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-mode][Find modifications in git logs]]
6662 : When active, indent text according to outline structure.
6664 : Internally this works by adding â€˜line-prefix’ and â€˜wrap-prefix’
6665 : properties, after each buffer modification, on the modified zone.
6667 : The process is synchronous.  Though, initial indentation of
6668 : buffer, which can take a few seconds on large buffers, is done
6669 : during idle time.
6670 ** org-cdlatex-underscore-caret =(&optional _arg)=
6671    :PROPERTIES:
6672    :CUSTOM_ID: org-cdlatex-underscore-caret
6673    :END:
6675 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6676 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cdlatex-underscore-caret][Find modifications in git logs]]
6678 : Execute â€˜cdlatex-sub-superscript’ in LaTeX fragments.
6679 : Revert to the normal definition outside of these fragments.
6680 ** org-src-do-key-sequence-at-code-block =(&optional key)=
6681    :PROPERTIES:
6682    :CUSTOM_ID: org-src-do-key-sequence-at-code-block
6683    :END:
6685 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
6686 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-do-key-sequence-at-code-block][Find modifications in git logs]]
6688 : Execute key sequence at code block in the source Org buffer.
6689 : The command bound to KEY in the Org-babel key map is executed
6690 : remotely with point temporarily at the start of the code block in
6691 : the Org buffer.
6693 : This command is not bound to a key by default, to avoid conflicts
6694 : with language major mode bindings.  To bind it to C-c @ in all
6695 : language major modes, you could use
6697 :   (add-hook 'org-src-mode-hook
6698 :             (lambda () (define-key org-src-mode-map "\C-c@"
6699 :                     'org-src-do-key-sequence-at-code-block)))
6701 : In that case, for example, C-c @ t issued in code edit buffers
6702 : would tangle the current Org code block, C-c @ e would execute
6703 : the block and C-c @ h would display the other available
6704 : Org-babel commands.
6705 ** org-texinfo-export-to-texinfo =(&optional async subtreep visible-only body-only ext-plist)=
6706    :PROPERTIES:
6707    :CUSTOM_ID: org-texinfo-export-to-texinfo
6708    :END:
6710 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
6711 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-export-to-texinfo][Find modifications in git logs]]
6713 : Export current buffer to a Texinfo file.
6715 : If narrowing is active in the current buffer, only export its
6716 : narrowed part.
6718 : If a region is active, export that region.
6720 : A non-nil optional argument ASYNC means the process should happen
6721 : asynchronously.  The resulting file should be accessible through
6722 : the â€˜org-export-stack’ interface.
6724 : When optional argument SUBTREEP is non-nil, export the sub-tree
6725 : at point, extracting information from the headline properties
6726 : first.
6728 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6729 : contents of hidden elements.
6731 : When optional argument BODY-ONLY is non-nil, only write code
6732 : between "\begin{document}" and "\end{document}".
6734 : EXT-PLIST, when provided, is a property list with external
6735 : parameters overriding Org default settings, but still inferior to
6736 : file-local settings.
6738 : Return output file’s name.
6739 ** org-indent-item
6740    :PROPERTIES:
6741    :CUSTOM_ID: org-indent-item
6742    :END:
6744 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
6745 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-item][Find modifications in git logs]]
6747 : Indent a local list item, but not its children.
6748 : If a region is active, all items inside will be moved.
6749 ** org-table-recalculate-buffer-tables
6750    :PROPERTIES:
6751    :CUSTOM_ID: org-table-recalculate-buffer-tables
6752    :END:
6754 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
6755 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-recalculate-buffer-tables][Find modifications in git logs]]
6757 : Recalculate all tables in the current buffer.
6758 ** org-toggle-heading =(&optional nstars)=
6759    :PROPERTIES:
6760    :CUSTOM_ID: org-toggle-heading
6761    :END:
6763 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6764 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-heading][Find modifications in git logs]]
6766 : Convert headings to normal text, or items or text to headings.
6767 : If there is no active region, only convert the current line.
6769 : With a â€˜C-u’ prefix, convert the whole list at
6770 : point into heading.
6772 : In a region:
6774 : - If the first non blank line is a headline, remove the stars
6775 :   from all headlines in the region.
6777 : - If it is a normal line, turn each and every normal line (i.e.,
6778 :   not an heading or an item) in the region into headings.  If you
6779 :   want to convert only the first line of this region, use one
6780 :   universal prefix argument.
6782 : - If it is a plain list item, turn all plain list items into headings.
6784 : When converting a line into a heading, the number of stars is chosen
6785 : such that the lines become children of the current entry.  However,
6786 : when a numeric prefix argument is given, its value determines the
6787 : number of stars to add.
6788 ** org-shiftmetadown =(&optional _arg)=
6789    :PROPERTIES:
6790    :CUSTOM_ID: org-shiftmetadown
6791    :END:
6793 - *Access:* ~<M-S-down>, <menu-bar> <Tbl> <Row> <Insert Row>~
6794 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6795 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftmetadown][Find modifications in git logs]]
6797 : Drag the line at point down.
6798 : In a table, insert an empty row at the current line.
6799 : On a clock timestamp, update the value of the timestamp like â€˜S-<down>’
6800 : but also adjust the previous clocked item in the clock history.
6801 : Everywhere else, drag the line at point down.
6802 ** org-content =(&optional arg)=
6803    :PROPERTIES:
6804    :CUSTOM_ID: org-content
6805    :END:
6807 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6808 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-content][Find modifications in git logs]]
6810 : Show all headlines in the buffer, like a table of contents.
6811 : With numerical argument N, show content up to level N.
6812 ** org-outdent-item
6813    :PROPERTIES:
6814    :CUSTOM_ID: org-outdent-item
6815    :END:
6817 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
6818 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-outdent-item][Find modifications in git logs]]
6820 : Outdent a local list item, but not its children.
6821 : If a region is active, all items inside will be moved.
6822 ** org-latex-convert-region-to-latex
6823    :PROPERTIES:
6824    :CUSTOM_ID: org-latex-convert-region-to-latex
6825    :END:
6827 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
6828 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-convert-region-to-latex][Find modifications in git logs]]
6830 : Assume the current region has Org syntax, and convert it to LaTeX.
6831 : This can be used in any buffer.  For example, you can write an
6832 : itemized list in Org syntax in an LaTeX buffer and use this
6833 : command to convert it.
6834 ** org-bibtex-yank
6835    :PROPERTIES:
6836    :CUSTOM_ID: org-bibtex-yank
6837    :END:
6839 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
6840 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-yank][Find modifications in git logs]]
6842 : If kill ring holds a bibtex entry yank it as an Org headline.
6843 ** org-columns-move-right
6844    :PROPERTIES:
6845    :CUSTOM_ID: org-columns-move-right
6846    :END:
6848 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
6849 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-move-right][Find modifications in git logs]]
6851 : Swap this column with the one to the right.
6852 ** org-latex-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
6853    :PROPERTIES:
6854    :CUSTOM_ID: org-latex-export-as-latex
6855    :END:
6857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
6858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-export-as-latex][Find modifications in git logs]]
6860 : Export current buffer as a LaTeX buffer.
6862 : If narrowing is active in the current buffer, only export its
6863 : narrowed part.
6865 : If a region is active, export that region.
6867 : A non-nil optional argument ASYNC means the process should happen
6868 : asynchronously.  The resulting buffer should be accessible
6869 : through the â€˜org-export-stack’ interface.
6871 : When optional argument SUBTREEP is non-nil, export the sub-tree
6872 : at point, extracting information from the headline properties
6873 : first.
6875 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6876 : contents of hidden elements.
6878 : When optional argument BODY-ONLY is non-nil, only write code
6879 : between "\begin{document}" and "\end{document}".
6881 : EXT-PLIST, when provided, is a property list with external
6882 : parameters overriding Org default settings, but still inferior to
6883 : file-local settings.
6885 : Export is done in a buffer named "*Org LATEX Export*", which
6886 : will be displayed when â€˜org-export-show-temporary-export-buffer’
6887 : is non-nil.
6888 ** org-agenda-write =(file &optional open nosettings agenda-bufname)=
6889    :PROPERTIES:
6890    :CUSTOM_ID: org-agenda-write
6891    :END:
6893 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
6894 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-write][Find modifications in git logs]]
6896 : Write the current buffer (an agenda view) as a file.
6898 : Depending on the extension of the file name, plain text (.txt),
6899 : HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
6900 : If the extension is .ics, translate visible agenda into iCalendar
6901 : format.  If the extension is .org, collect all subtrees
6902 : corresponding to the agenda entries and add them in an .org file.
6904 : With prefix argument OPEN, open the new file immediately.  If
6905 : NOSETTINGS is given, do not scope the settings of
6906 : â€˜org-agenda-exporter-settings’ into the export commands.  This is
6907 : used when the settings have already been scoped and we do not
6908 : wish to overrule other, higher priority settings.  If
6909 : AGENDA-BUFFER-NAME is provided, use this as the buffer name for
6910 : the agenda to write.
6911 ** org-move-item-down
6912    :PROPERTIES:
6913    :CUSTOM_ID: org-move-item-down
6914    :END:
6916 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
6917 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-move-item-down][Find modifications in git logs]]
6919 : Move the item at point down, i.e. swap with following item.
6920 : Sub-items (items with larger indentation) are considered part of
6921 : the item, so this really moves item trees.
6922 ** org-bibtex-write
6923    :PROPERTIES:
6924    :CUSTOM_ID: org-bibtex-write
6925    :END:
6927 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
6928 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-write][Find modifications in git logs]]
6930 : Insert a heading built from the first element of â€˜org-bibtex-entries’.
6931 ** org-cut-special
6932    :PROPERTIES:
6933    :CUSTOM_ID: org-cut-special
6934    :END:
6936 - *Access:* ~C-c C-x C-w, <menu-bar> <Org> <Edit Structure> <Cut Subtree>, <menu-bar> <Tbl> <Rectangle> <Cut Rectangle>~
6937 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6938 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cut-special][Find modifications in git logs]]
6940 : Cut region in table or cut current subtree.
6941 : Calls â€˜org-table-cut-region’ or â€˜org-cut-subtree’, depending on
6942 : context.  See the individual commands for more information.
6943 ** org-occur-link-in-agenda-files
6944    :PROPERTIES:
6945    :CUSTOM_ID: org-occur-link-in-agenda-files
6946    :END:
6948 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Find existing link to here>, C-c L~
6949 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6950 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-occur-link-in-agenda-files][Find modifications in git logs]]
6952 : Create a link and search for it in the agendas.
6953 : The link is not stored in â€˜org-stored-links’, it is just created
6954 : for the search purpose.
6955 ** org-update-dblock
6956    :PROPERTIES:
6957    :CUSTOM_ID: org-update-dblock
6958    :END:
6960 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
6961 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-update-dblock][Find modifications in git logs]]
6963 : Update the dynamic block at point.
6964 : This means to empty the block, parse for parameters and then call
6965 : the correct writing function.
6966 ** org-odt-export-to-odt =(&optional async subtreep visible-only ext-plist)=
6967    :PROPERTIES:
6968    :CUSTOM_ID: org-odt-export-to-odt
6969    :END:
6971 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
6972 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-export-to-odt][Find modifications in git logs]]
6974 : Export current buffer to a ODT file.
6976 : If narrowing is active in the current buffer, only export its
6977 : narrowed part.
6979 : If a region is active, export that region.
6981 : A non-nil optional argument ASYNC means the process should happen
6982 : asynchronously.  The resulting file should be accessible through
6983 : the â€˜org-export-stack’ interface.
6985 : When optional argument SUBTREEP is non-nil, export the sub-tree
6986 : at point, extracting information from the headline properties
6987 : first.
6989 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6990 : contents of hidden elements.
6992 : EXT-PLIST, when provided, is a property list with external
6993 : parameters overriding Org default settings, but still inferior to
6994 : file-local settings.
6996 : Return output file’s name.
6997 ** org-table-fedit-line-down
6998    :PROPERTIES:
6999    :CUSTOM_ID: org-table-fedit-line-down
7000    :END:
7002 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7003 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-line-down][Find modifications in git logs]]
7005 : Move cursor one line down in the window showing the table.
7006 ** org-calendar-select
7007    :PROPERTIES:
7008    :CUSTOM_ID: org-calendar-select
7009    :END:
7011 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7012 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-select][Find modifications in git logs]]
7014 : Return to â€˜org-read-date’ with the date currently selected.
7015 : This is used by â€˜org-read-date’ in a temporary keymap for the calendar buffer.
7016 ** org-bibtex-export-to-kill-ring
7017    :PROPERTIES:
7018    :CUSTOM_ID: org-bibtex-export-to-kill-ring
7019    :END:
7021 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
7022 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-export-to-kill-ring][Find modifications in git logs]]
7024 : Export current headline to kill ring as bibtex entry.
7025 ** org-beamer-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
7026    :PROPERTIES:
7027    :CUSTOM_ID: org-beamer-export-to-latex
7028    :END:
7030 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
7031 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-export-to-latex][Find modifications in git logs]]
7033 : Export current buffer as a Beamer presentation (tex).
7035 : If narrowing is active in the current buffer, only export its
7036 : narrowed part.
7038 : If a region is active, export that region.
7040 : A non-nil optional argument ASYNC means the process should happen
7041 : asynchronously.  The resulting file should be accessible through
7042 : the â€˜org-export-stack’ interface.
7044 : When optional argument SUBTREEP is non-nil, export the sub-tree
7045 : at point, extracting information from the headline properties
7046 : first.
7048 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7049 : contents of hidden elements.
7051 : When optional argument BODY-ONLY is non-nil, only write code
7052 : between "\begin{document}" and "\end{document}".
7054 : EXT-PLIST, when provided, is a property list with external
7055 : parameters overriding Org default settings, but still inferior to
7056 : file-local settings.
7058 : Return output file’s name.
7059 ** org-search-view =(&optional todo-only string edit-at)=
7060    :PROPERTIES:
7061    :CUSTOM_ID: org-search-view
7062    :END:
7064 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7065 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-search-view][Find modifications in git logs]]
7067 : Show all entries that contain a phrase or words or regular expressions.
7069 : With optional prefix argument TODO-ONLY, only consider entries that are
7070 : TODO entries.  The argument STRING can be used to pass a default search
7071 : string into this function.  If EDIT-AT is non-nil, it means that the
7072 : user should get a chance to edit this string, with cursor at position
7073 : EDIT-AT.
7075 : The search string can be viewed either as a phrase that should be found as
7076 : is, or it can be broken into a number of snippets, each of which must match
7077 : in a Boolean way to select an entry.  The default depends on the variable
7078 : â€˜org-agenda-search-view-always-boolean’.
7079 : Even if this is turned off (the default) you can always switch to
7080 : Boolean search dynamically by preceding the first word with  "+" or "-".
7082 : The default is a direct search of the whole phrase, where each space in
7083 : the search string can expand to an arbitrary amount of whitespace,
7084 : including newlines.
7086 : If using a Boolean search, the search string is split on whitespace and
7087 : each snippet is searched separately, with logical AND to select an entry.
7088 : Words prefixed with a minus must *not* occur in the entry.  Words without
7089 : a prefix or prefixed with a plus must occur in the entry.  Matching is
7090 : case-insensitive.  Words are enclosed by word delimiters (i.e. they must
7091 : match whole words, not parts of a word) if
7092 : â€˜org-agenda-search-view-force-full-words’ is set (default is nil).
7094 : Boolean search snippets enclosed by curly braces are interpreted as
7095 : regular expressions that must or (when preceded with "-") must not
7096 : match in the entry.  Snippets enclosed into double quotes will be taken
7097 : as a whole, to include whitespace.
7099 : - If the search string starts with an asterisk, search only in headlines.
7100 : - If (possibly after the leading star) the search string starts with an
7101 :   exclamation mark, this also means to look at TODO entries only, an effect
7102 :   that can also be achieved with a prefix argument.
7103 : - If (possibly after star and exclamation mark) the search string starts
7104 :   with a colon, this will mean that the (non-regexp) snippets of the
7105 :   Boolean search must match as full words.
7107 : This command searches the agenda files, and in addition the files listed
7108 : in â€˜org-agenda-text-search-extra-files’.
7109 ** org-table-goto-column =(n &optional on-delim force)=
7110    :PROPERTIES:
7111    :CUSTOM_ID: org-table-goto-column
7112    :END:
7114 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7115 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-goto-column][Find modifications in git logs]]
7117 : Move the cursor to the Nth column in the current table line.
7118 : With optional argument ON-DELIM, stop with point before the left delimiter
7119 : of the field.
7120 : If there are less than N fields, just go to after the last delimiter.
7121 : However, when FORCE is non-nil, create new columns if necessary.
7122 ** org-evaluate-time-range =(&optional to-buffer)=
7123    :PROPERTIES:
7124    :CUSTOM_ID: org-evaluate-time-range
7125    :END:
7127 - *Access:* ~C-c C-y, <menu-bar> <Org> <Dates and Scheduling> <Compute Time Range>~
7128 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7129 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-evaluate-time-range][Find modifications in git logs]]
7131 : Evaluate a time range by computing the difference between start and end.
7132 : Normally the result is just printed in the echo area, but with prefix arg
7133 : TO-BUFFER, the result is inserted just after the date stamp into the buffer.
7134 : If the time range is actually in a table, the result is inserted into the
7135 : next column.
7136 : For time difference computation, a year is assumed to be exactly 365
7137 : days in order to avoid rounding problems.
7138 ** org-shiftcontrolup =(&optional n)=
7139    :PROPERTIES:
7140    :CUSTOM_ID: org-shiftcontrolup
7141    :END:
7143 - *Access:* ~<C-S-up>~
7144 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7145 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftcontrolup][Find modifications in git logs]]
7147 : Change timestamps synchronously up in CLOCK log lines.
7148 : Optional argument N tells to change by that many units.
7149 ** org-copy
7150    :PROPERTIES:
7151    :CUSTOM_ID: org-copy
7152    :END:
7154 - *Access:* ~C-c M-w~
7155 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7156 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-copy][Find modifications in git logs]]
7158 : Like â€˜org-refile’, but copy.
7159 ** org-agenda-manipulate-query-subtract-re
7160    :PROPERTIES:
7161    :CUSTOM_ID: org-agenda-manipulate-query-subtract-re
7162    :END:
7164 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7165 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-manipulate-query-subtract-re][Find modifications in git logs]]
7167 : Manipulate the query by adding a search regexp with negative selection.
7168 : Negative selection means regexp must not match for selection of an entry.
7169 ** org-babel-goto-named-result =(name)=
7170    :PROPERTIES:
7171    :CUSTOM_ID: org-babel-goto-named-result
7172    :END:
7174 - *Access:* ~C-c C-v C-r, C-c C-v r~
7175 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
7176 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-goto-named-result][Find modifications in git logs]]
7178 : Go to a named result.
7179 ** org-check-deadlines =(ndays)=
7180    :PROPERTIES:
7181    :CUSTOM_ID: org-check-deadlines
7182    :END:
7184 - *Access:* ~<menu-bar> <Org> <Special views current file> <Check Deadlines>~
7185 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7186 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-check-deadlines][Find modifications in git logs]]
7188 : Check if there are any deadlines due or past due.
7189 : A deadline is considered due if it happens within â€˜org-deadline-warning-days’
7190 : days from today’s date.  If the deadline appears in an entry marked DONE,
7191 : it is not shown.  A numeric prefix argument NDAYS can be used to test that
7192 : many days.  If the prefix is a raw â€˜C-u’, all deadlines are shown.
7193 ** org-advertized-archive-subtree =(&optional find-done)=
7194    :PROPERTIES:
7195    :CUSTOM_ID: org-advertized-archive-subtree
7196    :END:
7198 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7199 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-advertized-archive-subtree][Find modifications in git logs]]
7201 : Move the current subtree to the archive.
7202 : The archive can be a certain top-level heading in the current
7203 : file, or in a different file.  The tree will be moved to that
7204 : location, the subtree heading be marked DONE, and the current
7205 : time will be added.
7207 : When called with a single prefix argument FIND-DONE, find whole
7208 : trees without any open TODO items and archive them (after getting
7209 : confirmation from the user).  When called with a double prefix
7210 : argument, find whole trees with timestamps before today and
7211 : archive them (after getting confirmation from the user).  If the
7212 : cursor is not at a headline when these commands are called, try
7213 : all level 1 trees.  If the cursor is on a headline, only try the
7214 : direct children of this heading.
7215 ** org-texinfo-export-to-info =(&optional async subtreep visible-only body-only ext-plist)=
7216    :PROPERTIES:
7217    :CUSTOM_ID: org-texinfo-export-to-info
7218    :END:
7220 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
7221 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-export-to-info][Find modifications in git logs]]
7223 : Export current buffer to Texinfo then process through to INFO.
7225 : If narrowing is active in the current buffer, only export its
7226 : narrowed part.
7228 : If a region is active, export that region.
7230 : A non-nil optional argument ASYNC means the process should happen
7231 : asynchronously.  The resulting file should be accessible through
7232 : the â€˜org-export-stack’ interface.
7234 : When optional argument SUBTREEP is non-nil, export the sub-tree
7235 : at point, extracting information from the headline properties
7236 : first.
7238 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7239 : contents of hidden elements.
7241 : When optional argument BODY-ONLY is non-nil, only write code
7242 : between "\begin{document}" and "\end{document}".
7244 : EXT-PLIST, when provided, is a property list with external
7245 : parameters overriding Org default settings, but still inferior to
7246 : file-local settings.
7248 : When optional argument PUB-DIR is set, use it as the publishing
7249 : directory.
7251 : Return INFO file’s name.
7252 ** org-drag-element-forward
7253    :PROPERTIES:
7254    :CUSTOM_ID: org-drag-element-forward
7255    :END:
7257 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7258 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-drag-element-forward][Find modifications in git logs]]
7260 : Move forward element at point.
7261 ** org-mouse-insert-checkbox
7262    :PROPERTIES:
7263    :CUSTOM_ID: org-mouse-insert-checkbox
7264    :END:
7266 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
7267 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-insert-checkbox][Find modifications in git logs]]
7270 ** org-cycle-level
7271    :PROPERTIES:
7272    :CUSTOM_ID: org-cycle-level
7273    :END:
7275 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7276 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-level][Find modifications in git logs]]
7278 : Cycle the level of an empty headline through possible states.
7279 : This goes first to child, then to parent, level, then up the hierarchy.
7280 : After top level, it switches back to sibling level.
7281 ** org-table-move-row-up
7282    :PROPERTIES:
7283    :CUSTOM_ID: org-table-move-row-up
7284    :END:
7286 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7287 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-row-up][Find modifications in git logs]]
7289 : Move table row up.
7290 ** org-mouse-show-context-menu =(event prefix)=
7291    :PROPERTIES:
7292    :CUSTOM_ID: org-mouse-show-context-menu
7293    :END:
7295 - *Access:* ~<mouse-3>~
7296 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
7297 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-show-context-menu][Find modifications in git logs]]
7299 : Invoke the context menu.
7301 : If the value of â€˜org-mouse-context-menu-function’ is a function, then
7302 : this function is called.  Otherwise, the current major mode menu is used.
7303 ** org-org-export-to-org =(&optional async subtreep visible-only body-only ext-plist)=
7304    :PROPERTIES:
7305    :CUSTOM_ID: org-org-export-to-org
7306    :END:
7308 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-org.el][ox-org.el]]
7309 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-org-export-to-org][Find modifications in git logs]]
7311 : Export current buffer to an org file.
7313 : If narrowing is active in the current buffer, only export its
7314 : narrowed part.
7316 : If a region is active, export that region.
7318 : A non-nil optional argument ASYNC means the process should happen
7319 : asynchronously.  The resulting file should be accessible through
7320 : the â€˜org-export-stack’ interface.
7322 : When optional argument SUBTREEP is non-nil, export the sub-tree
7323 : at point, extracting information from the headline properties
7324 : first.
7326 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7327 : contents of hidden elements.
7329 : When optional argument BODY-ONLY is non-nil, strip document
7330 : keywords from output.
7332 : EXT-PLIST, when provided, is a property list with external
7333 : parameters overriding Org default settings, but still inferior to
7334 : file-local settings.
7336 : Return output file name.
7337 ** org-delete-indentation =(&optional arg)=
7338    :PROPERTIES:
7339    :CUSTOM_ID: org-delete-indentation
7340    :END:
7342 - *Access:* ~M-^~
7343 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7344 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-indentation][Find modifications in git logs]]
7346 : Join current line to previous and fix whitespace at join.
7348 : If previous line is a headline add to headline title.  Otherwise
7349 : the function calls â€˜delete-indentation’.
7351 : With a non-nil optional argument, join it to the following one.
7352 ** org-table-maybe-recalculate-line
7353    :PROPERTIES:
7354    :CUSTOM_ID: org-table-maybe-recalculate-line
7355    :END:
7357 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7358 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-maybe-recalculate-line][Find modifications in git logs]]
7360 : Recompute the current line if marked for it, and if we haven’t just done it.
7361 ** org-bibtex-check-all =(&optional optional)=
7362    :PROPERTIES:
7363    :CUSTOM_ID: org-bibtex-check-all
7364    :END:
7366 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
7367 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-check-all][Find modifications in git logs]]
7369 : Check all headlines in the current file.
7370 : With prefix argument OPTIONAL also prompt for optional fields.
7371 ** org-columns-compute =(property)=
7372    :PROPERTIES:
7373    :CUSTOM_ID: org-columns-compute
7374    :END:
7376 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
7377 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-compute][Find modifications in git logs]]
7379 : Summarize the values of PROPERTY hierarchically.
7380 : Also update existing values for PROPERTY according to the first
7381 : column specification.
7382 ** org-caldav-goto-uid
7383    :PROPERTIES:
7384    :CUSTOM_ID: org-caldav-goto-uid
7385    :END:
7387 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-caldav.el][org-caldav.el]]
7388 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-caldav-goto-uid][Find modifications in git logs]]
7390 : Jump to UID unter point.
7391 ** org-babel-demarcate-block =(&optional arg)=
7392    :PROPERTIES:
7393    :CUSTOM_ID: org-babel-demarcate-block
7394    :END:
7396 - *Access:* ~C-c C-v d, C-c C-v C-d~
7397 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
7398 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-demarcate-block][Find modifications in git logs]]
7400 : Wrap or split the code in the region or on the point.
7401 : When called from inside of a code block the current block is
7402 : split.  When called from outside of a code block a new code block
7403 : is created.  In both cases if the region is demarcated and if the
7404 : region is not active then the point is demarcated.
7405 ** org-insert-todo-heading =(arg &optional force-heading)=
7406    :PROPERTIES:
7407    :CUSTOM_ID: org-insert-todo-heading
7408    :END:
7410 - *Access:* ~<M-S-return>~
7411 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7412 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-todo-heading][Find modifications in git logs]]
7414 : Insert a new heading with the same level and TODO state as current heading.
7416 : If the heading has no TODO state, or if the state is DONE, use
7417 : the first state (TODO by default).  Also with one prefix arg,
7418 : force first state.  With two prefix args, force inserting at the
7419 : end of the parent subtree.
7421 : When called at a plain list item, insert a new item with an
7422 : unchecked check box.
7423 ** org-sort-entries =(&optional with-case sorting-type getkey-func compare-func property interactive?)=
7424    :PROPERTIES:
7425    :CUSTOM_ID: org-sort-entries
7426    :END:
7428 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7429 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sort-entries][Find modifications in git logs]]
7431 : Sort entries on a certain level of an outline tree.
7432 : If there is an active region, the entries in the region are sorted.
7433 : Else, if the cursor is before the first entry, sort the top-level items.
7434 : Else, the children of the entry at point are sorted.
7436 : Sorting can be alphabetically, numerically, by date/time as given by
7437 : a time stamp, by a property, by priority order, or by a custom function.
7439 : The command prompts for the sorting type unless it has been given to the
7440 : function through the SORTING-TYPE argument, which needs to be a character,
7441 : (?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K).  Here is
7442 : the precise meaning of each character:
7444 : a   Alphabetically, ignoring the TODO keyword and the priority, if any.
7445 : c   By creation time, which is assumed to be the first inactive time stamp
7446 :     at the beginning of a line.
7447 : d   By deadline date/time.
7448 : k   By clocking time.
7449 : n   Numerically, by converting the beginning of the entry/item to a number.
7450 : o   By order of TODO keywords.
7451 : p   By priority according to the cookie.
7452 : r   By the value of a property.
7453 : s   By scheduled date/time.
7454 : t   By date/time, either the first active time stamp in the entry, or, if
7455 :     none exist, by the first inactive one.
7457 : Capital letters will reverse the sort order.
7459 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
7460 : called with point at the beginning of the record.  It must return a
7461 : value that is compatible with COMPARE-FUNC, the function used to
7462 : compare entries.
7464 : Comparing entries ignores case by default.  However, with an optional argument
7465 : WITH-CASE, the sorting considers case as well.
7467 : Sorting is done against the visible part of the headlines, it ignores hidden
7468 : links.
7470 : When sorting is done, call â€˜org-after-sorting-entries-or-items-hook’.
7472 : A non-nil value for INTERACTIVE? is used to signal that this
7473 : function is being called interactively.
7474 ** orgtbl-self-insert-command =(N)=
7475    :PROPERTIES:
7476    :CUSTOM_ID: orgtbl-self-insert-command
7477    :END:
7479 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7480 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-self-insert-command][Find modifications in git logs]]
7482 : Like â€˜self-insert-command’, use overwrite-mode for whitespace in tables.
7483 : If the cursor is in a table looking at whitespace, the whitespace is
7484 : overwritten, and the table is not marked as requiring realignment.
7485 ** org-table-sort-lines =(&optional with-case sorting-type getkey-func compare-func interactive?)=
7486    :PROPERTIES:
7487    :CUSTOM_ID: org-table-sort-lines
7488    :END:
7490 - *Access:* ~<menu-bar> <Tbl> <Row> <Sort lines in region>~
7491 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7492 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-sort-lines][Find modifications in git logs]]
7494 : Sort table lines according to the column at point.
7496 : The position of point indicates the column to be used for
7497 : sorting, and the range of lines is the range between the nearest
7498 : horizontal separator lines, or the entire table of no such lines
7499 : exist.  If point is before the first column, you will be prompted
7500 : for the sorting column.  If there is an active region, the mark
7501 : specifies the first line and the sorting column, while point
7502 : should be in the last line to be included into the sorting.
7504 : The command then prompts for the sorting type which can be
7505 : alphabetically, numerically, or by time (as given in a time stamp
7506 : in the field, or as a HH:MM value).  Sorting in reverse order is
7507 : also possible.
7509 : With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
7511 : If SORTING-TYPE is specified when this function is called from a Lisp
7512 : program, no prompting will take place.  SORTING-TYPE must be a character,
7513 : any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
7514 : sorting should be done in reverse order.
7516 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
7517 : a function to be called to extract the key.  It must return a value
7518 : that is compatible with COMPARE-FUNC, the function used to compare
7519 : entries.
7521 : A non-nil value for INTERACTIVE? is used to signal that this
7522 : function is being called interactively.
7523 ** org-agenda-clock-goto
7524    :PROPERTIES:
7525    :CUSTOM_ID: org-agenda-clock-goto
7526    :END:
7528 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7529 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clock-goto][Find modifications in git logs]]
7531 : Jump to the currently clocked in task within the agenda.
7532 : If the currently clocked in task is not listed in the agenda
7533 : buffer, display it in another window.
7534 ** org-agenda-backward-block
7535    :PROPERTIES:
7536    :CUSTOM_ID: org-agenda-backward-block
7537    :END:
7539 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7540 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-backward-block][Find modifications in git logs]]
7542 : Move backward by one agenda block.
7543 ** org-priority-down
7544    :PROPERTIES:
7545    :CUSTOM_ID: org-priority-down
7546    :END:
7548 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7549 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-priority-down][Find modifications in git logs]]
7551 : Decrease the priority of the current item.
7552 ** org-agenda-list =(&optional arg start-day span with-hour)=
7553    :PROPERTIES:
7554    :CUSTOM_ID: org-agenda-list
7555    :END:
7557 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7558 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-list][Find modifications in git logs]]
7560 : Produce a daily/weekly view from all files in variable â€˜org-agenda-files’.
7561 : The view will be for the current day or week, but from the overview buffer
7562 : you will be able to go to other days/weeks.
7564 : With a numeric prefix argument in an interactive call, the agenda will
7565 : span ARG days.  Lisp programs should instead specify SPAN to change
7566 : the number of days.  SPAN defaults to â€˜org-agenda-span’.
7568 : START-DAY defaults to TODAY, or to the most recent match for the weekday
7569 : given in â€˜org-agenda-start-on-weekday’.
7571 : When WITH-HOUR is non-nil, only include scheduled and deadline
7572 : items if they have an hour specification like [h]h:mm.
7573 ** org-rss-export-to-rss =(&optional async subtreep visible-only)=
7574    :PROPERTIES:
7575    :CUSTOM_ID: org-rss-export-to-rss
7576    :END:
7578 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
7579 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-export-to-rss][Find modifications in git logs]]
7581 : Export current buffer to a RSS file.
7583 : If narrowing is active in the current buffer, only export its
7584 : narrowed part.
7586 : If a region is active, export that region.
7588 : A non-nil optional argument ASYNC means the process should happen
7589 : asynchronously.  The resulting file should be accessible through
7590 : the â€˜org-export-stack’ interface.
7592 : When optional argument SUBTREEP is non-nil, export the sub-tree
7593 : at point, extracting information from the headline properties
7594 : first.
7596 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7597 : contents of hidden elements.
7599 : Return output file’s name.
7600 ** org-agenda-archive-to-archive-sibling
7601    :PROPERTIES:
7602    :CUSTOM_ID: org-agenda-archive-to-archive-sibling
7603    :END:
7605 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7606 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archive-to-archive-sibling][Find modifications in git logs]]
7608 : Move the entry to the archive sibling.
7609 ** org-icalendar-export-agenda-files =(&optional async)=
7610    :PROPERTIES:
7611    :CUSTOM_ID: org-icalendar-export-agenda-files
7612    :END:
7614 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
7615 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-export-agenda-files][Find modifications in git logs]]
7617 : Export all agenda files to iCalendar files.
7618 : When optional argument ASYNC is non-nil, export happens in an
7619 : external process.
7620 ** org-toggle-pretty-entities
7621    :PROPERTIES:
7622    :CUSTOM_ID: org-toggle-pretty-entities
7623    :END:
7625 - *Access:* ~C-c C-x \~
7626 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7627 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-pretty-entities][Find modifications in git logs]]
7629 : Toggle the composition display of entities as UTF8 characters.
7630 ** org-set-tags =(&optional arg just-align)=
7631    :PROPERTIES:
7632    :CUSTOM_ID: org-set-tags
7633    :END:
7635 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7636 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-tags][Find modifications in git logs]]
7638 : Set the tags for the current headline.
7639 : With prefix ARG, realign all tags in headings in the current buffer.
7640 : When JUST-ALIGN is non-nil, only align tags.
7641 ** org-babel-sha1-hash =(&optional info)=
7642    :PROPERTIES:
7643    :CUSTOM_ID: org-babel-sha1-hash
7644    :END:
7646 - *Access:* ~C-c C-v a, C-c C-v C-a~
7647 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
7648 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-sha1-hash][Find modifications in git logs]]
7650 : Generate an sha1 hash based on the value of info.
7651 ** org-edit-src-continue =(e)=
7652    :PROPERTIES:
7653    :CUSTOM_ID: org-edit-src-continue
7654    :END:
7656 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
7657 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-continue][Find modifications in git logs]]
7659 : Unconditionally return to buffer editing area under point.
7660 : Throw an error if there is no such buffer.
7661 ** org-edit-footnote-reference
7662    :PROPERTIES:
7663    :CUSTOM_ID: org-edit-footnote-reference
7664    :END:
7666 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
7667 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-footnote-reference][Find modifications in git logs]]
7669 : Edit definition of footnote reference at point.
7670 ** org-shiftcontrolleft
7671    :PROPERTIES:
7672    :CUSTOM_ID: org-shiftcontrolleft
7673    :END:
7675 - *Access:* ~<C-S-left>~
7676 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7677 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftcontrolleft][Find modifications in git logs]]
7679 : Switch to previous TODO set.
7680 ** org-delete-char =(N)=
7681    :PROPERTIES:
7682    :CUSTOM_ID: org-delete-char
7683    :END:
7685 - *Access:* ~C-d~
7686 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7687 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-char][Find modifications in git logs]]
7689 : Like â€˜delete-char’, but insert whitespace at field end in tables.
7690 : When deleting characters, in tables this function will insert whitespace in
7691 : front of the next "|" separator, to keep the table aligned.  The table will
7692 : still be marked for re-alignment if the field did fill the entire column,
7693 : because, in this case the deletion might narrow the column.
7694 ** org-babel-lilypond-toggle-png-generation
7695    :PROPERTIES:
7696    :CUSTOM_ID: org-babel-lilypond-toggle-png-generation
7697    :END:
7699 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
7700 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-png-generation][Find modifications in git logs]]
7702 : Toggle whether png image will be generated by compilation.
7703 ** org-mark-element
7704    :PROPERTIES:
7705    :CUSTOM_ID: org-mark-element
7706    :END:
7708 - *Access:* ~M-h~
7709 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7710 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mark-element][Find modifications in git logs]]
7712 : Put point at beginning of this element, mark at end.
7714 : Interactively, if this command is repeated or (in Transient Mark
7715 : mode) if the mark is active, it marks the next element after the
7716 : ones already marked.
7717 ** org-attach-attach =(file &optional visit-dir method)=
7718    :PROPERTIES:
7719    :CUSTOM_ID: org-attach-attach
7720    :END:
7722 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
7723 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-attach][Find modifications in git logs]]
7725 : Move/copy/link FILE into the attachment directory of the current task.
7726 : If VISIT-DIR is non-nil, visit the directory with dired.
7727 : METHOD may be â€˜cp’, â€˜mv’, â€˜ln’, â€˜lns’ or â€˜url’ default taken from
7728 : â€˜org-attach-method’.
7729 ** org-table-wrap-region =(arg)=
7730    :PROPERTIES:
7731    :CUSTOM_ID: org-table-wrap-region
7732    :END:
7734 - *Access:* ~<menu-bar> <Tbl> <Rectangle> <Fill Rectangle>~
7735 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7736 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-wrap-region][Find modifications in git logs]]
7738 : Wrap several fields in a column like a paragraph.
7739 : This is useful if you’d like to spread the contents of a field over several
7740 : lines, in order to keep the table compact.
7742 : If there is an active region, and both point and mark are in the same column,
7743 : the text in the column is wrapped to minimum width for the given number of
7744 : lines.  Generally, this makes the table more compact.  A prefix ARG may be
7745 : used to change the number of desired lines.  For example, â€˜C-2 M-x org-table-wrap-region’
7746 : formats the selected text to two lines.  If the region was longer than two
7747 : lines, the remaining lines remain empty.  A negative prefix argument reduces
7748 : the current number of lines by that amount.  The wrapped text is pasted back
7749 : into the table.  If you formatted it to more lines than it was before, fields
7750 : further down in the table get overwritten - so you might need to make space in
7751 : the table first.
7753 : If there is no region, the current field is split at the cursor position and
7754 : the text fragment to the right of the cursor is prepended to the field one
7755 : line down.
7757 : If there is no region, but you specify a prefix ARG, the current field gets
7758 : blank, and the content is appended to the field above.
7759 ** org-demote-subtree
7760    :PROPERTIES:
7761    :CUSTOM_ID: org-demote-subtree
7762    :END:
7764 - *Access:* ~C-c C->~
7765 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7766 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-demote-subtree][Find modifications in git logs]]
7768 : Demote the entire subtree.
7769 : See â€˜org-demote’ and â€˜org-promote’.
7770 ** org-columns-menu =(event)=
7771    :PROPERTIES:
7772    :CUSTOM_ID: org-columns-menu
7773    :END:
7775 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
7776 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-menu][Find modifications in git logs]]
7778 : Org Column Menu
7779 ** org-table-move-column =(&optional left)=
7780    :PROPERTIES:
7781    :CUSTOM_ID: org-table-move-column
7782    :END:
7784 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7785 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-column][Find modifications in git logs]]
7787 : Move the current column to the right.  With arg LEFT, move to the left.
7788 ** org-insert-heading =(&optional arg invisible-ok top)=
7789    :PROPERTIES:
7790    :CUSTOM_ID: org-insert-heading
7791    :END:
7793 - *Access:* ~<menu-bar> <Org> <New Heading>~
7794 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7795 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-heading][Find modifications in git logs]]
7797 : Insert a new heading or an item with the same depth at point.
7799 : If point is at the beginning of a heading, insert a new heading
7800 : or a new headline above the current one.  When at the beginning
7801 : of a regular line of text, turn it into a heading.
7803 : If point is in the middle of a line, split it and create a new
7804 : headline with the text in the current line after point (see
7805 : â€˜org-M-RET-may-split-line’ on how to modify this behavior).  As
7806 : a special case, on a headline, splitting can only happen on the
7807 : title itself.  E.g., this excludes breaking stars or tags.
7809 : With a â€˜C-u’ prefix, set â€˜org-insert-heading-respect-content’ to
7810 : a non-nil value for the duration of the command.  This forces the
7811 : insertion of a heading after the current subtree, independently
7812 : on the location of point.
7814 : With a â€˜C-u C-u’ prefix, insert the heading at the end of the tree
7815 : above the current heading.  For example, if point is within a
7816 : 2nd-level heading, then it will insert a 2nd-level heading at
7817 : the end of the 1st-level parent subtree.
7819 : When INVISIBLE-OK is set, stop at invisible headlines when going
7820 : back.  This is important for non-interactive uses of the
7821 : command.
7823 : When optional argument TOP is non-nil, insert a level 1 heading,
7824 : unconditionally.
7825 ** org-shiftcontroldown =(&optional n)=
7826    :PROPERTIES:
7827    :CUSTOM_ID: org-shiftcontroldown
7828    :END:
7830 - *Access:* ~<C-S-down>~
7831 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7832 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftcontroldown][Find modifications in git logs]]
7834 : Change timestamps synchronously down in CLOCK log lines.
7835 : Optional argument N tells to change by that many units.
7836 ** org-agenda-to-appt =(&optional refresh filter &rest args)=
7837    :PROPERTIES:
7838    :CUSTOM_ID: org-agenda-to-appt
7839    :END:
7841 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
7842 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-to-appt][Find modifications in git logs]]
7844 : Activate appointments found in â€˜org-agenda-files’.
7846 : With a â€˜C-u’ prefix, refresh the list of appointments.
7848 : If FILTER is t, interactively prompt the user for a regular
7849 : expression, and filter out entries that don’t match it.
7851 : If FILTER is a string, use this string as a regular expression
7852 : for filtering entries out.
7854 : If FILTER is a function, filter out entries against which
7855 : calling the function returns nil.  This function takes one
7856 : argument: an entry from â€˜org-agenda-get-day-entries’.
7858 : FILTER can also be an alist with the car of each cell being
7859 : either â€˜headline’ or â€˜category’.  For example:
7861 :   '((headline "IMPORTANT")
7862 :     (category "Work"))
7864 : will only add headlines containing IMPORTANT or headlines
7865 : belonging to the "Work" category.
7867 : ARGS are symbols indicating what kind of entries to consider.
7868 : By default â€˜org-agenda-to-appt’ will use :deadline*, :scheduled*
7869 : (i.e., deadlines and scheduled items with a hh:mm specification)
7870 : and :timestamp entries.  See the docstring of â€˜org-diary’ for
7871 : details and examples.
7873 : If an entry has a APPT_WARNTIME property, its value will be used
7874 : to override â€˜appt-message-warning-time’.
7875 ** org-plot/gnuplot =(&optional params)=
7876    :PROPERTIES:
7877    :CUSTOM_ID: org-plot/gnuplot
7878    :END:
7880 - *Access:* ~C-c " g, <menu-bar> <Tbl> <Plot> <Gnuplot>~
7881 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-plot.el][org-plot.el]]
7882 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plot/gnuplot][Find modifications in git logs]]
7884 : Plot table using gnuplot.  Gnuplot options can be specified with PARAMS.
7885 : If not given options will be taken from the +PLOT
7886 : line directly before or after the table.
7887 ** org-goto-calendar =(&optional arg)=
7888    :PROPERTIES:
7889    :CUSTOM_ID: org-goto-calendar
7890    :END:
7892 - *Access:* ~C-c >, <menu-bar> <Org> <Dates and Scheduling> <Goto Calendar>~
7893 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7894 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-calendar][Find modifications in git logs]]
7896 : Go to the Emacs calendar at the current date.
7897 : If there is a time stamp in the current line, go to that date.
7898 : A prefix ARG can be used to force the current date.
7899 ** org-footnote-goto-previous-reference =(label)=
7900    :PROPERTIES:
7901    :CUSTOM_ID: org-footnote-goto-previous-reference
7902    :END:
7904 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
7905 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-goto-previous-reference][Find modifications in git logs]]
7907 : Find the first closest (to point) reference of footnote with label LABEL.
7908 ** org-table-export =(&optional file format)=
7909    :PROPERTIES:
7910    :CUSTOM_ID: org-table-export
7911    :END:
7913 - *Access:* ~<menu-bar> <Tbl> <Export to File>~
7914 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
7915 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-export][Find modifications in git logs]]
7917 : Export table to a file, with configurable format.
7918 : Such a file can be imported into usual spreadsheet programs.
7920 : FILE can be the output file name.  If not given, it will be taken
7921 : from a TABLE_EXPORT_FILE property in the current entry or higher
7922 : up in the hierarchy, or the user will be prompted for a file
7923 : name.  FORMAT can be an export format, of the same kind as it
7924 : used when â€˜orgtbl-mode’ sends a table in a different format.
7926 : The command suggests a format depending on TABLE_EXPORT_FORMAT,
7927 : whether it is set locally or up in the hierarchy, then on the
7928 : extension of the given file name, and finally on the variable
7929 : â€˜org-table-export-default-format’.
7930 ** org-global-cycle =(&optional arg)=
7931    :PROPERTIES:
7932    :CUSTOM_ID: org-global-cycle
7933    :END:
7935 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7936 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-global-cycle][Find modifications in git logs]]
7938 : Cycle the global visibility.  For details see â€˜org-cycle’.
7939 : With â€˜C-u’ prefix ARG, switch to startup visibility.
7940 : With a numeric prefix, show all headlines up to that level.
7941 ** org-shiftleft =(&optional arg)=
7942    :PROPERTIES:
7943    :CUSTOM_ID: org-shiftleft
7944    :END:
7946 - *Access:* ~<S-left>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Earlier>~
7947 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7948 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftleft][Find modifications in git logs]]
7950 : Cycle the thing at point or in the current line, depending on context.
7951 : Depending on context, this does one of the following:
7953 : - switch a timestamp at point one day into the past
7954 : - on a headline, switch to the previous TODO keyword.
7955 : - on an item, switch entire list to the previous bullet type
7956 : - on a property line, switch to the previous allowed value
7957 : - on a clocktable definition line, move time block into the past
7958 ** org-time-stamp =(arg &optional inactive)=
7959    :PROPERTIES:
7960    :CUSTOM_ID: org-time-stamp
7961    :END:
7963 - *Access:* ~C-c ., <menu-bar> <Org> <Dates and Scheduling> <Timestamp>~
7964 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
7965 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-time-stamp][Find modifications in git logs]]
7967 : Prompt for a date/time and insert a time stamp.
7969 : If the user specifies a time like HH:MM or if this command is
7970 : called with at least one prefix argument, the time stamp contains
7971 : the date and the time.  Otherwise, only the date is included.
7973 : All parts of a date not specified by the user are filled in from
7974 : the timestamp at point, if any, or the current date/time
7975 : otherwise.
7977 : If there is already a timestamp at the cursor, it is replaced.
7979 : With two universal prefix arguments, insert an active timestamp
7980 : with the current time without prompting the user.
7982 : When called from lisp, the timestamp is inactive if INACTIVE is
7983 : non-nil.
7984 ** org-ctags-create-tags =(&optional directory-name)=
7985    :PROPERTIES:
7986    :CUSTOM_ID: org-ctags-create-tags
7987    :END:
7989 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
7990 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-create-tags][Find modifications in git logs]]
7992 : (Re)create tags file in the directory of the active buffer.
7993 : The file will contain tag definitions for all the files in the
7994 : directory and its subdirectories which are recognized by ctags.
7995 : This will include files ending in â€˜.org’ as well as most other
7996 : source files (.C, .H, .EL, .LISP, etc).  All the resulting tags
7997 : end up in one file, called TAGS, located in the directory.  This
7998 : function may take several seconds to finish if the directory or
7999 : its subdirectories contain large numbers of taggable files.
8000 ** org-columns--display-here-title
8001    :PROPERTIES:
8002    :CUSTOM_ID: org-columns--display-here-title
8003    :END:
8005 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
8006 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns--display-here-title][Find modifications in git logs]]
8008 : Overlay the newline before the current line with the table title.
8009 ** org-babel-switch-to-session =(&optional arg info)=
8010    :PROPERTIES:
8011    :CUSTOM_ID: org-babel-switch-to-session
8012    :END:
8014 - *Access:* ~C-c C-v C-z~
8015 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
8016 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-switch-to-session][Find modifications in git logs]]
8018 : Switch to the session of the current code block.
8019 : Uses â€˜org-babel-initiate-session’ to start the session.  If called
8020 : with a prefix argument then this is passed on to
8021 : â€˜org-babel-initiate-session’.
8022 ** org-sparse-tree =(&optional arg type)=
8023    :PROPERTIES:
8024    :CUSTOM_ID: org-sparse-tree
8025    :END:
8027 - *Access:* ~C-c /, <menu-bar> <Org> <Show/Hide> <Sparse Tree...>~
8028 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8029 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sparse-tree][Find modifications in git logs]]
8031 : Create a sparse tree, prompt for the details.
8032 : This command can create sparse trees.  You first need to select the type
8033 : of match used to create the tree:
8035 : t      Show all TODO entries.
8036 : T      Show entries with a specific TODO keyword.
8037 : m      Show entries selected by a tags/property match.
8038 : p      Enter a property name and its value (both with completion on existing
8039 :        names/values) and show entries with that property.
8040 : r      Show entries matching a regular expression (‘/’ can be used as well).
8041 : b      Show deadlines and scheduled items before a date.
8042 : a      Show deadlines and scheduled items after a date.
8043 : d      Show deadlines due within â€˜org-deadline-warning-days’.
8044 : D      Show deadlines and scheduled items between a date range.
8045 ** org-capture =(&optional goto keys)=
8046    :PROPERTIES:
8047    :CUSTOM_ID: org-capture
8048    :END:
8050 - *Access:* ~C-c c~
8051 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
8052 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture][Find modifications in git logs]]
8054 : Capture something.
8056 : This will let you select a template from â€˜org-capture-templates’, and
8057 : then file the newly captured information.  The text is immediately
8058 : inserted at the target location, and an indirect buffer is shown where
8059 : you can edit it.  Pressing â€˜C-c C-c’ brings you back to the previous
8060 : state of Emacs, so that you can continue your work.
8062 : When called interactively with a â€˜C-u’ prefix argument GOTO, don’t
8063 : capture anything, just go to the file/headline where the selected
8064 : template stores its notes.
8066 : With a â€˜C-u C-u’ prefix argument, go to the last note stored.
8068 : When called with a â€˜C-0’ (zero) prefix, insert a template at point.
8070 : When called with a â€˜C-1’ (one) prefix, force prompting for a date when
8071 : a datetree entry is made.
8073 : ELisp programs can set KEYS to a string associated with a template
8074 : in â€˜org-capture-templates’.  In this case, interactive selection
8075 : will be bypassed.
8077 : If â€˜org-capture-use-agenda-date’ is non-nil, capturing from the
8078 : agenda will use the date at point as the default date.  Then, a
8079 : â€˜C-1’ prefix will tell the capture process to use the HH:MM time
8080 : of the day at point (if any) or the current HH:MM time.
8081 ** org-forward-paragraph
8082    :PROPERTIES:
8083    :CUSTOM_ID: org-forward-paragraph
8084    :END:
8086 - *Access:* ~<C-down>~
8087 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8088 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-forward-paragraph][Find modifications in git logs]]
8090 : Move forward to beginning of next paragraph or equivalent.
8092 : The function moves point to the beginning of the next visible
8093 : structural element, which can be a paragraph, a table, a list
8094 : item, etc.  It also provides some special moves for convenience:
8096 :   - On an affiliated keyword, jump to the beginning of the
8097 :     relative element.
8098 :   - On an item or a footnote definition, move to the second
8099 :     element inside, if any.
8100 :   - On a table or a property drawer, jump after it.
8101 :   - On a verse or source block, stop after blank lines.
8102 ** org-protocol-create-for-org
8103    :PROPERTIES:
8104    :CUSTOM_ID: org-protocol-create-for-org
8105    :END:
8107 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
8108 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-create-for-org][Find modifications in git logs]]
8110 : Create a Org protocol project for the current file’s project.
8111 : The visited file needs to be part of a publishing project in
8112 : â€˜org-publish-project-alist’ for this to work.  The function
8113 : delegates most of the work to â€˜org-protocol-create’.
8114 ** org-agenda-open-link =(&optional arg)=
8115    :PROPERTIES:
8116    :CUSTOM_ID: org-agenda-open-link
8117    :END:
8119 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8120 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-open-link][Find modifications in git logs]]
8122 : Open the link(s) in the current entry, if any.
8123 : This looks for a link in the displayed line in the agenda.
8124 : It also looks at the text of the entry itself.
8125 ** org-edit-special =(&optional arg)=
8126    :PROPERTIES:
8127    :CUSTOM_ID: org-edit-special
8128    :END:
8130 - *Access:* ~C-c ', <menu-bar> <Org> <Editing> <Edit Source Example>, <menu-bar> <Tbl> <Calculate> <Edit Formulas>~
8131 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8132 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-special][Find modifications in git logs]]
8134 : Call a special editor for the element at point.
8135 : When at a table, call the formula editor with â€˜org-table-edit-formulas’.
8136 : When in a source code block, call â€˜org-edit-src-code’.
8137 : When in a fixed-width region, call â€˜org-edit-fixed-width-region’.
8138 : When in an export block, call â€˜org-edit-export-block’.
8139 : When in a LaTeX environment, call â€˜org-edit-latex-environment’.
8140 : When at an #+INCLUDE keyword, visit the included file.
8141 : When at a footnote reference, call â€˜org-edit-footnote-reference’
8142 : On a link, call â€˜ffap’ to visit the link at point.
8143 : Otherwise, return a user error.
8144 ** org-display-inline-images =(&optional include-linked refresh beg end)=
8145    :PROPERTIES:
8146    :CUSTOM_ID: org-display-inline-images
8147    :END:
8149 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8150 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-display-inline-images][Find modifications in git logs]]
8152 : Display inline images.
8154 : An inline image is a link which follows either of these
8155 : conventions:
8157 :   1. Its path is a file with an extension matching return value
8158 :      from â€˜image-file-name-regexp’ and it has no contents.
8160 :   2. Its description consists in a single link of the previous
8161 :      type.
8163 : When optional argument INCLUDE-LINKED is non-nil, also links with
8164 : a text description part will be inlined.  This can be nice for
8165 : a quick look at those images, but it does not reflect what
8166 : exported files will look like.
8168 : When optional argument REFRESH is non-nil, refresh existing
8169 : images between BEG and END.  This will create new image displays
8170 : only if necessary.  BEG and END default to the buffer
8171 : boundaries.
8172 ** org-capture-goto-last-stored
8173    :PROPERTIES:
8174    :CUSTOM_ID: org-capture-goto-last-stored
8175    :END:
8177 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
8178 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-goto-last-stored][Find modifications in git logs]]
8180 : Go to the location where the last capture note was stored.
8181 ** org-show-todo-tree =(arg)=
8182    :PROPERTIES:
8183    :CUSTOM_ID: org-show-todo-tree
8184    :END:
8186 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Show TODO Tree>, <menu-bar> <Org> <Special views current file> <TODO Tree>~
8187 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8188 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-todo-tree][Find modifications in git logs]]
8190 : Make a compact tree which shows all headlines marked with TODO.
8191 : The tree will show the lines where the regexp matches, and all higher
8192 : headlines above the match.
8193 : With a â€˜C-u’ prefix, prompt for a regexp to match.
8194 : With a numeric prefix N, construct a sparse tree for the Nth element
8195 : of â€˜org-todo-keywords-1’.
8196 ** org-shiftdown =(&optional arg)=
8197    :PROPERTIES:
8198    :CUSTOM_ID: org-shiftdown
8199    :END:
8201 - *Access:* ~<S-down>, <menu-bar> <Org> <TODO Lists> <Priority Down>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Earlier>~
8202 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8203 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shiftdown][Find modifications in git logs]]
8205 : Decrease item in timestamp or decrease priority of current headline.
8206 : Calls â€˜org-timestamp-down’ or â€˜org-priority-down’, or â€˜org-next-item’
8207 : depending on context.  See the individual commands for more information.
8208 ** org-agenda-entry-text-mode =(&optional arg)=
8209    :PROPERTIES:
8210    :CUSTOM_ID: org-agenda-entry-text-mode
8211    :END:
8213 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8214 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-mode][Find modifications in git logs]]
8216 : Toggle entry text mode in an agenda buffer.
8217 ** org-find-file-at-mouse =(ev)=
8218    :PROPERTIES:
8219    :CUSTOM_ID: org-find-file-at-mouse
8220    :END:
8222 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8223 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-find-file-at-mouse][Find modifications in git logs]]
8225 : Open file link or URL at mouse.
8226 ** org-table-next-row
8227    :PROPERTIES:
8228    :CUSTOM_ID: org-table-next-row
8229    :END:
8231 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8232 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-next-row][Find modifications in git logs]]
8234 : Go to the next row (same column) in the current table.
8235 : Before doing so, re-align the table if necessary.
8236 ** org-goto =(&optional alternative-interface)=
8237    :PROPERTIES:
8238    :CUSTOM_ID: org-goto
8239    :END:
8241 - *Access:* ~C-c C-j, <menu-bar> <Org> <Navigate Headings> <Jump>~
8242 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8243 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto][Find modifications in git logs]]
8245 : Look up a different location in the current file, keeping current visibility.
8247 : When you want look-up or go to a different location in a
8248 : document, the fastest way is often to fold the entire buffer and
8249 : then dive into the tree.  This method has the disadvantage, that
8250 : the previous location will be folded, which may not be what you
8251 : want.
8253 : This command works around this by showing a copy of the current
8254 : buffer in an indirect buffer, in overview mode.  You can dive
8255 : into the tree in that copy, use org-occur and incremental search
8256 : to find a location.  When pressing RET or â€˜Q’, the command
8257 : returns to the original buffer in which the visibility is still
8258 : unchanged.  After RET it will also jump to the location selected
8259 : in the indirect buffer and expose the headline hierarchy above.
8261 : With a prefix argument, use the alternative interface: e.g., if
8262 : â€˜org-goto-interface’ is â€˜outline’ use â€˜outline-path-completion’.
8263 ** org-agenda-goto-mouse =(ev)=
8264    :PROPERTIES:
8265    :CUSTOM_ID: org-agenda-goto-mouse
8266    :END:
8268 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8269 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-goto-mouse][Find modifications in git logs]]
8271 : Go to the Org file which contains the item at the mouse click.
8272 ** org-feed-update-all
8273    :PROPERTIES:
8274    :CUSTOM_ID: org-feed-update-all
8275    :END:
8277 - *Access:* ~C-c C-x g, <menu-bar> <Org> <TODO Lists> <Get news from all feeds>~
8278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
8279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-update-all][Find modifications in git logs]]
8281 : Get inbox items from all feeds in â€˜org-feed-alist’.
8282 ** org-mouse-transform-to-outline
8283    :PROPERTIES:
8284    :CUSTOM_ID: org-mouse-transform-to-outline
8285    :END:
8287 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
8288 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-transform-to-outline][Find modifications in git logs]]
8291 ** org-insert-item =(&optional checkbox)=
8292    :PROPERTIES:
8293    :CUSTOM_ID: org-insert-item
8294    :END:
8296 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
8297 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-item][Find modifications in git logs]]
8299 : Insert a new item at the current level.
8300 : If cursor is before first character after bullet of the item, the
8301 : new item will be created before the current one.
8303 : If CHECKBOX is non-nil, add a checkbox next to the bullet.
8305 : Return t when things worked, nil when we are not in an item, or
8306 : item is invisible.
8307 ** org-id-update-id-locations =(&optional files silent)=
8308    :PROPERTIES:
8309    :CUSTOM_ID: org-id-update-id-locations
8310    :END:
8312 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
8313 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-update-id-locations][Find modifications in git logs]]
8315 : Scan relevant files for IDs.
8316 : Store the relation between files and corresponding IDs.
8317 : This will scan all agenda files, all associated archives, and all
8318 : files currently mentioned in â€˜org-id-locations’.
8319 : When FILES is given, scan these files instead.
8320 ** org-id-get-create =(&optional force)=
8321    :PROPERTIES:
8322    :CUSTOM_ID: org-id-get-create
8323    :END:
8325 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
8326 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-get-create][Find modifications in git logs]]
8328 : Create an ID for the current entry and return it.
8329 : If the entry already has an ID, just return it.
8330 : With optional argument FORCE, force the creation of a new ID.
8331 ** org-tags-view =(&optional todo-only match)=
8332    :PROPERTIES:
8333    :CUSTOM_ID: org-tags-view
8334    :END:
8336 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8337 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-view][Find modifications in git logs]]
8339 : Show all headlines for all â€˜org-agenda-files’ matching a TAGS criterion.
8340 : The prefix arg TODO-ONLY limits the search to TODO entries.
8341 ** org-agenda-diary-entry
8342    :PROPERTIES:
8343    :CUSTOM_ID: org-agenda-diary-entry
8344    :END:
8346 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8347 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-diary-entry][Find modifications in git logs]]
8349 : Make a diary entry, like the â€˜i’ command from the calendar.
8350 : All the standard commands work: block, weekly etc.
8351 : When â€˜org-agenda-diary-file’ points to a file,
8352 : â€˜org-agenda-diary-entry-in-org-file’ is called instead to create
8353 : entries in that Org file.
8354 ** org-insert-link-global
8355    :PROPERTIES:
8356    :CUSTOM_ID: org-insert-link-global
8357    :END:
8359 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8360 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-link-global][Find modifications in git logs]]
8362 : Insert a link like Org mode does.
8363 : This command can be called in any mode to insert a link in Org syntax.
8364 ** org-bibtex-create =(&optional arg nonew)=
8365    :PROPERTIES:
8366    :CUSTOM_ID: org-bibtex-create
8367    :END:
8369 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
8370 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-create][Find modifications in git logs]]
8372 : Create a new entry at the given level.
8373 : With a prefix arg, query for optional fields as well.
8374 : If nonew is t, add data to the headline of the entry at point.
8375 ** org-table-create-with-table.el
8376    :PROPERTIES:
8377    :CUSTOM_ID: org-table-create-with-table.el
8378    :END:
8380 - *Access:* ~C-c ~, <menu-bar> <Tbl> <Create/Convert from/to table.el>~
8381 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8382 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-create-with-table.el][Find modifications in git logs]]
8384 : Use the table.el package to insert a new table.
8385 : If there is already a table at point, convert between Org tables
8386 : and table.el tables.
8387 ** orgtbl-ascii-plot =(&optional ask)=
8388    :PROPERTIES:
8389    :CUSTOM_ID: orgtbl-ascii-plot
8390    :END:
8392 - *Access:* ~C-c " a, <menu-bar> <Tbl> <Plot> <Ascii plot>~
8393 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8394 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-ascii-plot][Find modifications in git logs]]
8396 : Draw an ASCII bar plot in a column.
8398 : With cursor in a column containing numerical values, this function
8399 : will draw a plot in a new column.
8401 : ASK, if given, is a numeric prefix to override the default 12
8402 : characters width of the plot.  ASK may also be the â€˜C-u’ prefix,
8403 : which will prompt for the width.
8404 ** org-copy-visible =(beg end)=
8405    :PROPERTIES:
8406    :CUSTOM_ID: org-copy-visible
8407    :END:
8409 - *Access:* ~C-c C-x v, <menu-bar> <Org> <Edit Structure> <Copy visible text>~
8410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-copy-visible][Find modifications in git logs]]
8413 : Copy the visible parts of the region.
8414 ** org-next-item
8415    :PROPERTIES:
8416    :CUSTOM_ID: org-next-item
8417    :END:
8419 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
8420 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-next-item][Find modifications in git logs]]
8422 : Move to the beginning of the next item.
8423 : Throw an error when not in a list.  Also throw an error when at
8424 : last item, unless â€˜org-list-use-circular-motion’ is non-nil.
8425 ** org-toggle-ordered-property
8426    :PROPERTIES:
8427    :CUSTOM_ID: org-toggle-ordered-property
8428    :END:
8430 - *Access:* ~C-c C-x o, <menu-bar> <Org> <TODO Lists> <Do Children sequentially>, <menu-bar> <Org> <TODO Lists> <Do Children parallel>~
8431 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8432 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-ordered-property][Find modifications in git logs]]
8434 : Toggle the ORDERED property of the current entry.
8435 : For better visibility, you can track the value of this property with a tag.
8436 : See variable â€˜org-track-ordered-property-with-tag’.
8437 ** org-babel-remove-result-one-or-many =(x)=
8438    :PROPERTIES:
8439    :CUSTOM_ID: org-babel-remove-result-one-or-many
8440    :END:
8442 - *Access:* ~C-c C-v k~
8443 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
8444 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-remove-result-one-or-many][Find modifications in git logs]]
8446 : Remove the result of the current source block.
8447 : If called with a prefix argument, remove all result blocks
8448 : in the buffer.
8449 ** org-agenda-toggle-diary
8450    :PROPERTIES:
8451    :CUSTOM_ID: org-agenda-toggle-diary
8452    :END:
8454 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8455 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-toggle-diary][Find modifications in git logs]]
8457 : Toggle diary inclusion in an agenda buffer.
8458 ** org-compute-property-at-point
8459    :PROPERTIES:
8460    :CUSTOM_ID: org-compute-property-at-point
8461    :END:
8463 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8464 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-compute-property-at-point][Find modifications in git logs]]
8466 : Compute the property at point.
8467 : This looks for an enclosing column format, extracts the operator and
8468 : then applies it to the property in the column format’s scope.
8469 ** org-open-line =(n)=
8470    :PROPERTIES:
8471    :CUSTOM_ID: org-open-line
8472    :END:
8474 - *Access:* ~C-o, <insertline>~
8475 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8476 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-line][Find modifications in git logs]]
8478 : Insert a new row in tables, call â€˜open-line’ elsewhere.
8479 : If â€˜org-special-ctrl-o’ is nil, just call â€˜open-line’ everywhere.
8480 : As a special case, when a document starts with a table, allow to
8481 : call â€˜open-line’ on the very first character.
8482 ** org-insert-todo-heading-respect-content =(&optional force-state)=
8483    :PROPERTIES:
8484    :CUSTOM_ID: org-insert-todo-heading-respect-content
8485    :END:
8487 - *Access:* ~<C-S-return>~
8488 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8489 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-todo-heading-respect-content][Find modifications in git logs]]
8491 : Insert TODO heading with â€˜org-insert-heading-respect-content’ set to t.
8492 ** org-columns-todo =(&optional _arg)=
8493    :PROPERTIES:
8494    :CUSTOM_ID: org-columns-todo
8495    :END:
8497 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
8498 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-todo][Find modifications in git logs]]
8500 : Change the TODO state during column view.
8501 ** org-plot/goto-nearest-table
8502    :PROPERTIES:
8503    :CUSTOM_ID: org-plot/goto-nearest-table
8504    :END:
8506 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-plot.el][org-plot.el]]
8507 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plot/goto-nearest-table][Find modifications in git logs]]
8509 : Move the point forward to the beginning of nearest table.
8510 : Return value is the point at the beginning of the table.
8511 ** org-clock-jump-to-current-clock =(&optional effective-clock)=
8512    :PROPERTIES:
8513    :CUSTOM_ID: org-clock-jump-to-current-clock
8514    :END:
8516 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
8517 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-jump-to-current-clock][Find modifications in git logs]]
8520 ** org-open-at-point =(&rest rest)=
8521    :PROPERTIES:
8522    :CUSTOM_ID: org-open-at-point
8523    :END:
8525 - *Access:* ~C-c C-o, <menu-bar> <Org> <Hyperlinks> <Follow Link>~
8526 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8527 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-at-point][Find modifications in git logs]]
8529 : :around advice: â€˜ad-Advice-org-open-at-point’
8531 : Open link, timestamp, footnote or tags at point.
8533 : When point is on a link, follow it.  Normally, files will be
8534 : opened by an appropriate application.  If the optional prefix
8535 : argument ARG is non-nil, Emacs will visit the file.  With
8536 : a double prefix argument, try to open outside of Emacs, in the
8537 : application the system uses for this file type.
8539 : When point is on a timestamp, open the agenda at the day
8540 : specified.
8542 : When point is a footnote definition, move to the first reference
8543 : found.  If it is on a reference, move to the associated
8544 : definition.
8546 : When point is on a headline, display a list of every link in the
8547 : entry, so it is possible to pick one, or all, of them.  If point
8548 : is on a tag, call â€˜org-tags-view’ instead.
8550 : When optional argument REFERENCE-BUFFER is non-nil, it should
8551 : specify a buffer from where the link search should happen.  This
8552 : is used internally by â€˜org-open-link-from-string’.
8554 : On top of syntactically correct links, this function will also
8555 : try to open links and time-stamps in comments, example
8556 : blocks... i.e., whenever point is on something looking like
8557 : a timestamp or a link.
8559 : (fn &optional ARG REFERENCE-BUFFER)
8560 ** org-agenda-sunrise-sunset =(arg)=
8561    :PROPERTIES:
8562    :CUSTOM_ID: org-agenda-sunrise-sunset
8563    :END:
8565 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8566 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-sunrise-sunset][Find modifications in git logs]]
8568 : Display sunrise and sunset for the cursor date.
8569 : Latitude and longitude can be specified with the variables
8570 : â€˜calendar-latitude’ and â€˜calendar-longitude’.  When called with prefix
8571 : argument, latitude and longitude will be prompted for.
8572 ** org-remove-file =(&optional file)=
8573    :PROPERTIES:
8574    :CUSTOM_ID: org-remove-file
8575    :END:
8577 - *Access:* ~C-c ], <menu-bar> <Org> <File List for Agenda> <Remove Current File from List>~
8578 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8579 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-remove-file][Find modifications in git logs]]
8581 : Remove current file from the list of files in variable â€˜org-agenda-files’.
8582 : These are the files which are being checked for agenda entries.
8583 : Optional argument FILE means use this file instead of the current.
8584 ** org-table-fedit-line-up
8585    :PROPERTIES:
8586    :CUSTOM_ID: org-table-fedit-line-up
8587    :END:
8589 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8590 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-line-up][Find modifications in git logs]]
8592 : Move cursor one line up in the window showing the table.
8593 ** org-agenda-bulk-mark-regexp =(regexp)=
8594    :PROPERTIES:
8595    :CUSTOM_ID: org-agenda-bulk-mark-regexp
8596    :END:
8598 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8599 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-mark-regexp][Find modifications in git logs]]
8601 : Mark entries matching REGEXP for future agenda bulk action.
8602 ** org-mouse-move-tree-start =(_event)=
8603    :PROPERTIES:
8604    :CUSTOM_ID: org-mouse-move-tree-start
8605    :END:
8607 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
8608 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-move-tree-start][Find modifications in git logs]]
8611 ** org-agenda-goto-today
8612    :PROPERTIES:
8613    :CUSTOM_ID: org-agenda-goto-today
8614    :END:
8616 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8617 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-goto-today][Find modifications in git logs]]
8619 : Go to today.
8620 ** org-table-fedit-ref-up
8621    :PROPERTIES:
8622    :CUSTOM_ID: org-table-fedit-ref-up
8623    :END:
8625 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8626 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-ref-up][Find modifications in git logs]]
8628 : Shift the reference at point one row/hline up.
8629 ** org-transpose-element
8630    :PROPERTIES:
8631    :CUSTOM_ID: org-transpose-element
8632    :END:
8634 - *Access:* ~C-M-t~
8635 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8636 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-transpose-element][Find modifications in git logs]]
8638 : Transpose current and previous elements, keeping blank lines between.
8639 : Point is moved after both elements.
8640 ** org-babel-tangle-jump-to-org
8641    :PROPERTIES:
8642    :CUSTOM_ID: org-babel-tangle-jump-to-org
8643    :END:
8645 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
8646 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-jump-to-org][Find modifications in git logs]]
8648 : Jump from a tangled code file to the related Org mode file.
8649 ** org-narrow-to-subtree
8650    :PROPERTIES:
8651    :CUSTOM_ID: org-narrow-to-subtree
8652    :END:
8654 - *Access:* ~C-x n s~
8655 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8656 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-narrow-to-subtree][Find modifications in git logs]]
8658 : Narrow buffer to the current subtree.
8659 ** org-agenda-prepare-buffers =(files)=
8660    :PROPERTIES:
8661    :CUSTOM_ID: org-agenda-prepare-buffers
8662    :END:
8664 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8665 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-prepare-buffers][Find modifications in git logs]]
8667 : Create buffers for all agenda files, protect archived trees and comments.
8668 ** org-toggle-link-display
8669    :PROPERTIES:
8670    :CUSTOM_ID: org-toggle-link-display
8671    :END:
8673 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Descriptive Links>, <menu-bar> <Org> <Hyperlinks> <Literal Links>~
8674 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8675 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-link-display][Find modifications in git logs]]
8677 : Toggle the literal or descriptive display of links.
8678 ** org-babel-haskell-export-to-lhs =(&optional arg)=
8679    :PROPERTIES:
8680    :CUSTOM_ID: org-babel-haskell-export-to-lhs
8681    :END:
8683 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-haskell.el][ob-haskell.el]]
8684 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-haskell-export-to-lhs][Find modifications in git logs]]
8686 : Export to a .lhs file with all haskell code blocks escaped.
8687 : When called with a prefix argument the resulting
8688 : .lhs file will be exported to a .tex file.  This function will
8689 : create two new files, base-name.lhs and base-name.tex where
8690 : base-name is the name of the current Org file.
8692 : Note that all standard Babel literate programming
8693 : constructs (header arguments, no-web syntax etc...) are ignored.
8694 ** org-agenda-do-date-earlier =(arg)=
8695    :PROPERTIES:
8696    :CUSTOM_ID: org-agenda-do-date-earlier
8697    :END:
8699 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8700 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-do-date-earlier][Find modifications in git logs]]
8703 ** org-toggle-timestamp-type
8704    :PROPERTIES:
8705    :CUSTOM_ID: org-toggle-timestamp-type
8706    :END:
8708 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8709 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-timestamp-type][Find modifications in git logs]]
8711 : Toggle the type (<active> or [inactive]) of a time stamp.
8712 ** org-table-toggle-formula-debugger
8713    :PROPERTIES:
8714    :CUSTOM_ID: org-table-toggle-formula-debugger
8715    :END:
8717 - *Access:* ~C-c {, <menu-bar> <Tbl> <Debug Formulas>~
8718 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8719 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-toggle-formula-debugger][Find modifications in git logs]]
8721 : Toggle the formula debugger in tables.
8722 ** org-bibtex-read
8723    :PROPERTIES:
8724    :CUSTOM_ID: org-bibtex-read
8725    :END:
8727 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
8728 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-read][Find modifications in git logs]]
8730 : Read a bibtex entry and save to â€˜org-bibtex-entries’.
8731 : This uses â€˜bibtex-parse-entry’.
8732 ** org-match-sparse-tree =(&optional todo-only match)=
8733    :PROPERTIES:
8734    :CUSTOM_ID: org-match-sparse-tree
8735    :END:
8737 - *Access:* ~C-c \, <menu-bar> <Org> <Special views current file> <Tags/Property tree>~
8738 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8739 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-match-sparse-tree][Find modifications in git logs]]
8741 : Create a sparse tree according to tags string MATCH.
8743 : MATCH is a string with match syntax.  It can contain a selection
8744 : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and
8745 : TODO keywords ("TODO=\"WAITING\"") or a combination of
8746 : those.  See the manual for details.
8748 : If optional argument TODO-ONLY is non-nil, only select lines that
8749 : are also TODO tasks.
8750 ** org-show-priority
8751    :PROPERTIES:
8752    :CUSTOM_ID: org-show-priority
8753    :END:
8755 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8756 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-priority][Find modifications in git logs]]
8758 : Show the priority of the current item.
8759 : This priority is composed of the main priority given with the [#A] cookies,
8760 : and by additional input from the age of a schedules or deadline entry.
8761 ** org-agenda-previous-line
8762    :PROPERTIES:
8763    :CUSTOM_ID: org-agenda-previous-line
8764    :END:
8766 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8767 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-previous-line][Find modifications in git logs]]
8769 : Move cursor to the previous line, and show if follow-mode is active.
8770 ** org-agenda-reset-view
8771    :PROPERTIES:
8772    :CUSTOM_ID: org-agenda-reset-view
8773    :END:
8775 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8776 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-reset-view][Find modifications in git logs]]
8778 : Switch to default view for agenda.
8779 ** org-table-sum =(&optional beg end nlast)=
8780    :PROPERTIES:
8781    :CUSTOM_ID: org-table-sum
8782    :END:
8784 - *Access:* ~C-c +, <menu-bar> <Tbl> <Calculate> <Sum Column/Rectangle>~
8785 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8786 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-sum][Find modifications in git logs]]
8788 : Sum numbers in region of current table column.
8789 : The result will be displayed in the echo area, and will be available
8790 : as kill to be inserted with <S-insertchar>.
8792 : If there is an active region, it is interpreted as a rectangle and all
8793 : numbers in that rectangle will be summed.  If there is no active
8794 : region and point is located in a table column, sum all numbers in that
8795 : column.
8797 : If at least one number looks like a time HH:MM or HH:MM:SS, all other
8798 : numbers are assumed to be times as well (in decimal hours) and the
8799 : numbers are added as such.
8801 : If NLAST is a number, only the NLAST fields will actually be summed.
8802 ** org-koma-letter-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
8803    :PROPERTIES:
8804    :CUSTOM_ID: org-koma-letter-export-as-latex
8805    :END:
8807 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
8808 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-export-as-latex][Find modifications in git logs]]
8810 : Export current buffer as a KOMA Scrlttr2 letter.
8812 : If narrowing is active in the current buffer, only export its
8813 : narrowed part.
8815 : If a region is active, export that region.
8817 : A non-nil optional argument ASYNC means the process should happen
8818 : asynchronously.  The resulting buffer should be accessible
8819 : through the â€˜org-export-stack’ interface.
8821 : When optional argument SUBTREEP is non-nil, export the sub-tree
8822 : at point, extracting information from the headline properties
8823 : first.
8825 : When optional argument VISIBLE-ONLY is non-nil, don’t export
8826 : contents of hidden elements.
8828 : When optional argument BODY-ONLY is non-nil, only write code
8829 : between "\begin{letter}" and "\end{letter}".
8831 : EXT-PLIST, when provided, is a proeprty list with external
8832 : parameters overriding Org default settings, but still inferior to
8833 : file-local settings.
8835 : Export is done in a buffer named "*Org KOMA-LETTER Export*".  It
8836 : will be displayed if â€˜org-export-show-temporary-export-buffer’ is
8837 : non-nil.
8838 ** org-babel-lilypond-toggle-pdf-display
8839    :PROPERTIES:
8840    :CUSTOM_ID: org-babel-lilypond-toggle-pdf-display
8841    :END:
8843 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
8844 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-pdf-display][Find modifications in git logs]]
8846 : Toggle whether pdf will be displayed following a successful compilation.
8847 ** org-babel-execute-subtree =(&optional arg)=
8848    :PROPERTIES:
8849    :CUSTOM_ID: org-babel-execute-subtree
8850    :END:
8852 - *Access:* ~C-c C-v s, C-c C-v C-s~
8853 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
8854 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-execute-subtree][Find modifications in git logs]]
8856 : Execute source code blocks in a subtree.
8857 : Call â€˜org-babel-execute-src-block’ on every source block in
8858 : the current subtree.
8859 ** org-attach-attach-cp
8860    :PROPERTIES:
8861    :CUSTOM_ID: org-attach-attach-cp
8862    :END:
8864 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
8865 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-attach-cp][Find modifications in git logs]]
8867 : Attach a file by copying it.
8868 ** org-export-stack-mode
8869    :PROPERTIES:
8870    :CUSTOM_ID: org-export-stack-mode
8871    :END:
8873 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
8874 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-mode][Find modifications in git logs]]
8876 : Mode for displaying asynchronous export stack.
8878 : Type â€˜M-x org-export-stack’ to visualize the asynchronous export
8879 : stack.
8881 : In an Org Export Stack buffer, use â€˜RET’ to view export output
8882 : on current line, â€˜d’ to remove it from the stack and â€˜C’ to clear
8883 : stack completely.
8885 : Removing entries in a stack buffer does not affect files
8886 : or buffers, only display.
8888 : key             binding
8889 : ---             -------
8891 : TAB           forward-button
8892 : RET           org-export-stack-view
8893 : C-n           next-line
8894 : C-p           previous-line
8895 : ESC           Prefix Command
8896 : SPC           next-line
8897 : -             negative-argument
8898 : 0 .. 9                digit-argument
8899 : <             beginning-of-buffer
8900 : >             end-of-buffer
8901 : ?             describe-mode
8902 : C             org-export-stack-clear
8903 : S             tabulated-list-sort
8904 : d             org-export-stack-remove
8905 : g             revert-buffer
8906 : h             describe-mode
8907 : n             next-line
8908 : p             previous-line
8909 : q             quit-window
8910 : v             org-export-stack-view
8911 : DEL           previous-line
8912 : S-SPC         scroll-down-command
8913 : <backtab>     backward-button
8914 : <down>                next-line
8915 : <follow-link> mouse-face
8916 : <mouse-2>     mouse-select-window
8917 : <remap>               Prefix Command
8918 : <up>          previous-line
8920 : C-M-i         backward-button
8924 : In addition to any hooks its parent mode â€˜tabulated-list-mode’ might have run,
8925 : this mode runs the hook â€˜org-export-stack-mode-hook’, as the final or penultimate step
8926 : during initialization.
8927 ** org-insert-heading-respect-content =(&optional invisible-ok)=
8928    :PROPERTIES:
8929    :CUSTOM_ID: org-insert-heading-respect-content
8930    :END:
8932 - *Access:* ~<C-return>~
8933 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8934 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-heading-respect-content][Find modifications in git logs]]
8936 : Insert heading with â€˜org-insert-heading-respect-content’ set to t.
8937 ** org-agenda-list-stuck-projects =(&rest ignore)=
8938    :PROPERTIES:
8939    :CUSTOM_ID: org-agenda-list-stuck-projects
8940    :END:
8942 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
8943 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-list-stuck-projects][Find modifications in git logs]]
8945 : Create agenda view for projects that are stuck.
8946 : Stuck projects are project that have no next actions.  For the definitions
8947 : of what a project is and how to check if it stuck, customize the variable
8948 : â€˜org-stuck-projects’.
8949 ** org-cdlatex-math-modify =(&optional _arg)=
8950    :PROPERTIES:
8951    :CUSTOM_ID: org-cdlatex-math-modify
8952    :END:
8954 - *Access:* ~<menu-bar> <Org> <LaTeX> <Modify math symbol>~
8955 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8956 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cdlatex-math-modify][Find modifications in git logs]]
8958 : Execute â€˜cdlatex-math-modify’ in LaTeX fragments.
8959 : Revert to the normal definition outside of these fragments.
8960 ** org-create-customize-menu
8961    :PROPERTIES:
8962    :CUSTOM_ID: org-create-customize-menu
8963    :END:
8965 - *Access:* ~<menu-bar> <Org> <Customize> <Expand This Menu>~
8966 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
8967 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-create-customize-menu][Find modifications in git logs]]
8969 : Create a full customization menu for Org mode, insert it into the menu.
8970 ** org-table-create =(&optional size)=
8971    :PROPERTIES:
8972    :CUSTOM_ID: org-table-create
8973    :END:
8975 - *Access:* ~<menu-bar> <Tbl> <Create>~
8976 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
8977 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-create][Find modifications in git logs]]
8979 : Query for a size and insert a table skeleton.
8980 : SIZE is a string Columns x Rows like for example "3x2".
8981 ** org-html-convert-region-to-html
8982    :PROPERTIES:
8983    :CUSTOM_ID: org-html-convert-region-to-html
8984    :END:
8986 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
8987 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-convert-region-to-html][Find modifications in git logs]]
8989 : Assume the current region has Org syntax, and convert it to HTML.
8990 : This can be used in any buffer.  For example, you can write an
8991 : itemized list in Org syntax in an HTML buffer and use this command
8992 : to convert it.
8993 ** org-attach-attach-ln
8994    :PROPERTIES:
8995    :CUSTOM_ID: org-attach-attach-ln
8996    :END:
8998 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
8999 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-attach-ln][Find modifications in git logs]]
9001 : Attach a file by creating a hard link to it.
9002 : Beware that this does not work on systems that do not support hard links.
9003 : On some systems, this apparently does copy the file instead.
9004 ** org-html-htmlize-generate-css
9005    :PROPERTIES:
9006    :CUSTOM_ID: org-html-htmlize-generate-css
9007    :END:
9009 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
9010 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-htmlize-generate-css][Find modifications in git logs]]
9012 : Create the CSS for all font definitions in the current Emacs session.
9013 : Use this to create face definitions in your CSS style file that can then
9014 : be used by code snippets transformed by htmlize.
9015 : This command just produces a buffer that contains class definitions for all
9016 : faces used in the current Emacs session.  You can copy and paste the ones you
9017 : need into your CSS file.
9019 : If you then set â€˜org-html-htmlize-output-type’ to â€˜css’, calls
9020 : to the function â€˜org-html-htmlize-region-for-paste’ will
9021 : produce code that uses these same face definitions.
9022 ** org-check-after-date =(d)=
9023    :PROPERTIES:
9024    :CUSTOM_ID: org-check-after-date
9025    :END:
9027 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9028 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-check-after-date][Find modifications in git logs]]
9030 : Check if there are deadlines or scheduled entries after date D.
9031 ** org-toggle-comment
9032    :PROPERTIES:
9033    :CUSTOM_ID: org-toggle-comment
9034    :END:
9036 - *Access:* ~C-c ;~
9037 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9038 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-comment][Find modifications in git logs]]
9040 : Change the COMMENT state of an entry.
9041 ** org-attach-attach-mv
9042    :PROPERTIES:
9043    :CUSTOM_ID: org-attach-attach-mv
9044    :END:
9046 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
9047 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-attach-mv][Find modifications in git logs]]
9049 : Attach a file by moving (renaming) it.
9050 ** org-remove-inline-images
9051    :PROPERTIES:
9052    :CUSTOM_ID: org-remove-inline-images
9053    :END:
9055 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9056 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-remove-inline-images][Find modifications in git logs]]
9058 : Remove inline display of images.
9059 ** org-return-indent
9060    :PROPERTIES:
9061    :CUSTOM_ID: org-return-indent
9062    :END:
9064 - *Access:* ~C-j~
9065 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9066 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-return-indent][Find modifications in git logs]]
9068 : Goto next table row or insert a newline and indent.
9069 : Calls â€˜org-table-next-row’ or â€˜newline-and-indent’, depending on
9070 : context.  See the individual commands for more information.
9071 ** org-delete-property-globally =(property)=
9072    :PROPERTIES:
9073    :CUSTOM_ID: org-delete-property-globally
9074    :END:
9076 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9077 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-property-globally][Find modifications in git logs]]
9079 : Remove PROPERTY globally, from all entries.
9080 : This function ignores narrowing, if any.
9081 ** org-table-fedit-scroll =(N)=
9082    :PROPERTIES:
9083    :CUSTOM_ID: org-table-fedit-scroll
9084    :END:
9086 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9087 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-scroll][Find modifications in git logs]]
9090 ** org-unindent-buffer
9091    :PROPERTIES:
9092    :CUSTOM_ID: org-unindent-buffer
9093    :END:
9095 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9096 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-unindent-buffer][Find modifications in git logs]]
9098 : Un-indent the visible part of the buffer.
9099 : Relative indentation (between items, inside blocks, etc.) isn’t
9100 : modified.
9101 ** orgtbl-ctrl-c-ctrl-c =(arg)=
9102    :PROPERTIES:
9103    :CUSTOM_ID: orgtbl-ctrl-c-ctrl-c
9104    :END:
9106 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9107 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-ctrl-c-ctrl-c][Find modifications in git logs]]
9109 : If the cursor is inside a table, realign the table.
9110 : If it is a table to be sent away to a receiver, do it.
9111 : With prefix arg, also recompute table.
9112 ** org-insert-subheading =(arg)=
9113    :PROPERTIES:
9114    :CUSTOM_ID: org-insert-subheading
9115    :END:
9117 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9118 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-subheading][Find modifications in git logs]]
9120 : Insert a new subheading and demote it.
9121 : Works for outline headings and for plain lists alike.
9122 ** org-agenda-earlier =(arg)=
9123    :PROPERTIES:
9124    :CUSTOM_ID: org-agenda-earlier
9125    :END:
9127 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9128 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-earlier][Find modifications in git logs]]
9130 : Go backward in time by the current span.
9131 : With prefix ARG, go backward that many times the current span.
9132 ** org-attach-delete-one =(&optional file)=
9133    :PROPERTIES:
9134    :CUSTOM_ID: org-attach-delete-one
9135    :END:
9137 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
9138 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-delete-one][Find modifications in git logs]]
9140 : Delete a single attachment.
9141 ** org-columns-content
9142    :PROPERTIES:
9143    :CUSTOM_ID: org-columns-content
9144    :END:
9146 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
9147 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-content][Find modifications in git logs]]
9149 : Switch to contents view while in columns view.
9150 ** org-attach-attach-lns
9151    :PROPERTIES:
9152    :CUSTOM_ID: org-attach-attach-lns
9153    :END:
9155 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
9156 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-attach-lns][Find modifications in git logs]]
9158 : Attach a file by creating a symbolic link to it.
9160 : Beware that this does not work on systems that do not support symbolic links.
9161 : On some systems, this apparently does copy the file instead.
9162 ** org-agenda-manipulate-query-add
9163    :PROPERTIES:
9164    :CUSTOM_ID: org-agenda-manipulate-query-add
9165    :END:
9167 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9168 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-manipulate-query-add][Find modifications in git logs]]
9170 : Manipulate the query by adding a search term with positive selection.
9171 : Positive selection means the term must be matched for selection of an entry.
9172 ** org-beginning-of-line =(&optional n)=
9173    :PROPERTIES:
9174    :CUSTOM_ID: org-beginning-of-line
9175    :END:
9177 - *Access:* ~C-a~
9178 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9179 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beginning-of-line][Find modifications in git logs]]
9181 : Go to the beginning of the current visible line.
9183 : If this is a headline, and â€˜org-special-ctrl-a/e’ is set, ignore
9184 : tags on the first attempt, and only move to after the tags when
9185 : the cursor is already beyond the end of the headline.
9187 : With argument N not nil or 1, move forward N - 1 lines first.
9188 ** org-agenda-deadline =(arg &optional time)=
9189    :PROPERTIES:
9190    :CUSTOM_ID: org-agenda-deadline
9191    :END:
9193 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9194 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-deadline][Find modifications in git logs]]
9196 : Schedule the item at point.
9197 : ARG is passed through to â€˜org-deadline’.
9198 ** org-agenda-priority =(&optional force-direction)=
9199    :PROPERTIES:
9200    :CUSTOM_ID: org-agenda-priority
9201    :END:
9203 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9204 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-priority][Find modifications in git logs]]
9206 : Set the priority of line at point, also in Org file.
9207 : This changes the line at point, all other lines in the agenda referring to
9208 : the same tree node, and the headline of the tree node in the Org file.
9209 : Called with a universal prefix arg, show the priority instead of setting it.
9210 ** org-ascii-export-to-ascii =(&optional async subtreep visible-only body-only ext-plist)=
9211    :PROPERTIES:
9212    :CUSTOM_ID: org-ascii-export-to-ascii
9213    :END:
9215 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
9216 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-export-to-ascii][Find modifications in git logs]]
9218 : Export current buffer to a text file.
9220 : If narrowing is active in the current buffer, only export its
9221 : narrowed part.
9223 : If a region is active, export that region.
9225 : A non-nil optional argument ASYNC means the process should happen
9226 : asynchronously.  The resulting file should be accessible through
9227 : the â€˜org-export-stack’ interface.
9229 : When optional argument SUBTREEP is non-nil, export the sub-tree
9230 : at point, extracting information from the headline properties
9231 : first.
9233 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9234 : contents of hidden elements.
9236 : When optional argument BODY-ONLY is non-nil, strip title and
9237 : table of contents from output.
9239 : EXT-PLIST, when provided, is a property list with external
9240 : parameters overriding Org default settings, but still inferior to
9241 : file-local settings.
9243 : Return output file’s name.
9244 ** org-fill-paragraph =(&optional justify region)=
9245    :PROPERTIES:
9246    :CUSTOM_ID: org-fill-paragraph
9247    :END:
9249 - *Access:* ~M-q~
9250 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9251 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fill-paragraph][Find modifications in git logs]]
9253 : Fill element at point, when applicable.
9255 : This function only applies to comment blocks, comments, example
9256 : blocks and paragraphs.  Also, as a special case, re-align table
9257 : when point is at one.
9259 : For convenience, when point is at a plain list, an item or
9260 : a footnote definition, try to fill the first paragraph within.
9262 : If JUSTIFY is non-nil (interactively, with prefix argument),
9263 : justify as well.  If â€˜sentence-end-double-space’ is non-nil, then
9264 : period followed by one space does not end a sentence, so don’t
9265 : break a line there.  The variable â€˜fill-column’ controls the
9266 : width for filling.
9268 : The REGION argument is non-nil if called interactively; in that
9269 : case, if Transient Mark mode is enabled and the mark is active,
9270 : fill each of the elements in the active region, instead of just
9271 : filling the current element.
9272 ** org-publish-current-project =(&optional force async)=
9273    :PROPERTIES:
9274    :CUSTOM_ID: org-publish-current-project
9275    :END:
9277 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
9278 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-current-project][Find modifications in git logs]]
9280 : Publish the project associated with the current file.
9281 : With a prefix argument, force publishing of all files in
9282 : the project.
9283 ** org-remove-occur-highlights =(&optional _beg _end noremove)=
9284    :PROPERTIES:
9285    :CUSTOM_ID: org-remove-occur-highlights
9286    :END:
9288 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9289 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-remove-occur-highlights][Find modifications in git logs]]
9291 : Remove the occur highlights from the buffer.
9292 : BEG and END are ignored.  If NOREMOVE is nil, remove this function
9293 : from the â€˜before-change-functions’ in the current buffer.
9294 ** org-agenda-next-item =(n)=
9295    :PROPERTIES:
9296    :CUSTOM_ID: org-agenda-next-item
9297    :END:
9299 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9300 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-next-item][Find modifications in git logs]]
9302 : Move cursor to next agenda item.
9303 ** org-previous-visible-heading =(arg)=
9304    :PROPERTIES:
9305    :CUSTOM_ID: org-previous-visible-heading
9306    :END:
9308 - *Access:* ~C-c C-p, <menu-bar> <Org> <Navigate Headings> <Previous>~
9309 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9310 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-previous-visible-heading][Find modifications in git logs]]
9312 : Move to the previous visible heading.
9314 : This function wraps â€˜outline-previous-visible-heading’ with
9315 : â€˜org-with-limited-levels’ in order to skip over inline tasks and
9316 : respect customization of â€˜org-odd-levels-only’.
9317 ** org-babel-check-src-block
9318    :PROPERTIES:
9319    :CUSTOM_ID: org-babel-check-src-block
9320    :END:
9322 - *Access:* ~C-c C-v c, C-c C-v C-c~
9323 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
9324 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-check-src-block][Find modifications in git logs]]
9326 : Check for misspelled header arguments in the current code block.
9327 ** org-increase-number-at-point =(&optional inc)=
9328    :PROPERTIES:
9329    :CUSTOM_ID: org-increase-number-at-point
9330    :END:
9332 - *Access:* ~<C-M-S-right>~
9333 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9334 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-increase-number-at-point][Find modifications in git logs]]
9336 : Increment the number at point.
9337 : With an optional prefix numeric argument INC, increment using
9338 : this numeric value.
9339 ** org-end-of-line =(&optional n)=
9340    :PROPERTIES:
9341    :CUSTOM_ID: org-end-of-line
9342    :END:
9344 - *Access:* ~C-e~
9345 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9346 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-end-of-line][Find modifications in git logs]]
9348 : Go to the end of the line, but before ellipsis, if any.
9350 : If this is a headline, and â€˜org-special-ctrl-a/e’ is set, ignore
9351 : tags on the first attempt, and only move to after the tags when
9352 : the cursor is already beyond the end of the headline.
9354 : With argument N not nil or 1, move forward N - 1 lines first.
9355 ** org-attach-set-directory
9356    :PROPERTIES:
9357    :CUSTOM_ID: org-attach-set-directory
9358    :END:
9360 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
9361 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-set-directory][Find modifications in git logs]]
9363 : Set the ATTACH_DIR property of the current entry.
9364 : The property defines the directory that is used for attachments
9365 : of the entry.
9366 ** org-table-fedit-scroll-down =(N)=
9367    :PROPERTIES:
9368    :CUSTOM_ID: org-table-fedit-scroll-down
9369    :END:
9371 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9372 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-scroll-down][Find modifications in git logs]]
9375 ** orgtbl-error
9376    :PROPERTIES:
9377    :CUSTOM_ID: orgtbl-error
9378    :END:
9380 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9381 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-error][Find modifications in git logs]]
9383 : Error when there is no default binding for a table key.
9384 ** org-shifttab =(&optional arg)=
9385    :PROPERTIES:
9386    :CUSTOM_ID: org-shifttab
9387    :END:
9389 - *Access:* ~<backtab>, <S-tab>, <S-iso-lefttab>, <menu-bar> <Tbl> <Previous Field>, <menu-bar> <Org> <Show/Hide> <Cycle Global Visibility>~
9390 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9391 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-shifttab][Find modifications in git logs]]
9393 : Global visibility cycling or move to previous table field.
9394 : Call â€˜org-table-previous-field’ within a table.
9395 : When ARG is nil, cycle globally through visibility states.
9396 : When ARG is a numeric prefix, show contents of this level.
9397 ** org-man-export-to-man =(&optional async subtreep visible-only body-only ext-plist)=
9398    :PROPERTIES:
9399    :CUSTOM_ID: org-man-export-to-man
9400    :END:
9402 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
9403 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-export-to-man][Find modifications in git logs]]
9405 : Export current buffer to a Man file.
9407 : If narrowing is active in the current buffer, only export its
9408 : narrowed part.
9410 : If a region is active, export that region.
9412 : A non-nil optional argument ASYNC means the process should happen
9413 : asynchronously.  The resulting file should be accessible through
9414 : the â€˜org-export-stack’ interface.
9416 : When optional argument SUBTREEP is non-nil, export the sub-tree
9417 : at point, extracting information from the headline properties
9418 : first.
9420 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9421 : contents of hidden elements.
9423 : When optional argument BODY-ONLY is non-nil, only the body
9424 : without any markers.
9426 : EXT-PLIST, when provided, is a property list with external
9427 : parameters overriding Org default settings, but still inferior to
9428 : file-local settings.
9430 : Return output file’s name.
9431 ** org-capture-refile
9432    :PROPERTIES:
9433    :CUSTOM_ID: org-capture-refile
9434    :END:
9436 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
9437 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-refile][Find modifications in git logs]]
9439 : Finalize the current capture and then refile the entry.
9440 : Refiling is done from the base buffer, because the indirect buffer is then
9441 : already gone.  Any prefix argument will be passed to the refile command.
9442 ** org-decrypt-entry
9443    :PROPERTIES:
9444    :CUSTOM_ID: org-decrypt-entry
9445    :END:
9447 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
9448 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-decrypt-entry][Find modifications in git logs]]
9450 : Decrypt the content of the current headline.
9451 ** org-set-tags-command =(&optional arg just-align)=
9452    :PROPERTIES:
9453    :CUSTOM_ID: org-set-tags-command
9454    :END:
9456 - *Access:* ~C-c C-q, <menu-bar> <Org> <TAGS and Properties> <Set Tags>~
9457 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9458 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-tags-command][Find modifications in git logs]]
9460 : Call the set-tags command for the current entry.
9461 ** org-edit-agenda-file-list
9462    :PROPERTIES:
9463    :CUSTOM_ID: org-edit-agenda-file-list
9464    :END:
9466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-agenda-file-list][Find modifications in git logs]]
9469 : Edit the list of agenda files.
9470 : Depending on setup, this either uses customize to edit the variable
9471 : â€˜org-agenda-files’, or it visits the file that is holding the list.  In the
9472 : latter case, the buffer is set up in a way that saving it automatically kills
9473 : the buffer and restores the previous window configuration.
9474 ** org-babel-load-in-session =(&optional _arg info)=
9475    :PROPERTIES:
9476    :CUSTOM_ID: org-babel-load-in-session
9477    :END:
9479 - *Access:* ~C-c C-v l, C-c C-v C-l~
9480 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
9481 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-load-in-session][Find modifications in git logs]]
9483 : Load the body of the current source-code block.
9484 : Evaluate the header arguments for the source block before
9485 : entering the session.  After loading the body this pops open the
9486 : session.
9487 ** org-clock-menu
9488    :PROPERTIES:
9489    :CUSTOM_ID: org-clock-menu
9490    :END:
9492 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
9493 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-menu][Find modifications in git logs]]
9496 ** org-columns-edit-attributes
9497    :PROPERTIES:
9498    :CUSTOM_ID: org-columns-edit-attributes
9499    :END:
9501 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
9502 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-edit-attributes][Find modifications in git logs]]
9504 : Edit the attributes of the current column.
9505 ** org-export-stack-clear
9506    :PROPERTIES:
9507    :CUSTOM_ID: org-export-stack-clear
9508    :END:
9510 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
9511 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-clear][Find modifications in git logs]]
9513 : Remove all entries from export stack.
9514 ** org-revert-all-org-buffers
9515    :PROPERTIES:
9516    :CUSTOM_ID: org-revert-all-org-buffers
9517    :END:
9519 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9520 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-revert-all-org-buffers][Find modifications in git logs]]
9522 : Revert all Org buffers.
9523 : Prompt for confirmation when there are unsaved changes.
9524 : Be sure you know what you are doing before letting this function
9525 : overwrite your changes.
9527 : This function is useful in a setup where one tracks org files
9528 : with a version control system, to revert on one machine after pulling
9529 : changes from another.  I believe the procedure must be like this:
9531 : 1. M-x org-save-all-org-buffers
9532 : 2. Pull changes from the other machine, resolve conflicts
9533 : 3. M-x org-revert-all-org-buffers
9534 ** org-table-move-row =(&optional up)=
9535    :PROPERTIES:
9536    :CUSTOM_ID: org-table-move-row
9537    :END:
9539 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9540 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-move-row][Find modifications in git logs]]
9542 : Move the current table line down.  With arg UP, move it up.
9543 ** org-id-copy
9544    :PROPERTIES:
9545    :CUSTOM_ID: org-id-copy
9546    :END:
9548 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
9549 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-copy][Find modifications in git logs]]
9551 : Copy the ID of the entry at point to the kill ring.
9552 : Create an ID if necessary.
9553 ** org-table-cut-region =(beg end)=
9554    :PROPERTIES:
9555    :CUSTOM_ID: org-table-cut-region
9556    :END:
9558 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9559 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-cut-region][Find modifications in git logs]]
9561 : Copy region in table to the clipboard and blank all relevant fields.
9562 : If there is no active region, use just the field at point.
9563 ** org-calendar-goto-agenda
9564    :PROPERTIES:
9565    :CUSTOM_ID: org-calendar-goto-agenda
9566    :END:
9568 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9569 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-goto-agenda][Find modifications in git logs]]
9571 : Compute the Org agenda for the calendar date displayed at the cursor.
9572 : This is a command that has to be installed in â€˜calendar-mode-map’.
9573 ** org-capture-finalize =(&optional stay-with-capture)=
9574    :PROPERTIES:
9575    :CUSTOM_ID: org-capture-finalize
9576    :END:
9578 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
9579 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-finalize][Find modifications in git logs]]
9581 : Finalize the capture process.
9582 : With prefix argument STAY-WITH-CAPTURE, jump to the location of the
9583 : captured item after finalizing.
9584 ** org-ctags-open-file =(name &optional title)=
9585    :PROPERTIES:
9586    :CUSTOM_ID: org-ctags-open-file
9587    :END:
9589 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
9590 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-open-file][Find modifications in git logs]]
9592 : Visit or create a file called â€˜NAME.org’, and insert a new topic.
9593 : The new topic will be titled NAME (or TITLE if supplied).
9594 ** org-refile-goto-last-stored
9595    :PROPERTIES:
9596    :CUSTOM_ID: org-refile-goto-last-stored
9597    :END:
9599 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9600 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-goto-last-stored][Find modifications in git logs]]
9602 : Go to the location where the last refile was stored.
9603 ** org-force-cycle-archived
9604    :PROPERTIES:
9605    :CUSTOM_ID: org-force-cycle-archived
9606    :END:
9608 - *Access:* ~<C-tab>~
9609 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9610 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-force-cycle-archived][Find modifications in git logs]]
9612 : Cycle subtree even if it is archived.
9613 ** org-table-field-info =(_arg)=
9614    :PROPERTIES:
9615    :CUSTOM_ID: org-table-field-info
9616    :END:
9618 - *Access:* ~C-c ?~
9619 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9620 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-field-info][Find modifications in git logs]]
9622 : Show info about the current field, and highlight any reference at point.
9623 ** org-setup-comments-handling
9624    :PROPERTIES:
9625    :CUSTOM_ID: org-setup-comments-handling
9626    :END:
9628 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9629 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-setup-comments-handling][Find modifications in git logs]]
9632 ** org-priority-up
9633    :PROPERTIES:
9634    :CUSTOM_ID: org-priority-up
9635    :END:
9637 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9638 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-priority-up][Find modifications in git logs]]
9640 : Increase the priority of the current item.
9641 ** org-copy-subtree =(&optional n cut force-store-markers nosubtrees)=
9642    :PROPERTIES:
9643    :CUSTOM_ID: org-copy-subtree
9644    :END:
9646 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9647 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-copy-subtree][Find modifications in git logs]]
9649 : Copy the current subtree it in the clipboard.
9650 : With prefix arg N, copy this many sequential subtrees.
9651 : This is a short-hand for marking the subtree and then copying it.
9652 : If CUT is non-nil, actually cut the subtree.
9653 : If FORCE-STORE-MARKERS is non-nil, store the relative locations
9654 : of some markers in the region, even if CUT is non-nil.  This is
9655 : useful if the caller implements cut-and-paste as copy-then-paste-then-cut.
9656 ** org-caldav-delete-everything =(prefix)=
9657    :PROPERTIES:
9658    :CUSTOM_ID: org-caldav-delete-everything
9659    :END:
9661 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-caldav.el][org-caldav.el]]
9662 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-caldav-delete-everything][Find modifications in git logs]]
9664 : Delete all events from Calendar and removes state file.
9665 : Again: This deletes all events in your calendar.  So only do this
9666 : if you’re really sure.  This has to be called with a prefix, just
9667 : so you don’t do it by accident.
9668 ** org-forward-element
9669    :PROPERTIES:
9670    :CUSTOM_ID: org-forward-element
9671    :END:
9673 - *Access:* ~M-}~
9674 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9675 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-forward-element][Find modifications in git logs]]
9677 : Move forward by one element.
9678 : Move to the next element at the same level, when possible.
9679 ** org-open-at-point-global
9680    :PROPERTIES:
9681    :CUSTOM_ID: org-open-at-point-global
9682    :END:
9684 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9685 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-at-point-global][Find modifications in git logs]]
9687 : Follow a link or time-stamp like Org mode does.
9688 : This command can be called in any mode to follow an external link
9689 : or a time-stamp that has Org mode syntax.  Its behavior is
9690 : undefined when called on internal links (e.g., fuzzy links).
9691 : Raise an error when there is nothing to follow.
9692 ** org-unescape-code-in-region =(beg end)=
9693    :PROPERTIES:
9694    :CUSTOM_ID: org-unescape-code-in-region
9695    :END:
9697 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
9698 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-unescape-code-in-region][Find modifications in git logs]]
9700 : Un-escape lines between BEG and END.
9701 : Un-escaping happens by removing the first comma on lines starting
9702 : with ",*", ",#+", ",,*" and ",,#+".
9703 ** org-agenda-menu =(event)=
9704    :PROPERTIES:
9705    :CUSTOM_ID: org-agenda-menu
9706    :END:
9708 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9709 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-menu][Find modifications in git logs]]
9711 : Agenda menu
9712 ** org-cycle-agenda-files
9713    :PROPERTIES:
9714    :CUSTOM_ID: org-cycle-agenda-files
9715    :END:
9717 - *Access:* ~C-', C-,, <menu-bar> <Org> <File List for Agenda> <Cycle through agenda files>~
9718 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9719 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-agenda-files][Find modifications in git logs]]
9721 : Cycle through the files in â€˜org-agenda-files’.
9722 : If the current buffer visits an agenda file, find the next one in the list.
9723 : If the current buffer does not, find the first agenda file.
9724 ** org-move-item-up
9725    :PROPERTIES:
9726    :CUSTOM_ID: org-move-item-up
9727    :END:
9729 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
9730 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-move-item-up][Find modifications in git logs]]
9732 : Move the item at point up, i.e. swap with previous item.
9733 : Sub-items (items with larger indentation) are considered part of
9734 : the item, so this really moves item trees.
9735 ** org-babel-load-in-session-maybe
9736    :PROPERTIES:
9737    :CUSTOM_ID: org-babel-load-in-session-maybe
9738    :END:
9740 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
9741 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-load-in-session-maybe][Find modifications in git logs]]
9743 : Conditionally load a source block in a session.
9744 : Detect if this is context for a org-babel src-block and if so
9745 : then run â€˜org-babel-load-in-session’.
9746 ** org-entities-create-table
9747    :PROPERTIES:
9748    :CUSTOM_ID: org-entities-create-table
9749    :END:
9751 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-entities.el][org-entities.el]]
9752 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-entities-create-table][Find modifications in git logs]]
9754 : Create an Org mode table with all entities.
9755 ** org-toggle-sticky-agenda =(&optional arg)=
9756    :PROPERTIES:
9757    :CUSTOM_ID: org-toggle-sticky-agenda
9758    :END:
9760 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
9761 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-sticky-agenda][Find modifications in git logs]]
9763 : Toggle â€˜org-agenda-sticky’.
9764 ** org-insert-columns-dblock
9765    :PROPERTIES:
9766    :CUSTOM_ID: org-insert-columns-dblock
9767    :END:
9769 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
9770 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-columns-dblock][Find modifications in git logs]]
9772 : Create a dynamic block capturing a column view table.
9773 ** org-man-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
9774    :PROPERTIES:
9775    :CUSTOM_ID: org-man-export-to-pdf
9776    :END:
9778 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
9779 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-export-to-pdf][Find modifications in git logs]]
9781 : Export current buffer to Groff then process through to PDF.
9783 : If narrowing is active in the current buffer, only export its
9784 : narrowed part.
9786 : If a region is active, export that region.
9788 : A non-nil optional argument ASYNC means the process should happen
9789 : asynchronously.  The resulting file should be accessible through
9790 : the â€˜org-export-stack’ interface.
9792 : When optional argument SUBTREEP is non-nil, export the sub-tree
9793 : at point, extracting information from the headline properties
9794 : first.
9796 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9797 : contents of hidden elements.
9799 : When optional argument BODY-ONLY is non-nil, only write between
9800 : markers.
9802 : EXT-PLIST, when provided, is a property list with external
9803 : parameters overriding Org default settings, but still inferior to
9804 : file-local settings.
9806 : Return PDF file’s name.
9807 ** org-calendar-select-mouse =(ev)=
9808    :PROPERTIES:
9809    :CUSTOM_ID: org-calendar-select-mouse
9810    :END:
9812 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9813 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-select-mouse][Find modifications in git logs]]
9815 : Return to â€˜org-read-date’ with the date currently selected.
9816 : This is used by â€˜org-read-date’ in a temporary keymap for the calendar buffer.
9817 ** org-babel-previous-src-block =(&optional arg)=
9818    :PROPERTIES:
9819    :CUSTOM_ID: org-babel-previous-src-block
9820    :END:
9822 - *Access:* ~C-c C-v C-p, C-c C-v p~
9823 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
9824 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-previous-src-block][Find modifications in git logs]]
9826 : Jump to the previous source block.
9827 : With optional prefix argument ARG, jump backward ARG many source blocks.
9828 ** org-edit-headline =(&optional heading)=
9829    :PROPERTIES:
9830    :CUSTOM_ID: org-edit-headline
9831    :END:
9833 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9834 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-headline][Find modifications in git logs]]
9836 : Edit the current headline.
9837 : Set it to HEADING when provided.
9838 ** org-indent-region =(start end)=
9839    :PROPERTIES:
9840    :CUSTOM_ID: org-indent-region
9841    :END:
9843 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9844 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-region][Find modifications in git logs]]
9846 : Indent each non-blank line in the region.
9847 : Called from a program, START and END specify the region to
9848 : indent.  The function will not indent contents of example blocks,
9849 : verse blocks and export blocks as leading white spaces are
9850 : assumed to be significant there.
9851 ** org-paste-special =(arg)=
9852    :PROPERTIES:
9853    :CUSTOM_ID: org-paste-special
9854    :END:
9856 - *Access:* ~C-c C-x C-y, <menu-bar> <Org> <Edit Structure> <Paste Subtree>, <menu-bar> <Tbl> <Rectangle> <Paste Rectangle>~
9857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-paste-special][Find modifications in git logs]]
9860 : Paste rectangular region into table, or past subtree relative to level.
9861 : Calls â€˜org-table-paste-rectangle’ or â€˜org-paste-subtree’, depending on context.
9862 : See the individual commands for more information.
9863 ** org-toggle-fixed-width
9864    :PROPERTIES:
9865    :CUSTOM_ID: org-toggle-fixed-width
9866    :END:
9868 - *Access:* ~C-c :~
9869 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9870 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-toggle-fixed-width][Find modifications in git logs]]
9872 : Toggle fixed-width markup.
9874 : Add or remove fixed-width markup on current line, whenever it
9875 : makes sense.  Return an error otherwise.
9877 : If a region is active and if it contains only fixed-width areas
9878 : or blank lines, remove all fixed-width markup in it.  If the
9879 : region contains anything else, convert all non-fixed-width lines
9880 : to fixed-width ones.
9882 : Blank lines at the end of the region are ignored unless the
9883 : region only contains such lines.
9884 ** org-columns-show-value
9885    :PROPERTIES:
9886    :CUSTOM_ID: org-columns-show-value
9887    :END:
9889 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
9890 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-show-value][Find modifications in git logs]]
9892 : Show the full value of the property.
9893 ** org-metaright =(&optional _arg)=
9894    :PROPERTIES:
9895    :CUSTOM_ID: org-metaright
9896    :END:
9898 - *Access:* ~<M-right>, <menu-bar> <Org> <Edit Structure> <Demote Heading>, <menu-bar> <Tbl> <Column> <Move Column Right>~
9899 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
9900 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaright][Find modifications in git logs]]
9902 : Demote heading, list item at point or move table column right.
9904 : In front of a drawer or a block keyword, indent it correctly.
9906 : Calls â€˜org-do-demote’, â€˜org-indent-item’, â€˜org-table-move-column’,
9907 : â€˜org-indent-drawer’ or â€˜org-indent-block’ depending on context.
9908 : With no specific context, calls the Emacs default â€˜forward-word’.
9909 : See the individual commands for more information.
9911 : This function runs the hook â€˜org-metaright-hook’ as a first step,
9912 : and returns at first non-nil value.
9913 ** org-mouse-insert-heading
9914    :PROPERTIES:
9915    :CUSTOM_ID: org-mouse-insert-heading
9916    :END:
9918 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
9919 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-insert-heading][Find modifications in git logs]]
9921 : Insert a new heading, as â€˜org-insert-heading’.
9923 : If the point is at the :beginning (‘org-mouse-line-position’) of the line,
9924 : insert the new heading before the current line.  Otherwise, insert it
9925 : after the current heading.
9926 ** org-table-eval-formula =(&optional arg equation suppress-align suppress-const suppress-store suppress-analysis)=
9927    :PROPERTIES:
9928    :CUSTOM_ID: org-table-eval-formula
9929    :END:
9931 - *Access:* ~C-c =, <menu-bar> <Tbl> <Calculate> <Set Column Formula>~
9932 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
9933 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-eval-formula][Find modifications in git logs]]
9935 : Replace the table field value at the cursor by the result of a calculation.
9937 : In a table, this command replaces the value in the current field with the
9938 : result of a formula.  It also installs the formula as the "current" column
9939 : formula, by storing it in a special line below the table.  When called
9940 : with a â€˜C-u’ prefix the formula is installed as a field formula.
9942 : When called with a â€˜C-u C-u’ prefix, insert the active equation for the field
9943 : back into the current field, so that it can be edited there.  This is useful
9944 : in order to use â€˜C-c ?’ to check the referenced fields.
9946 : When called, the command first prompts for a formula, which is read in
9947 : the minibuffer.  Previously entered formulas are available through the
9948 : history list, and the last used formula is offered as a default.
9949 : These stored formulas are adapted correctly when moving, inserting, or
9950 : deleting columns with the corresponding commands.
9952 : The formula can be any algebraic expression understood by the Calc package.
9953 : For details, see the Org mode manual.
9955 : This function can also be called from Lisp programs and offers
9956 : additional arguments: EQUATION can be the formula to apply.  If this
9957 : argument is given, the user will not be prompted.
9959 : SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing
9960 : unnecessary aligns.
9962 : SUPPRESS-CONST suppresses the interpretation of constants in the
9963 : formula, assuming that this has been done already outside the
9964 : function.
9966 : SUPPRESS-STORE means the formula should not be stored, either
9967 : because it is already stored, or because it is a modified
9968 : equation that should not overwrite the stored one.
9970 : SUPPRESS-ANALYSIS prevents analyzing the table and checking
9971 : location of point.
9972 ** org-babel-remove-inline-result =(&optional datum)=
9973    :PROPERTIES:
9974    :CUSTOM_ID: org-babel-remove-inline-result
9975    :END:
9977 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
9978 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-remove-inline-result][Find modifications in git logs]]
9980 : Remove the result of the current inline-src-block or babel call.
9981 : The result must be wrapped in a â€˜results’ macro to be removed.
9982 : Leading white space is trimmed.
9983 ** org-babel-tangle-clean
9984    :PROPERTIES:
9985    :CUSTOM_ID: org-babel-tangle-clean
9986    :END:
9988 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
9989 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-clean][Find modifications in git logs]]
9991 : Remove comments inserted by â€˜org-babel-tangle’.
9992 : Call this function inside of a source-code file generated by
9993 : â€˜org-babel-tangle’ to remove all comments inserted automatically
9994 : by â€˜org-babel-tangle’.  Warning, this comment removes any lines
9995 : containing constructs which resemble Org file links or noweb
9996 : references.
9997 ** org-table-copy-region =(beg end &optional cut)=
9998    :PROPERTIES:
9999    :CUSTOM_ID: org-table-copy-region
10000    :END:
10002 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10003 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-copy-region][Find modifications in git logs]]
10005 : Copy rectangular region in table to clipboard.
10006 : A special clipboard is used which can only be accessed
10007 : with â€˜org-table-paste-rectangle’.
10008 ** org-set-effort =(&optional value increment)=
10009    :PROPERTIES:
10010    :CUSTOM_ID: org-set-effort
10011    :END:
10013 - *Access:* ~C-c C-x e~
10014 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10015 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-effort][Find modifications in git logs]]
10017 : Set the effort property of the current entry.
10018 : With numerical prefix arg, use the nth allowed value, 0 stands for the
10019 : 10th allowed value.
10021 : When INCREMENT is non-nil, set the property to the next allowed value.
10022 ** org-edit-table.el
10023    :PROPERTIES:
10024    :CUSTOM_ID: org-edit-table.el
10025    :END:
10027 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
10028 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-table.el][Find modifications in git logs]]
10030 : Edit "table.el" table at point.
10032 : A new buffer is created and the table is copied into it.  Then
10033 : the table is recognized with â€˜table-recognize’.  When done
10034 : editing, exit with â€˜C-c '’.  The edited text will then replace
10035 : the area in the Org mode buffer.
10037 : Throw an error when not at such a table.
10038 ** org-forward-heading-same-level =(arg &optional invisible-ok)=
10039    :PROPERTIES:
10040    :CUSTOM_ID: org-forward-heading-same-level
10041    :END:
10043 - *Access:* ~C-c C-f, <menu-bar> <Org> <Navigate Headings> <Next Same Level>~
10044 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10045 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-forward-heading-same-level][Find modifications in git logs]]
10047 : Move forward to the ARG’th subheading at same level as this one.
10048 : Stop at the first and last subheadings of a superior heading.
10049 : Normally this only looks at visible headings, but when INVISIBLE-OK is
10050 : non-nil it will also look at invisible ones.
10051 ** org-lint--report-mode
10052    :PROPERTIES:
10053    :CUSTOM_ID: org-lint--report-mode
10054    :END:
10056 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
10057 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--report-mode][Find modifications in git logs]]
10059 : Major mode used to display reports emitted during linting.
10060 : key             binding
10061 : ---             -------
10063 : TAB .. C-j    org-lint--show-source
10064 : RET           org-lint--jump-to-source
10065 : ESC           Prefix Command
10066 : SPC           scroll-up-command
10067 : -             negative-argument
10068 : 0 .. 9                digit-argument
10069 : <             beginning-of-buffer
10070 : >             end-of-buffer
10071 : ?             describe-mode
10072 : S             tabulated-list-sort
10073 : g             revert-buffer
10074 : h             org-lint--hide-checker
10075 : i             org-lint--ignore-checker
10076 : n             next-line
10077 : p             previous-line
10078 : q             quit-window
10079 : DEL           scroll-down-command
10080 : S-SPC         scroll-down-command
10081 : <backtab>     backward-button
10082 : <follow-link> mouse-face
10083 : <mouse-2>     mouse-select-window
10084 : <remap>               Prefix Command
10086 : C-M-i         backward-button
10090 : In addition to any hooks its parent mode â€˜tabulated-list-mode’ might have run,
10091 : this mode runs the hook â€˜org-lint--report-mode-hook’, as the final or penultimate step
10092 : during initialization.
10093 ** org-mode-restart
10094    :PROPERTIES:
10095    :CUSTOM_ID: org-mode-restart
10096    :END:
10098 - *Access:* ~<menu-bar> <Org> <Refresh/Reload> <Refresh setup current buffer>~
10099 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10100 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mode-restart][Find modifications in git logs]]
10103 ** org-agenda =(&optional arg org-keys restriction)=
10104    :PROPERTIES:
10105    :CUSTOM_ID: org-agenda
10106    :END:
10108 - *Access:* ~<menu-bar> <Org> <Agenda Command...>, C-c a~
10109 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10110 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda][Find modifications in git logs]]
10112 : Dispatch agenda commands to collect entries to the agenda buffer.
10113 : Prompts for a command to execute.  Any prefix arg will be passed
10114 : on to the selected command.  The default selections are:
10116 : a     Call â€˜org-agenda-list’ to display the agenda for current day or week.
10117 : t     Call â€˜org-todo-list’ to display the global todo list.
10118 : T     Call â€˜org-todo-list’ to display the global todo list, select only
10119 :       entries with a specific TODO keyword (the user gets a prompt).
10120 : m     Call â€˜org-tags-view’ to display headlines with tags matching
10121 :       a condition  (the user is prompted for the condition).
10122 : M     Like â€˜m’, but select only TODO entries, no ordinary headlines.
10123 : e     Export views to associated files.
10124 : s     Search entries for keywords.
10125 : S     Search entries for keywords, only with TODO keywords.
10126 : /     Multi occur across all agenda files and also files listed
10127 :       in â€˜org-agenda-text-search-extra-files’.
10128 : <     Restrict agenda commands to buffer, subtree, or region.
10129 :       Press several times to get the desired effect.
10130 : >     Remove a previous restriction.
10131 : #     List "stuck" projects.
10132 : !     Configure what "stuck" means.
10133 : C     Configure custom agenda commands.
10135 : More commands can be added by configuring the variable
10136 : â€˜org-agenda-custom-commands’.  In particular, specific tags and TODO keyword
10137 : searches can be pre-defined in this way.
10139 : If the current buffer is in Org mode and visiting a file, you can also
10140 : first press â€˜<’ once to indicate that the agenda should be temporarily
10141 : (until the next use of â€˜C-c a’) restricted to the current file.
10142 : Pressing â€˜<’ twice means to restrict to the current subtree or region
10143 : (if active).
10144 ** org-save-all-org-buffers
10145    :PROPERTIES:
10146    :CUSTOM_ID: org-save-all-org-buffers
10147    :END:
10149 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10150 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-save-all-org-buffers][Find modifications in git logs]]
10152 : Save all Org buffers without user confirmation.
10153 ** org-agenda-forward-block =(&optional backward)=
10154    :PROPERTIES:
10155    :CUSTOM_ID: org-agenda-forward-block
10156    :END:
10158 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10159 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-forward-block][Find modifications in git logs]]
10161 : Move forward by one agenda block.
10162 : When optional argument BACKWARD is set, go backward
10163 ** org-export-stack-refresh
10164    :PROPERTIES:
10165    :CUSTOM_ID: org-export-stack-refresh
10166    :END:
10168 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
10169 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-refresh][Find modifications in git logs]]
10171 : Refresh the export stack.
10172 ** orgstruct++-mode =(&optional arg)=
10173    :PROPERTIES:
10174    :CUSTOM_ID: orgstruct++-mode
10175    :END:
10177 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10178 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct++-mode][Find modifications in git logs]]
10180 : Toggle â€˜orgstruct-mode’, the enhanced version of it.
10181 : In addition to setting orgstruct-mode, this also exports all
10182 : indentation and autofilling variables from Org mode into the
10183 : buffer.  It will also recognize item context in multiline items.
10184 ** org-mobile-create-sumo-agenda
10185    :PROPERTIES:
10186    :CUSTOM_ID: org-mobile-create-sumo-agenda
10187    :END:
10189 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
10190 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-create-sumo-agenda][Find modifications in git logs]]
10192 : Create a file that contains all custom agenda views.
10193 ** org-mouse-down-mouse =(event)=
10194    :PROPERTIES:
10195    :CUSTOM_ID: org-mouse-down-mouse
10196    :END:
10198 - *Access:* ~<down-mouse-1>~
10199 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
10200 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-down-mouse][Find modifications in git logs]]
10203 ** org-move-subtree-down =(&optional arg)=
10204    :PROPERTIES:
10205    :CUSTOM_ID: org-move-subtree-down
10206    :END:
10208 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10209 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-move-subtree-down][Find modifications in git logs]]
10211 : Move the current subtree down past ARG headlines of the same level.
10212 ** org-update-radio-target-regexp
10213    :PROPERTIES:
10214    :CUSTOM_ID: org-update-radio-target-regexp
10215    :END:
10217 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10218 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-update-radio-target-regexp][Find modifications in git logs]]
10220 : Find all radio targets in this file and update the regular expression.
10221 : Also refresh fontification if needed.
10222 ** org-backward-heading-same-level =(arg &optional invisible-ok)=
10223    :PROPERTIES:
10224    :CUSTOM_ID: org-backward-heading-same-level
10225    :END:
10227 - *Access:* ~C-c C-b, <menu-bar> <Org> <Navigate Headings> <Previous Same Level>~
10228 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10229 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-backward-heading-same-level][Find modifications in git logs]]
10231 : Move backward to the ARG’th subheading at same level as this one.
10232 : Stop at the first and last subheadings of a superior heading.
10233 ** org-capture-goto-target =(&optional template-key)=
10234    :PROPERTIES:
10235    :CUSTOM_ID: org-capture-goto-target
10236    :END:
10238 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
10239 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-goto-target][Find modifications in git logs]]
10241 : Go to the target location of a capture template.
10242 : The user is queried for the template.
10243 ** org-table-recalculate =(&optional all noalign)=
10244    :PROPERTIES:
10245    :CUSTOM_ID: org-table-recalculate
10246    :END:
10248 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Recalculate line>~
10249 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10250 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-recalculate][Find modifications in git logs]]
10252 : Recalculate the current table line by applying all stored formulas.
10254 : With prefix arg ALL, do this for all lines in the table.
10256 : When called with a â€˜C-u C-u’ prefix, or if ALL is the symbol â€˜iterate’,
10257 : recompute the table until it no longer changes.
10259 : If NOALIGN is not nil, do not re-align the table after the computations
10260 : are done.  This is typically used internally to save time, if it is
10261 : known that the table will be realigned a little later anyway.
10262 ** org-ctags-get-filename-for-tag =(tag)=
10263    :PROPERTIES:
10264    :CUSTOM_ID: org-ctags-get-filename-for-tag
10265    :END:
10267 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
10268 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-get-filename-for-tag][Find modifications in git logs]]
10270 : TAG is a string.  Search the active TAGS file for a matching tag.
10271 : If the tag is found, return a list containing the filename, line number, and
10272 : buffer position where the tag is found.
10273 ** org-table-align
10274    :PROPERTIES:
10275    :CUSTOM_ID: org-table-align
10276    :END:
10278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-align][Find modifications in git logs]]
10281 : Align the table at point by aligning all vertical bars.
10282 ** org-clock-timestamps-down =(&optional n)=
10283    :PROPERTIES:
10284    :CUSTOM_ID: org-clock-timestamps-down
10285    :END:
10287 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
10288 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-timestamps-down][Find modifications in git logs]]
10290 : Increase CLOCK timestamps at cursor.
10291 : Optional argument N tells to change by that many units.
10292 ** org-agenda-clock-cancel =(&optional arg)=
10293    :PROPERTIES:
10294    :CUSTOM_ID: org-agenda-clock-cancel
10295    :END:
10297 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10298 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clock-cancel][Find modifications in git logs]]
10300 : Cancel the currently running clock.
10301 ** org-open-link-from-string =(s &optional arg reference-buffer)=
10302    :PROPERTIES:
10303    :CUSTOM_ID: org-open-link-from-string
10304    :END:
10306 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10307 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-link-from-string][Find modifications in git logs]]
10309 : Open a link in the string S, as if it was in Org mode.
10310 ** org-change-tag-in-region =(beg end tag off)=
10311    :PROPERTIES:
10312    :CUSTOM_ID: org-change-tag-in-region
10313    :END:
10315 - *Access:* ~<menu-bar> <Org> <TAGS and Properties> <Change tag in region>~
10316 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10317 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-change-tag-in-region][Find modifications in git logs]]
10319 : Add or remove TAG for each entry in the region.
10320 : This works in the agenda, and also in an Org buffer.
10321 ** org-export-insert-default-template =(&optional backend subtreep)=
10322    :PROPERTIES:
10323    :CUSTOM_ID: org-export-insert-default-template
10324    :END:
10326 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
10327 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-insert-default-template][Find modifications in git logs]]
10329 : Insert all export keywords with default values at beginning of line.
10331 : BACKEND is a symbol referring to the name of a registered export
10332 : back-end, for which specific export options should be added to
10333 : the template, or â€˜default’ for default template.  When it is nil,
10334 : the user will be prompted for a category.
10336 : If SUBTREEP is non-nil, export configuration will be set up
10337 : locally for the subtree through node properties.
10338 ** org-delete-property =(property)=
10339    :PROPERTIES:
10340    :CUSTOM_ID: org-delete-property
10341    :END:
10343 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10344 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-property][Find modifications in git logs]]
10346 : In the current entry, delete PROPERTY.
10347 ** org-require-autoloaded-modules
10348    :PROPERTIES:
10349    :CUSTOM_ID: org-require-autoloaded-modules
10350    :END:
10352 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10353 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-require-autoloaded-modules][Find modifications in git logs]]
10356 ** org-table-fedit-toggle-ref-type
10357    :PROPERTIES:
10358    :CUSTOM_ID: org-table-fedit-toggle-ref-type
10359    :END:
10361 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10362 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-toggle-ref-type][Find modifications in git logs]]
10364 : Convert all references in the buffer from B3 to @3$2 and back.
10365 ** org-agenda-todo =(&optional arg)=
10366    :PROPERTIES:
10367    :CUSTOM_ID: org-agenda-todo
10368    :END:
10370 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10371 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo][Find modifications in git logs]]
10373 : Cycle TODO state of line at point, also in Org file.
10374 : This changes the line at point, all other lines in the agenda referring to
10375 : the same tree node, and the headline of the tree node in the Org file.
10376 ** org-table-hline-and-move =(&optional same-column)=
10377    :PROPERTIES:
10378    :CUSTOM_ID: org-table-hline-and-move
10379    :END:
10381 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10382 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-hline-and-move][Find modifications in git logs]]
10384 : Insert a hline and move to the row below that line.
10385 ** org-babel-switch-to-session-with-code =(&optional arg _info)=
10386    :PROPERTIES:
10387    :CUSTOM_ID: org-babel-switch-to-session-with-code
10388    :END:
10390 - *Access:* ~C-c C-v z~
10391 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
10392 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-switch-to-session-with-code][Find modifications in git logs]]
10394 : Switch to code buffer and display session.
10395 ** org-table-insert-column
10396    :PROPERTIES:
10397    :CUSTOM_ID: org-table-insert-column
10398    :END:
10400 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10401 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-insert-column][Find modifications in git logs]]
10403 : Insert a new column into the table.
10404 ** org-archive-subtree-default
10405    :PROPERTIES:
10406    :CUSTOM_ID: org-archive-subtree-default
10407    :END:
10409 - *Access:* ~C-c C-x C-a, <menu-bar> <Org> <Archive> <Archive (default method)>~
10410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
10411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-subtree-default][Find modifications in git logs]]
10413 : Archive the current subtree with the default command.
10414 : This command is set with the variable â€˜org-archive-default-command’.
10415 ** org-id-goto =(id)=
10416    :PROPERTIES:
10417    :CUSTOM_ID: org-id-goto
10418    :END:
10420 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
10421 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-goto][Find modifications in git logs]]
10423 : Switch to the buffer containing the entry with id ID.
10424 : Move the cursor to that entry in that buffer.
10425 ** org-capture-import-remember-templates
10426    :PROPERTIES:
10427    :CUSTOM_ID: org-capture-import-remember-templates
10428    :END:
10430 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
10431 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-import-remember-templates][Find modifications in git logs]]
10433 : Set â€˜org-capture-templates’ to be similar to â€˜org-remember-templates’.
10434 ** org-columns-new =(&optional spec &rest attributes)=
10435    :PROPERTIES:
10436    :CUSTOM_ID: org-columns-new
10437    :END:
10439 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
10440 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-new][Find modifications in git logs]]
10442 : Insert a new column, to the left of the current column.
10443 : Interactively fill attributes for new column.  When column format
10444 : specification SPEC is provided, edit it instead.
10446 : When optional argument attributes can be a list of columns
10447 : specifications attributes to create the new column
10448 : non-interactively.  See â€˜org-columns-compile-format’ for
10449 : details.
10450 ** org-edit-inline-src-code
10451    :PROPERTIES:
10452    :CUSTOM_ID: org-edit-inline-src-code
10453    :END:
10455 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
10456 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-inline-src-code][Find modifications in git logs]]
10458 : Edit inline source code at point.
10459 ** org-list-send-list =(&optional maybe)=
10460    :PROPERTIES:
10461    :CUSTOM_ID: org-list-send-list
10462    :END:
10464 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
10465 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-send-list][Find modifications in git logs]]
10467 : Send a transformed version of this list to the receiver position.
10468 : With argument MAYBE, fail quietly if no transformation is defined
10469 : for this list.
10470 ** org-insert-last-stored-link =(arg)=
10471    :PROPERTIES:
10472    :CUSTOM_ID: org-insert-last-stored-link
10473    :END:
10475 - *Access:* ~C-c M-l~
10476 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10477 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-last-stored-link][Find modifications in git logs]]
10479 : Insert the last link stored in â€˜org-stored-links’.
10480 ** org-babel-mark-block
10481    :PROPERTIES:
10482    :CUSTOM_ID: org-babel-mark-block
10483    :END:
10485 - *Access:* ~C-c C-v C-M-h~
10486 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
10487 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-mark-block][Find modifications in git logs]]
10489 : Mark current src block.
10490 ** org-babel-describe-bindings
10491    :PROPERTIES:
10492    :CUSTOM_ID: org-babel-describe-bindings
10493    :END:
10495 - *Access:* ~C-c C-v h~
10496 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-keys.el][ob-keys.el]]
10497 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-describe-bindings][Find modifications in git logs]]
10499 : Describe all keybindings behind â€˜org-babel-key-prefix’.
10500 ** org-forward-sentence =(&optional _arg)=
10501    :PROPERTIES:
10502    :CUSTOM_ID: org-forward-sentence
10503    :END:
10505 - *Access:* ~M-e~
10506 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10507 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-forward-sentence][Find modifications in git logs]]
10509 : Go to end of sentence, or end of table field.
10510 : This will call â€˜forward-sentence’ or â€˜org-table-end-of-field’,
10511 : depending on context.
10512 ** org-table-follow-field-mode =(&optional arg)=
10513    :PROPERTIES:
10514    :CUSTOM_ID: org-table-follow-field-mode
10515    :END:
10517 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10518 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-follow-field-mode][Find modifications in git logs]]
10520 : Minor mode to make the table field editor window follow the cursor.
10521 : When this mode is active, the field editor window will always show the
10522 : current field.  The mode exits automatically when the cursor leaves the
10523 : table (but see â€˜org-table-exit-follow-field-mode-when-leaving-table’).
10524 ** org-mark-ring-goto =(&optional n)=
10525    :PROPERTIES:
10526    :CUSTOM_ID: org-mark-ring-goto
10527    :END:
10529 - *Access:* ~C-c &~
10530 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10531 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mark-ring-goto][Find modifications in git logs]]
10533 : Jump to the previous position in the mark ring.
10534 : With prefix arg N, jump back that many stored positions.  When
10535 : called several times in succession, walk through the entire ring.
10536 : Org mode commands jumping to a different position in the current file,
10537 : or to another Org file, automatically push the old position onto the ring.
10538 ** org-table-iterate =(&optional arg)=
10539    :PROPERTIES:
10540    :CUSTOM_ID: org-table-iterate
10541    :END:
10543 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10544 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-iterate][Find modifications in git logs]]
10546 : Recalculate the table until it does not change anymore.
10547 : The maximum number of iterations is 10, but you can choose a different value
10548 : with the prefix ARG.
10549 ** org-agenda-week-view =(&optional iso-week)=
10550    :PROPERTIES:
10551    :CUSTOM_ID: org-agenda-week-view
10552    :END:
10554 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10555 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-week-view][Find modifications in git logs]]
10557 : Switch to weekly view for agenda.
10558 : With argument ISO-WEEK, switch to the corresponding ISO week.
10559 : If ISO-WEEK has more then 2 digits, only the last two encode
10560 : the week.  Any digits before this encode a year.  So 200712
10561 : means week 12 of year 2007.  Years ranging from 70 years ago
10562 : to 30 years in the future can also be written as 2-digit years.
10563 ** org-deadline =(arg &optional time)=
10564    :PROPERTIES:
10565    :CUSTOM_ID: org-deadline
10566    :END:
10568 - *Access:* ~C-c C-d, <menu-bar> <Org> <Dates and Scheduling> <Deadline>~
10569 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10570 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-deadline][Find modifications in git logs]]
10572 : Insert the "DEADLINE:" string with a timestamp to make a deadline.
10573 : With one universal prefix argument, remove any deadline from the item.
10574 : With two universal prefix arguments, prompt for a warning delay.
10575 : With argument TIME, set the deadline at the corresponding date.  TIME
10576 : can either be an Org date like "2011-07-24" or a delta like "+2d".
10577 ** org-priority =(&optional action _show)=
10578    :PROPERTIES:
10579    :CUSTOM_ID: org-priority
10580    :END:
10582 - *Access:* ~C-c ,, <menu-bar> <Org> <TODO Lists> <Set Priority>~
10583 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10584 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-priority][Find modifications in git logs]]
10586 : Change the priority of an item.
10587 : ACTION can be â€˜set’, â€˜up’, â€˜down’, or a character.
10588 ** org-agenda-file-to-front =(&optional to-end)=
10589    :PROPERTIES:
10590    :CUSTOM_ID: org-agenda-file-to-front
10591    :END:
10593 - *Access:* ~C-c [, <menu-bar> <Org> <File List for Agenda> <Add/Move Current File to Front of List>~
10594 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10595 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-file-to-front][Find modifications in git logs]]
10597 : Move/add the current file to the top of the agenda file list.
10598 : If the file is not present in the list, it is added to the front.  If it is
10599 : present, it is moved there.  With optional argument TO-END, add/move to the
10600 : end of the list.
10601 ** org-babel-expand-src-block-maybe
10602    :PROPERTIES:
10603    :CUSTOM_ID: org-babel-expand-src-block-maybe
10604    :END:
10606 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
10607 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-expand-src-block-maybe][Find modifications in git logs]]
10609 : Conditionally expand a source block.
10610 : Detect if this is context for a org-babel src-block and if so
10611 : then run â€˜org-babel-expand-src-block’.
10612 ** org-mouse-remove-match-and-spaces
10613    :PROPERTIES:
10614    :CUSTOM_ID: org-mouse-remove-match-and-spaces
10615    :END:
10617 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
10618 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-remove-match-and-spaces][Find modifications in git logs]]
10620 : Remove the match, make just one space around the point.
10621 ** org-comment-dwim =(_arg)=
10622    :PROPERTIES:
10623    :CUSTOM_ID: org-comment-dwim
10624    :END:
10626 - *Access:* ~M-;~
10627 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10628 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-comment-dwim][Find modifications in git logs]]
10630 : Call â€˜comment-dwim’ within a source edit buffer if needed.
10631 ** org-beamer-mode =(&optional arg)=
10632    :PROPERTIES:
10633    :CUSTOM_ID: org-beamer-mode
10634    :END:
10636 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
10637 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-mode][Find modifications in git logs]]
10639 : Support for editing Beamer oriented Org mode files.
10640 ** org-odt-export-as-odf-and-open
10641    :PROPERTIES:
10642    :CUSTOM_ID: org-odt-export-as-odf-and-open
10643    :END:
10645 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
10646 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-export-as-odf-and-open][Find modifications in git logs]]
10648 : Export LaTeX fragment as OpenDocument formula and immediately open it.
10649 : Use â€˜org-odt-export-as-odf’ to read LaTeX fragment and OpenDocument
10650 : formula file.
10651 ** org-archive-subtree =(&optional find-done)=
10652    :PROPERTIES:
10653    :CUSTOM_ID: org-archive-subtree
10654    :END:
10656 - *Access:* ~C-c $, C-c C-x C-s, <menu-bar> <Org> <Archive> <Move Subtree to Archive file>~
10657 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
10658 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-subtree][Find modifications in git logs]]
10660 : Move the current subtree to the archive.
10661 : The archive can be a certain top-level heading in the current
10662 : file, or in a different file.  The tree will be moved to that
10663 : location, the subtree heading be marked DONE, and the current
10664 : time will be added.
10666 : When called with a single prefix argument FIND-DONE, find whole
10667 : trees without any open TODO items and archive them (after getting
10668 : confirmation from the user).  When called with a double prefix
10669 : argument, find whole trees with timestamps before today and
10670 : archive them (after getting confirmation from the user).  If the
10671 : cursor is not at a headline when these commands are called, try
10672 : all level 1 trees.  If the cursor is on a headline, only try the
10673 : direct children of this heading.
10674 ** org-capture-mode =(&optional arg)=
10675    :PROPERTIES:
10676    :CUSTOM_ID: org-capture-mode
10677    :END:
10679 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
10680 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-mode][Find modifications in git logs]]
10682 : Minor mode for special key bindings in a capture buffer.
10684 : Turning on this mode runs the normal hook â€˜org-capture-mode-hook’.
10685 ** org-table-edit-field =(arg)=
10686    :PROPERTIES:
10687    :CUSTOM_ID: org-table-edit-field
10688    :END:
10690 - *Access:* ~C-c `, <menu-bar> <Tbl> <Edit Field>~
10691 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10692 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-edit-field][Find modifications in git logs]]
10694 : Edit table field in a different window.
10695 : This is mainly useful for fields that contain hidden parts.
10697 : When called with a â€˜C-u’ prefix, just make the full field
10698 : visible so that it can be edited in place.
10700 : When called with a â€˜C-u C-u’ prefix, toggle â€˜org-table-follow-field-mode’.
10701 ** org-mouse-end-headline
10702    :PROPERTIES:
10703    :CUSTOM_ID: org-mouse-end-headline
10704    :END:
10706 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
10707 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-end-headline][Find modifications in git logs]]
10709 : Go to the end of current headline (ignoring tags).
10710 ** org-babel-exp-process-buffer
10711    :PROPERTIES:
10712    :CUSTOM_ID: org-babel-exp-process-buffer
10713    :END:
10715 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
10716 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-exp-process-buffer][Find modifications in git logs]]
10718 : Execute all Babel blocks in current buffer.
10719 ** org-entities-help
10720    :PROPERTIES:
10721    :CUSTOM_ID: org-entities-help
10722    :END:
10724 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-entities.el][org-entities.el]]
10725 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-entities-help][Find modifications in git logs]]
10727 : Create a Help buffer with all available entities.
10728 ** org-first-sibling-p
10729    :PROPERTIES:
10730    :CUSTOM_ID: org-first-sibling-p
10731    :END:
10733 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10734 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-first-sibling-p][Find modifications in git logs]]
10736 : Is this heading the first child of its parents?
10737 ** org-activate-angle-links =(&rest ignore)=
10738    :PROPERTIES:
10739    :CUSTOM_ID: org-activate-angle-links
10740    :END:
10742 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
10743 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-activate-angle-links][Find modifications in git logs]]
10745 : Do nothing and return nil.
10746 : This function accepts any number of arguments, but ignores them.
10748 : (fn &rest IGNORE)
10749 ** org-open-at-mouse =(ev)=
10750    :PROPERTIES:
10751    :CUSTOM_ID: org-open-at-mouse
10752    :END:
10754 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10755 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-at-mouse][Find modifications in git logs]]
10757 : Open file link or URL at mouse.
10758 : See the docstring of â€˜org-open-file’ for details.
10759 ** org-check-dates-range =(start-date end-date)=
10760    :PROPERTIES:
10761    :CUSTOM_ID: org-check-dates-range
10762    :END:
10764 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10765 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-check-dates-range][Find modifications in git logs]]
10767 : Check for deadlines/scheduled entries between START-DATE and END-DATE.
10768 ** org-list-insert-radio-list
10769    :PROPERTIES:
10770    :CUSTOM_ID: org-list-insert-radio-list
10771    :END:
10773 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
10774 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-insert-radio-list][Find modifications in git logs]]
10776 : Insert a radio list template appropriate for this major mode.
10777 ** org-kill-note-or-show-branches
10778    :PROPERTIES:
10779    :CUSTOM_ID: org-kill-note-or-show-branches
10780    :END:
10782 - *Access:* ~C-c C-k~
10783 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10784 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-kill-note-or-show-branches][Find modifications in git logs]]
10786 : Abort storing current note, or call â€˜outline-show-branches’.
10787 ** org-outdent-item-tree
10788    :PROPERTIES:
10789    :CUSTOM_ID: org-outdent-item-tree
10790    :END:
10792 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
10793 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-outdent-item-tree][Find modifications in git logs]]
10795 : Outdent a local list item including its children.
10796 : If a region is active, all items inside will be moved.
10797 ** org-agenda-set-restriction-lock-from-agenda =(arg)=
10798    :PROPERTIES:
10799    :CUSTOM_ID: org-agenda-set-restriction-lock-from-agenda
10800    :END:
10802 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10803 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-set-restriction-lock-from-agenda][Find modifications in git logs]]
10805 : Set the restriction lock to the agenda item at point from within the agenda.
10806 : When called with a â€˜C-u’ prefix, restrict to
10807 : the file which contains the item.
10808 : Argument ARG is the prefix argument.
10809 ** org-attach-open =(&optional in-emacs)=
10810    :PROPERTIES:
10811    :CUSTOM_ID: org-attach-open
10812    :END:
10814 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
10815 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-open][Find modifications in git logs]]
10817 : Open an attachment of the current task.
10818 : If there are more than one attachment, you will be prompted for the file name.
10819 : This command will open the file using the settings in â€˜org-file-apps’
10820 : and in the system-specific variants of this variable.
10821 : If IN-EMACS is non-nil, force opening in Emacs.
10822 ** org-agenda-append-agenda
10823    :PROPERTIES:
10824    :CUSTOM_ID: org-agenda-append-agenda
10825    :END:
10827 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10828 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-append-agenda][Find modifications in git logs]]
10830 : Append another agenda view to the current one.
10831 : This function allows interactive building of block agendas.
10832 : Agenda views are separated by â€˜org-agenda-block-separator’.
10833 ** org-table-beginning-of-field =(&optional n)=
10834    :PROPERTIES:
10835    :CUSTOM_ID: org-table-beginning-of-field
10836    :END:
10838 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10839 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-beginning-of-field][Find modifications in git logs]]
10841 : Move to the beginning of the current table field.
10842 : If already at or before the beginning, move to the beginning of the
10843 : previous field.
10844 : With numeric argument N, move N-1 fields backward first.
10845 ** org-mobile-move-capture
10846    :PROPERTIES:
10847    :CUSTOM_ID: org-mobile-move-capture
10848    :END:
10850 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
10851 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-move-capture][Find modifications in git logs]]
10853 : Move the contents of the capture file to the inbox file.
10854 : Return a marker to the location where the new content has been added.
10855 : If nothing new has been added, return nil.
10856 ** org-lint =(&optional arg)=
10857    :PROPERTIES:
10858    :CUSTOM_ID: org-lint
10859    :END:
10861 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
10862 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint][Find modifications in git logs]]
10864 : Check current Org buffer for syntax mistakes.
10866 : By default, run all checkers.  With a â€˜C-u’ prefix ARG, select one
10867 : category of checkers only.  With a â€˜C-u C-u’ prefix, run one precise
10868 : checker by its name.
10870 : ARG can also be a list of checker names, as symbols, to run.
10871 ** org-latex-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
10872    :PROPERTIES:
10873    :CUSTOM_ID: org-latex-export-to-latex
10874    :END:
10876 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
10877 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-export-to-latex][Find modifications in git logs]]
10879 : Export current buffer to a LaTeX file.
10881 : If narrowing is active in the current buffer, only export its
10882 : narrowed part.
10884 : If a region is active, export that region.
10886 : A non-nil optional argument ASYNC means the process should happen
10887 : asynchronously.  The resulting file should be accessible through
10888 : the â€˜org-export-stack’ interface.
10890 : When optional argument SUBTREEP is non-nil, export the sub-tree
10891 : at point, extracting information from the headline properties
10892 : first.
10894 : When optional argument VISIBLE-ONLY is non-nil, don’t export
10895 : contents of hidden elements.
10897 : When optional argument BODY-ONLY is non-nil, only write code
10898 : between "\begin{document}" and "\end{document}".
10900 : EXT-PLIST, when provided, is a property list with external
10901 : parameters overriding Org default settings, but still inferior to
10902 : file-local settings.
10903 ** org-agenda-fortnight-view =(&optional iso-week)=
10904    :PROPERTIES:
10905    :CUSTOM_ID: org-agenda-fortnight-view
10906    :END:
10908 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10909 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-fortnight-view][Find modifications in git logs]]
10911 : Switch to fortnightly view for agenda.
10912 : With argument ISO-WEEK, switch to the corresponding ISO week.
10913 : If ISO-WEEK has more then 2 digits, only the last two encode
10914 : the week.  Any digits before this encode a year.  So 200712
10915 : means week 12 of year 2007.  Years ranging from 70 years ago
10916 : to 30 years in the future can also be written as 2-digit years.
10917 ** org-todo-yesterday =(&optional arg)=
10918    :PROPERTIES:
10919    :CUSTOM_ID: org-todo-yesterday
10920    :END:
10922 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10923 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-yesterday][Find modifications in git logs]]
10925 : Like â€˜org-todo’ but the time of change will be 23:59 of yesterday.
10926 ** org-sort =(&optional with-case)=
10927    :PROPERTIES:
10928    :CUSTOM_ID: org-sort
10929    :END:
10931 - *Access:* ~C-c ^, <menu-bar> <Org> <Edit Structure> <Sort Region/Children>~
10932 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10933 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sort][Find modifications in git logs]]
10935 : Call â€˜org-sort-entries’, â€˜org-table-sort-lines’ or â€˜org-sort-list’.
10936 : Optional argument WITH-CASE means sort case-sensitively.
10937 ** orgtbl-create-or-convert-from-region =(_arg)=
10938    :PROPERTIES:
10939    :CUSTOM_ID: orgtbl-create-or-convert-from-region
10940    :END:
10942 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
10943 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-create-or-convert-from-region][Find modifications in git logs]]
10945 : Create table or convert region to table, if no conflicting binding.
10946 : This installs the table binding â€˜C-c |’, but only if there is no
10947 : conflicting binding to this key outside orgtbl-mode.
10948 ** org-up-element
10949    :PROPERTIES:
10950    :CUSTOM_ID: org-up-element
10951    :END:
10953 - *Access:* ~C-c C-^~
10954 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
10955 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-up-element][Find modifications in git logs]]
10957 : Move to upper element.
10958 ** org-footnote-action =(&optional special)=
10959    :PROPERTIES:
10960    :CUSTOM_ID: org-footnote-action
10961    :END:
10963 - *Access:* ~C-c C-x f, <menu-bar> <Org> <Editing> <Footnote new/jump>~
10964 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
10965 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-action][Find modifications in git logs]]
10967 : Do the right thing for footnotes.
10969 : When at a footnote reference, jump to the definition.
10971 : When at a definition, jump to the references if they exist, offer
10972 : to create them otherwise.
10974 : When neither at definition or reference, create a new footnote,
10975 : interactively if possible.
10977 : With prefix arg SPECIAL, or when no footnote can be created,
10978 : offer additional commands in a menu.
10979 ** org-texinfo-convert-region-to-texinfo
10980    :PROPERTIES:
10981    :CUSTOM_ID: org-texinfo-convert-region-to-texinfo
10982    :END:
10984 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
10985 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-convert-region-to-texinfo][Find modifications in git logs]]
10987 : Assume the current region has Org syntax, and convert it to Texinfo.
10988 : This can be used in any buffer.  For example, you can write an
10989 : itemized list in Org syntax in an Texinfo buffer and use this
10990 : command to convert it.
10991 ** org-agenda-tree-to-indirect-buffer =(arg)=
10992    :PROPERTIES:
10993    :CUSTOM_ID: org-agenda-tree-to-indirect-buffer
10994    :END:
10996 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
10997 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-tree-to-indirect-buffer][Find modifications in git logs]]
10999 : Show the subtree corresponding to the current entry in an indirect buffer.
11000 : This calls the command â€˜org-tree-to-indirect-buffer’ from the original buffer.
11002 : With a numerical prefix ARG, go up to this level and then take that tree.
11003 : With a negative numeric ARG, go up by this number of levels.
11005 : With a â€˜C-u’ prefix, make a separate frame for this tree, i.e. don’t use
11006 : the dedicated frame.
11007 ** org-edit-src-exit
11008    :PROPERTIES:
11009    :CUSTOM_ID: org-edit-src-exit
11010    :END:
11012 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
11013 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-exit][Find modifications in git logs]]
11015 : Kill current sub-editing buffer and return to source buffer.
11016 ** org-bibtex-create-in-current-entry =(&optional arg)=
11017    :PROPERTIES:
11018    :CUSTOM_ID: org-bibtex-create-in-current-entry
11019    :END:
11021 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
11022 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-create-in-current-entry][Find modifications in git logs]]
11024 : Add bibliographical data to the current entry.
11025 : With a prefix arg, query for optional fields.
11026 ** org-agenda-bulk-remove-overlays =(&optional beg end)=
11027    :PROPERTIES:
11028    :CUSTOM_ID: org-agenda-bulk-remove-overlays
11029    :END:
11031 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11032 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-remove-overlays][Find modifications in git logs]]
11034 : Remove the mark overlays between BEG and END in the agenda buffer.
11035 : BEG and END default to the buffer limits.
11037 : This only removes the overlays, it does not remove the markers
11038 : from the list in â€˜org-agenda-bulk-marked-entries’.
11039 ** org-mouse-yank-link =(click)=
11040    :PROPERTIES:
11041    :CUSTOM_ID: org-mouse-yank-link
11042    :END:
11044 - *Access:* ~<drag-mouse-3>, <S-mouse-2>~
11045 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
11046 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-yank-link][Find modifications in git logs]]
11049 ** org-metaleft =(&optional _arg)=
11050    :PROPERTIES:
11051    :CUSTOM_ID: org-metaleft
11052    :END:
11054 - *Access:* ~<M-left>, <menu-bar> <Org> <Edit Structure> <Promote Heading>, <menu-bar> <Tbl> <Column> <Move Column Left>~
11055 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11056 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metaleft][Find modifications in git logs]]
11058 : Promote heading, list item at point or move table column left.
11060 : Calls â€˜org-do-promote’, â€˜org-outdent-item’ or â€˜org-table-move-column’,
11061 : depending on context.  With no specific context, calls the Emacs
11062 : default â€˜backward-word’.  See the individual commands for more
11063 : information.
11065 : This function runs the hook â€˜org-metaleft-hook’ as a first step,
11066 : and returns at first non-nil value.
11067 ** org-attach-new =(file)=
11068    :PROPERTIES:
11069    :CUSTOM_ID: org-attach-new
11070    :END:
11072 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
11073 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-new][Find modifications in git logs]]
11075 : Create a new attachment FILE for the current task.
11076 : The attachment is created as an Emacs buffer.
11077 ** org-tbl-menu =(event)=
11078    :PROPERTIES:
11079    :CUSTOM_ID: org-tbl-menu
11080    :END:
11082 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11083 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tbl-menu][Find modifications in git logs]]
11085 : Tbl menu
11086 ** org-agenda-filter-by-category =(strip)=
11087    :PROPERTIES:
11088    :CUSTOM_ID: org-agenda-filter-by-category
11089    :END:
11091 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11092 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-by-category][Find modifications in git logs]]
11094 : Filter lines in the agenda buffer that have a specific category.
11095 : The category is that of the current line.
11096 : Without prefix argument, keep only the lines of that category.
11097 : With a prefix argument, exclude the lines of that category.
11099 ** org-indent-drawer
11100    :PROPERTIES:
11101    :CUSTOM_ID: org-indent-drawer
11102    :END:
11104 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11105 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-drawer][Find modifications in git logs]]
11107 : Indent the drawer at point.
11108 ** org-agenda-filter-by-tag =(arg &optional char exclude)=
11109    :PROPERTIES:
11110    :CUSTOM_ID: org-agenda-filter-by-tag
11111    :END:
11113 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11114 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-filter-by-tag][Find modifications in git logs]]
11116 : Keep only those lines in the agenda buffer that have a specific tag.
11118 : The tag is selected with its fast selection letter, as configured.
11120 : With a â€˜C-u’ prefix, exclude the agenda search.
11122 : With a â€˜C-u C-u’ prefix, filter the literal tag, i.e. don’t
11123 : filter on all its group members.
11125 : A lisp caller can specify CHAR.  EXCLUDE means that the new tag
11126 : should be used to exclude the search - the interactive user can
11127 : also press â€˜-’ or â€˜+’ to switch between filtering and excluding.
11128 ** org-babel-execute-buffer =(&optional arg)=
11129    :PROPERTIES:
11130    :CUSTOM_ID: org-babel-execute-buffer
11131    :END:
11133 - *Access:* ~C-c C-v b, C-c C-v C-b~
11134 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
11135 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-execute-buffer][Find modifications in git logs]]
11137 : Execute source code blocks in a buffer.
11138 : Call â€˜org-babel-execute-src-block’ on every source block in
11139 : the current buffer.
11140 ** org-table-toggle-coordinate-overlays
11141    :PROPERTIES:
11142    :CUSTOM_ID: org-table-toggle-coordinate-overlays
11143    :END:
11145 - *Access:* ~C-c }, <menu-bar> <Tbl> <Show Col/Row Numbers>~
11146 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
11147 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-toggle-coordinate-overlays][Find modifications in git logs]]
11149 : Toggle the display of Row/Column numbers in tables.
11150 ** org-agenda-follow-mode
11151    :PROPERTIES:
11152    :CUSTOM_ID: org-agenda-follow-mode
11153    :END:
11155 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11156 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-follow-mode][Find modifications in git logs]]
11158 : Toggle follow mode in an agenda buffer.
11159 ** org-html-export-to-html =(&optional async subtreep visible-only body-only ext-plist)=
11160    :PROPERTIES:
11161    :CUSTOM_ID: org-html-export-to-html
11162    :END:
11164 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
11165 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-export-to-html][Find modifications in git logs]]
11167 : Export current buffer to a HTML file.
11169 : If narrowing is active in the current buffer, only export its
11170 : narrowed part.
11172 : If a region is active, export that region.
11174 : A non-nil optional argument ASYNC means the process should happen
11175 : asynchronously.  The resulting file should be accessible through
11176 : the â€˜org-export-stack’ interface.
11178 : When optional argument SUBTREEP is non-nil, export the sub-tree
11179 : at point, extracting information from the headline properties
11180 : first.
11182 : When optional argument VISIBLE-ONLY is non-nil, don’t export
11183 : contents of hidden elements.
11185 : When optional argument BODY-ONLY is non-nil, only write code
11186 : between "<body>" and "</body>" tags.
11188 : EXT-PLIST, when provided, is a property list with external
11189 : parameters overriding Org default settings, but still inferior to
11190 : file-local settings.
11192 : Return output file’s name.
11193 ** org-metadown =(&optional _arg)=
11194    :PROPERTIES:
11195    :CUSTOM_ID: org-metadown
11196    :END:
11198 - *Access:* ~<M-down>, <menu-bar> <Org> <Edit Structure> <Move Subtree Down>, <menu-bar> <Tbl> <Row> <Move Row Down>~
11199 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11200 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-metadown][Find modifications in git logs]]
11202 : Move subtree down or move table row down.
11203 : Calls â€˜org-move-subtree-down’ or â€˜org-table-move-row’ or
11204 : â€˜org-move-item-down’, depending on context.  See the individual
11205 : commands for more information.
11206 ** org-agenda-clock-out
11207    :PROPERTIES:
11208    :CUSTOM_ID: org-agenda-clock-out
11209    :END:
11211 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11212 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clock-out][Find modifications in git logs]]
11214 : Stop the currently running clock.
11215 ** org-get-tags-at =(&optional pos local)=
11216    :PROPERTIES:
11217    :CUSTOM_ID: org-get-tags-at
11218    :END:
11220 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11221 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-get-tags-at][Find modifications in git logs]]
11223 : Get a list of all headline tags applicable at POS.
11224 : POS defaults to point.  If tags are inherited, the list contains
11225 : the targets in the same sequence as the headlines appear, i.e.
11226 : the tags of the current headline come last.
11227 : When LOCAL is non-nil, only return tags from the current headline,
11228 : ignore inherited ones.
11229 ** org-agenda-do-date-later =(arg)=
11230    :PROPERTIES:
11231    :CUSTOM_ID: org-agenda-do-date-later
11232    :END:
11234 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11235 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-do-date-later][Find modifications in git logs]]
11238 ** org-inlinetask-demote
11239    :PROPERTIES:
11240    :CUSTOM_ID: org-inlinetask-demote
11241    :END:
11243 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
11244 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-demote][Find modifications in git logs]]
11246 : Demote the inline task at point.
11247 : If the task has an end part, also demote it.
11248 ** org-cdlatex-environment-indent =(&optional environment item)=
11249    :PROPERTIES:
11250    :CUSTOM_ID: org-cdlatex-environment-indent
11251    :END:
11253 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11254 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cdlatex-environment-indent][Find modifications in git logs]]
11256 : Execute â€˜cdlatex-environment’ and indent the inserted environment.
11258 : ENVIRONMENT and ITEM are passed to â€˜cdlatex-environment’.
11260 : The inserted environment is indented to current indentation
11261 : unless point is at the beginning of the line, in which the
11262 : environment remains unintended.
11263 ** org-reload =(&optional uncompiled)=
11264    :PROPERTIES:
11265    :CUSTOM_ID: org-reload
11266    :END:
11268 - *Access:* ~C-c C-x !, <menu-bar> <Org> <Refresh/Reload> <Reload Org (after update)>~
11269 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11270 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reload][Find modifications in git logs]]
11272 : Reload all org lisp files.
11273 : With prefix arg UNCOMPILED, load the uncompiled versions.
11274 ** org-insert-heading-after-current
11275    :PROPERTIES:
11276    :CUSTOM_ID: org-insert-heading-after-current
11277    :END:
11279 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11280 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-heading-after-current][Find modifications in git logs]]
11282 : Insert a new heading with same level as current, after current subtree.
11283 ** org-agenda-exit
11284    :PROPERTIES:
11285    :CUSTOM_ID: org-agenda-exit
11286    :END:
11288 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11289 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-exit][Find modifications in git logs]]
11291 : Exit the agenda, killing Org buffers loaded by the agenda.
11292 : Like â€˜org-agenda-Quit’, but kill any buffers that were created by
11293 : the agenda.  Org buffers visited directly by the user will not be
11294 : touched.  Also, exit the agenda even if it is in column view.
11295 ** org-babel-pop-to-session =(&optional arg info)=
11296    :PROPERTIES:
11297    :CUSTOM_ID: org-babel-pop-to-session
11298    :END:
11300 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
11301 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-pop-to-session][Find modifications in git logs]]
11303 : Switch to the session of the current code block.
11304 : Uses â€˜org-babel-initiate-session’ to start the session.  If called
11305 : with a prefix argument then this is passed on to
11306 : â€˜org-babel-initiate-session’.
11307 ** org-align-all-tags
11308    :PROPERTIES:
11309    :CUSTOM_ID: org-align-all-tags
11310    :END:
11312 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11313 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-align-all-tags][Find modifications in git logs]]
11315 : Align the tags in all headings.
11316 ** org-insert-all-links =(arg &optional pre post)=
11317    :PROPERTIES:
11318    :CUSTOM_ID: org-insert-all-links
11319    :END:
11321 - *Access:* ~C-c C-M-l~
11322 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11323 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-all-links][Find modifications in git logs]]
11325 : Insert all links in â€˜org-stored-links’.
11326 : When a universal prefix, do not delete the links from â€˜org-stored-links’.
11327 : When â€˜ARG’ is a number, insert the last N link(s).
11328 : â€˜PRE’ and â€˜POST’ are optional arguments to define a string to
11329 : prepend or to append.
11330 ** org-clone-subtree-with-time-shift =(n &optional shift)=
11331    :PROPERTIES:
11332    :CUSTOM_ID: org-clone-subtree-with-time-shift
11333    :END:
11335 - *Access:* ~C-c C-x c, <menu-bar> <Org> <Edit Structure> <Clone subtree, shift time>~
11336 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11337 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clone-subtree-with-time-shift][Find modifications in git logs]]
11339 : Clone the task (subtree) at point N times.
11340 : The clones will be inserted as siblings.
11342 : In interactive use, the user will be prompted for the number of
11343 : clones to be produced.  If the entry has a timestamp, the user
11344 : will also be prompted for a time shift, which may be a repeater
11345 : as used in time stamps, for example â€˜+3d’.  To disable this,
11346 : you can call the function with a universal prefix argument.
11348 : When a valid repeater is given and the entry contains any time
11349 : stamps, the clones will become a sequence in time, with time
11350 : stamps in the subtree shifted for each clone produced.  If SHIFT
11351 : is nil or the empty string, time stamps will be left alone.  The
11352 : ID property of the original subtree is removed.
11354 : In each clone, all the CLOCK entries will be removed.  This
11355 : prevents Org from considering that the clocked times overlap.
11357 : If the original subtree did contain time stamps with a repeater,
11358 : the following will happen:
11359 : - the repeater will be removed in each clone
11360 : - an additional clone will be produced, with the current, unshifted
11361 :   date(s) in the entry.
11362 : - the original entry will be placed *after* all the clones, with
11363 :   repeater intact.
11364 : - the start days in the repeater in the original entry will be shifted
11365 :   to past the last clone.
11366 : In this way you can spell out a number of instances of a repeating task,
11367 : and still retain the repeater to cover future instances of the task.
11369 : As described above, N+1 clones are produced when the original
11370 : subtree has a repeater.  Setting N to 0, then, can be used to
11371 : remove the repeater from a subtree and create a shifted clone
11372 : with the original repeater.
11373 ** org-narrow-to-block
11374    :PROPERTIES:
11375    :CUSTOM_ID: org-narrow-to-block
11376    :END:
11378 - *Access:* ~C-x n b~
11379 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11380 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-narrow-to-block][Find modifications in git logs]]
11382 : Narrow buffer to the current block.
11383 ** org-columns-get-format =(&optional fmt-string)=
11384    :PROPERTIES:
11385    :CUSTOM_ID: org-columns-get-format
11386    :END:
11388 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
11389 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-get-format][Find modifications in git logs]]
11391 : Return columns format specifications.
11392 : When optional argument FMT-STRING is non-nil, use it as the
11393 : current specifications.  This function also sets
11394 : â€˜org-columns-current-fmt-compiled’ and
11395 : â€˜org-columns-current-fmt’.
11396 ** org-agenda-mode
11397    :PROPERTIES:
11398    :CUSTOM_ID: org-agenda-mode
11399    :END:
11401 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11402 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-mode][Find modifications in git logs]]
11404 : Mode for time-sorted view on action items in Org files.
11406 : The following commands are available:
11408 : key             binding
11409 : ---             -------
11411 : C-c           Prefix Command
11412 : TAB           org-agenda-goto
11413 : C-k           org-agenda-kill
11414 : RET           org-agenda-switch-to
11415 : C-n           org-agenda-next-line
11416 : C-p           org-agenda-previous-line
11417 : C-x           Prefix Command
11418 : ESC           Prefix Command
11419 : C-_           org-agenda-undo
11420 : SPC           org-agenda-show-and-scroll-up
11421 : !             org-agenda-toggle-deadlines
11422 : #             org-agenda-dim-blocked-tasks
11423 : $             org-agenda-archive
11424 : %             org-agenda-bulk-mark-regexp
11425 : *             org-agenda-bulk-mark-all
11426 : +             org-agenda-priority-up
11427 : ,             org-agenda-priority
11428 : -             org-agenda-priority-down
11429 : .             org-agenda-goto-today
11430 : /             org-agenda-filter-by-tag
11431 : 0 .. 9                digit-argument
11432 : :             org-agenda-set-tags
11433 : ;             org-timer-set-timer
11434 : <             org-agenda-filter-by-category
11435 : =             org-agenda-filter-by-regexp
11436 : >             org-agenda-date-prompt
11437 : ?             org-agenda-show-the-flagging-note
11438 : A             org-agenda-append-agenda
11439 : B             org-agenda-bulk-action
11440 : C             org-agenda-convert-date
11441 : D             org-agenda-toggle-diary
11442 : E             org-agenda-entry-text-mode
11443 : F             org-agenda-follow-mode
11444 : G             org-agenda-toggle-time-grid
11445 : H             org-agenda-holidays
11446 : I             org-agenda-clock-in
11447 : J             org-agenda-clock-goto
11448 : K             org-habit-toggle-habits
11449 : L             org-agenda-recenter
11450 : M             org-agenda-phases-of-moon
11451 : N             org-agenda-next-item
11452 : O             org-agenda-clock-out
11453 : P             org-agenda-previous-item
11454 : Q             org-agenda-Quit
11455 : R             org-agenda-clockreport-mode
11456 : S             org-agenda-sunrise-sunset
11457 : T             org-agenda-show-tags
11458 : U             org-agenda-bulk-unmark-all
11459 : X             org-agenda-clock-cancel
11460 : [             org-agenda-manipulate-query-add
11461 : ]             org-agenda-manipulate-query-subtract
11462 : ^             org-agenda-filter-by-top-headline
11463 : _             org-agenda-filter-by-effort
11464 : a             org-agenda-archive-default-with-confirmation
11465 : b             org-agenda-earlier
11466 : c             org-agenda-goto-calendar
11467 : d             org-agenda-day-view
11468 : e             org-agenda-set-effort
11469 : f             org-agenda-later
11470 : g             org-agenda-redo-all
11471 : h             org-agenda-holidays
11472 : i             org-agenda-diary-entry
11473 : j             org-agenda-goto-date
11474 : k             org-agenda-capture
11475 : l             org-agenda-log-mode
11476 : m             org-agenda-bulk-mark
11477 : n             org-agenda-next-line
11478 : o             delete-other-windows
11479 : p             org-agenda-previous-line
11480 : q             org-agenda-quit
11481 : r             org-agenda-redo
11482 : s             org-save-all-org-buffers
11483 : t             org-agenda-todo
11484 : u             org-agenda-bulk-unmark
11485 : v             org-agenda-view-mode-dispatch
11486 : w             org-agenda-week-view
11487 : x             org-agenda-exit
11488 : y             org-agenda-year-view
11489 : z             org-agenda-add-note
11490 : {             org-agenda-manipulate-query-add-re
11491 : |             org-agenda-filter-remove-all
11492 : }             org-agenda-manipulate-query-subtract-re
11493 : ~             org-agenda-limit-interactively
11494 : DEL           org-agenda-show-scroll-down
11495 : C-/           org-agenda-undo
11496 : <C-S-left>    org-agenda-todo-previousset
11497 : <C-S-right>   org-agenda-todo-nextset
11498 : <M-down>      org-agenda-drag-line-forward
11499 : <M-up>                org-agenda-drag-line-backward
11500 : <S-down>      org-agenda-priority-down
11501 : <S-left>      org-agenda-do-date-earlier
11502 : <S-right>     org-agenda-do-date-later
11503 : <S-up>                org-agenda-priority-up
11504 : <backspace>   org-agenda-show-scroll-down
11505 : <down>                org-agenda-next-line
11506 : <mouse-2>     org-agenda-goto-mouse
11507 : <mouse-3>     org-agenda-show-mouse
11508 : <remap>               Prefix Command
11509 : <tab>         org-agenda-goto
11510 : <undo>                org-agenda-undo
11511 : <up>          org-agenda-previous-line
11513 : <remap> <backward-paragraph>  org-agenda-backward-block
11514 : <remap> <forward-paragraph>   org-agenda-forward-block
11516 : M-*           org-agenda-bulk-toggle-all
11517 : M-m           org-agenda-bulk-toggle
11519 : C-c C-a               org-attach
11520 : C-c C-d               org-agenda-deadline
11521 : C-c C-n               org-agenda-next-date-line
11522 : C-c C-o               org-agenda-open-link
11523 : C-c C-p               org-agenda-previous-date-line
11524 : C-c C-q               org-agenda-set-tags
11525 : C-c C-s               org-agenda-schedule
11526 : C-c C-t               org-agenda-todo
11527 : C-c C-w               org-agenda-refile
11528 : C-c C-x               Prefix Command
11529 : C-c C-z               org-agenda-add-note
11530 : C-c $         org-agenda-archive
11531 : C-c ,         org-agenda-priority
11533 : C-x C-s               org-save-all-org-buffers
11534 : C-x C-w               org-agenda-write
11535 : C-x u         org-agenda-undo
11537 : C-c C-x C-a   org-agenda-archive-default
11538 : C-c C-x C-c   org-agenda-columns
11539 : C-c C-x C-e   org-clock-modify-effort-estimate
11540 : C-c C-x TAB   org-agenda-clock-in
11541 : C-c C-x C-j   org-clock-goto
11542 : C-c C-x RET   Prefix Command
11543 : C-c C-x C-o   org-agenda-clock-out
11544 : C-c C-x C-s   org-agenda-archive
11545 : C-c C-x C-x   org-agenda-clock-cancel
11546 : C-c C-x !     org-reload
11547 : C-c C-x <     org-agenda-set-restriction-lock-from-agenda
11548 : C-c C-x >     org-agenda-remove-restriction-lock
11549 : C-c C-x A     org-agenda-archive-to-archive-sibling
11550 : C-c C-x a     org-agenda-toggle-archive-tag
11551 : C-c C-x b     org-agenda-tree-to-indirect-buffer
11552 : C-c C-x e     org-agenda-set-effort
11553 : C-c C-x p     org-agenda-set-property
11554 : C-c C-x <down>        org-agenda-priority-down
11555 : C-c C-x <left>        org-agenda-do-date-earlier
11556 : C-c C-x <right>                       org-agenda-do-date-later
11557 : C-c C-x <up>                  org-agenda-priority-up
11559 : C-c C-x RET g org-mobile-pull
11560 : C-c C-x RET p org-mobile-push
11563 ** org-cycle =(&optional arg)=
11564    :PROPERTIES:
11565    :CUSTOM_ID: org-cycle
11566    :END:
11568 - *Access:* ~<tab>, TAB, <menu-bar> <Tbl> <Next Field>, <menu-bar> <Org> <Show/Hide> <Cycle Visibility>~
11569 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11570 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle][Find modifications in git logs]]
11572 : TAB-action and visibility cycling for Org mode.
11574 : This is the command invoked in Org mode by the â€˜TAB’ key.  Its main
11575 : purpose is outline visibility cycling, but it also invokes other actions
11576 : in special contexts.
11578 : When this function is called with a â€˜C-u’ prefix, rotate the entire
11579 : buffer through 3 states (global cycling)
11580 :   1. OVERVIEW: Show only top-level headlines.
11581 :   2. CONTENTS: Show all headlines of all levels, but no body text.
11582 :   3. SHOW ALL: Show everything.
11584 : With a â€˜C-u C-u’ prefix argument, switch to the startup visibility,
11585 : determined by the variable â€˜org-startup-folded’, and by any VISIBILITY
11586 : properties in the buffer.
11588 : With a â€˜C-u C-u C-u’ prefix argument, show the entire buffer, including
11589 : any drawers.
11591 : When inside a table, re-align the table and move to the next field.
11593 : When point is at the beginning of a headline, rotate the subtree started
11594 : by this line through 3 different states (local cycling)
11595 :   1. FOLDED:   Only the main headline is shown.
11596 :   2. CHILDREN: The main headline and the direct children are shown.
11597 :                From this state, you can move to one of the children
11598 :                and zoom in further.
11599 :   3. SUBTREE:  Show the entire subtree, including body text.
11600 : If there is no subtree, switch directly from CHILDREN to FOLDED.
11602 : When point is at the beginning of an empty headline and the variable
11603 : â€˜org-cycle-level-after-item/entry-creation’ is set, cycle the level
11604 : of the headline by demoting and promoting it to likely levels.  This
11605 : speeds up creation document structure by pressing â€˜TAB’ once or several
11606 : times right after creating a new headline.
11608 : When there is a numeric prefix, go up to a heading with level ARG, do
11609 : a â€˜show-subtree’ and return to the previous cursor position.  If ARG
11610 : is negative, go up that many levels.
11612 : When point is not at the beginning of a headline, execute the global
11613 : binding for â€˜TAB’, which is re-indenting the line.  See the option
11614 : â€˜org-cycle-emulate-tab’ for details.
11616 : As a special case, if point is at the beginning of the buffer and there is
11617 : no headline in line 1, this function will act as if called with prefix arg
11618 : (‘C-u TAB’, same as â€˜S-TAB’) also when called without prefix arg, but only
11619 : if the variable â€˜org-cycle-global-at-bob’ is t.
11620 ** org-dblock-write:amazon =(params)=
11621    :PROPERTIES:
11622    :CUSTOM_ID: org-dblock-write:amazon
11623    :END:
11625 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/emacs.el][emacs.el]]
11626 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-dblock-write:amazon][Find modifications in git logs]]
11628 : Dynamic block for inserting the cover of a book.
11629 ** org-set-visibility-according-to-property =(&optional no-cleanup)=
11630    :PROPERTIES:
11631    :CUSTOM_ID: org-set-visibility-according-to-property
11632    :END:
11634 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11635 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-set-visibility-according-to-property][Find modifications in git logs]]
11637 : Switch subtree visibilities according to :VISIBILITY: property.
11638 ** org-ctags-visit-buffer-or-file =(name &optional create)=
11639    :PROPERTIES:
11640    :CUSTOM_ID: org-ctags-visit-buffer-or-file
11641    :END:
11643 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
11644 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-visit-buffer-or-file][Find modifications in git logs]]
11646 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
11647 : Visit buffer named â€˜NAME.org’.  If there is no such buffer, visit the file
11648 : with the same name if it exists.  If the file does not exist, then behavior
11649 : depends on the value of CREATE.
11651 : If CREATE is nil (default), then return nil.  Do not create a new file.
11652 : If CREATE is t, create the new file and visit it.
11653 : If CREATE is the symbol â€˜ask’, then ask the user if they wish to create
11654 : the new file.
11655 ** org-table-fedit-toggle-coordinates
11656    :PROPERTIES:
11657    :CUSTOM_ID: org-table-fedit-toggle-coordinates
11658    :END:
11660 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
11661 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-toggle-coordinates][Find modifications in git logs]]
11663 : Toggle the display of coordinates in the referenced table.
11664 ** org-ctags-find-tag-interactive
11665    :PROPERTIES:
11666    :CUSTOM_ID: org-ctags-find-tag-interactive
11667    :END:
11669 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
11670 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-find-tag-interactive][Find modifications in git logs]]
11672 : Prompt for the name of a tag, with autocompletion, then visit the named tag.
11673 : Uses â€˜ido-mode’ if available.
11674 : If the user enters a string that does not match an existing tag, create
11675 : a new topic.
11676 ** org-src-mode =(&optional arg)=
11677    :PROPERTIES:
11678    :CUSTOM_ID: org-src-mode
11679    :END:
11681 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
11682 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-mode][Find modifications in git logs]]
11684 : Minor mode for language major mode buffers generated by Org.
11686 : This minor mode is turned on in two situations:
11687 :   - when editing a source code snippet with â€˜C-c '’
11688 :   - when formatting a source code snippet for export with htmlize.
11690 : key             binding
11691 : ---             -------
11693 : C-c           Prefix Command
11694 : C-x           Prefix Command
11696 : C-x C-s               org-edit-src-save
11698 : C-c C-k               org-edit-src-abort
11699 : C-c '         org-edit-src-exit
11703 : See also â€˜org-src-mode-hook’.
11704 ** org-agenda-schedule =(arg &optional time)=
11705    :PROPERTIES:
11706    :CUSTOM_ID: org-agenda-schedule
11707    :END:
11709 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11710 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-schedule][Find modifications in git logs]]
11712 : Schedule the item at point.
11713 : ARG is passed through to â€˜org-schedule’.
11714 ** org-table-show-reference =(&optional local)=
11715    :PROPERTIES:
11716    :CUSTOM_ID: org-table-show-reference
11717    :END:
11719 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
11720 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-show-reference][Find modifications in git logs]]
11722 : Show the location/value of the $ expression at point.
11723 : When LOCAL is non-nil, show references for the table at point.
11724 ** org-ctrl-c-ctrl-c =(&optional arg)=
11725    :PROPERTIES:
11726    :CUSTOM_ID: org-ctrl-c-ctrl-c
11727    :END:
11729 - *Access:* ~C-c C-c, <menu-bar> <Tbl> <Align>~
11730 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11731 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-c-ctrl-c][Find modifications in git logs]]
11733 : Set tags in headline, or update according to changed information at point.
11735 : This command does many different things, depending on context:
11737 : - If a function in â€˜org-ctrl-c-ctrl-c-hook’ recognizes this location,
11738 :   this is what we do.
11740 : - If the cursor is on a statistics cookie, update it.
11742 : - If the cursor is in a headline, prompt for tags and insert them
11743 :   into the current line, aligned to â€˜org-tags-column’.  When called
11744 :   with prefix arg, realign all tags in the current buffer.
11746 : - If the cursor is in one of the special #+KEYWORD lines, this
11747 :   triggers scanning the buffer for these lines and updating the
11748 :   information.
11750 : - If the cursor is inside a table, realign the table.  This command
11751 :   works even if the automatic table editor has been turned off.
11753 : - If the cursor is on a #+TBLFM line, re-apply the formulas to
11754 :   the entire table.
11756 : - If the cursor is at a footnote reference or definition, jump to
11757 :   the corresponding definition or references, respectively.
11759 : - If the cursor is a the beginning of a dynamic block, update it.
11761 : - If the current buffer is a capture buffer, close note and file it.
11763 : - If the cursor is on a <<<target>>>, update radio targets and
11764 :   corresponding links in this buffer.
11766 : - If the cursor is on a numbered item in a plain list, renumber the
11767 :   ordered list.
11769 : - If the cursor is on a checkbox, toggle it.
11771 : - If the cursor is on a code block, evaluate it.  The variable
11772 :   â€˜org-confirm-babel-evaluate’ can be used to control prompting
11773 :   before code block evaluation, by default every code block
11774 :   evaluation requires confirmation.  Code block evaluation can be
11775 :   inhibited by setting â€˜org-babel-no-eval-on-ctrl-c-ctrl-c’.
11776 ** org-babel-processing-view-sketch
11777    :PROPERTIES:
11778    :CUSTOM_ID: org-babel-processing-view-sketch
11779    :END:
11781 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-processing.el][ob-processing.el]]
11782 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-processing-view-sketch][Find modifications in git logs]]
11784 : Show the sketch of the Processing block under point in an external viewer.
11785 ** org-clock-out =(&optional switch-to-state fail-quietly at-time)=
11786    :PROPERTIES:
11787    :CUSTOM_ID: org-clock-out
11788    :END:
11790 - *Access:* ~C-c C-x C-o, <menu-bar> <Org> <Logging work> <Clock out>~
11791 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
11792 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-out][Find modifications in git logs]]
11794 : Stop the currently running clock.
11795 : Throw an error if there is no running clock and FAIL-QUIETLY is nil.
11796 : With a universal prefix, prompt for a state to switch the clocked out task
11797 : to, overriding the existing value of â€˜org-clock-out-switch-to-state’.
11798 ** org-columns-redo
11799    :PROPERTIES:
11800    :CUSTOM_ID: org-columns-redo
11801    :END:
11803 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
11804 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-redo][Find modifications in git logs]]
11806 : Construct the column display again.
11807 ** org-agenda-archives-mode =(&optional with-files)=
11808    :PROPERTIES:
11809    :CUSTOM_ID: org-agenda-archives-mode
11810    :END:
11812 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11813 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archives-mode][Find modifications in git logs]]
11815 : Toggle inclusion of items in trees marked with :ARCHIVE:.
11816 : When called with a prefix argument, include all archive files as well.
11817 ** org-beginning-of-item-list
11818    :PROPERTIES:
11819    :CUSTOM_ID: org-beginning-of-item-list
11820    :END:
11822 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
11823 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beginning-of-item-list][Find modifications in git logs]]
11825 : Go to the beginning item of the current list or sublist.
11826 : Throw an error when not in a list.
11827 ** orgtbl-mode =(&optional arg)=
11828    :PROPERTIES:
11829    :CUSTOM_ID: orgtbl-mode
11830    :END:
11832 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
11833 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-mode][Find modifications in git logs]]
11835 : The â€˜org-mode’ table editor as a minor mode for use in other modes.
11836 ** org-columns-quit
11837    :PROPERTIES:
11838    :CUSTOM_ID: org-columns-quit
11839    :END:
11841 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
11842 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-quit][Find modifications in git logs]]
11844 : Remove the column overlays and in this way exit column editing.
11845 ** org-force-self-insert =(N)=
11846    :PROPERTIES:
11847    :CUSTOM_ID: org-force-self-insert
11848    :END:
11850 - *Access:* ~|~
11851 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11852 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-force-self-insert][Find modifications in git logs]]
11854 : Needed to enforce self-insert under remapping.
11855 ** org-clock-in-last =(&optional arg)=
11856    :PROPERTIES:
11857    :CUSTOM_ID: org-clock-in-last
11858    :END:
11860 - *Access:* ~C-c C-x C-x~
11861 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
11862 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in-last][Find modifications in git logs]]
11864 : Clock in the last closed clocked item.
11865 : When already clocking in, send an warning.
11866 : With a universal prefix argument, select the task you want to
11867 : clock in from the last clocked in tasks.
11868 : With two universal prefix arguments, start clocking using the
11869 : last clock-out time, if any.
11870 : With three universal prefix arguments, interactively prompt
11871 : for a todo state to switch to, overriding the existing value
11872 : â€˜org-clock-in-switch-to-state’.
11873 ** org-footnote-normalize
11874    :PROPERTIES:
11875    :CUSTOM_ID: org-footnote-normalize
11876    :END:
11878 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
11879 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-normalize][Find modifications in git logs]]
11881 : Turn every footnote in buffer into a numbered one.
11882 ** org-export-stack
11883    :PROPERTIES:
11884    :CUSTOM_ID: org-export-stack
11885    :END:
11887 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
11888 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack][Find modifications in git logs]]
11890 : Menu for asynchronous export results and running processes.
11891 ** org-md-convert-region-to-md
11892    :PROPERTIES:
11893    :CUSTOM_ID: org-md-convert-region-to-md
11894    :END:
11896 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
11897 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-convert-region-to-md][Find modifications in git logs]]
11899 : Assume the current region has Org syntax, and convert it to Markdown.
11900 : This can be used in any buffer.  For example, you can write an
11901 : itemized list in Org syntax in a Markdown buffer and use
11902 : this command to convert it.
11903 ** org-customize
11904    :PROPERTIES:
11905    :CUSTOM_ID: org-customize
11906    :END:
11908 - *Access:* ~<menu-bar> <Org> <Customize> <Browse Org Group>~
11909 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11910 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-customize][Find modifications in git logs]]
11912 : Call the customize function with org as argument.
11913 ** org-babel-tangle-file =(file &optional target-file lang)=
11914    :PROPERTIES:
11915    :CUSTOM_ID: org-babel-tangle-file
11916    :END:
11918 - *Access:* ~C-c C-v f, C-c C-v C-f~
11919 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
11920 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-file][Find modifications in git logs]]
11922 : Extract the bodies of source code blocks in FILE.
11923 : Source code blocks are extracted with â€˜org-babel-tangle’.
11924 : Optional argument TARGET-FILE can be used to specify a default
11925 : export file for all source blocks.  Optional argument LANG can be
11926 : used to limit the exported source code blocks by language.
11927 : Return a list whose CAR is the tangled file name.
11928 ** org-goto-ret =(&optional _arg)=
11929    :PROPERTIES:
11930    :CUSTOM_ID: org-goto-ret
11931    :END:
11933 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11934 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-ret][Find modifications in git logs]]
11936 : Finish â€˜org-goto’ by going to the new location.
11937 ** org-create-math-formula =(latex-frag &optional mathml-file)=
11938    :PROPERTIES:
11939    :CUSTOM_ID: org-create-math-formula
11940    :END:
11942 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11943 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-create-math-formula][Find modifications in git logs]]
11945 : Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
11946 : Use â€˜org-latex-to-mathml-convert-command’.  If the conversion is
11947 : sucessful, return the portion between "<math...> </math>"
11948 : elements otherwise return nil.  When MATHML-FILE is specified,
11949 : write the results in to that file.  When invoked as an
11950 : interactive command, prompt for LATEX-FRAG, with initial value
11951 : set to the current active region and echo the results for user
11952 : inspection.
11953 ** org-previous-block =(arg &optional block-regexp)=
11954    :PROPERTIES:
11955    :CUSTOM_ID: org-previous-block
11956    :END:
11958 - *Access:* ~C-c M-b~
11959 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11960 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-previous-block][Find modifications in git logs]]
11962 : Jump to the previous block.
11963 : With a prefix argument ARG, jump backward ARG many source blocks.
11964 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
11965 ** org-timestamp-down-day =(&optional arg)=
11966    :PROPERTIES:
11967    :CUSTOM_ID: org-timestamp-down-day
11968    :END:
11970 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11971 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timestamp-down-day][Find modifications in git logs]]
11973 : Decrease the date in the time stamp by one day.
11974 : With prefix ARG, change that many days.
11975 ** org-agenda-bulk-unmark-all
11976    :PROPERTIES:
11977    :CUSTOM_ID: org-agenda-bulk-unmark-all
11978    :END:
11980 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
11981 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-unmark-all][Find modifications in git logs]]
11983 : Remove all marks in the agenda buffer.
11984 : This will remove the markers and the overlays.
11985 ** org-show-subtree
11986    :PROPERTIES:
11987    :CUSTOM_ID: org-show-subtree
11988    :END:
11990 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
11991 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-subtree][Find modifications in git logs]]
11993 : Show everything after this heading at deeper levels.
11994 ** org-babel-lilypond-toggle-pdf-generation
11995    :PROPERTIES:
11996    :CUSTOM_ID: org-babel-lilypond-toggle-pdf-generation
11997    :END:
11999 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
12000 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-toggle-pdf-generation][Find modifications in git logs]]
12002 : Toggle whether pdf will be generated by compilation.
12003 ** org-columns-remove-overlays
12004    :PROPERTIES:
12005    :CUSTOM_ID: org-columns-remove-overlays
12006    :END:
12008 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
12009 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-remove-overlays][Find modifications in git logs]]
12011 : Remove all currently active column overlays.
12012 ** org-agenda-phases-of-moon
12013    :PROPERTIES:
12014    :CUSTOM_ID: org-agenda-phases-of-moon
12015    :END:
12017 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12018 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-phases-of-moon][Find modifications in git logs]]
12020 : Display the phases of the moon for the 3 months around the cursor date.
12021 ** org-property-previous-allowed-value =(&optional _previous)=
12022    :PROPERTIES:
12023    :CUSTOM_ID: org-property-previous-allowed-value
12024    :END:
12026 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12027 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-previous-allowed-value][Find modifications in git logs]]
12029 : Switch to the next allowed value for this property.
12030 ** org-todo-list =(&optional arg)=
12031    :PROPERTIES:
12032    :CUSTOM_ID: org-todo-list
12033    :END:
12035 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Global TODO list>~
12036 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12037 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-list][Find modifications in git logs]]
12039 : Show all (not done) TODO entries from all agenda file in a single list.
12040 : The prefix arg can be used to select a specific TODO keyword and limit
12041 : the list to these.  When using â€˜C-u’, you will be prompted
12042 : for a keyword.  A numeric prefix directly selects the Nth keyword in
12043 : â€˜org-todo-keywords-1’.
12044 ** org-odt-convert =(&optional in-file out-fmt open)=
12045    :PROPERTIES:
12046    :CUSTOM_ID: org-odt-convert
12047    :END:
12049 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
12050 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-convert][Find modifications in git logs]]
12052 : Convert IN-FILE to format OUT-FMT using a command line converter.
12053 : IN-FILE is the file to be converted.  If unspecified, it defaults
12054 : to variable â€˜buffer-file-name’.  OUT-FMT is the desired output
12055 : format.  Use â€˜org-odt-convert-process’ as the converter.  If OPEN
12056 : is non-nil then the newly converted file is opened using
12057 : â€˜org-open-file’.
12058 ** orgtbl-toggle-comment
12059    :PROPERTIES:
12060    :CUSTOM_ID: orgtbl-toggle-comment
12061    :END:
12063 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
12064 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-toggle-comment][Find modifications in git logs]]
12066 : Comment or uncomment the orgtbl at point.
12067 ** org-duration-set-regexps
12068    :PROPERTIES:
12069    :CUSTOM_ID: org-duration-set-regexps
12070    :END:
12072 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-duration.el][org-duration.el]]
12073 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-duration-set-regexps][Find modifications in git logs]]
12075 : Set duration related regexps.
12076 ** org-previous-link
12077    :PROPERTIES:
12078    :CUSTOM_ID: org-previous-link
12079    :END:
12081 - *Access:* ~C-c C-x C-p, <menu-bar> <Org> <Hyperlinks> <Previous link>~
12082 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12083 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-previous-link][Find modifications in git logs]]
12085 : Move backward to the previous link.
12086 : If the link is in hidden text, expose it.
12087 ** org-babel-hide-result-toggle =(&optional force)=
12088    :PROPERTIES:
12089    :CUSTOM_ID: org-babel-hide-result-toggle
12090    :END:
12092 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
12093 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-hide-result-toggle][Find modifications in git logs]]
12095 : Toggle the visibility of the current result.
12096 ** org-attach
12097    :PROPERTIES:
12098    :CUSTOM_ID: org-attach
12099    :END:
12101 - *Access:* ~C-c C-a~
12102 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
12103 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach][Find modifications in git logs]]
12105 : The dispatcher for attachment commands.
12106 : Shows a list of commands and prompts for another key to execute a command.
12107 ** org-agenda-columns
12108    :PROPERTIES:
12109    :CUSTOM_ID: org-agenda-columns
12110    :END:
12112 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
12113 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-columns][Find modifications in git logs]]
12115 : Turn on or update column view in the agenda.
12116 ** org-occur =(regexp &optional keep-previous callback)=
12117    :PROPERTIES:
12118    :CUSTOM_ID: org-occur
12119    :END:
12121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-occur][Find modifications in git logs]]
12124 : Make a compact tree which shows all matches of REGEXP.
12126 : The tree will show the lines where the regexp matches, and any other context
12127 : defined in â€˜org-show-context-detail’, which see.
12129 : When optional argument KEEP-PREVIOUS is non-nil, highlighting and exposing
12130 : done by a previous call to â€˜org-occur’ will be kept, to allow stacking of
12131 : calls to this command.
12133 : Optional argument CALLBACK can be a function of no argument.  In this case,
12134 : it is called with point at the end of the match, match data being set
12135 : accordingly.  Current match is shown only if the return value is non-nil.
12136 : The function must neither move point nor alter narrowing.
12137 ** org-table-iterate-buffer-tables
12138    :PROPERTIES:
12139    :CUSTOM_ID: org-table-iterate-buffer-tables
12140    :END:
12142 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
12143 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-iterate-buffer-tables][Find modifications in git logs]]
12145 : Iterate all tables in the buffer, to converge inter-table dependencies.
12146 ** org-attach-reveal-in-emacs
12147    :PROPERTIES:
12148    :CUSTOM_ID: org-attach-reveal-in-emacs
12149    :END:
12151 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
12152 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-reveal-in-emacs][Find modifications in git logs]]
12154 : Show the attachment directory of the current task in dired.
12155 ** org-update-all-dblocks
12156    :PROPERTIES:
12157    :CUSTOM_ID: org-update-all-dblocks
12158    :END:
12160 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12161 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-update-all-dblocks][Find modifications in git logs]]
12163 : Update all dynamic blocks in the buffer.
12164 : This function can be used in a hook.
12165 ** org-babel-examplize-region =(beg end &optional results-switches inline)=
12166    :PROPERTIES:
12167    :CUSTOM_ID: org-babel-examplize-region
12168    :END:
12170 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
12171 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-examplize-region][Find modifications in git logs]]
12173 : Comment out region using the inline â€˜==’ or â€˜: â€™ org example quote.
12174 ** org-indent-item-tree
12175    :PROPERTIES:
12176    :CUSTOM_ID: org-indent-item-tree
12177    :END:
12179 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
12180 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-item-tree][Find modifications in git logs]]
12182 : Indent a local list item including its children.
12183 : If a region is active, all items inside will be moved.
12184 ** org-delete-backward-char =(N)=
12185    :PROPERTIES:
12186    :CUSTOM_ID: org-delete-backward-char
12187    :END:
12189 - *Access:* ~DEL~
12190 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12191 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-delete-backward-char][Find modifications in git logs]]
12193 : Like â€˜delete-backward-char’, insert whitespace at field end in tables.
12194 : When deleting backwards, in tables this function will insert whitespace in
12195 : front of the next "|" separator, to keep the table aligned.  The table will
12196 : still be marked for re-alignment if the field did fill the entire column,
12197 : because, in this case the deletion might narrow the column.
12198 ** org-agenda-archive-with =(cmd &optional confirm)=
12199    :PROPERTIES:
12200    :CUSTOM_ID: org-agenda-archive-with
12201    :END:
12203 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12204 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-archive-with][Find modifications in git logs]]
12206 : Move the entry to the archive sibling.
12207 ** org-element-update-syntax
12208    :PROPERTIES:
12209    :CUSTOM_ID: org-element-update-syntax
12210    :END:
12212 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-element.el][org-element.el]]
12213 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-element-update-syntax][Find modifications in git logs]]
12215 : Update parser internals.
12216 ** org-agenda-add-note =(&optional arg)=
12217    :PROPERTIES:
12218    :CUSTOM_ID: org-agenda-add-note
12219    :END:
12221 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12222 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-add-note][Find modifications in git logs]]
12224 : Add a time-stamped note to the entry at point.
12225 ** org-agenda-bulk-mark =(&optional arg)=
12226    :PROPERTIES:
12227    :CUSTOM_ID: org-agenda-bulk-mark
12228    :END:
12230 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12231 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-mark][Find modifications in git logs]]
12233 : Mark the entry at point for future bulk action.
12234 ** org-insert-todo-subheading =(arg)=
12235    :PROPERTIES:
12236    :CUSTOM_ID: org-insert-todo-subheading
12237    :END:
12239 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12240 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-todo-subheading][Find modifications in git logs]]
12242 : Insert a new subheading with TODO keyword or checkbox and demote it.
12243 : Works for outline headings and for plain lists alike.
12244 ** org-koma-letter-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
12245    :PROPERTIES:
12246    :CUSTOM_ID: org-koma-letter-export-to-pdf
12247    :END:
12249 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
12250 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-export-to-pdf][Find modifications in git logs]]
12252 : Export current buffer as a KOMA Scrlttr2 letter (pdf).
12254 : If narrowing is active in the current buffer, only export its
12255 : narrowed part.
12257 : If a region is active, export that region.
12259 : A non-nil optional argument ASYNC means the process should happen
12260 : asynchronously.  The resulting file should be accessible through
12261 : the â€˜org-export-stack’ interface.
12263 : When optional argument SUBTREEP is non-nil, export the sub-tree
12264 : at point, extracting information from the headline properties
12265 : first.
12267 : When optional argument VISIBLE-ONLY is non-nil, don’t export
12268 : contents of hidden elements.
12270 : When optional argument BODY-ONLY is non-nil, only write code
12271 : between "\begin{letter}" and "\end{letter}".
12273 : EXT-PLIST, when provided, is a property list with external
12274 : parameters overriding Org default settings, but still inferior to
12275 : file-local settings.
12277 : Return PDF file’s name.
12278 ** org-bibtex-search =(string)=
12279    :PROPERTIES:
12280    :CUSTOM_ID: org-bibtex-search
12281    :END:
12283 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
12284 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-search][Find modifications in git logs]]
12286 : Search for bibliographical entries in agenda files.
12287 : This function relies â€˜org-search-view’ to locate results.
12288 ** org-columns-widen =(arg)=
12289    :PROPERTIES:
12290    :CUSTOM_ID: org-columns-widen
12291    :END:
12293 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
12294 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-widen][Find modifications in git logs]]
12296 : Make the column wider by ARG characters.
12297 ** org-agenda-manipulate-query-subtract
12298    :PROPERTIES:
12299    :CUSTOM_ID: org-agenda-manipulate-query-subtract
12300    :END:
12302 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12303 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-manipulate-query-subtract][Find modifications in git logs]]
12305 : Manipulate the query by adding a search term with negative selection.
12306 : Negative selection means term must not be matched for selection of an entry.
12307 ** org-meta-return =(&optional arg)=
12308    :PROPERTIES:
12309    :CUSTOM_ID: org-meta-return
12310    :END:
12312 - *Access:* ~<M-return>~
12313 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12314 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-meta-return][Find modifications in git logs]]
12316 : Insert a new heading or wrap a region in a table.
12317 : Calls â€˜org-insert-heading’, â€˜org-insert-item’ or
12318 : â€˜org-table-wrap-region’, depending on context.  When called with
12319 : an argument, unconditionally call â€˜org-insert-heading’.
12320 ** org-agenda-bulk-toggle-all
12321    :PROPERTIES:
12322    :CUSTOM_ID: org-agenda-bulk-toggle-all
12323    :END:
12325 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12326 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-toggle-all][Find modifications in git logs]]
12328 : Toggle all marks for bulk action.
12329 ** org-agenda-bulk-unmark =(&optional arg)=
12330    :PROPERTIES:
12331    :CUSTOM_ID: org-agenda-bulk-unmark
12332    :END:
12334 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12335 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-unmark][Find modifications in git logs]]
12337 : Unmark the entry at point for future bulk action.
12338 ** org-cut-subtree =(&optional n)=
12339    :PROPERTIES:
12340    :CUSTOM_ID: org-cut-subtree
12341    :END:
12343 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12344 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cut-subtree][Find modifications in git logs]]
12346 : Cut the current subtree into the clipboard.
12347 : With prefix arg N, cut this many sequential subtrees.
12348 : This is a short-hand for marking the subtree and then cutting it.
12349 ** org-goto-quit
12350    :PROPERTIES:
12351    :CUSTOM_ID: org-goto-quit
12352    :END:
12354 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12355 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-quit][Find modifications in git logs]]
12357 : Finish â€˜org-goto’ without cursor motion.
12358 ** org-attach-url =(url)=
12359    :PROPERTIES:
12360    :CUSTOM_ID: org-attach-url
12361    :END:
12363 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
12364 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-url][Find modifications in git logs]]
12367 ** org-agenda-month-view =(&optional month)=
12368    :PROPERTIES:
12369    :CUSTOM_ID: org-agenda-month-view
12370    :END:
12372 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12373 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-month-view][Find modifications in git logs]]
12375 : Switch to monthly view for agenda.
12376 : With argument MONTH, switch to that month.  If MONTH has more
12377 : then 2 digits, only the last two encode the month.  Any digits
12378 : before this encode a year.  So 200712 means December year 2007.
12379 : Years ranging from 70 years ago to 30 years in the future can
12380 : also be written as 2-digit years.
12381 ** org-agenda-limit-interactively =(remove)=
12382    :PROPERTIES:
12383    :CUSTOM_ID: org-agenda-limit-interactively
12384    :END:
12386 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12387 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-limit-interactively][Find modifications in git logs]]
12389 : In agenda, interactively limit entries to various maximums.
12390 ** org-babel-hide-result-toggle-maybe
12391    :PROPERTIES:
12392    :CUSTOM_ID: org-babel-hide-result-toggle-maybe
12393    :END:
12395 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
12396 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-hide-result-toggle-maybe][Find modifications in git logs]]
12398 : Toggle visibility of result at point.
12399 ** org-narrow-to-element
12400    :PROPERTIES:
12401    :CUSTOM_ID: org-narrow-to-element
12402    :END:
12404 - *Access:* ~C-x n e~
12405 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12406 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-narrow-to-element][Find modifications in git logs]]
12408 : Narrow buffer to current element.
12409 ** org-inlinetask-promote
12410    :PROPERTIES:
12411    :CUSTOM_ID: org-inlinetask-promote
12412    :END:
12414 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
12415 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-promote][Find modifications in git logs]]
12417 : Promote the inline task at point.
12418 : If the task has an end part, promote it.  Also, prevents level from
12419 : going below â€˜org-inlinetask-min-level’.
12420 ** org-agenda-date-later-hours =(arg)=
12421    :PROPERTIES:
12422    :CUSTOM_ID: org-agenda-date-later-hours
12423    :END:
12425 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12426 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-date-later-hours][Find modifications in git logs]]
12428 : Change the time of this item, in hour steps.
12429 ** org-decompose-region =(start end)=
12430    :PROPERTIES:
12431    :CUSTOM_ID: org-decompose-region
12432    :END:
12434 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
12435 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-decompose-region][Find modifications in git logs]]
12437 : Decompose text in the current region.
12439 : When called from a program, expects two arguments,
12440 : positions (integers or markers) specifying the region.
12441 ** org-export-stack-view =(&optional in-emacs)=
12442    :PROPERTIES:
12443    :CUSTOM_ID: org-export-stack-view
12444    :END:
12446 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
12447 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-stack-view][Find modifications in git logs]]
12449 : View export results at point in stack.
12450 : With an optional prefix argument IN-EMACS, force viewing files
12451 : within Emacs.
12452 ** org-columns-narrow =(arg)=
12453    :PROPERTIES:
12454    :CUSTOM_ID: org-columns-narrow
12455    :END:
12457 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
12458 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-narrow][Find modifications in git logs]]
12460 : Make the column narrower by ARG characters.
12461 ** org-table-transpose-table-at-point
12462    :PROPERTIES:
12463    :CUSTOM_ID: org-table-transpose-table-at-point
12464    :END:
12466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
12467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-transpose-table-at-point][Find modifications in git logs]]
12469 : Transpose Org table at point and eliminate hlines.
12470 : So a table like
12472 : | 1 | 2 | 4 | 5 |
12473 : |---+---+---+---|
12474 : | a | b | c | d |
12475 : | e | f | g | h |
12477 : will be transposed as
12479 : | 1 | a | e |
12480 : | 2 | b | f |
12481 : | 4 | c | g |
12482 : | 5 | d | h |
12484 : Note that horizontal lines disappear.
12485 ** org-columns-edit-allowed
12486    :PROPERTIES:
12487    :CUSTOM_ID: org-columns-edit-allowed
12488    :END:
12490 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
12491 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-edit-allowed][Find modifications in git logs]]
12493 : Edit the list of allowed values for the current property.
12494 ** org-table-fedit-finish =(&optional arg)=
12495    :PROPERTIES:
12496    :CUSTOM_ID: org-table-fedit-finish
12497    :END:
12499 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
12500 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fedit-finish][Find modifications in git logs]]
12502 : Parse the buffer for formula definitions and install them.
12503 : With prefix ARG, apply the new formulas to the table.
12504 ** org-occur-in-agenda-files =(regexp &optional _nlines)=
12505    :PROPERTIES:
12506    :CUSTOM_ID: org-occur-in-agenda-files
12507    :END:
12509 - *Access:* ~<menu-bar> <Org> <File List for Agenda> <Occur in all agenda files>~
12510 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12511 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-occur-in-agenda-files][Find modifications in git logs]]
12513 : Call â€˜multi-occur’ with buffers for all agenda files.
12514 ** org-convert-to-oddeven-levels
12515    :PROPERTIES:
12516    :CUSTOM_ID: org-convert-to-oddeven-levels
12517    :END:
12519 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd/even levels>~
12520 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12521 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-convert-to-oddeven-levels][Find modifications in git logs]]
12523 : Convert an Org file with only odd levels to one with odd/even levels.
12524 : This promotes level 3 to level 2, level 5 to level 3 etc.  If the
12525 : file contains a section with an even level, conversion would
12526 : destroy the structure of the file.  An error is signaled in this
12527 : case.
12528 ** org-show-block-all
12529    :PROPERTIES:
12530    :CUSTOM_ID: org-show-block-all
12531    :END:
12533 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12534 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-block-all][Find modifications in git logs]]
12536 : Unfold all blocks in the current buffer.
12537 ** org-ctags-append-topic =(name &optional narrowp)=
12538    :PROPERTIES:
12539    :CUSTOM_ID: org-ctags-append-topic
12540    :END:
12542 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
12543 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-append-topic][Find modifications in git logs]]
12545 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
12546 : Append a new toplevel heading to the end of the current buffer.  The
12547 : heading contains NAME surrounded by <<angular brackets>>, thus making
12548 : the heading a destination for the tag â€˜NAME’.
12549 ** org-koma-letter-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
12550    :PROPERTIES:
12551    :CUSTOM_ID: org-koma-letter-export-to-latex
12552    :END:
12554 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
12555 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-export-to-latex][Find modifications in git logs]]
12557 : Export current buffer as a KOMA Scrlttr2 letter (tex).
12559 : If narrowing is active in the current buffer, only export its
12560 : narrowed part.
12562 : If a region is active, export that region.
12564 : A non-nil optional argument ASYNC means the process should happen
12565 : asynchronously.  The resulting file should be accessible through
12566 : the â€˜org-export-stack’ interface.
12568 : When optional argument SUBTREEP is non-nil, export the sub-tree
12569 : at point, extracting information from the headline properties
12570 : first.
12572 : When optional argument VISIBLE-ONLY is non-nil, don’t export
12573 : contents of hidden elements.
12575 : When optional argument BODY-ONLY is non-nil, only write code
12576 : between "\begin{letter}" and "\end{letter}".
12578 : EXT-PLIST, when provided, is a property list with external
12579 : parameters overriding Org default settings, but still inferior to
12580 : file-local settings.
12582 : When optional argument PUB-DIR is set, use it as the publishing
12583 : directory.
12585 : Return output file’s name.
12586 ** org-archive-subtree-default-with-confirmation
12587    :PROPERTIES:
12588    :CUSTOM_ID: org-archive-subtree-default-with-confirmation
12589    :END:
12591 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
12592 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-subtree-default-with-confirmation][Find modifications in git logs]]
12594 : Archive the current subtree with the default command.
12595 : This command is set with the variable â€˜org-archive-default-command’.
12596 ** org-encrypt-entries
12597    :PROPERTIES:
12598    :CUSTOM_ID: org-encrypt-entries
12599    :END:
12601 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
12602 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-encrypt-entries][Find modifications in git logs]]
12604 : Encrypt all top-level entries in the current buffer.
12605 ** org-tree-to-indirect-buffer =(&optional arg)=
12606    :PROPERTIES:
12607    :CUSTOM_ID: org-tree-to-indirect-buffer
12608    :END:
12610 - *Access:* ~C-c C-x b, <menu-bar> <Org> <Show/Hide> <Subtree to indirect buffer>~
12611 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12612 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tree-to-indirect-buffer][Find modifications in git logs]]
12614 : Create indirect buffer and narrow it to current subtree.
12616 : With a numerical prefix ARG, go up to this level and then take that tree.
12617 : If ARG is negative, go up that many levels.
12619 : If â€˜org-indirect-buffer-display’ is not â€˜new-frame’, the command removes the
12620 : indirect buffer previously made with this command, to avoid proliferation of
12621 : indirect buffers.  However, when you call the command with a â€˜C-u’ prefix, or
12622 : when â€˜org-indirect-buffer-display’ is â€˜new-frame’, the last buffer is kept
12623 : so that you can work with several indirect buffers at the same time.  If
12624 : â€˜org-indirect-buffer-display’ is â€˜dedicated-frame’, the â€˜C-u’ prefix also
12625 : requests that a new frame be made for the new buffer, so that the dedicated
12626 : frame is not changed.
12627 ** org-agenda-previous-item =(n)=
12628    :PROPERTIES:
12629    :CUSTOM_ID: org-agenda-previous-item
12630    :END:
12632 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12633 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-previous-item][Find modifications in git logs]]
12635 : Move cursor to next agenda item.
12636 ** org-babel-detangle =(&optional source-code-file)=
12637    :PROPERTIES:
12638    :CUSTOM_ID: org-babel-detangle
12639    :END:
12641 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
12642 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-detangle][Find modifications in git logs]]
12644 : Propagate changes in source file back original to Org file.
12645 : This requires that code blocks were tangled with link comments
12646 : which enable the original code blocks to be found.
12647 ** org-end-of-item-list
12648    :PROPERTIES:
12649    :CUSTOM_ID: org-end-of-item-list
12650    :END:
12652 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
12653 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-end-of-item-list][Find modifications in git logs]]
12655 : Go to the end of the current list or sublist.
12656 : Throw an error when not in a list.
12657 ** org-agenda-dim-blocked-tasks =(&optional invisible)=
12658    :PROPERTIES:
12659    :CUSTOM_ID: org-agenda-dim-blocked-tasks
12660    :END:
12662 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12663 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-dim-blocked-tasks][Find modifications in git logs]]
12665 : Dim currently blocked TODOs in the agenda display.
12666 : When INVISIBLE is non-nil, hide currently blocked TODO instead of
12667 : dimming them.
12668 ** org-babel-open-src-block-result =(&optional re-run)=
12669    :PROPERTIES:
12670    :CUSTOM_ID: org-babel-open-src-block-result
12671    :END:
12673 - *Access:* ~C-c C-v C-o, C-c C-v o~
12674 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
12675 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-open-src-block-result][Find modifications in git logs]]
12677 : If â€˜point’ is on a src block then open the results of the
12678 : source code block, otherwise return nil.  With optional prefix
12679 : argument RE-RUN the source-code block is evaluated even if
12680 : results already exist.
12681 ** org-list-repair
12682    :PROPERTIES:
12683    :CUSTOM_ID: org-list-repair
12684    :END:
12686 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
12687 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-repair][Find modifications in git logs]]
12689 : Fix indentation, bullets and checkboxes in the list at point.
12690 ** org-at-date-range-p =(&optional inactive-ok)=
12691    :PROPERTIES:
12692    :CUSTOM_ID: org-at-date-range-p
12693    :END:
12695 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12696 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-at-date-range-p][Find modifications in git logs]]
12698 : Non-nil if point is inside a date range.
12700 : When optional argument INACTIVE-OK is non-nil, also consider
12701 : inactive time ranges.
12703 : When this function returns a non-nil value, match data is set
12704 : according to â€˜org-tr-regexp-both’ or â€˜org-tr-regexp’, depending
12705 : on INACTIVE-OK.
12706 ** org-bibtex-check =(&optional optional)=
12707    :PROPERTIES:
12708    :CUSTOM_ID: org-bibtex-check
12709    :END:
12711 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
12712 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-check][Find modifications in git logs]]
12714 : Check the current headline for required fields.
12715 : With prefix argument OPTIONAL also prompt for optional fields.
12716 ** org-lint--hide-checker
12717    :PROPERTIES:
12718    :CUSTOM_ID: org-lint--hide-checker
12719    :END:
12721 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-lint.el][org-lint.el]]
12722 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lint--hide-checker][Find modifications in git logs]]
12724 : Hide all reports from checker that generated the report at point.
12725 ** org-list-make-subtree
12726    :PROPERTIES:
12727    :CUSTOM_ID: org-list-make-subtree
12728    :END:
12730 - *Access:* ~C-c C-*~
12731 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
12732 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-make-subtree][Find modifications in git logs]]
12734 : Convert the plain list at point into a subtree.
12735 ** org-update-statistics-cookies =(all)=
12736    :PROPERTIES:
12737    :CUSTOM_ID: org-update-statistics-cookies
12738    :END:
12740 - *Access:* ~C-c #~
12741 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12742 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-update-statistics-cookies][Find modifications in git logs]]
12744 : Update the statistics cookie, either from TODO or from checkboxes.
12745 : This should be called with the cursor in a line with a statistics
12746 : cookie.  When called with a C-u prefix, update
12747 : all statistics cookies in the buffer.
12748 * Options
12749   :PROPERTIES:
12750   :CUSTOM_ID: options
12751   :END:
12754 ** org-odt-styles-file =(funcall (function (closure (h...=
12755    :PROPERTIES:
12756    :CUSTOM_ID: org-odt-styles-file
12757    :END:
12759 - *Type:* (choice (const :tag "Factory s...
12760 - *Since:* Emacs version 24.1
12761 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
12762 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-styles-file][Find modifications in git logs]]
12764 : Default styles file for use with ODT export.
12765 : Valid values are one of:
12766 : 1. nil
12767 : 2. path to a styles.xml file
12768 : 3. path to a *.odt or a *.ott file
12769 : 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
12770 : ...))
12772 : In case of option 1, an in-built styles.xml is used. See
12773 : `org-odt-styles-dir' for more information.
12775 : In case of option 3, the specified file is unzipped and the
12776 : styles.xml embedded therein is used.
12778 : In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
12779 : and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
12780 : generated odt file.  Use relative path for specifying the
12781 : FILE-MEMBERS.  styles.xml must be specified as one of the
12782 : FILE-MEMBERS.
12784 : Use options 1, 2 or 3 only if styles.xml alone suffices for
12785 : achieving the desired formatting.  Use option 4, if the styles.xml
12786 : references additional files like header and footer images for
12787 : achieving the desired formatting.
12789 : Use "#+ODT_STYLES_FILE: ..." directive to set this variable on
12790 : a per-file basis.  For example,
12792 : #+ODT_STYLES_FILE: "/path/to/styles.xml" or
12793 : #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png")).
12795 ** org-read-date-popup-calendar =(funcall (function (closure (f...=
12796    :PROPERTIES:
12797    :CUSTOM_ID: org-read-date-popup-calendar
12798    :END:
12800 - *Type:* boolean
12801 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12802 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-read-date-popup-calendar][Find modifications in git logs]]
12804 : Non-nil means pop up a calendar when prompting for a date.
12805 : In the calendar, the date can be selected with mouse-1.  However, the
12806 : minibuffer will also be active, and you can simply enter the date as well.
12807 : When nil, only the minibuffer will be available.
12809 ** org-export-with-properties =(funcall (function (closure (t...=
12810    :PROPERTIES:
12811    :CUSTOM_ID: org-export-with-properties
12812    :END:
12814 - *Type:* (choice (const :tag "All prope...
12815 - *Since:* Emacs version 24.4
12816 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
12817 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-properties][Find modifications in git logs]]
12819 : Non-nil means export contents of properties drawers.
12821 : When t, all properties are exported.  This may also be a list of
12822 : properties to export, as strings.
12824 : This option can also be set with the OPTIONS keyword,
12825 : e.g. "prop:t".
12827 ** org-agenda-max-entries =nil=
12828    :PROPERTIES:
12829    :CUSTOM_ID: org-agenda-max-entries
12830    :END:
12832 - *Type:* (choice (symbol :tag "No limit...
12833 - *Since:* Emacs version 24.4
12834 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
12835 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-max-entries][Find modifications in git logs]]
12837 : Maximum number of entries to display in an agenda.
12838 : This can be nil (no limit) or an integer or an alist of agenda
12839 : types with an associated number of entries to display in this
12840 : type.
12842 ** org-log-note-clock-out =(funcall (function (closure (f...=
12843    :PROPERTIES:
12844    :CUSTOM_ID: org-log-note-clock-out
12845    :END:
12847 - *Type:* boolean
12848 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12849 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-note-clock-out][Find modifications in git logs]]
12851 : Non-nil means record a note when clocking out of an item.
12852 : This can also be configured on a per-file basis by adding one of
12853 : the following lines anywhere in the buffer:
12855 :    #+STARTUP: lognoteclock-out
12856 :    #+STARTUP: nolognoteclock-out
12858 ** org-link-abbrev-alist =(funcall (function (closure (f...=
12859    :PROPERTIES:
12860    :CUSTOM_ID: org-link-abbrev-alist
12861    :END:
12863 - *Type:* (repeat (cons (string :tag "Pr...
12864 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12865 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-abbrev-alist][Find modifications in git logs]]
12867 : Alist of link abbreviations.
12868 : The car of each element is a string, to be replaced at the start of a link.
12869 : The cdrs are replacement values, like ("linkkey" . REPLACE).  Abbreviated
12870 : links in Org buffers can have an optional tag after a double colon, e.g.,
12872 :      [[linkkey:tag][description]]
12874 : The `linkkey' must be a single word, starting with a letter, followed
12875 : by letters, numbers, `-' or `_'.
12877 : If REPLACE is a string, the tag will simply be appended to create the link.
12878 : If the string contains "%s", the tag will be inserted there.  If the string
12879 : contains "%h", it will cause a url-encoded version of the tag to be inserted
12880 : at that point (see the function `url-hexify-string').  If the string contains
12881 : the specifier "%(my-function)", then the custom function `my-function' will
12882 : be invoked: this function takes the tag as its only argument and must return
12883 : a string.
12885 : REPLACE may also be a function that will be called with the tag as the
12886 : only argument to create the link, which should be returned as a string.
12888 : See the manual for examples.
12890 ** org-html-format-drawer-function =(funcall (function (closure (h...=
12891    :PROPERTIES:
12892    :CUSTOM_ID: org-html-format-drawer-function
12893    :END:
12895 - *Type:* function
12896 - *Since:* Emacs version 24.4
12897 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
12898 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-format-drawer-function][Find modifications in git logs]]
12900 : Function called to format a drawer in HTML code.
12902 : The function must accept two parameters:
12903 :   NAME      the drawer name, like "LOGBOOK"
12904 :   CONTENTS  the contents of the drawer.
12906 : The function should return the string to be exported.
12908 : For example, the variable could be set to the following function
12909 : in order to mimic default behavior:
12911 : The default value simply returns the value of CONTENTS.
12913 ** org-latex-hyperref-template =(funcall (function (closure (t...=
12914    :PROPERTIES:
12915    :CUSTOM_ID: org-latex-hyperref-template
12916    :END:
12918 - *Type:* (choice (const :tag "No templa...
12919 - *Since:* Emacs version 26.1
12920 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
12921 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-hyperref-template][Find modifications in git logs]]
12923 : Template for hyperref package options.
12925 : This format string may contain these elements:
12927 :   %a for AUTHOR keyword
12928 :   %t for TITLE keyword
12929 :   %s for SUBTITLE keyword
12930 :   %k for KEYWORDS line
12931 :   %d for DESCRIPTION line
12932 :   %c for CREATOR line
12933 :   %l for Language keyword
12934 :   %L for capitalized language keyword
12935 :   %D for DATE keyword
12937 : If you need to use a "%" character, you need to escape it
12938 : like that: "%%".
12940 : As a special case, a nil value prevents template from being
12941 : inserted.
12943 : Setting :latex-hyperref-template in publishing projects will take
12944 : precedence over this variable.
12946 ** org-src-block-faces =(funcall (function (closure (t...=
12947    :PROPERTIES:
12948    :CUSTOM_ID: org-src-block-faces
12949    :END:
12951 - *Type:* (repeat (list (string :tag "la...
12952 - *Since:* Emacs version 26.1
12953 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
12954 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-block-faces][Find modifications in git logs]]
12956 : Alist of faces to be used for source-block.
12957 : Each element is a cell of the format
12959 :      ("language" FACE)
12961 : Where FACE is either a defined face or an anonymous face.
12963 : For instance, the following value would color the background of
12964 : emacs-lisp source blocks and python source blocks in purple and
12965 : green, respectability.
12967 :     \='(("emacs-lisp" (:background "#EEE2FF"))
12968 :       ("python" (:background "#e5ffb8")))
12970 ** org-context-in-file-links =(funcall (function (closure (f...=
12971    :PROPERTIES:
12972    :CUSTOM_ID: org-context-in-file-links
12973    :END:
12975 - *Type:* (choice boolean integer)
12976 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
12977 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-context-in-file-links][Find modifications in git logs]]
12979 : Non-nil means file links from `org-store-link' contain context.
12980 : \<org-mode-map>
12981 : A search string will be added to the file name with :: as separator
12982 : and used to find the context when the link is activated by the command
12983 : `org-open-at-point'.  When this option is t, the entire active region
12984 : will be placed in the search string of the file link.  If set to a
12985 : positive integer, only the first n lines of context will be stored.
12987 : Using a prefix arg to the command `org-store-link' (`\[universal-argument] \[org-store-link]')
12988 : negates this setting for the duration of the command.
12990 ** org-indent-mode-turns-on-hiding-stars =(funcall (function (closure (t...=
12991    :PROPERTIES:
12992    :CUSTOM_ID: org-indent-mode-turns-on-hiding-stars
12993    :END:
12995 - *Type:* boolean
12996 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
12997 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-mode-turns-on-hiding-stars][Find modifications in git logs]]
12999 : Non-nil means setting the variable `org-indent-mode' will turn on `org-hide-leading-stars'.
13001 ** org-mobile-directory =(funcall (function (closure (t...=
13002    :PROPERTIES:
13003    :CUSTOM_ID: org-mobile-directory
13004    :END:
13006 - *Type:* directory
13007 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
13008 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-directory][Find modifications in git logs]]
13010 : The WebDAV directory where the interaction with the mobile takes place.
13012 ** org-export-select-tags =(funcall (function (closure (t...=
13013    :PROPERTIES:
13014    :CUSTOM_ID: org-export-select-tags
13015    :END:
13017 - *Type:* (repeat (string :tag "Tag"))
13018 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
13019 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-select-tags][Find modifications in git logs]]
13021 : Tags that select a tree for export.
13023 : If any such tag is found in a buffer, all trees that do not carry
13024 : one of these tags will be ignored during export.  Inside trees
13025 : that are selected like this, you can still deselect a subtree by
13026 : tagging it with one of the `org-export-exclude-tags'.
13028 : This option can also be set with the SELECT_TAGS keyword.
13030 ** org-clocktable-defaults =(funcall (function (closure (t...=
13031    :PROPERTIES:
13032    :CUSTOM_ID: org-clocktable-defaults
13033    :END:
13035 - *Type:* plist
13036 - *Since:* Emacs version 24.1
13037 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
13038 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clocktable-defaults][Find modifications in git logs]]
13040 : Default properties for clock tables.
13042 ** org-koma-letter-use-place =t=
13043    :PROPERTIES:
13044    :CUSTOM_ID: org-koma-letter-use-place
13045    :END:
13047 - *Type:* boolean
13048 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
13049 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-use-place][Find modifications in git logs]]
13051 : Non-nil prints the letter's place next to the date.
13052 : This option can also be set with the OPTIONS keyword, e.g.:
13053 : "place:nil".
13055 ** org-koma-letter-signature =""=
13056    :PROPERTIES:
13057    :CUSTOM_ID: org-koma-letter-signature
13058    :END:
13060 - *Type:* string
13061 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
13062 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-signature][Find modifications in git logs]]
13064 : Signature, as a string.
13065 : This option can also be set with the SIGNATURE keyword.
13066 : Moreover, when:
13067 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
13068 :       or there is no CLOSING keyword or the CLOSING keyword is empty;
13069 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
13070 :   (3) the letter contains a headline with the special
13071 :       tag "closing";
13072 : then the signature will be  set as the content of the
13073 : closing special heading.
13075 : Note if the content is empty the signature will not be set.
13077 ** org-icalendar-store-UID =(funcall (function (closure (t...=
13078    :PROPERTIES:
13079    :CUSTOM_ID: org-icalendar-store-UID
13080    :END:
13082 - *Type:* boolean
13083 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
13084 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-store-UID][Find modifications in git logs]]
13086 : Non-nil means store any created UIDs in properties.
13088 : The iCalendar standard requires that all entries have a unique identifier.
13089 : Org will create these identifiers as needed.  When this variable is non-nil,
13090 : the created UIDs will be stored in the ID property of the entry.  Then the
13091 : next time this entry is exported, it will be exported with the same UID,
13092 : superseding the previous form of it.  This is essential for
13093 : synchronization services.
13095 : This variable is not turned on by default because we want to avoid creating
13096 : a property drawer in every entry if people are only playing with this feature,
13097 : or if they are only using it locally.
13099 ** org-bbdb-anniversary-format-alist =(funcall (function (closure (d...=
13100    :PROPERTIES:
13101    :CUSTOM_ID: org-bbdb-anniversary-format-alist
13102    :END:
13104 - *Type:* (alist :key-type (string :tag ...
13105 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bbdb.el][org-bbdb.el]]
13106 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bbdb-anniversary-format-alist][Find modifications in git logs]]
13108 : How different types of anniversaries should be formatted.
13109 : An alist of elements (STRING . FORMAT) where STRING is the name of an
13110 : anniversary class and format is either:
13111 : 1) A format string with the following substitutions (in order):
13112 :     - the name of the record containing this anniversary
13113 :     - the number of years
13114 :     - an ordinal suffix (st, nd, rd, th) for the year
13116 : 2) A function to be called with three arguments: NAME YEARS SUFFIX
13117 :    (string int string) returning a string for the diary or nil.
13119 : 3) An Emacs Lisp form that should evaluate to a string (or nil) in the
13120 :    scope of variables NAME, YEARS and SUFFIX (among others).
13122 ** org-list-use-circular-motion =(funcall (function (closure (o...=
13123    :PROPERTIES:
13124    :CUSTOM_ID: org-list-use-circular-motion
13125    :END:
13127 - *Type:* boolean
13128 - *Since:* Emacs version 24.1
13129 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
13130 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-use-circular-motion][Find modifications in git logs]]
13132 : Non-nil means commands implying motion in lists should be cyclic.
13133 : \<org-mode-map>
13134 : In that case, the item following the last item is the first one,
13135 : and the item preceding the first item is the last one.
13137 : This affects the behavior of
13138 :   `\[org-move-item-up]',
13139 :   `\[org-move-item-down]',
13140 :   `\[org-next-item]',
13141 :   `\[org-previous-item]'.
13143 ** org-html-mathjax-options =(funcall (function (closure (h...=
13144    :PROPERTIES:
13145    :CUSTOM_ID: org-html-mathjax-options
13146    :END:
13148 - *Type:* (list :greedy t (list :tag "pa...
13149 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
13150 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-mathjax-options][Find modifications in git logs]]
13152 : Options for MathJax setup.
13154 : Alist of the following elements.  All values are strings.
13156 : path          The path to MathJax.
13157 : scale         Scaling with HTML-CSS, MathML and SVG output engines.
13158 : align         How to align display math: left, center, or right.
13159 : font          The font to use with HTML-CSS and SVG output.  As of MathJax 2.5
13160 :               the following values are understood: "TeX", "STIX-Web",
13161 :               "Asana-Math", "Neo-Euler", "Gyre-Pagella",
13162 :               "Gyre-Termes", and "Latin-Modern".
13163 : linebreaks    Let MathJax perform automatic linebreaks.  Valid values
13164 :               are "true" and "false".
13165 : indent        If align is not center, how far from the left/right side?
13166 :               Valid values are "left" and "right"
13167 : multlinewidth The width of the multline environment.
13168 : autonumber    How to number equations.  Valid values are "None",
13169 :               "all" and "AMS Math".
13170 : tagindent     The amount tags are indented.
13171 : tagside       Which side to show tags/labels on.  Valid values are
13172 :               "left" and "right"
13174 : You can also customize this for each buffer, using something like
13176 : #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
13178 : For further information about MathJax options, see the MathJax documentation:
13180 :   http://docs.mathjax.org/
13182 ** org-stuck-projects =(quote ("+LEVEL=2/-DONE" ("TOD...=
13183    :PROPERTIES:
13184    :CUSTOM_ID: org-stuck-projects
13185    :END:
13187 - *Type:* (list (string :tag "Tags/TODO ...
13188 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13189 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-stuck-projects][Find modifications in git logs]]
13191 : How to identify stuck projects.
13192 : This is a list of four items:
13193 : 1. A tags/todo/property matcher string that is used to identify a project.
13194 :    See the manual for a description of tag and property searches.
13195 :    The entire tree below a headline matched by this is considered one project.
13196 : 2. A list of TODO keywords identifying non-stuck projects.
13197 :    If the project subtree contains any headline with one of these todo
13198 :    keywords, the project is considered to be not stuck.  If you specify
13199 :    "*" as a keyword, any TODO keyword will mark the project unstuck.
13200 : 3. A list of tags identifying non-stuck projects.
13201 :    If the project subtree contains any headline with one of these tags,
13202 :    the project is considered to be not stuck.  If you specify "*" as
13203 :    a tag, any tag will mark the project unstuck.  Note that this is about
13204 :    the explicit presence of a tag somewhere in the subtree, inherited
13205 :    tags do not count here.  If inherited tags make a project not stuck,
13206 :    use "-TAG" in the tags part of the matcher under (1.) above.
13207 : 4. An arbitrary regular expression matching non-stuck projects.
13209 : If the project turns out to be not stuck, search continues also in the
13210 : subtree to see if any of the subtasks have project status.
13212 : See also the variable `org-tags-match-list-sublevels' which applies
13213 : to projects matched by this search as well.
13215 : After defining this variable, you may use `\[org-agenda-list-stuck-projects]'
13216 : (bound to `C-c a #') to produce the list.
13218 ** org-latex-default-table-mode =(funcall (function (closure (t...=
13219    :PROPERTIES:
13220    :CUSTOM_ID: org-latex-default-table-mode
13221    :END:
13223 - *Type:* (choice (const :tag "Table" ta...
13224 - *Since:* Emacs version 24.4
13225 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
13226 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-default-table-mode][Find modifications in git logs]]
13228 : Default mode for tables.
13230 : Value can be a symbol among:
13232 :   `table' Regular LaTeX table.
13234 :   `math' In this mode, every cell is considered as being in math
13235 :      mode and the complete table will be wrapped within a math
13236 :      environment.  It is particularly useful to write matrices.
13238 :   `inline-math' This mode is almost the same as `math', but the
13239 :      math environment will be inlined.
13241 :   `verbatim' The table is exported as it appears in the Org
13242 :      buffer, within a verbatim environment.
13244 : This value can be overridden locally with, i.e. ":mode math" in
13245 : LaTeX attributes.
13247 : When modifying this variable, it may be useful to change
13248 : `org-latex-default-table-environment' accordingly.
13250 ** org-clock-rounding-minutes =(funcall (function (closure (t...=
13251    :PROPERTIES:
13252    :CUSTOM_ID: org-clock-rounding-minutes
13253    :END:
13255 - *Type:* (choice (integer :tag "Minutes...
13256 - *Since:* Emacs version 24.4
13257 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
13258 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-rounding-minutes][Find modifications in git logs]]
13260 : Rounding minutes when clocking in or out.
13261 : The default value is 0 so that no rounding is done.
13262 : When set to a non-integer value, use the car of
13263 : `org-time-stamp-rounding-minutes', like for setting a time-stamp.
13265 : E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
13266 : and you clock in: then the clock starts at 14:45.  If you clock
13267 : out within the next 5 minutes, the clock line will be removed;
13268 : if you clock out 8 minutes after your clocked in, the clock
13269 : out time will be 14:50.
13271 ** org-babel-load-languages =(funcall (function (closure (f...=
13272    :PROPERTIES:
13273    :CUSTOM_ID: org-babel-load-languages
13274    :END:
13276 - *Type:* (alist :tag "Babel Languages" ...
13277 - *Since:* Emacs version 24.1
13278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-load-languages][Find modifications in git logs]]
13281 : Languages which can be evaluated in Org buffers.
13282 : This list can be used to load support for any of the languages
13283 : below, note that each language will depend on a different set of
13284 : system executables and/or Emacs modes.  When a language is
13285 : "loaded", then code blocks in that language can be evaluated
13286 : with `org-babel-execute-src-block' bound by default to C-c
13287 : C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
13288 : be set to remove code block evaluation from the C-c C-c
13289 : keybinding.  By default only Emacs Lisp (which has no
13290 : requirements) is loaded.
13292 ** org-agenda-time-grid =(quote ((daily today require-t...=
13293    :PROPERTIES:
13294    :CUSTOM_ID: org-agenda-time-grid
13295    :END:
13297 - *Type:* (list (set :greedy t :tag "Gri...
13298 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13299 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-time-grid][Find modifications in git logs]]
13301 : The settings for time grid for agenda display.
13302 : This is a list of three items.  The first item is again a list.  It contains
13303 : symbols specifying conditions when the grid should be displayed:
13305 :  daily         if the agenda shows a single day
13306 :  weekly        if the agenda shows an entire week
13307 :  today         show grid on current date, independent of daily/weekly display
13308 :  require-timed show grid only if at least one item has a time specification
13309 :  remove-match  skip grid times already present in an entry
13311 : The second item is a string which will be placed behind the grid time.
13313 : The third item is a list of integers, indicating the times that should have
13314 : a grid line.
13316 ** org-export-with-entities =(funcall (function (closure (t...=
13317    :PROPERTIES:
13318    :CUSTOM_ID: org-export-with-entities
13319    :END:
13321 - *Type:* boolean
13322 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
13323 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-entities][Find modifications in git logs]]
13325 : Non-nil means interpret entities when exporting.
13327 : For example, HTML export converts \alpha to &alpha; and \AA to
13328 : &Aring;.
13330 : For a list of supported names, see the constant `org-entities'
13331 : and the user option `org-entities-user'.
13333 : This option can also be set with the OPTIONS keyword,
13334 : e.g. "e:nil".
13336 ** org-texinfo-info-process =(funcall (function (closure (t...=
13337    :PROPERTIES:
13338    :CUSTOM_ID: org-texinfo-info-process
13339    :END:
13341 - *Type:* (repeat :tag "Shell command se...
13342 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
13343 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-info-process][Find modifications in git logs]]
13345 : Commands to process a Texinfo file to an INFO file.
13347 : This is a list of strings, each of them will be given to the
13348 : shell as a command.  %f in the command will be replaced by the
13349 : relative file name, %F by the absolute file name, %b by the file
13350 : base name (i.e. without directory and extension parts), %o by the
13351 : base directory of the file and %O by the absolute file name of
13352 : the output file.
13354 ** org-bibtex-type-property-name =(funcall (function (closure (t...=
13355    :PROPERTIES:
13356    :CUSTOM_ID: org-bibtex-type-property-name
13357    :END:
13359 - *Type:* string
13360 - *Since:* Emacs version 24.1
13361 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
13362 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-type-property-name][Find modifications in git logs]]
13364 : Property in which to store bibtex entry type (e.g., article).
13366 ** org-table-auto-blank-field =(funcall (function (closure (o...=
13367    :PROPERTIES:
13368    :CUSTOM_ID: org-table-auto-blank-field
13369    :END:
13371 - *Type:* boolean
13372 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
13373 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-auto-blank-field][Find modifications in git logs]]
13375 : Non-nil means automatically blank table field when starting to type into it.
13376 : This only happens when typing immediately after a field motion
13377 : command (TAB, S-TAB or RET).
13378 : Only relevant when `org-enable-table-editor' is equal to `optimized'.
13380 ** org-timer-format =(funcall (function (closure (t...=
13381    :PROPERTIES:
13382    :CUSTOM_ID: org-timer-format
13383    :END:
13385 - *Type:* string
13386 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
13387 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-format][Find modifications in git logs]]
13389 : The format to insert the time of the timer.
13390 : This format must contain one instance of "%s" which will be replaced by
13391 : the value of the timer.
13393 ** org-agenda-skip-scheduled-if-done =nil=
13394    :PROPERTIES:
13395    :CUSTOM_ID: org-agenda-skip-scheduled-if-done
13396    :END:
13398 - *Type:* boolean
13399 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13400 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-scheduled-if-done][Find modifications in git logs]]
13402 : Non-nil means don't show scheduled items in agenda when they are done.
13403 : This is relevant for the daily/weekly agenda, not for the TODO list.  It
13404 : applies only to the actual date of the scheduling.  Warnings about an item
13405 : with a past scheduling dates are always turned off when the item is DONE.
13407 ** org-tags-column =(funcall (function (closure (f...=
13408    :PROPERTIES:
13409    :CUSTOM_ID: org-tags-column
13410    :END:
13412 - *Type:* integer
13413 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13414 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-column][Find modifications in git logs]]
13416 : The column to which tags should be indented in a headline.
13417 : If this number is positive, it specifies the column.  If it is negative,
13418 : it means that the tags should be flushright to that column.  For example,
13419 : -80 works well for a normal 80 character screen.
13420 : When 0, place tags directly after headline text, with only one space in
13421 : between.
13423 ** org-agenda-timegrid-use-ampm =nil=
13424    :PROPERTIES:
13425    :CUSTOM_ID: org-agenda-timegrid-use-ampm
13426    :END:
13428 - *Type:* boolean
13429 - *Since:* Emacs version 24.1
13430 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13431 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-timegrid-use-ampm][Find modifications in git logs]]
13433 : When set, show AM/PM style timestamps on the timegrid.
13435 ** org-babel-results-keyword =(funcall (function (closure (t...=
13436    :PROPERTIES:
13437    :CUSTOM_ID: org-babel-results-keyword
13438    :END:
13440 - *Type:* string
13441 - *Since:* Emacs version 24.4
13442 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
13443 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-results-keyword][Find modifications in git logs]]
13445 : Keyword used to name results generated by code blocks.
13446 : It should be "RESULTS".  However any capitalization may be
13447 : used.
13449 ** org-odt-convert-process =(funcall (function (closure (h...=
13450    :PROPERTIES:
13451    :CUSTOM_ID: org-odt-convert-process
13452    :END:
13454 - *Type:* (choice :convert-widget (lambd...
13455 - *Since:* Emacs version 24.1
13456 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
13457 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-convert-process][Find modifications in git logs]]
13459 : Use this converter to convert from "odt" format to other formats.
13460 : During customization, the list of converter names are populated
13461 : from `org-odt-convert-processes'.
13463 ** org-beamer-subtitle-format =(funcall (function (closure (t...=
13464    :PROPERTIES:
13465    :CUSTOM_ID: org-beamer-subtitle-format
13466    :END:
13468 - *Type:* (string :tag "Format string")
13469 - *Since:* Emacs version 26.1
13470 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
13471 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-subtitle-format][Find modifications in git logs]]
13473 : Format string used for transcoded subtitle.
13474 : The format string should have at most one "%s"-expression,
13475 : which is replaced with the subtitle.
13477 ** org-ascii-format-inlinetask-function =(funcall (function (closure (t...=
13478    :PROPERTIES:
13479    :CUSTOM_ID: org-ascii-format-inlinetask-function
13480    :END:
13482 - *Type:* function
13483 - *Since:* Emacs version 24.4
13484 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
13485 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-format-inlinetask-function][Find modifications in git logs]]
13487 : Function called to format an inlinetask in ASCII.
13489 : The function must accept nine parameters:
13490 :   TODO       the todo keyword, as a string
13491 :   TODO-TYPE  the todo type, a symbol among `todo', `done' and nil.
13492 :   PRIORITY   the inlinetask priority, as a string
13493 :   NAME       the inlinetask name, as a string.
13494 :   TAGS       the inlinetask tags, as a list of strings.
13495 :   CONTENTS   the contents of the inlinetask, as a string.
13496 :   WIDTH      the width of the inlinetask, as a number.
13497 :   INLINETASK the inlinetask itself.
13498 :   INFO       the info channel.
13500 : The function should return either the string to be exported or
13501 : nil to ignore the inline task.
13503 ** org-display-custom-times =(funcall (function (closure (f...=
13504    :PROPERTIES:
13505    :CUSTOM_ID: org-display-custom-times
13506    :END:
13508 - *Type:* sexp
13509 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13510 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-display-custom-times][Find modifications in git logs]]
13512 : Non-nil means overlay custom formats over all time stamps.
13513 : The formats are defined through the variable `org-time-stamp-custom-formats'.
13514 : To turn this on on a per-file basis, insert anywhere in the file:
13515 :    #+STARTUP: customtime
13517 ** org-table-tab-jumps-over-hlines =(funcall (function (closure (o...=
13518    :PROPERTIES:
13519    :CUSTOM_ID: org-table-tab-jumps-over-hlines
13520    :END:
13522 - *Type:* boolean
13523 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
13524 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-tab-jumps-over-hlines][Find modifications in git logs]]
13526 : Non-nil means tab in the last column of a table with jump over a hline.
13527 : If a horizontal separator line is following the current line,
13528 : `org-table-next-field' can either create a new row before that line, or jump
13529 : over the line.  When this option is nil, a new line will be created before
13530 : this line.
13532 ** org-log-states-order-reversed =(funcall (function (closure (f...=
13533    :PROPERTIES:
13534    :CUSTOM_ID: org-log-states-order-reversed
13535    :END:
13537 - *Type:* boolean
13538 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13539 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-states-order-reversed][Find modifications in git logs]]
13541 : Non-nil means the latest state note will be directly after heading.
13542 : When nil, the state change notes will be ordered according to time.
13544 : This option can also be set with on a per-file-basis with
13546 :    #+STARTUP: logstatesreversed
13547 :    #+STARTUP: nologstatesreversed
13549 ** org-babel-python-mode =(funcall (function (closure (t...=
13550    :PROPERTIES:
13551    :CUSTOM_ID: org-babel-python-mode
13552    :END:
13554 - *Type:* symbol
13555 - *Since:* Emacs version 24.4
13556 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-python.el][ob-python.el]]
13557 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-python-mode][Find modifications in git logs]]
13559 : Preferred python mode for use in running python interactively.
13560 : This will typically be either `python' or `python-mode'.
13562 ** org-clock-out-switch-to-state =(funcall (function (closure (t...=
13563    :PROPERTIES:
13564    :CUSTOM_ID: org-clock-out-switch-to-state
13565    :END:
13567 - *Type:* (choice (const :tag "Don't for...
13568 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
13569 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-out-switch-to-state][Find modifications in git logs]]
13571 : Set task to a special todo state after clocking out.
13572 : The value should be the state to which the entry should be
13573 : switched.  If the value is a function, it must take one
13574 : parameter (the current TODO state of the item) and return the
13575 : state to switch it to.
13577 ** org-agenda-show-outline-path =t=
13578    :PROPERTIES:
13579    :CUSTOM_ID: org-agenda-show-outline-path
13580    :END:
13582 - *Type:* boolean
13583 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13584 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-outline-path][Find modifications in git logs]]
13586 : Non-nil means show outline path in echo area after line motion.
13588 ** org-html-postamble =(funcall (function (closure (h...=
13589    :PROPERTIES:
13590    :CUSTOM_ID: org-html-postamble
13591    :END:
13593 - *Type:* (choice (const :tag "No postam...
13594 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
13595 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-postamble][Find modifications in git logs]]
13597 : Non-nil means insert a postamble in HTML export.
13599 : When set to `auto', check against the
13600 : `org-export-with-author/email/creator/date' variables to set the
13601 : content of the postamble.  When set to a string, use this string
13602 : as the postamble.  When t, insert a string as defined by the
13603 : formatting string in `org-html-postamble-format'.
13605 : When set to a function, apply this function and insert the
13606 : returned string.  The function takes the property list of export
13607 : options as its only argument.
13609 : Setting :html-postamble in publishing projects will take
13610 : precedence over this variable.
13612 ** org-gnus-prefer-web-links =(funcall (function (closure (t...=
13613    :PROPERTIES:
13614    :CUSTOM_ID: org-gnus-prefer-web-links
13615    :END:
13617 - *Type:* boolean
13618 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-gnus.el][org-gnus.el]]
13619 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-gnus-prefer-web-links][Find modifications in git logs]]
13621 : If non-nil, `org-store-link' creates web links to Google groups or Gmane.
13622 : \<org-mode-map>When nil, Gnus will be used for such links.
13623 : Using a prefix argument to the command `\[org-store-link]' (`org-store-link')
13624 : negates this setting for the duration of the command.
13626 ** org-export-async-init-file =(funcall (function (closure (t...=
13627    :PROPERTIES:
13628    :CUSTOM_ID: org-export-async-init-file
13629    :END:
13631 - *Type:* (choice (const :tag "Regular s...
13632 - *Since:* Emacs version 24.4
13633 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
13634 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-async-init-file][Find modifications in git logs]]
13636 : File used to initialize external export process.
13638 : Value must be either nil or an absolute file name.  When nil, the
13639 : external process is launched like a regular Emacs session,
13640 : loading user's initialization file and any site specific
13641 : configuration.  If a file is provided, it, and only it, is loaded
13642 : at start-up.
13644 : Therefore, using a specific configuration makes the process to
13645 : load faster and the export more portable.
13647 ** org-use-property-inheritance =(funcall (function (closure (f...=
13648    :PROPERTIES:
13649    :CUSTOM_ID: org-use-property-inheritance
13650    :END:
13652 - *Type:* (choice (const :tag "Not" nil)...
13653 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13654 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-property-inheritance][Find modifications in git logs]]
13656 : Non-nil means properties apply also for sublevels.
13658 : This setting is chiefly used during property searches.  Turning it on can
13659 : cause significant overhead when doing a search, which is why it is not
13660 : on by default.
13662 : When nil, only the properties directly given in the current entry count.
13663 : When t, every property is inherited.  The value may also be a list of
13664 : properties that should have inheritance, or a regular expression matching
13665 : properties that should be inherited.
13667 : However, note that some special properties use inheritance under special
13668 : circumstances (not in searches).  Examples are CATEGORY, ARCHIVE, COLUMNS,
13669 : and the properties ending in "_ALL" when they are used as descriptor
13670 : for valid values of a property.
13672 : Note for programmers:
13673 : When querying an entry with `org-entry-get',  you can control if inheritance
13674 : should be used.  By default, `org-entry-get' looks only at the local
13675 : properties.  You can request inheritance by setting the inherit argument
13676 : to t (to force inheritance) or to `selective' (to respect the setting
13677 : in this variable).
13679 ** org-tag-alist =(funcall (function (closure (f...=
13680    :PROPERTIES:
13681    :CUSTOM_ID: org-tag-alist
13682    :END:
13684 - *Type:* (repeat (choice (cons (string ...
13685 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13686 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tag-alist][Find modifications in git logs]]
13688 : Default tags available in Org files.
13690 : The value of this variable is an alist.  Associations either:
13692 :   (TAG)
13693 :   (TAG . SELECT)
13694 :   (SPECIAL)
13696 : where TAG is a tag as a string, SELECT is character, used to
13697 : select that tag through the fast tag selection interface, and
13698 : SPECIAL is one of the following keywords: `:startgroup',
13699 : `:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
13700 : `:newline'.  These keywords are used to define a hierarchy of
13701 : tags.  See manual for details.
13703 : When this variable is nil, Org mode bases tag input on what is
13704 : already in the buffer.  The value can be overridden locally by
13705 : using a TAGS keyword, e.g.,
13707 :   #+TAGS: tag1 tag2
13709 : See also `org-tag-persistent-alist' to sidestep this behavior.
13711 ** org-odt-prettify-xml =(funcall (function (closure (h...=
13712    :PROPERTIES:
13713    :CUSTOM_ID: org-odt-prettify-xml
13714    :END:
13716 - *Type:* boolean
13717 - *Since:* Emacs version 24.1
13718 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
13719 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-prettify-xml][Find modifications in git logs]]
13721 : Specify whether or not the xml output should be prettified.
13722 : When this option is turned on, `indent-region' is run on all
13723 : component xml buffers before they are saved.  Turn this off for
13724 : regular use.  Turn this on if you need to examine the xml
13725 : visually.
13727 ** org-agenda-prefix-format =(quote ((agenda . " %i %-12:c%...=
13728    :PROPERTIES:
13729    :CUSTOM_ID: org-agenda-prefix-format
13730    :END:
13732 - *Type:* (choice (string :tag "General ...
13733 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13734 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-prefix-format][Find modifications in git logs]]
13736 : Format specifications for the prefix of items in the agenda views.
13737 : An alist with five entries, each for the different agenda types.  The
13738 : keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
13739 : The values are format strings.
13741 : This format works similar to a printf format, with the following meaning:
13743 :   %c   the category of the item, "Diary" for entries from the diary,
13744 :        or as given by the CATEGORY keyword or derived from the file name
13745 :   %e   the effort required by the item
13746 :   %l   the level of the item (insert X space(s) if item is of level X)
13747 :   %i   the icon category of the item, see `org-agenda-category-icon-alist'
13748 :   %T   the last tag of the item (ignore inherited tags, which come first)
13749 :   %t   the HH:MM time-of-day specification if one applies to the entry
13750 :   %s   Scheduling/Deadline information, a short string
13751 :   %b   show breadcrumbs, i.e., the names of the higher levels
13752 :   %(expression) Eval EXPRESSION and replace the control string
13753 :                 by the result
13755 : All specifiers work basically like the standard `%s' of printf, but may
13756 : contain two additional characters: a question mark just after the `%'
13757 : and a whitespace/punctuation character just before the final letter.
13759 : If the first character after `%' is a question mark, the entire field
13760 : will only be included if the corresponding value applies to the current
13761 : entry.  This is useful for fields which should have fixed width when
13762 : present, but zero width when absent.  For example, "%?-12t" will
13763 : result in a 12 character time field if a time of the day is specified,
13764 : but will completely disappear in entries which do not contain a time.
13766 : If there is punctuation or whitespace character just before the
13767 : final format letter, this character will be appended to the field
13768 : value if the value is not empty.  For example, the format
13769 : "%-12:c" leads to "Diary: " if the category is "Diary".  If
13770 : the category is empty, no additional colon is inserted.
13772 : The default value for the agenda sublist is "  %-12:c%?-12t% s",
13773 : which means:
13775 : - Indent the line with two space characters
13776 : - Give the category a 12 chars wide field, padded with whitespace on
13777 :   the right (because of `-').  Append a colon if there is a category
13778 :   (because of `:').
13779 : - If there is a time-of-day, put it into a 12 chars wide field.  If no
13780 :   time, don't put in an empty field, just skip it (because of '?').
13781 : - Finally, put the scheduling information.
13783 : See also the variables `org-agenda-remove-times-when-in-prefix' and
13784 : `org-agenda-remove-tags'.
13786 : Custom commands can set this variable in the options section.
13788 ** org-agenda-search-view-max-outline-level =0=
13789    :PROPERTIES:
13790    :CUSTOM_ID: org-agenda-search-view-max-outline-level
13791    :END:
13793 - *Type:* integer
13794 - *Since:* Emacs version 24.4
13795 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13796 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-search-view-max-outline-level][Find modifications in git logs]]
13798 : Maximum outline level to display in search view.
13799 : E.g. when this is set to 1, the search view will only
13800 : show headlines of level 1.  When set to 0, the default
13801 : value, don't limit agenda view by outline level.
13803 ** org-agenda-show-all-dates =t=
13804    :PROPERTIES:
13805    :CUSTOM_ID: org-agenda-show-all-dates
13806    :END:
13808 - *Type:* boolean
13809 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13810 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-all-dates][Find modifications in git logs]]
13812 : Non-nil means `org-agenda' shows every day in the selected range.
13813 : When nil, only the days which actually have entries are shown.
13815 ** org-id-uuid-program =(funcall (function (closure (t...=
13816    :PROPERTIES:
13817    :CUSTOM_ID: org-id-uuid-program
13818    :END:
13820 - *Type:* string
13821 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
13822 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-uuid-program][Find modifications in git logs]]
13824 : The uuidgen program.
13826 ** org-refile-active-region-within-subtree =(funcall (function (closure (f...=
13827    :PROPERTIES:
13828    :CUSTOM_ID: org-refile-active-region-within-subtree
13829    :END:
13831 - *Type:* boolean
13832 - *Since:* Emacs version 24.1
13833 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13834 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-active-region-within-subtree][Find modifications in git logs]]
13836 : Non-nil means also refile active region within a subtree.
13838 : By default `org-refile' doesn't allow refiling regions if they
13839 : don't contain a set of subtrees, but it might be convenient to
13840 : do so sometimes: in that case, the first line of the region is
13841 : converted to a headline before refiling.
13843 ** org-export-with-title =(funcall (function (closure (t...=
13844    :PROPERTIES:
13845    :CUSTOM_ID: org-export-with-title
13846    :END:
13848 - *Type:* boolean
13849 - *Since:* Emacs version 26.1
13850 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
13851 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-title][Find modifications in git logs]]
13853 : Non-nil means print title into the exported file.
13854 : This option can also be set with the OPTIONS keyword,
13855 : e.g. "title:nil".
13857 ** org-export-creator-string =(funcall (function (closure (t...=
13858    :PROPERTIES:
13859    :CUSTOM_ID: org-export-creator-string
13860    :END:
13862 - *Type:* (string :tag "Creator string")
13863 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
13864 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-creator-string][Find modifications in git logs]]
13866 : Information about the creator of the document.
13867 : This option can also be set on with the CREATOR keyword.
13869 ** org-texinfo-node-description-column =(funcall (function (closure (t...=
13870    :PROPERTIES:
13871    :CUSTOM_ID: org-texinfo-node-description-column
13872    :END:
13874 - *Type:* integer
13875 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
13876 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-node-description-column][Find modifications in git logs]]
13878 : Column at which to start the description in the node listings.
13879 : If a node title is greater than this length, the description will
13880 : be placed after the end of the title.
13882 ** org-agenda-skip-timestamp-if-deadline-is-shown =nil=
13883    :PROPERTIES:
13884    :CUSTOM_ID: org-agenda-skip-timestamp-if-deadline-is-shown
13885    :END:
13887 - *Type:* (choice (const :tag "Never" ni...
13888 - *Since:* Emacs version 24.1
13889 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
13890 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-timestamp-if-deadline-is-shown][Find modifications in git logs]]
13892 : Non-nil means skip timestamp line if same entry shows because of deadline.
13893 : In the agenda of today, an entry can show up multiple times
13894 : because it has both a plain timestamp and has a nearby deadline.
13895 : When this variable is t, then only the deadline is shown and the
13896 : fact that the entry has a timestamp for or including today is not
13897 : shown.  When this variable is nil, the entry will be shown
13898 : several times.
13900 ** org-allow-promoting-top-level-subtree =(funcall (function (closure (b...=
13901    :PROPERTIES:
13902    :CUSTOM_ID: org-allow-promoting-top-level-subtree
13903    :END:
13905 - *Type:* boolean
13906 - *Since:* Emacs version 24.1
13907 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13908 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-allow-promoting-top-level-subtree][Find modifications in git logs]]
13910 : When non-nil, allow promoting a top level subtree.
13911 : The leading star of the top level headline will be replaced
13912 : by a #.
13914 ** org-archive-reversed-order =(funcall (function (closure (t...=
13915    :PROPERTIES:
13916    :CUSTOM_ID: org-archive-reversed-order
13917    :END:
13919 - *Type:* boolean
13920 - *Since:* Emacs version 24.1
13921 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
13922 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-reversed-order][Find modifications in git logs]]
13924 : Non-nil means make the tree first child under the archive heading, not last.
13926 ** org-keep-stored-link-after-insertion =(funcall (function (closure (f...=
13927    :PROPERTIES:
13928    :CUSTOM_ID: org-keep-stored-link-after-insertion
13929    :END:
13931 - *Type:* boolean
13932 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13933 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-keep-stored-link-after-insertion][Find modifications in git logs]]
13935 : Non-nil means keep link in list for entire session.
13936 : \<org-mode-map>
13937 : The command `org-store-link' adds a link pointing to the current
13938 : location to an internal list.  These links accumulate during a session.
13939 : The command `org-insert-link' can be used to insert links into any
13940 : Org file (offering completion for all stored links).
13942 : When this option is nil, every link which has been inserted once using
13943 : `\[org-insert-link]' will be removed from the list, to make completing the unused
13944 : links more efficient.
13946 ** org-scheduled-delay-days =(funcall (function (closure (f...=
13947    :PROPERTIES:
13948    :CUSTOM_ID: org-scheduled-delay-days
13949    :END:
13951 - *Type:* integer
13952 - *Since:* Emacs version 24.4
13953 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13954 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-scheduled-delay-days][Find modifications in git logs]]
13956 : Number of days before a scheduled item becomes active.
13957 : This variable governs the display in sparse trees and in the agenda.
13958 : The default value (i.e. 0) means: don't delay scheduled item.
13959 : When negative, it means use this number (the absolute value of it)
13960 : even if a scheduled item has a different individual delay time
13961 : specified.
13963 : Custom commands can set this variable in the options section.
13965 ** org-crypt-tag-matcher =(funcall (function (closure (t...=
13966    :PROPERTIES:
13967    :CUSTOM_ID: org-crypt-tag-matcher
13968    :END:
13970 - *Type:* string
13971 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
13972 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-crypt-tag-matcher][Find modifications in git logs]]
13974 : The tag matcher used to find headings whose contents should be encrypted.
13976 : See the "Match syntax" section of the org manual for more details.
13978 ** org-edit-timestamp-down-means-later =(funcall (function (closure (f...=
13979    :PROPERTIES:
13980    :CUSTOM_ID: org-edit-timestamp-down-means-later
13981    :END:
13983 - *Type:* boolean
13984 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
13985 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-timestamp-down-means-later][Find modifications in git logs]]
13987 : Non-nil means S-down will increase the time in a time stamp.
13988 : When nil, S-up will increase.
13990 ** org-ascii-inlinetask-width =(funcall (function (closure (t...=
13991    :PROPERTIES:
13992    :CUSTOM_ID: org-ascii-inlinetask-width
13993    :END:
13995 - *Type:* integer
13996 - *Since:* Emacs version 24.4
13997 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
13998 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-inlinetask-width][Find modifications in git logs]]
14000 : Width of inline tasks, in number of characters.
14001 : This number ignores any margin.
14003 ** org-html-container-element =(funcall (function (closure (h...=
14004    :PROPERTIES:
14005    :CUSTOM_ID: org-html-container-element
14006    :END:
14008 - *Type:* string
14009 - *Since:* Emacs version 24.4
14010 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14011 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-container-element][Find modifications in git logs]]
14013 : HTML element to use for wrapping top level sections.
14014 : Can be set with the in-buffer HTML_CONTAINER property or for
14015 : publishing, with :html-container.
14017 : Note that changing the default will prevent you from using
14018 : org-info.js for your website.
14020 ** org-babel-noweb-wrap-end =(funcall (function (closure (t...=
14021    :PROPERTIES:
14022    :CUSTOM_ID: org-babel-noweb-wrap-end
14023    :END:
14025 - *Type:* string
14026 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
14027 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-noweb-wrap-end][Find modifications in git logs]]
14029 : String used to end a noweb reference in a code block.
14030 : See also `org-babel-noweb-wrap-start'.
14032 ** org-odt-create-custom-styles-for-srcblocks =(funcall (function (closure (h...=
14033    :PROPERTIES:
14034    :CUSTOM_ID: org-odt-create-custom-styles-for-srcblocks
14035    :END:
14037 - *Type:* boolean
14038 - *Since:* Emacs version 24.1
14039 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
14040 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-create-custom-styles-for-srcblocks][Find modifications in git logs]]
14042 : Whether custom styles for colorized source blocks be automatically created.
14043 : When this option is turned on, the exporter creates custom styles
14044 : for source blocks based on the advice of `htmlfontify'.  Creation
14045 : of custom styles happen as part of `org-odt-hfy-face-to-css'.
14047 : When this option is turned off exporter does not create such
14048 : styles.
14050 : Use the latter option if you do not want the custom styles to be
14051 : based on your current display settings.  It is necessary that the
14052 : styles.xml already contains needed styles for colorizing to work.
14054 : This variable is effective only if `org-odt-fontify-srcblocks' is
14055 : turned on.
14057 ** org-export-with-special-strings =(funcall (function (closure (t...=
14058    :PROPERTIES:
14059    :CUSTOM_ID: org-export-with-special-strings
14060    :END:
14062 - *Type:* boolean
14063 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
14064 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-special-strings][Find modifications in git logs]]
14066 : Non-nil means interpret "\-", "--" and "---" for export.
14068 : When this option is turned on, these strings will be exported as:
14070 :    Org     HTML     LaTeX    UTF-8
14071 :   -----+----------+--------+-------
14072 :    \-    &shy;      \-
14073 :    --    &ndash;    --         â€“
14074 :    ---   &mdash;    ---        â€”
14075 :    ...   &hellip;   \ldots     â€¦
14077 : This option can also be set with the OPTIONS keyword,
14078 : e.g. "-:nil".
14080 ** org-indirect-buffer-display =(funcall (function (closure (f...=
14081    :PROPERTIES:
14082    :CUSTOM_ID: org-indirect-buffer-display
14083    :END:
14085 - *Type:* (choice (const :tag "In curren...
14086 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14087 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indirect-buffer-display][Find modifications in git logs]]
14089 : How should indirect tree buffers be displayed?
14091 : This applies to indirect buffers created with the commands
14092 : `org-tree-to-indirect-buffer' and `org-agenda-tree-to-indirect-buffer'.
14094 : Valid values are:
14095 : current-window   Display in the current window
14096 : other-window     Just display in another window.
14097 : dedicated-frame  Create one new frame, and re-use it each time.
14098 : new-frame        Make a new frame each time.  Note that in this case
14099 :                  previously-made indirect buffers are kept, and you need to
14100 :                  kill these buffers yourself.
14102 ** org-html-infojs-template =(funcall (function (closure (h...=
14103    :PROPERTIES:
14104    :CUSTOM_ID: org-html-infojs-template
14105    :END:
14107 - *Type:* string
14108 - *Since:* Emacs version 24.4
14109 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14110 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-infojs-template][Find modifications in git logs]]
14112 : The template for the export style additions when org-info.js is used.
14113 : Option settings will replace the %MANAGER-OPTIONS cookie.
14115 ** org-deadline-warning-days =(funcall (function (closure (f...=
14116    :PROPERTIES:
14117    :CUSTOM_ID: org-deadline-warning-days
14118    :END:
14120 - *Type:* integer
14121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-deadline-warning-days][Find modifications in git logs]]
14124 : Number of days before expiration during which a deadline becomes active.
14125 : This variable governs the display in sparse trees and in the agenda.
14126 : When 0 or negative, it means use this number (the absolute value of it)
14127 : even if a deadline has a different individual lead time specified.
14129 : Custom commands can set this variable in the options section.
14131 ** org-use-sub-superscripts =(funcall (function (closure (f...=
14132    :PROPERTIES:
14133    :CUSTOM_ID: org-use-sub-superscripts
14134    :END:
14136 - *Type:* (choice (const :tag "Always in...
14137 - *Since:* Emacs version 24.4
14138 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14139 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-sub-superscripts][Find modifications in git logs]]
14141 : Non-nil means interpret "_" and "^" for display.
14143 : If you want to control how Org exports those characters, see
14144 : `org-export-with-sub-superscripts'.  `org-use-sub-superscripts'
14145 : used to be an alias for `org-export-with-sub-superscripts' in
14146 : Org <8.0, it is not anymore.
14148 : When this option is turned on, you can use TeX-like syntax for
14149 : sub- and superscripts within the buffer.  Several characters after
14150 : "_" or "^" will be considered as a single item - so grouping
14151 : with {} is normally not needed.  For example, the following things
14152 : will be parsed as single sub- or superscripts:
14154 :  10^24   or   10^tau     several digits will be considered 1 item.
14155 :  10^-12  or   10^-tau    a leading sign with digits or a word
14156 :  x^2-y^3                 will be read as x^2 - y^3, because items are
14157 :                        terminated by almost any nonword/nondigit char.
14158 :  x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
14160 : Still, ambiguity is possible.  So when in doubt, use {} to enclose
14161 : the sub/superscript.  If you set this variable to the symbol `{}',
14162 : the braces are *required* in order to trigger interpretations as
14163 : sub/superscript.  This can be helpful in documents that need "_"
14164 : frequently in plain text.
14166 ** org-agenda-insert-diary-extract-time =nil=
14167    :PROPERTIES:
14168    :CUSTOM_ID: org-agenda-insert-diary-extract-time
14169    :END:
14171 - *Type:* boolean
14172 - *Since:* Emacs version 24.1
14173 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
14174 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-insert-diary-extract-time][Find modifications in git logs]]
14176 : Non-nil means extract any time specification from the diary entry.
14178 ** org-html-footnote-format =(funcall (function (closure (h...=
14179    :PROPERTIES:
14180    :CUSTOM_ID: org-html-footnote-format
14181    :END:
14183 - *Type:* string
14184 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14185 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-footnote-format][Find modifications in git logs]]
14187 : The format for the footnote reference.
14188 : %s will be replaced by the footnote reference itself.
14190 ** org-texinfo-remove-logfiles =(funcall (function (closure (t...=
14191    :PROPERTIES:
14192    :CUSTOM_ID: org-texinfo-remove-logfiles
14193    :END:
14195 - *Type:* boolean
14196 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
14197 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-remove-logfiles][Find modifications in git logs]]
14199 : Non-nil means remove the logfiles produced by compiling a Texinfo file.
14200 : By default, logfiles are files with these extensions: .aux, .toc,
14201 : .cp, .fn, .ky, .pg and .tp.  To define the set of logfiles to remove,
14202 : set `org-texinfo-logfiles-extensions'.
14204 ** org-html-format-headline-function =(funcall (function (closure (h...=
14205    :PROPERTIES:
14206    :CUSTOM_ID: org-html-format-headline-function
14207    :END:
14209 - *Type:* function
14210 - *Since:* Emacs version 26.1
14211 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14212 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-format-headline-function][Find modifications in git logs]]
14214 : Function to format headline text.
14216 : This function will be called with six arguments:
14217 : TODO      the todo keyword (string or nil).
14218 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
14219 : PRIORITY  the priority of the headline (integer or nil)
14220 : TEXT      the main headline text (string).
14221 : TAGS      the tags (string or nil).
14222 : INFO      the export options (plist).
14224 : The function result will be used in the section format string.
14226 ** org-archive-file-header-format =(funcall (function (closure (t...=
14227    :PROPERTIES:
14228    :CUSTOM_ID: org-archive-file-header-format
14229    :END:
14231 - *Type:* string
14232 - *Since:* Emacs version 24.4
14233 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
14234 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-file-header-format][Find modifications in git logs]]
14236 : The header format string for newly created archive files.
14237 : When nil, no header will be inserted.
14238 : When a string, a %s formatter will be replaced by the file name.
14240 ** org-protocol-default-template-key =(funcall (function (closure (t...=
14241    :PROPERTIES:
14242    :CUSTOM_ID: org-protocol-default-template-key
14243    :END:
14245 - *Type:* (choice (const nil) (string))
14246 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
14247 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-default-template-key][Find modifications in git logs]]
14249 : The default template key to use.
14250 : This is usually a single character string but can also be a
14251 : string with two characters.
14253 ** org-latex-known-warnings =(funcall (function (closure (t...=
14254    :PROPERTIES:
14255    :CUSTOM_ID: org-latex-known-warnings
14256    :END:
14258 - *Type:* (repeat (cons (string :tag "Re...
14259 - *Since:* Emacs version 26.1
14260 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
14261 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-known-warnings][Find modifications in git logs]]
14263 : Alist of regular expressions and associated messages for the user.
14264 : The regular expressions are used to find possible warnings in the
14265 : log of a latex-run.  These warnings will be reported after
14266 : calling `org-latex-compile'.
14268 ** org-clock-clocktable-formatter =(funcall (function (closure (t...=
14269    :PROPERTIES:
14270    :CUSTOM_ID: org-clock-clocktable-formatter
14271    :END:
14273 - *Type:* function
14274 - *Since:* Emacs version 24.1
14275 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
14276 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-clocktable-formatter][Find modifications in git logs]]
14278 : Function to turn clocking data into a table.
14279 : For more information, see `org-clocktable-write-default'.
14281 ** org-bibtex-tags =(funcall (function (closure (t...=
14282    :PROPERTIES:
14283    :CUSTOM_ID: org-bibtex-tags
14284    :END:
14286 - *Type:* (repeat :tag "Tag" (string))
14287 - *Since:* Emacs version 24.1
14288 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
14289 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-tags][Find modifications in git logs]]
14291 : List of tag(s) that should be added to new bib entries.
14293 ** org-lowest-priority =(funcall (function (closure (f...=
14294    :PROPERTIES:
14295    :CUSTOM_ID: org-lowest-priority
14296    :END:
14298 - *Type:* character
14299 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14300 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-lowest-priority][Find modifications in git logs]]
14302 : The lowest priority of TODO items.  A character like ?A, ?B etc.
14303 : Must have a larger ASCII number than `org-highest-priority'.
14305 ** org-agenda-log-mode-add-notes =t=
14306    :PROPERTIES:
14307    :CUSTOM_ID: org-agenda-log-mode-add-notes
14308    :END:
14310 - *Type:* boolean
14311 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
14312 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-log-mode-add-notes][Find modifications in git logs]]
14314 : Non-nil means add first line of notes to log entries in agenda views.
14315 : If a log item like a state change or a clock entry is associated with
14316 : notes, the first line of these notes will be added to the entry in the
14317 : agenda display.
14319 ** org-pretty-entities =(funcall (function (closure (f...=
14320    :PROPERTIES:
14321    :CUSTOM_ID: org-pretty-entities
14322    :END:
14324 - *Type:* boolean
14325 - *Since:* Emacs version 24.1
14326 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14327 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-pretty-entities][Find modifications in git logs]]
14329 : Non-nil means show entities as UTF8 characters.
14330 : When nil, the \name form remains in the buffer.
14332 ** org-ascii-list-margin =(funcall (function (closure (t...=
14333    :PROPERTIES:
14334    :CUSTOM_ID: org-ascii-list-margin
14335    :END:
14337 - *Type:* integer
14338 - *Since:* Emacs version 26.1
14339 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
14340 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-list-margin][Find modifications in git logs]]
14342 : Width of margin used for plain lists, in characters.
14343 : This margin applies to top level list only, not to its
14344 : sub-lists.
14346 ** org-id-track-globally =(funcall (function (closure (t...=
14347    :PROPERTIES:
14348    :CUSTOM_ID: org-id-track-globally
14349    :END:
14351 - *Type:* boolean
14352 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
14353 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-track-globally][Find modifications in git logs]]
14355 : Non-nil means track IDs through files, so that links work globally.
14356 : This work by maintaining a hash table for IDs and writing this table
14357 : to disk when exiting Emacs.  Because of this, it works best if you use
14358 : a single Emacs process, not many.
14360 : When nil, IDs are not tracked.  Links to IDs will still work within
14361 : a buffer, but not if the entry is located in another file.
14362 : IDs can still be used if the entry with the id is in the same file as
14363 : the link.
14365 ** org-publish-sitemap-file-entry-format =(funcall (function (closure (t...=
14366    :PROPERTIES:
14367    :CUSTOM_ID: org-publish-sitemap-file-entry-format
14368    :END:
14370 - *Type:* string
14371 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-compat.el][org-compat.el]]
14372 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-sitemap-file-entry-format][Find modifications in git logs]]
14374 : Format string for site-map file entry.
14375 : You could use brackets to delimit on what part the link will be.
14377 : %t is the title.
14378 : %a is the author.
14379 : %d is the date formatted using `org-publish-sitemap-date-format'.
14381 ** org-babel-latex-htlatex-packages =(funcall (function (closure (t...=
14382    :PROPERTIES:
14383    :CUSTOM_ID: org-babel-latex-htlatex-packages
14384    :END:
14386 - *Type:* (repeat (string))
14387 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-latex.el][ob-latex.el]]
14388 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-latex-htlatex-packages][Find modifications in git logs]]
14390 : Packages to use for htlatex export.
14392 ** org-export-coding-system =(funcall (function (closure (t...=
14393    :PROPERTIES:
14394    :CUSTOM_ID: org-export-coding-system
14395    :END:
14397 - *Type:* coding-system
14398 - *Since:* Emacs version 24.4
14399 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
14400 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-coding-system][Find modifications in git logs]]
14402 : Coding system for the exported file.
14404 ** org-texinfo-inactive-timestamp-format =(funcall (function (closure (t...=
14405    :PROPERTIES:
14406    :CUSTOM_ID: org-texinfo-inactive-timestamp-format
14407    :END:
14409 - *Type:* string
14410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
14411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-inactive-timestamp-format][Find modifications in git logs]]
14413 : A printf format string to be applied to inactive timestamps.
14415 ** org-habit-show-habits-only-for-today =(funcall (function (closure (t...=
14416    :PROPERTIES:
14417    :CUSTOM_ID: org-habit-show-habits-only-for-today
14418    :END:
14420 - *Type:* boolean
14421 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
14422 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-show-habits-only-for-today][Find modifications in git logs]]
14424 : If non-nil, only show habits on today's agenda, and not for future days.
14425 : Note that even when shown for future days, the graph is always
14426 : relative to the current effective date.
14428 ** org-ascii-table-use-ascii-art =(funcall (function (closure (t...=
14429    :PROPERTIES:
14430    :CUSTOM_ID: org-ascii-table-use-ascii-art
14431    :END:
14433 - *Type:* boolean
14434 - *Since:* Emacs version 24.4
14435 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
14436 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-table-use-ascii-art][Find modifications in git logs]]
14438 : Non-nil means table.el tables are turned into ascii-art.
14440 : It only makes sense when export charset is `utf-8'.  It is nil by
14441 : default since it requires ascii-art-to-unicode.el package.  You
14442 : can download it here:
14444 :   http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el.
14446 ** org-html-head-include-scripts =(funcall (function (closure (h...=
14447    :PROPERTIES:
14448    :CUSTOM_ID: org-html-head-include-scripts
14449    :END:
14451 - *Type:* boolean
14452 - *Since:* Emacs version 24.4
14453 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14454 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-head-include-scripts][Find modifications in git logs]]
14456 : Non-nil means include the JavaScript snippets in exported HTML files.
14457 : The actual script is defined in `org-html-scripts' and should
14458 : not be modified.
14460 ** org-todo-state-tags-triggers =(funcall (function (closure (f...=
14461    :PROPERTIES:
14462    :CUSTOM_ID: org-todo-state-tags-triggers
14463    :END:
14465 - *Type:* (repeat (cons (choice :tag "Wh...
14466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-state-tags-triggers][Find modifications in git logs]]
14469 : Tag changes that should be triggered by TODO state changes.
14470 : This is a list.  Each entry is
14472 :   (state-change (tag . flag) .......)
14474 : State-change can be a string with a state, and empty string to indicate the
14475 : state that has no TODO keyword, or it can be one of the symbols `todo'
14476 : or `done', meaning any not-done or done state, respectively.
14478 ** org-babel-C++-compiler =(funcall (function (closure (t...=
14479    :PROPERTIES:
14480    :CUSTOM_ID: org-babel-C++-compiler
14481    :END:
14483 - *Type:* string
14484 - *Since:* Emacs version 24.3
14485 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-C.el][ob-C.el]]
14486 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-C++-compiler][Find modifications in git logs]]
14488 : Command used to compile a C++ source code file into an executable.
14489 : May be either a command in the path, like g++
14490 : or an absolute path name, like /usr/local/bin/g++
14491 : parameter may be used, like g++ -v
14493 ** org-texinfo-link-with-unknown-path-format =(funcall (function (closure (t...=
14494    :PROPERTIES:
14495    :CUSTOM_ID: org-texinfo-link-with-unknown-path-format
14496    :END:
14498 - *Type:* string
14499 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
14500 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-link-with-unknown-path-format][Find modifications in git logs]]
14502 : Format string for links with unknown path type.
14504 ** org-table-copy-increment =(funcall (function (closure (o...=
14505    :PROPERTIES:
14506    :CUSTOM_ID: org-table-copy-increment
14507    :END:
14509 - *Type:* (choice (const :tag "Use the d...
14510 - *Since:* Emacs version 26.1
14511 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
14512 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-copy-increment][Find modifications in git logs]]
14514 : Non-nil means increment when copying current field with `\[org-table-copy-down]'.
14516 ** org-treat-insert-todo-heading-as-state-change =(funcall (function (closure (f...=
14517    :PROPERTIES:
14518    :CUSTOM_ID: org-treat-insert-todo-heading-as-state-change
14519    :END:
14521 - *Type:* boolean
14522 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14523 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-treat-insert-todo-heading-as-state-change][Find modifications in git logs]]
14525 : Non-nil means inserting a TODO heading is treated as state change.
14526 : So when the command `\[org-insert-todo-heading]' is used, state change
14527 : logging will apply if appropriate.  When nil, the new TODO item will
14528 : be inserted directly, and no logging will take place.
14530 ** org-rss-image-url ="https://orgmode.org/img/org-mo...=
14531    :PROPERTIES:
14532    :CUSTOM_ID: org-rss-image-url
14533    :END:
14535 - *Type:* string
14536 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
14537 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-image-url][Find modifications in git logs]]
14539 : The URL of the an image for the RSS feed.
14541 ** org-latex-images-centered =(funcall (function (closure (t...=
14542    :PROPERTIES:
14543    :CUSTOM_ID: org-latex-images-centered
14544    :END:
14546 - *Type:* boolean
14547 - *Since:* Emacs version 26.1
14548 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
14549 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-images-centered][Find modifications in git logs]]
14551 : When non-nil, images are centered.
14553 ** org-occur-case-fold-search =(funcall (function (closure (f...=
14554    :PROPERTIES:
14555    :CUSTOM_ID: org-occur-case-fold-search
14556    :END:
14558 - *Type:* (choice (const :tag "Case-sens...
14559 - *Since:* Emacs version 26.1
14560 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14561 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-occur-case-fold-search][Find modifications in git logs]]
14563 : Non-nil means `org-occur' should be case-insensitive.
14564 : If set to `smart' the search will be case-insensitive only if it
14565 : doesn't specify any upper case character.
14567 ** org-duration-units =(funcall (function (closure (t...=
14568    :PROPERTIES:
14569    :CUSTOM_ID: org-duration-units
14570    :END:
14572 - *Type:* (choice (const :tag "H:MM" (qu...
14573 - *Since:* Emacs version 26.1
14574 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-duration.el][org-duration.el]]
14575 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-duration-units][Find modifications in git logs]]
14577 : Conversion factor to minutes for a duration.
14579 : Each entry has the form (UNIT . MODIFIER).
14581 : In a duration string, a number followed by UNIT is multiplied by
14582 : the specified number of MODIFIER to obtain a duration in minutes.
14584 : For example, the following value
14586 :   \=`(("min" . 1)
14587 :     ("h" . 60)
14588 :     ("d" . ,(* 60 8))
14589 :     ("w" . ,(* 60 8 5))
14590 :     ("m" . ,(* 60 8 5 4))
14591 :     ("y" . ,(* 60 8 5 4 10)))
14593 : is meaningful if you work an average of 8 hours per day, 5 days
14594 : a week, 4 weeks a month and 10 months a year.
14596 : When setting this variable outside the Customize interface, make
14597 : sure to call the following command:
14599 :   \[org-duration-set-regexps]
14601 ** org-man-source-highlight =(funcall (function (closure (o...=
14602    :PROPERTIES:
14603    :CUSTOM_ID: org-man-source-highlight
14604    :END:
14606 - *Type:* boolean
14607 - *Since:* Emacs version 24.4
14608 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
14609 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-source-highlight][Find modifications in git logs]]
14611 : Use GNU source highlight to embellish source blocks
14613 ** org-table-formula-evaluate-inline =(funcall (function (closure (o...=
14614    :PROPERTIES:
14615    :CUSTOM_ID: org-table-formula-evaluate-inline
14616    :END:
14618 - *Type:* boolean
14619 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
14620 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-formula-evaluate-inline][Find modifications in git logs]]
14622 : Non-nil means TAB and RET evaluate a formula in current table field.
14623 : If the current field starts with an equal sign, it is assumed to be a formula
14624 : which should be evaluated as described in the manual and in the documentation
14625 : string of the command `org-table-eval-formula'.  This feature requires the
14626 : Emacs calc package.
14627 : When this variable is nil, formula calculation is only available through
14628 : the command `\[org-table-eval-formula]'.
14630 ** org-capture-templates =(funcall (function (closure (o...=
14631    :PROPERTIES:
14632    :CUSTOM_ID: org-capture-templates
14633    :END:
14635 - *Type:* (repeat (choice :value ("" "" ...
14636 - *Since:* Emacs version 24.1
14637 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
14638 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-templates][Find modifications in git logs]]
14640 : Templates for the creation of new entries.
14642 : Each entry is a list with the following items:
14644 : keys         The keys that will select the template, as a string, characters
14645 :              only, for example "a" for a template to be selected with a
14646 :              single key, or "bt" for selection with two keys.  When using
14647 :              several keys, keys using the same prefix key must be together
14648 :              in the list and preceded by a 2-element entry explaining the
14649 :              prefix key, for example
14651 :                      ("b" "Templates for marking stuff to buy")
14653 :              The "C" key is used by default for quick access to the
14654 :              customization of the template variable.  But if you want to use
14655 :              that key for a template, you can.
14657 : description  A short string describing the template, will be shown during
14658 :              selection.
14660 : type         The type of entry.  Valid types are:
14661 :                entry       an Org node, with a headline.  Will be filed
14662 :                            as the child of the target entry or as a
14663 :                            top-level entry.
14664 :                item        a plain list item, will be placed in the
14665 :                            first plain list at the target
14666 :                            location.
14667 :                checkitem   a checkbox item.  This differs from the
14668 :                            plain list item only is so far as it uses a
14669 :                            different default template.
14670 :                table-line  a new line in the first table at target location.
14671 :                plain       text to be inserted as it is.
14673 : target       Specification of where the captured item should be placed.
14674 :              In Org files, targets usually define a node.  Entries will
14675 :              become children of this node, other types will be added to the
14676 :              table or list in the body of this node.
14678 :              Most target specifications contain a file name.  If that file
14679 :              name is the empty string, it defaults to `org-default-notes-file'.
14680 :              A file can also be given as a variable or as a function called
14681 :              with no argument.  When an absolute path is not specified for a
14682 :              target, it is taken as relative to `org-directory'.
14684 :              Valid values are:
14686 :              (file "path/to/file")
14687 :                  Text will be placed at the beginning or end of that file
14689 :              (id "id of existing Org entry")
14690 :                  File as child of this entry, or in the body of the entry
14692 :              (file+headline "path/to/file" "node headline")
14693 :                  Fast configuration if the target heading is unique in the file
14695 :              (file+olp "path/to/file" "Level 1 heading" "Level 2" ...)
14696 :                  For non-unique headings, the full outline path is safer
14698 :              (file+regexp  "path/to/file" "regexp to find location")
14699 :                  File to the entry matching regexp
14701 :              (file+olp+datetree "path/to/file" "Level 1 heading" ...)
14702 :                  Will create a heading in a date tree for today's date.
14703 :                  If no heading is given, the tree will be on top level.
14704 :                  To prompt for date instead of using TODAY, use the
14705 :                  :time-prompt property.  To create a week-tree, use the
14706 :                  :tree-type property.
14708 :              (file+function "path/to/file" function-finding-location)
14709 :                  A function to find the right location in the file
14711 :              (clock)
14712 :                 File to the entry that is currently being clocked
14714 :              (function function-finding-location)
14715 :                 Most general way: write your own function which both visits
14716 :                 the file and moves point to the right location
14718 : template     The template for creating the capture item.  If you leave this
14719 :              empty, an appropriate default template will be used.  See below
14720 :              for more details.  Instead of a string, this may also be one of
14722 :                  (file "/path/to/template-file")
14723 :                  (function function-returning-the-template)
14725 :              in order to get a template from a file, or dynamically
14726 :              from a function.
14728 : The rest of the entry is a property list of additional options.  Recognized
14729 : properties are:
14731 :  :prepend            Normally newly captured information will be appended at
14732 :                      the target location (last child, last table line,
14733 :                      last list item...).  Setting this property will
14734 :                      change that.
14736 :  :immediate-finish   When set, do not offer to edit the information, just
14737 :                      file it away immediately.  This makes sense if the
14738 :                      template only needs information that can be added
14739 :                      automatically.
14741 :  :jump-to-captured   When set, jump to the captured entry when finished.
14743 :  :empty-lines        Set this to the number of lines the should be inserted
14744 :                      before and after the new item.  Default 0, only common
14745 :                      other value is 1.
14747 :  :empty-lines-before Set this to the number of lines the should be inserted
14748 :                      before the new item.  Overrides :empty-lines for the
14749 :                      number lines inserted before.
14751 :  :empty-lines-after  Set this to the number of lines the should be inserted
14752 :                      after the new item.  Overrides :empty-lines for the
14753 :                      number of lines inserted after.
14755 :  :clock-in           Start the clock in this item.
14757 :  :clock-keep         Keep the clock running when filing the captured entry.
14759 :  :clock-resume       Start the interrupted clock when finishing the capture.
14760 :                      Note that :clock-keep has precedence over :clock-resume.
14761 :                      When setting both to t, the current clock will run and
14762 :                      the previous one will not be resumed.
14764 :  :time-prompt        Prompt for a date/time to be used for date/week trees
14765 :                      and when filling the template.
14767 :  :tree-type          When `week', make a week tree instead of the month tree.
14769 :  :unnarrowed         Do not narrow the target buffer, simply show the
14770 :                      full buffer.  Default is to narrow it so that you
14771 :                      only see the new stuff.
14773 :  :table-line-pos     Specification of the location in the table where the
14774 :                      new line should be inserted.  It should be a string like
14775 :                      "II-3", meaning that the new line should become the
14776 :                      third line before the second horizontal separator line.
14778 :  :kill-buffer        If the target file was not yet visited by a buffer when
14779 :                      capture was invoked, kill the buffer again after capture
14780 :                      is finalized.
14782 : The template defines the text to be inserted.  Often this is an
14783 : Org mode entry (so the first line should start with a star) that
14784 : will be filed as a child of the target headline.  It can also be
14785 : freely formatted text.  Furthermore, the following %-escapes will
14786 : be replaced with content and expanded:
14788 :   %[pathname] Insert the contents of the file given by
14789 :               `pathname'.  These placeholders are expanded at the very
14790 :               beginning of the process so they can be used to extend the
14791 :               current template.
14792 :   %(sexp)     Evaluate elisp `(sexp)' and replace it with the results.
14793 :               Only placeholders pre-existing within the template, or
14794 :               introduced with %[pathname] are expanded this way.  Since this
14795 :               happens after expanding non-interactive %-escapes, those can
14796 :               be used to fill the expression.
14797 :   %<...>      The result of format-time-string on the ... format specification.
14798 :   %t          Time stamp, date only.
14799 :   %T          Time stamp with date and time.
14800 :   %u, %U      Like the above, but inactive time stamps.
14801 :   %i          Initial content, copied from the active region.  If %i is
14802 :               indented, the entire inserted text will be indented as well.
14803 :   %a          Annotation, normally the link created with `org-store-link'.
14804 :   %A          Like %a, but prompt for the description part.
14805 :   %l          Like %a, but only insert the literal link.
14806 :   %c          Current kill ring head.
14807 :   %x          Content of the X clipboard.
14808 :   %k          Title of currently clocked task.
14809 :   %K          Link to currently clocked task.
14810 :   %n          User name (taken from the variable `user-full-name').
14811 :   %f          File visited by current buffer when org-capture was called.
14812 :   %F          Full path of the file or directory visited by current buffer.
14813 :   %:keyword   Specific information for certain link types, see below.
14814 :   %^g         Prompt for tags, with completion on tags in target file.
14815 :   %^G         Prompt for tags, with completion on all tags in all agenda files.
14816 :   %^t         Like %t, but prompt for date.  Similarly %^T, %^u, %^U.
14817 :               You may define a prompt like: %^{Please specify birthday}t
14818 :   %^C         Interactive selection of which kill or clip to use.
14819 :   %^L         Like %^C, but insert as link.
14820 :   %^{prop}p   Prompt the user for a value for property `prop'.
14821 :   %^{prompt}  Prompt the user for a string and replace this sequence with it.
14822 :               A default value and a completion table ca be specified like this:
14823 :               %^{prompt|default|completion2|completion3|...}.
14824 :   %?          After completing the template, position cursor here.
14825 :   %\1 ... %\N Insert the text entered at the nth %^{prompt}, where N
14826 :               is a number, starting from 1.
14828 : Apart from these general escapes, you can access information specific to
14829 : the link type that is created.  For example, calling `org-capture' in emails
14830 : or in Gnus will record the author and the subject of the message, which you
14831 : can access with "%:from" and "%:subject", respectively.  Here is a
14832 : complete list of what is recorded for each link type.
14834 : Link type               |  Available information
14835 : ------------------------+------------------------------------------------------
14836 : bbdb                    |  %:type %:name %:company
14837 : vm, wl, mh, mew, rmail, |  %:type %:subject %:message-id
14838 : gnus                    |  %:from %:fromname %:fromaddress
14839 :                         |  %:to   %:toname   %:toaddress
14840 :                         |  %:fromto (either "to NAME" or "from NAME")
14841 :                         |  %:date %:date-timestamp (as active timestamp)
14842 :                         |  %:date-timestamp-inactive (as inactive timestamp)
14843 : gnus                    |  %:group, for messages also all email fields
14844 : eww, w3, w3m            |  %:type %:url
14845 : info                    |  %:type %:file %:node
14846 : calendar                |  %:type %:date
14848 : When you need to insert a literal percent sign in the template,
14849 : you can escape ambiguous cases with a backward slash, e.g., \%i.
14851 ** org-latex-packages-alist =(funcall (function (closure (f...=
14852    :PROPERTIES:
14853    :CUSTOM_ID: org-latex-packages-alist
14854    :END:
14856 - *Type:* (repeat (choice (list :tag "op...
14857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-packages-alist][Find modifications in git logs]]
14860 : Alist of packages to be inserted in every LaTeX header.
14862 : These will be inserted after `org-latex-default-packages-alist'.
14863 : Each element is either a cell or a string.
14865 : A cell is of the format:
14867 :     ("options" "package" SNIPPET-FLAG)
14869 : SNIPPET-FLAG, when non-nil, indicates that this package is also
14870 : needed when turning LaTeX snippets into images for inclusion into
14871 : non-LaTeX output.
14873 : A string will be inserted as-is in the header of the document.
14875 : Make sure that you only list packages here which:
14877 :   - you want in every file;
14878 :   - do not conflict with the setup in `org-format-latex-header';
14879 :   - do not conflict with the default packages in
14880 :     `org-latex-default-packages-alist'.
14882 ** org-latex-title-command =(funcall (function (closure (t...=
14883    :PROPERTIES:
14884    :CUSTOM_ID: org-latex-title-command
14885    :END:
14887 - *Type:* (string :tag "Format string")
14888 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
14889 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-title-command][Find modifications in git logs]]
14891 : The command used to insert the title just after \begin{document}.
14893 : This format string may contain these elements:
14895 :   %a for AUTHOR keyword
14896 :   %t for TITLE keyword
14897 :   %s for SUBTITLE keyword
14898 :   %k for KEYWORDS line
14899 :   %d for DESCRIPTION line
14900 :   %c for CREATOR line
14901 :   %l for Language keyword
14902 :   %L for capitalized language keyword
14903 :   %D for DATE keyword
14905 : If you need to use a "%" character, you need to escape it
14906 : like that: "%%".
14908 : Setting :latex-title-command in publishing projects will take
14909 : precedence over this variable.
14911 ** org-bibtex-tags-are-keywords =(funcall (function (closure (t...=
14912    :PROPERTIES:
14913    :CUSTOM_ID: org-bibtex-tags-are-keywords
14914    :END:
14916 - *Type:* boolean
14917 - *Since:* Emacs version 24.1
14918 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
14919 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-tags-are-keywords][Find modifications in git logs]]
14921 : Convert the value of the keywords field to tags and vice versa.
14923 : When non-nil, comma-separated entries in a bibtex entry's keywords
14924 : field will be converted to Org tags.  Note: spaces will be escaped
14925 : with underscores, and characters that are not permitted in Org
14926 : tags will be removed.
14928 : When non-nil, local tags in an Org entry will be exported as
14929 : a comma-separated string of keywords when exported to bibtex.
14930 : If `org-bibtex-inherit-tags' is non-nil, inherited tags will also
14931 : be exported as keywords.  Tags defined in `org-bibtex-tags' or
14932 : `org-bibtex-no-export-tags' will not be exported.
14934 ** org-html-home/up-format =(funcall (function (closure (h...=
14935    :PROPERTIES:
14936    :CUSTOM_ID: org-html-home/up-format
14937    :END:
14939 - *Type:* string
14940 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
14941 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-home/up-format][Find modifications in git logs]]
14943 : Snippet used to insert the HOME and UP links.
14944 : This is a format string, the first %s will receive the UP link,
14945 : the second the HOME link.  If both `org-html-link-up' and
14946 : `org-html-link-home' are empty, the entire snippet will be
14947 : ignored.
14949 ** org-mobile-checksum-binary =(funcall (function (closure (t...=
14950    :PROPERTIES:
14951    :CUSTOM_ID: org-mobile-checksum-binary
14952    :END:
14954 - *Type:* string
14955 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
14956 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-checksum-binary][Find modifications in git logs]]
14958 : Executable used for computing checksums of agenda files.
14960 ** org-clock-mode-line-total =(funcall (function (closure (t...=
14961    :PROPERTIES:
14962    :CUSTOM_ID: org-clock-mode-line-total
14963    :END:
14965 - *Type:* (choice (const :tag "Current c...
14966 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
14967 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-mode-line-total][Find modifications in git logs]]
14969 : Default setting for the time included for the mode line clock.
14970 : This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
14971 : Allowed values are:
14973 : current  Only the time in the current instance of the clock
14974 : today    All time clocked into this task today
14975 : repeat   All time clocked into this task since last repeat
14976 : all      All time ever recorded for this task
14977 : auto     Automatically, either `all', or `repeat' for repeating tasks
14979 ** org-structure-template-alist =(funcall (function (closure (a...=
14980    :PROPERTIES:
14981    :CUSTOM_ID: org-structure-template-alist
14982    :END:
14984 - *Type:* (repeat (list (string :tag "Ke...
14985 - *Since:* Emacs version 26.1
14986 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
14987 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-structure-template-alist][Find modifications in git logs]]
14989 : Structure completion elements.
14990 : This is a list of abbreviation keys and values.  The value gets inserted
14991 : if you type `<' followed by the key and then press the completion key,
14992 : usually `TAB'.  %file will be replaced by a file name after prompting
14993 : for the file using completion.  The cursor will be placed at the position
14994 : of the `?' in the template.
14995 : There are two templates for each key, the first uses the original Org syntax,
14996 : the second uses Emacs Muse-like syntax tags.  These Muse-like tags become
14997 : the default when the /org-mtags.el/ module has been loaded.  See also the
14998 : variable `org-mtags-prefer-muse-templates'.
15000 ** orgtbl-radio-table-templates =(funcall (function (closure (o...=
15001    :PROPERTIES:
15002    :CUSTOM_ID: orgtbl-radio-table-templates
15003    :END:
15005 - *Type:* (repeat (list (symbol :tag "Ma...
15006 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
15007 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-radio-table-templates][Find modifications in git logs]]
15009 : Templates for radio tables in different major modes.
15010 : Each template must define lines that will be treated as a comment and that
15011 : must contain the "BEGIN RECEIVE ORGTBL %n" and "END RECEIVE ORGTBL"
15012 : lines where "%n" will be replaced with the name of the table during
15013 : insertion of the template.  The transformed table will later be inserted
15014 : between these lines.
15016 : The template should also contain a minimal table in a multiline comment.
15017 : If multiline comments are not possible in the buffer language,
15018 : you can pack it into a string that will not be used when the code
15019 : is compiled or executed.  Above the table will you need a line with
15020 : the fixed string "#+ORGTBL: SEND", followed by instruction on how to
15021 : convert the table into a data structure useful in the
15022 : language of the buffer.  Check the manual for the section on
15023 : "Translator functions", and more generally check out
15024 : https://orgmode.org/manual/Tables-in-arbitrary-syntax.html#Tables-in-arbitrary-syntax
15026 : All occurrences of %n in a template will be replaced with the name of the
15027 : table, obtained by prompting the user.
15029 ** org-odt-use-date-fields =(funcall (function (closure (h...=
15030    :PROPERTIES:
15031    :CUSTOM_ID: org-odt-use-date-fields
15032    :END:
15034 - *Type:* boolean
15035 - *Since:* Emacs version 24.4
15036 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
15037 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-use-date-fields][Find modifications in git logs]]
15039 : Non-nil, if timestamps should be exported as date fields.
15041 : When nil, export timestamps as plain text.
15043 : When non-nil, map `org-time-stamp-custom-formats' to a pair of
15044 : OpenDocument date-styles with names "OrgDate1" and "OrgDate2"
15045 : respectively.  A timestamp with no time component is formatted
15046 : with style "OrgDate1" while one with explicit hour and minutes
15047 : is formatted with style "OrgDate2".
15049 : This feature is experimental.  Most (but not all) of the common
15050 : %-specifiers in `format-time-string' are supported.
15051 : Specifically, locale-dependent specifiers like "%c", "%x" are
15052 : formatted as canonical Org timestamps.  For finer control, avoid
15053 : these %-specifiers.
15055 : Textual specifiers like "%b", "%h", "%B", "%a", "%A"
15056 : etc., are displayed by the application in the default language
15057 : and country specified in `org-odt-styles-file'.  Note that the
15058 : default styles file uses language "en" and country "GB".  You
15059 : can localize the week day and month strings in the exported
15060 : document by setting the default language and country either using
15061 : the application UI or through a custom styles file.
15063 : See `org-odt--build-date-styles' for implementation details.
15065 ** org-email-link-description-format =(funcall (function (closure (f...=
15066    :PROPERTIES:
15067    :CUSTOM_ID: org-email-link-description-format
15068    :END:
15070 - *Type:* string
15071 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15072 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-email-link-description-format][Find modifications in git logs]]
15074 : Format of the description part of a link to an email or usenet message.
15075 : The following %-escapes will be replaced by corresponding information:
15077 : %F   full "From" field
15078 : %f   name, taken from "From" field, address if no name
15079 : %T   full "To" field
15080 : %t   first name in "To" field, address if no name
15081 : %c   correspondent.  Usually "from NAME", but if you sent it yourself, it
15082 :      will be "to NAME".  See also the variable `org-from-is-user-regexp'.
15083 : %s   subject
15084 : %d   date
15085 : %m   message-id.
15087 : You may use normal field width specification between the % and the letter.
15088 : This is for example useful to limit the length of the subject.
15090 : Examples: "%f on: %.30s", "Email from %f", "Email %c"
15092 ** org-agenda-inhibit-startup =(funcall (function (closure (o...=
15093    :PROPERTIES:
15094    :CUSTOM_ID: org-agenda-inhibit-startup
15095    :END:
15097 - *Type:* boolean
15098 - *Since:* Emacs version 24.3
15099 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15100 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-inhibit-startup][Find modifications in git logs]]
15102 : Inhibit startup when preparing agenda buffers.
15103 : When this variable is t, the initialization of the Org agenda
15104 : buffers is inhibited: e.g. the visibility state is not set, the
15105 : tables are not re-aligned, etc.
15107 ** org-M-RET-may-split-line =(funcall (function (closure (f...=
15108    :PROPERTIES:
15109    :CUSTOM_ID: org-M-RET-may-split-line
15110    :END:
15112 - *Type:* (choice (const :tag "Always" t...
15113 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15114 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-M-RET-may-split-line][Find modifications in git logs]]
15116 : Non-nil means M-RET will split the line at the cursor position.
15117 : When nil, it will go to the end of the line before making a
15118 : new line.
15119 : You may also set this option in a different way for different
15120 : contexts.  Valid contexts are:
15122 : headline  when creating a new headline
15123 : item      when creating a new item
15124 : table     in a table field
15125 : default   the value to be used for all contexts not explicitly
15126 :           customized
15128 ** org-agenda-show-future-repeats =t=
15129    :PROPERTIES:
15130    :CUSTOM_ID: org-agenda-show-future-repeats
15131    :END:
15133 - *Type:* (choice (const :tag "Show all ...
15134 - *Since:* Emacs version 26.1
15135 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15136 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-future-repeats][Find modifications in git logs]]
15138 : Non-nil shows repeated entries in the future part of the agenda.
15139 : When set to the symbol `next' only the first future repeat is shown.
15141 ** org-koma-letter-author =(quote user-full-name)=
15142    :PROPERTIES:
15143    :CUSTOM_ID: org-koma-letter-author
15144    :END:
15146 - *Type:* (radio (function-item user-ful...
15147 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
15148 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-author][Find modifications in git logs]]
15150 : Sender's name.
15152 : This variable defaults to calling the function `user-full-name'
15153 : which just returns the current function `user-full-name'.
15154 : Alternatively a string, nil or a function may be given.
15155 : Functions must return a string.
15157 : This option can also be set with the AUTHOR keyword.
15159 ** org-bibtex-prefix =(funcall (function (closure (t...=
15160    :PROPERTIES:
15161    :CUSTOM_ID: org-bibtex-prefix
15162    :END:
15164 - *Type:* (choice (const nil) (string))
15165 - *Since:* Emacs version 24.1
15166 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
15167 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-prefix][Find modifications in git logs]]
15169 : Optional prefix for all bibtex property names.
15170 : For example setting to `BIB_' would allow interoperability with fireforg.
15172 ** org-latex-diary-timestamp-format =(funcall (function (closure (t...=
15173    :PROPERTIES:
15174    :CUSTOM_ID: org-latex-diary-timestamp-format
15175    :END:
15177 - *Type:* string
15178 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
15179 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-diary-timestamp-format][Find modifications in git logs]]
15181 : A printf format string to be applied to diary timestamps.
15183 ** org-attach-archive-delete =(funcall (function (closure (t...=
15184    :PROPERTIES:
15185    :CUSTOM_ID: org-attach-archive-delete
15186    :END:
15188 - *Type:* (choice (const :tag "Never del...
15189 - *Since:* Emacs version 26.1
15190 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
15191 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-archive-delete][Find modifications in git logs]]
15193 : Non-nil means attachments are deleted upon archiving a subtree.
15194 : When set to `query', ask the user instead.
15196 ** org-html-format-inlinetask-function =(funcall (function (closure (h...=
15197    :PROPERTIES:
15198    :CUSTOM_ID: org-html-format-inlinetask-function
15199    :END:
15201 - *Type:* function
15202 - *Since:* Emacs version 26.1
15203 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
15204 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-format-inlinetask-function][Find modifications in git logs]]
15206 : Function called to format an inlinetask in HTML code.
15208 : The function must accept seven parameters:
15209 :   TODO      the todo keyword, as a string
15210 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
15211 :   PRIORITY  the inlinetask priority, as a string
15212 :   NAME      the inlinetask name, as a string.
15213 :   TAGS      the inlinetask tags, as a list of strings.
15214 :   CONTENTS  the contents of the inlinetask, as a string.
15215 :   INFO      the export options, as a plist
15217 : The function should return the string to be exported.
15219 ** org-capture-use-agenda-date =(funcall (function (closure (o...=
15220    :PROPERTIES:
15221    :CUSTOM_ID: org-capture-use-agenda-date
15222    :END:
15224 - *Type:* boolean
15225 - *Since:* Emacs version 24.3
15226 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
15227 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-use-agenda-date][Find modifications in git logs]]
15229 : Non-nil means use the date at point when capturing from agendas.
15230 : When nil, you can still capture using the date at point with
15231 : `\[org-agenda-capture]'.
15233 ** org-refile-use-outline-path =(funcall (function (closure (f...=
15234    :PROPERTIES:
15235    :CUSTOM_ID: org-refile-use-outline-path
15236    :END:
15238 - *Type:* (choice (const :tag "Not" nil)...
15239 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15240 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-use-outline-path][Find modifications in git logs]]
15242 : Non-nil means provide refile targets as paths.
15243 : So a level 3 headline will be available as level1/level2/level3.
15245 : When the value is `file', also include the file name (without directory)
15246 : into the path.  In this case, you can also stop the completion after
15247 : the file name, to get entries inserted as top level in the file.
15249 : When `full-file-path', include the full file path.
15251 : When `buffer-name', use the buffer name.
15253 ** org-latex-inactive-timestamp-format =(funcall (function (closure (t...=
15254    :PROPERTIES:
15255    :CUSTOM_ID: org-latex-inactive-timestamp-format
15256    :END:
15258 - *Type:* string
15259 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
15260 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-inactive-timestamp-format][Find modifications in git logs]]
15262 : A printf format string to be applied to inactive timestamps.
15264 ** org-latex-pdf-process =(funcall (function (closure (t...=
15265    :PROPERTIES:
15266    :CUSTOM_ID: org-latex-pdf-process
15267    :END:
15269 - *Type:* (choice (repeat :tag "Shell co...
15270 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
15271 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-pdf-process][Find modifications in git logs]]
15273 : Commands to process a LaTeX file to a PDF file.
15275 : This is a list of strings, each of them will be given to the
15276 : shell as a command.  %f in the command will be replaced by the
15277 : relative file name, %F by the absolute file name, %b by the file
15278 : base name (i.e. without directory and extension parts), %o by the
15279 : base directory of the file, %O by the absolute file name of the
15280 : output file, %latex is the LaTeX compiler (see
15281 : `org-latex-compiler'), and %bib is the BibTeX-like compiler (see
15282 : `org-latex-bib-compiler').
15284 : The reason why this is a list is that it usually takes several
15285 : runs of `pdflatex', maybe mixed with a call to `bibtex'.  Org
15286 : does not have a clever mechanism to detect which of these
15287 : commands have to be run to get to a stable result, and it also
15288 : does not do any error checking.
15290 : Consider a smart LaTeX compiler such as `texi2dvi' or `latexmk',
15291 : which calls the "correct" combinations of auxiliary programs.
15293 : Alternatively, this may be a Lisp function that does the
15294 : processing, so you could use this to apply the machinery of
15295 : AUCTeX or the Emacs LaTeX mode.  This function should accept the
15296 : file name as its single argument.
15298 ** org-agenda-entry-text-exclude-regexps =nil=
15299    :PROPERTIES:
15300    :CUSTOM_ID: org-agenda-entry-text-exclude-regexps
15301    :END:
15303 - *Type:* (repeat (regexp))
15304 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15305 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-exclude-regexps][Find modifications in git logs]]
15307 : List of regular expressions to clean up entry text.
15308 : The complete matches of all regular expressions in this list will be
15309 : removed from entry text before it is shown in the agenda.
15311 ** org-latex-listings =(funcall (function (closure (t...=
15312    :PROPERTIES:
15313    :CUSTOM_ID: org-latex-listings
15314    :END:
15316 - *Type:* (choice (const :tag "Use listi...
15317 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
15318 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-listings][Find modifications in git logs]]
15320 : Non-nil means export source code using the listings package.
15322 : This package will fontify source code, possibly even with color.
15323 : If you want to use this, you also need to make LaTeX use the
15324 : listings package, and if you want to have color, the color
15325 : package.  Just add these to `org-latex-packages-alist', for
15326 : example using customize, or with something like:
15328 :   (require \='ox-latex)
15329 :   (add-to-list \='org-latex-packages-alist \='("" "listings"))
15330 :   (add-to-list \='org-latex-packages-alist \='("" "color"))
15332 : Alternatively,
15334 :   (setq org-latex-listings \='minted)
15336 : causes source code to be exported using the minted package as
15337 : opposed to listings.  If you want to use minted, you need to add
15338 : the minted package to `org-latex-packages-alist', for example
15339 : using customize, or with
15341 :   (require \='ox-latex)
15342 :   (add-to-list \='org-latex-packages-alist \='("newfloat" "minted"))
15344 : In addition, it is necessary to install pygments
15345 : (http://pygments.org), and to configure the variable
15346 : `org-latex-pdf-process' so that the -shell-escape option is
15347 : passed to pdflatex.
15349 : The minted choice has possible repercussions on the preview of
15350 : latex fragments (see `org-preview-latex-fragment').  If you run
15351 : into previewing problems, please consult
15353 :   https://orgmode.org/worg/org-tutorials/org-latex-preview.html
15355 ** org-columns-ellipses =(funcall (function (closure (f...=
15356    :PROPERTIES:
15357    :CUSTOM_ID: org-columns-ellipses
15358    :END:
15360 - *Type:* string
15361 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15362 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-ellipses][Find modifications in git logs]]
15364 : The ellipses to be used when a field in column view is truncated.
15365 : When this is the empty string, as many characters as possible are shown,
15366 : but then there will be no visual indication that the field has been truncated.
15367 : When this is a string of length N, the last N characters of a truncated
15368 : field are replaced by this string.  If the column is narrower than the
15369 : ellipses string, only part of the ellipses string will be shown.
15371 ** org-clock-report-include-clocking-task =(funcall (function (closure (t...=
15372    :PROPERTIES:
15373    :CUSTOM_ID: org-clock-report-include-clocking-task
15374    :END:
15376 - *Type:* boolean
15377 - *Since:* Emacs version 24.1
15378 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
15379 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-report-include-clocking-task][Find modifications in git logs]]
15381 : When non-nil, include the current clocking task time in clock reports.
15383 ** org-html-klipsify-src =(funcall (function (closure (h...=
15384    :PROPERTIES:
15385    :CUSTOM_ID: org-html-klipsify-src
15386    :END:
15388 - *Type:* boolean
15389 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
15390 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-klipsify-src][Find modifications in git logs]]
15392 : When non-nil, source code blocks are editable in exported presentation.
15394 ** org-latex-to-mathml-jar-file =(funcall (function (closure (f...=
15395    :PROPERTIES:
15396    :CUSTOM_ID: org-latex-to-mathml-jar-file
15397    :END:
15399 - *Type:* (choice (const :tag "None" nil...
15400 - *Since:* Emacs version 24.1
15401 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15402 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-to-mathml-jar-file][Find modifications in git logs]]
15404 : Value of"%j" in `org-latex-to-mathml-convert-command'.
15405 : Use this to specify additional executable file say a jar file.
15407 : When using MathToWeb as the converter, specify the full-path to
15408 : your mathtoweb.jar file.
15410 ** org-agenda-sorting-strategy =(quote ((agenda habit-down tim...=
15411    :PROPERTIES:
15412    :CUSTOM_ID: org-agenda-sorting-strategy
15413    :END:
15415 - *Type:* (choice (repeat :tag "General"...
15416 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15417 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-sorting-strategy][Find modifications in git logs]]
15419 : Sorting structure for the agenda items of a single day.
15420 : This is a list of symbols which will be used in sequence to determine
15421 : if an entry should be listed before another entry.  The following
15422 : symbols are recognized:
15424 : time-up            Put entries with time-of-day indications first, early first
15425 : time-down          Put entries with time-of-day indications first, late first
15426 : timestamp-up       Sort by any timestamp, early first
15427 : timestamp-down     Sort by any timestamp, late first
15428 : scheduled-up       Sort by scheduled timestamp, early first
15429 : scheduled-down     Sort by scheduled timestamp, late first
15430 : deadline-up        Sort by deadline timestamp, early first
15431 : deadline-down      Sort by deadline timestamp, late first
15432 : ts-up              Sort by active timestamp, early first
15433 : ts-down            Sort by active timestamp, late first
15434 : tsia-up            Sort by inactive timestamp, early first
15435 : tsia-down          Sort by inactive timestamp, late first
15436 : category-keep      Keep the default order of categories, corresponding to the
15437 :                  sequence in `org-agenda-files'.
15438 : category-up        Sort alphabetically by category, A-Z.
15439 : category-down      Sort alphabetically by category, Z-A.
15440 : tag-up             Sort alphabetically by last tag, A-Z.
15441 : tag-down           Sort alphabetically by last tag, Z-A.
15442 : priority-up        Sort numerically by priority, high priority last.
15443 : priority-down      Sort numerically by priority, high priority first.
15444 : todo-state-up      Sort by todo state, tasks that are done last.
15445 : todo-state-down    Sort by todo state, tasks that are done first.
15446 : effort-up          Sort numerically by estimated effort, high effort last.
15447 : effort-down        Sort numerically by estimated effort, high effort first.
15448 : user-defined-up    Sort according to `org-agenda-cmp-user-defined', high last.
15449 : user-defined-down  Sort according to `org-agenda-cmp-user-defined', high first.
15450 : habit-up           Put entries that are habits first
15451 : habit-down         Put entries that are habits last
15452 : alpha-up           Sort headlines alphabetically
15453 : alpha-down         Sort headlines alphabetically, reversed
15455 : The different possibilities will be tried in sequence, and testing stops
15456 : if one comparison returns a "not-equal".  For example, the default
15457 :     '(time-up category-keep priority-down)
15458 : means: Pull out all entries having a specified time of day and sort them,
15459 : in order to make a time schedule for the current day the first thing in the
15460 : agenda listing for the day.  Of the entries without a time indication, keep
15461 : the grouped in categories, don't sort the categories, but keep them in
15462 : the sequence given in `org-agenda-files'.  Within each category sort by
15463 : priority.
15465 : Leaving out `category-keep' would mean that items will be sorted across
15466 : categories by priority.
15468 : Instead of a single list, this can also be a set of list for specific
15469 : contents, with a context symbol in the car of the list, any of
15470 : `agenda', `todo', `tags', `search' for the corresponding agenda views.
15472 : Custom commands can bind this variable in the options section.
15474 ** org-inlinetask-show-first-star =(funcall (function (closure (t...=
15475    :PROPERTIES:
15476    :CUSTOM_ID: org-inlinetask-show-first-star
15477    :END:
15479 - *Type:* boolean
15480 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
15481 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-show-first-star][Find modifications in git logs]]
15483 : Non-nil means display the first star of an inline task as additional marker.
15484 : When nil, the first star is not shown.
15486 ** org-html-htmlize-font-prefix =(funcall (function (closure (h...=
15487    :PROPERTIES:
15488    :CUSTOM_ID: org-html-htmlize-font-prefix
15489    :END:
15491 - *Type:* string
15492 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
15493 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-htmlize-font-prefix][Find modifications in git logs]]
15495 : The prefix for CSS class names for htmlize font specifications.
15497 ** org-texinfo-tables-verbatim =(funcall (function (closure (t...=
15498    :PROPERTIES:
15499    :CUSTOM_ID: org-texinfo-tables-verbatim
15500    :END:
15502 - *Type:* boolean
15503 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
15504 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-tables-verbatim][Find modifications in git logs]]
15506 : When non-nil, tables are exported verbatim.
15508 ** org-odt-pixels-per-inch =(funcall (function (closure (h...=
15509    :PROPERTIES:
15510    :CUSTOM_ID: org-odt-pixels-per-inch
15511    :END:
15513 - *Type:* float
15514 - *Since:* Emacs version 24.4
15515 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
15516 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-pixels-per-inch][Find modifications in git logs]]
15518 : Scaling factor for converting images pixels to inches.
15519 : Use this for sizing of embedded images.  See Info node `(org)
15520 : Images in ODT export' for more information.
15522 ** org-html-viewport =(funcall (function (closure (h...=
15523    :PROPERTIES:
15524    :CUSTOM_ID: org-html-viewport
15525    :END:
15527 - *Type:* (choice (const :tag "Disable" ...
15528 - *Since:* Emacs version 26.1
15529 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
15530 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-viewport][Find modifications in git logs]]
15532 : Viewport options for mobile-optimized sites.
15534 : The following values are recognized
15536 : width          Size of the viewport.
15537 : initial-scale  Zoom level when the page is first loaded.
15538 : minimum-scale  Minimum allowed zoom level.
15539 : maximum-scale  Maximum allowed zoom level.
15540 : user-scalable  Whether zoom can be changed.
15542 : The viewport meta tag is inserted if this variable is non-nil.
15544 : See the following site for a reference:
15545 : https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
15547 ** org-babel-process-comment-text =(funcall (function (closure (t...=
15548    :PROPERTIES:
15549    :CUSTOM_ID: org-babel-process-comment-text
15550    :END:
15552 - *Type:* function
15553 - *Since:* Emacs version 24.1
15554 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
15555 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-process-comment-text][Find modifications in git logs]]
15557 : Function called to process raw Org text collected to be
15558 : inserted as comments in tangled source-code files.  The function
15559 : should take a single string argument and return a string
15560 : result.  The default value is `org-remove-indentation'.
15562 ** org-koma-letter-use-phone =nil=
15563    :PROPERTIES:
15564    :CUSTOM_ID: org-koma-letter-use-phone
15565    :END:
15567 - *Type:* boolean
15568 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
15569 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-use-phone][Find modifications in git logs]]
15571 : Non-nil prints sender's phone number.
15572 : This option can also be set with the OPTIONS keyword, e.g.:
15573 : "phone:t".
15575 ** org-agenda-tags-todo-honor-ignore-options =nil=
15576    :PROPERTIES:
15577    :CUSTOM_ID: org-agenda-tags-todo-honor-ignore-options
15578    :END:
15580 - *Type:* boolean
15581 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15582 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-tags-todo-honor-ignore-options][Find modifications in git logs]]
15584 : Non-nil means honor todo-list ignores options also in tags-todo search.
15585 : The variables
15586 :    `org-agenda-todo-ignore-with-date',
15587 :    `org-agenda-todo-ignore-timestamp',
15588 :    `org-agenda-todo-ignore-scheduled',
15589 :    `org-agenda-todo-ignore-deadlines'
15590 : make the global TODO list skip entries that have time stamps of certain
15591 : kinds.  If this option is set, the same options will also apply for the
15592 : tags-todo search, which is the general tags/property matcher
15593 : restricted to unfinished TODO entries only.
15595 ** org-agenda-todo-ignore-scheduled =nil=
15596    :PROPERTIES:
15597    :CUSTOM_ID: org-agenda-todo-ignore-scheduled
15598    :END:
15600 - *Type:* (choice (const :tag "Ignore fu...
15601 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15602 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-ignore-scheduled][Find modifications in git logs]]
15604 : Non-nil means, ignore some scheduled TODO items when making TODO list.
15605 : This applies when creating the global todo list.
15606 : Valid values are:
15608 : past     Don't show entries scheduled today or in the past.
15610 : future   Don't show entries scheduled in the future.
15611 :          The idea behind this is that by scheduling it, you don't want to
15612 :          think about it until the scheduled date.
15614 : all      Don't show any scheduled entries in the global todo list.
15615 :          The idea behind this is that by scheduling it, you have already
15616 :          "taken care" of this item.
15618 : t        Same as `all', for backward compatibility.
15620 : This variable can also have an integer as a value.  See
15621 : `org-agenda-todo-ignore-timestamp' for more details.
15623 : See also `org-agenda-todo-ignore-with-date'.
15624 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
15625 : to make his option also apply to the tags-todo list.
15627 ** org-log-into-drawer =(funcall (function (closure (f...=
15628    :PROPERTIES:
15629    :CUSTOM_ID: org-log-into-drawer
15630    :END:
15632 - *Type:* (choice (const :tag "Not into ...
15633 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15634 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-into-drawer][Find modifications in git logs]]
15636 : Non-nil means insert state change notes and time stamps into a drawer.
15637 : When nil, state changes notes will be inserted after the headline and
15638 : any scheduling and clock lines, but not inside a drawer.
15640 : The value of this variable should be the name of the drawer to use.
15641 : LOGBOOK is proposed as the default drawer for this purpose, you can
15642 : also set this to a string to define the drawer of your choice.
15644 : A value of t is also allowed, representing "LOGBOOK".
15646 : A value of t or nil can also be set with on a per-file-basis with
15648 :    #+STARTUP: logdrawer
15649 :    #+STARTUP: nologdrawer
15651 : If this variable is set, `org-log-state-notes-insert-after-drawers'
15652 : will be ignored.
15654 : You can set the property LOG_INTO_DRAWER to overrule this setting for
15655 : a subtree.
15657 : Do not check directly this variable in a Lisp program.  Call
15658 : function `org-log-into-drawer' instead.
15660 ** org-icalendar-combined-description =(funcall (function (closure (t...=
15661    :PROPERTIES:
15662    :CUSTOM_ID: org-icalendar-combined-description
15663    :END:
15665 - *Type:* string
15666 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
15667 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-combined-description][Find modifications in git logs]]
15669 : Calendar description for the combined iCalendar (all agenda files).
15671 ** org-table-formula-field-format =(funcall (function (closure (o...=
15672    :PROPERTIES:
15673    :CUSTOM_ID: org-table-formula-field-format
15674    :END:
15676 - *Type:* string
15677 - *Since:* Emacs version 24.1
15678 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
15679 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-formula-field-format][Find modifications in git logs]]
15681 : Format for fields which contain the result of a formula.
15682 : For example, using "~%s~" will display the result within tilde
15683 : characters.  Beware that modifying the display can prevent the
15684 : field from being used in another formula.
15686 ** org-agenda-start-on-weekday =1=
15687    :PROPERTIES:
15688    :CUSTOM_ID: org-agenda-start-on-weekday
15689    :END:
15691 - *Type:* (choice (const :tag "Today" ni...
15692 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15693 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-start-on-weekday][Find modifications in git logs]]
15695 : Non-nil means start the overview always on the specified weekday.
15696 : 0 denotes Sunday, 1 denotes Monday, etc.
15697 : When nil, always start on the current day.
15698 : Custom commands can set this variable in the options section.
15700 ** org-agenda-search-headline-for-time =t=
15701    :PROPERTIES:
15702    :CUSTOM_ID: org-agenda-search-headline-for-time
15703    :END:
15705 - *Type:* boolean
15706 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
15707 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-search-headline-for-time][Find modifications in git logs]]
15709 : Non-nil means search headline for a time-of-day.
15710 : If the headline contains a time-of-day in one format or another, it will
15711 : be used to sort the entry into the time sequence of items for a day.
15712 : Some people have time stamps in the headline that refer to the creation
15713 : time or so, and then this produces an unwanted side effect.  If this is
15714 : the case for your, use this variable to turn off searching the headline
15715 : for a time.
15717 ** org-learn-always-reschedule =nil=
15718    :PROPERTIES:
15719    :CUSTOM_ID: org-learn-always-reschedule
15720    :END:
15722 - *Type:* boolean
15723 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-learn.el][org-learn.el]]
15724 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-learn-always-reschedule][Find modifications in git logs]]
15726 : If non-nil, always reschedule items, even if retention was "perfect".
15728 ** org-attach-git-annex-cutoff =(funcall (function (closure (t...=
15729    :PROPERTIES:
15730    :CUSTOM_ID: org-attach-git-annex-cutoff
15731    :END:
15733 - *Type:* (choice (const :tag "None" nil...
15734 - *Since:* Emacs version 24.4
15735 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
15736 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-git-annex-cutoff][Find modifications in git logs]]
15738 : If non-nil, files larger than this will be annexed instead of stored.
15740 ** org-table-automatic-realign =(funcall (function (closure (o...=
15741    :PROPERTIES:
15742    :CUSTOM_ID: org-table-automatic-realign
15743    :END:
15745 - *Type:* boolean
15746 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
15747 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-automatic-realign][Find modifications in git logs]]
15749 : Non-nil means automatically re-align table when pressing TAB or RETURN.
15750 : When nil, aligning is only done with `\[org-table-align]', or after column
15751 : removal/insertion.
15753 ** org-footnote-auto-label =(funcall (function (closure (t...=
15754    :PROPERTIES:
15755    :CUSTOM_ID: org-footnote-auto-label
15756    :END:
15758 - *Type:* (choice (const :tag "Prompt fo...
15759 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
15760 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-auto-label][Find modifications in git logs]]
15762 : Non-nil means define automatically new labels for footnotes.
15763 : Possible values are:
15765 : nil        Prompt the user for each label.
15766 : t          Create unique labels of the form [fn:1], [fn:2], etc.
15767 : confirm    Like t, but let the user edit the created value.
15768 :            The label can be removed from the minibuffer to create
15769 :            an anonymous footnote.
15770 : random           Automatically generate a unique, random label.
15772 ** org-table-export-default-format =(funcall (function (closure (o...=
15773    :PROPERTIES:
15774    :CUSTOM_ID: org-table-export-default-format
15775    :END:
15777 - *Type:* string
15778 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
15779 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-export-default-format][Find modifications in git logs]]
15781 : Default export parameters for `org-table-export'.
15782 : These can be overridden for a specific table by setting the
15783 : TABLE_EXPORT_FORMAT property.  See the manual section on orgtbl
15784 : radio tables for the different export transformations and
15785 : available parameters.
15787 ** org-agenda-skip-archived-trees =(funcall (function (closure (t...=
15788    :PROPERTIES:
15789    :CUSTOM_ID: org-agenda-skip-archived-trees
15790    :END:
15792 - *Type:* boolean
15793 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15794 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-archived-trees][Find modifications in git logs]]
15796 : Non-nil means the agenda will skip any items located in archived trees.
15797 : An archived tree is a tree marked with the tag ARCHIVE.  The use of this
15798 : variable is no longer recommended, you should leave it at the value t.
15799 : Instead, use the key `v' to cycle the archives-mode in the agenda.
15801 ** org-footnote-auto-adjust =(funcall (function (closure (t...=
15802    :PROPERTIES:
15803    :CUSTOM_ID: org-footnote-auto-adjust
15804    :END:
15806 - *Type:* (choice (const :tag "No adjust...
15807 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
15808 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-auto-adjust][Find modifications in git logs]]
15810 : Non-nil means automatically adjust footnotes after insert/delete.
15811 : When this is t, after each insertion or deletion of a footnote,
15812 : simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
15813 : If you want to have just sorting or just renumbering, set this variable
15814 : to `sort' or `renumber'.
15816 : The main values of this variable can be set with in-buffer options:
15818 : #+STARTUP: fnadjust
15819 : #+STARTUP: nofnadjust
15821 ** org-babel-tangle-lang-exts =(funcall (function (closure (t...=
15822    :PROPERTIES:
15823    :CUSTOM_ID: org-babel-tangle-lang-exts
15824    :END:
15826 - *Type:* (repeat (cons (string "Languag...
15827 - *Since:* Emacs version 24.1
15828 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
15829 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-lang-exts][Find modifications in git logs]]
15831 : Alist mapping languages to their file extensions.
15832 : The key is the language name, the value is the string that should
15833 : be inserted as the extension commonly used to identify files
15834 : written in this language.  If no entry is found in this list,
15835 : then the name of the language is used.
15837 ** org-hidden-keywords =(funcall (function (closure (f...=
15838    :PROPERTIES:
15839    :CUSTOM_ID: org-hidden-keywords
15840    :END:
15842 - *Type:* (set (const :tag "#+AUTHOR" au...
15843 - *Since:* Emacs version 24.1
15844 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15845 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hidden-keywords][Find modifications in git logs]]
15847 : List of symbols corresponding to keywords to be hidden the org buffer.
15848 : For example, a value \='(title) for this list will make the document's title
15849 : appear in the buffer without the initial #+TITLE: keyword.
15851 ** org-preview-latex-default-process =(funcall (function (closure (f...=
15852    :PROPERTIES:
15853    :CUSTOM_ID: org-preview-latex-default-process
15854    :END:
15856 - *Type:* symbol
15857 - *Since:* Emacs version 26.1
15858 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15859 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-preview-latex-default-process][Find modifications in git logs]]
15861 : The default process to convert LaTeX fragments to image files.
15862 : All available processes and theirs documents can be found in
15863 : `org-preview-latex-process-alist', which see.
15865 ** org-publish-use-timestamps-flag =(funcall (function (closure (t...=
15866    :PROPERTIES:
15867    :CUSTOM_ID: org-publish-use-timestamps-flag
15868    :END:
15870 - *Type:* boolean
15871 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
15872 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-use-timestamps-flag][Find modifications in git logs]]
15874 : Non-nil means use timestamp checking to publish only changed files.
15875 : When nil, do no timestamp checking and always publish all files.
15877 ** org-man-logfiles-extensions =(funcall (function (closure (o...=
15878    :PROPERTIES:
15879    :CUSTOM_ID: org-man-logfiles-extensions
15880    :END:
15882 - *Type:* (repeat (string :tag "Extensio...
15883 - *Since:* Emacs version 24.4
15884 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
15885 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-logfiles-extensions][Find modifications in git logs]]
15887 : The list of file extensions to consider as Man logfiles.
15889 ** org-bibtex-treat-headline-as-title =(funcall (function (closure (t...=
15890    :PROPERTIES:
15891    :CUSTOM_ID: org-bibtex-treat-headline-as-title
15892    :END:
15894 - *Type:* boolean
15895 - *Since:* Emacs version 24.1
15896 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
15897 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-treat-headline-as-title][Find modifications in git logs]]
15899 : Treat headline text as title if title property is absent.
15900 : If an entry is missing a title property, use the headline text as
15901 : the property.  If this value is t, `org-bibtex-check' will ignore
15902 : a missing title field.
15904 ** org-blank-before-new-entry =(funcall (function (closure (f...=
15905    :PROPERTIES:
15906    :CUSTOM_ID: org-blank-before-new-entry
15907    :END:
15909 - *Type:* (list (cons (const heading) (c...
15910 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15911 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-blank-before-new-entry][Find modifications in git logs]]
15913 : Should `org-insert-heading' leave a blank line before new heading/item?
15914 : The value is an alist, with `heading' and `plain-list-item' as CAR,
15915 : and a boolean flag as CDR.  The cdr may also be the symbol `auto', in
15916 : which case Org will look at the surrounding headings/items and try to
15917 : make an intelligent decision whether to insert a blank line or not.
15919 ** org-feed-default-template =(funcall (function (closure (t...=
15920    :PROPERTIES:
15921    :CUSTOM_ID: org-feed-default-template
15922    :END:
15924 - *Type:* (string :tag "Template")
15925 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
15926 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-default-template][Find modifications in git logs]]
15928 : Template for the Org node created from RSS feed items.
15929 : This is just the default, each feed can specify its own.
15930 : Any fields from the feed item can be interpolated into the template with
15931 : %name, for example %title, %description, %pubDate etc.  In addition, the
15932 : following special escapes are valid as well:
15934 : %h      The title, or the first line of the description
15935 : %t      The date as a stamp, either from <pubDate> (if present), or
15936 :         the current date
15937 : %T      Date and time
15938 : %u,%U   Like %t,%T, but inactive time stamps
15939 : %a      A link, from <guid> if that is a permalink, else from <link>
15940 : %(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
15941 :         %-escapes above can be used as arguments, e.g. %(capitalize \"%h\")
15943 ** org-time-stamp-custom-formats =(funcall (function (closure (f...=
15944    :PROPERTIES:
15945    :CUSTOM_ID: org-time-stamp-custom-formats
15946    :END:
15948 - *Type:* sexp
15949 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
15950 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-time-stamp-custom-formats][Find modifications in git logs]]
15952 : Custom formats for time stamps.  See `format-time-string' for the syntax.
15953 : These are overlaid over the default ISO format if the variable
15954 : `org-display-custom-times' is set.  Time like %H:%M should be at the
15955 : end of the second format.  The custom formats are also honored by export
15956 : commands, if custom time display is turned on at the time of export.
15958 ** org-man-table-scientific-notation =(funcall (function (closure (o...=
15959    :PROPERTIES:
15960    :CUSTOM_ID: org-man-table-scientific-notation
15961    :END:
15963 - *Type:* (choice (string :tag "Format s...
15964 - *Since:* Emacs version 24.4
15965 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
15966 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-table-scientific-notation][Find modifications in git logs]]
15968 : Format string to display numbers in scientific notation.
15969 : The format should have "%s" twice, for mantissa and exponent
15970 : (i.e. "%s\\times10^{%s}").
15972 : When nil, no transformation is made.
15974 ** org-babel-ruby-nil-to =(funcall (function (closure (i...=
15975    :PROPERTIES:
15976    :CUSTOM_ID: org-babel-ruby-nil-to
15977    :END:
15979 - *Type:* symbol
15980 - *Since:* Emacs version 24.4
15981 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ruby.el][ob-ruby.el]]
15982 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-ruby-nil-to][Find modifications in git logs]]
15984 : Replace nil in ruby tables with this before returning.
15986 ** org-babel-J-command =(funcall (function (closure (t...=
15987    :PROPERTIES:
15988    :CUSTOM_ID: org-babel-J-command
15989    :END:
15991 - *Type:* string
15992 - *Since:* Emacs version 26.1
15993 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-J.el][ob-J.el]]
15994 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-J-command][Find modifications in git logs]]
15996 : Command to call J.
15998 ** org-babel-R-command =(funcall (function (closure (t...=
15999    :PROPERTIES:
16000    :CUSTOM_ID: org-babel-R-command
16001    :END:
16003 - *Type:* string
16004 - *Since:* Emacs version 24.1
16005 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-R.el][ob-R.el]]
16006 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-R-command][Find modifications in git logs]]
16008 : Name of command to use for executing R code.
16010 ** org-clock-x11idle-program-name =(funcall (function (closure (t...=
16011    :PROPERTIES:
16012    :CUSTOM_ID: org-clock-x11idle-program-name
16013    :END:
16015 - *Type:* string
16016 - *Since:* Emacs version 24.4
16017 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
16018 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-x11idle-program-name][Find modifications in git logs]]
16020 : Name of the program which prints X11 idle time in milliseconds.
16022 : You can find x11idle.c in the contrib/scripts directory of the
16023 : Org git distribution. Or, you can do:
16025 :     sudo apt-get install xprintidle
16027 : if you are using Debian.
16029 ** org-icalendar-with-timestamps =(funcall (function (closure (t...=
16030    :PROPERTIES:
16031    :CUSTOM_ID: org-icalendar-with-timestamps
16032    :END:
16034 - *Type:* (choice (const :tag "All times...
16035 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
16036 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-with-timestamps][Find modifications in git logs]]
16038 : Non-nil means make an event from plain time stamps.
16040 : It can be set to `active', `inactive', t or nil, in order to make
16041 : an event from, respectively, only active timestamps, only
16042 : inactive ones, all of them or none.
16044 : This variable has precedence over `org-export-with-timestamps'.
16045 : It can also be set with the #+OPTIONS line, e.g. "<:t".
16047 ** org-mobile-encryption-password =(funcall (function (closure (t...=
16048    :PROPERTIES:
16049    :CUSTOM_ID: org-mobile-encryption-password
16050    :END:
16052 - *Type:* (string :tag "Password")
16053 - *Since:* Emacs version 24.1
16054 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
16055 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-encryption-password][Find modifications in git logs]]
16057 : Password for encrypting files uploaded to the server.
16058 : This is a single password which is used for AES-256 encryption.  The same
16059 : password must also be set in the MobileOrg application.  All Org files,
16060 : including mobileorg.org will be encrypted using this password.
16062 : SECURITY CONSIDERATIONS:
16064 : Note that, when Org runs the encryption commands, the password could
16065 : be visible briefly on your system with the `ps' command.  So this method is
16066 : only intended to keep the files secure on the server, not on your own machine.
16068 : Also, if you set this variable in an init file (.emacs or .emacs.d/init.el
16069 : or custom.el...) and if that file is stored in a way so that other can read
16070 : it, this also limits the security of this approach.  You can also leave
16071 : this variable empty - Org will then ask for the password once per Emacs
16072 : session.
16074 ** org-agenda-format-date =(quote org-agenda-format-date-...=
16075    :PROPERTIES:
16076    :CUSTOM_ID: org-agenda-format-date
16077    :END:
16079 - *Type:* (choice (string :tag "Format s...
16080 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16081 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-format-date][Find modifications in git logs]]
16083 : Format string for displaying dates in the agenda.
16084 : Used by the daily/weekly agenda and by the timeline.  This should be
16085 : a format string understood by `format-time-string', or a function returning
16086 : the formatted date as a string.  The function must take a single argument,
16087 : a calendar-style date list like (month day year).
16089 ** org-babel-remote-temporary-directory =(funcall (function (closure (*...=
16090    :PROPERTIES:
16091    :CUSTOM_ID: org-babel-remote-temporary-directory
16092    :END:
16094 - *Type:* string
16095 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
16096 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-remote-temporary-directory][Find modifications in git logs]]
16098 : Directory to hold temporary files on remote hosts.
16100 ** org-export-with-section-numbers =(funcall (function (closure (t...=
16101    :PROPERTIES:
16102    :CUSTOM_ID: org-export-with-section-numbers
16103    :END:
16105 - *Type:* boolean
16106 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16107 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-section-numbers][Find modifications in git logs]]
16109 : Non-nil means add section numbers to headlines when exporting.
16111 : When set to an integer n, numbering will only happen for
16112 : headlines whose relative level is higher or equal to n.
16114 : This option can also be set with the OPTIONS keyword,
16115 : e.g. "num:t".
16117 ** org-export-with-latex =(funcall (function (closure (t...=
16118    :PROPERTIES:
16119    :CUSTOM_ID: org-export-with-latex
16120    :END:
16122 - *Type:* (choice (const :tag "Do not pr...
16123 - *Since:* Emacs version 24.4
16124 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16125 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-latex][Find modifications in git logs]]
16127 : Non-nil means process LaTeX environments and fragments.
16129 : This option can also be set with the OPTIONS line,
16130 : e.g. "tex:verbatim".  Allowed values are:
16132 : nil         Ignore math snippets.
16133 : `verbatim'  Keep everything in verbatim.
16134 : t           Allow export of math snippets.
16136 ** org-export-exclude-tags =(funcall (function (closure (t...=
16137    :PROPERTIES:
16138    :CUSTOM_ID: org-export-exclude-tags
16139    :END:
16141 - *Type:* (repeat (string :tag "Tag"))
16142 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16143 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-exclude-tags][Find modifications in git logs]]
16145 : Tags that exclude a tree from export.
16147 : All trees carrying any of these tags will be excluded from
16148 : export.  This is without condition, so even subtrees inside that
16149 : carry one of the `org-export-select-tags' will be removed.
16151 : This option can also be set with the EXCLUDE_TAGS keyword.
16153 ** org-html-head-include-default-style =(funcall (function (closure (h...=
16154    :PROPERTIES:
16155    :CUSTOM_ID: org-html-head-include-default-style
16156    :END:
16158 - *Type:* boolean
16159 - *Since:* Emacs version 24.4
16160 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
16161 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-head-include-default-style][Find modifications in git logs]]
16163 : Non-nil means include the default style in exported HTML files.
16164 : The actual style is defined in `org-html-style-default' and
16165 : should not be modified.  Use `org-html-head' to use your own
16166 : style information.
16168 ** org-habit-completed-glyph =(funcall (function (closure (t...=
16169    :PROPERTIES:
16170    :CUSTOM_ID: org-habit-completed-glyph
16171    :END:
16173 - *Type:* character
16174 - *Since:* Emacs version 24.1
16175 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
16176 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-completed-glyph][Find modifications in git logs]]
16178 : Glyph character used to show completed days on which a task was done.
16180 ** org-mhe-search-all-folders =(funcall (function (closure (t...=
16181    :PROPERTIES:
16182    :CUSTOM_ID: org-mhe-search-all-folders
16183    :END:
16185 - *Type:* boolean
16186 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mhe.el][org-mhe.el]]
16187 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mhe-search-all-folders][Find modifications in git logs]]
16189 : Non-nil means the search for the mh-message may extend to all folders.
16190 : When non-nil, the search for a message will extend to all other
16191 : folders if it cannot be found in the folder given in the link.
16192 : Searching all folders may be slow with the default pick based
16193 : search but is very efficient with one of the other search engines
16194 : supported by MH-E.
16196 ** org-babel-lua-hline-to =(funcall (function (closure (t...=
16197    :PROPERTIES:
16198    :CUSTOM_ID: org-babel-lua-hline-to
16199    :END:
16201 - *Type:* string
16202 - *Since:* Emacs version 24.5
16203 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lua.el][ob-lua.el]]
16204 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lua-hline-to][Find modifications in git logs]]
16206 : Replace hlines in incoming tables with this when translating to lua.
16208 ** org-agenda-max-todos =nil=
16209    :PROPERTIES:
16210    :CUSTOM_ID: org-agenda-max-todos
16211    :END:
16213 - *Type:* (choice (symbol :tag "No limit...
16214 - *Since:* Emacs version 24.4
16215 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16216 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-max-todos][Find modifications in git logs]]
16218 : Maximum number of TODOs to display in an agenda.
16219 : This can be nil (no limit) or an integer or an alist of agenda
16220 : types with an associated number of entries to display in this
16221 : type.
16223 ** org-agenda-skip-scheduled-delay-if-deadline =nil=
16224    :PROPERTIES:
16225    :CUSTOM_ID: org-agenda-skip-scheduled-delay-if-deadline
16226    :END:
16228 - *Type:* (choice (const :tag "Always ho...
16229 - *Since:* Emacs version 24.4
16230 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16231 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-scheduled-delay-if-deadline][Find modifications in git logs]]
16233 : Non-nil means skip scheduled delay when entry also has a deadline.
16234 : This variable may be set to nil, t, the symbol `post-deadline',
16235 : or a number which will then give the number of days after the actual
16236 : scheduled date when the delay should expire.  The symbol `post-deadline'
16237 : eliminates the schedule delay when the date is posterior to the deadline.
16239 ** org-html-keep-old-src =(funcall (function (closure (h...=
16240    :PROPERTIES:
16241    :CUSTOM_ID: org-html-keep-old-src
16242    :END:
16244 - *Type:* boolean
16245 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
16246 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-keep-old-src][Find modifications in git logs]]
16248 : When non-nil, use <pre class=""> instead of <pre><code class="">.
16250 ** org-table-fix-formulas-confirm =(funcall (function (closure (o...=
16251    :PROPERTIES:
16252    :CUSTOM_ID: org-table-fix-formulas-confirm
16253    :END:
16255 - *Type:* (choice (const :tag "with yes-...
16256 - *Since:* Emacs version 24.1
16257 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
16258 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-fix-formulas-confirm][Find modifications in git logs]]
16260 : Whether the user should confirm when Org fixes formulas.
16262 ** org-clock-into-drawer =(funcall (function (closure (t...=
16263    :PROPERTIES:
16264    :CUSTOM_ID: org-clock-into-drawer
16265    :END:
16267 - *Type:* (choice (const :tag "Always" t...
16268 - *Since:* Emacs version 26.1
16269 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
16270 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-into-drawer][Find modifications in git logs]]
16272 : Non-nil when clocking info should be wrapped into a drawer.
16274 : When non-nil, clocking info will be inserted into the same drawer
16275 : as log notes (see variable `org-log-into-drawer'), if it exists,
16276 : or "LOGBOOK" otherwise.  If necessary, the drawer will be
16277 : created.
16279 : When an integer, the drawer is created only when the number of
16280 : clocking entries in an item reaches or exceeds this value.
16282 : When a string, it becomes the name of the drawer, ignoring the
16283 : log notes drawer altogether.
16285 : Do not check directly this variable in a Lisp program.  Call
16286 : function `org-clock-into-drawer' instead.
16288 ** org-src-tab-acts-natively =(funcall (function (closure (t...=
16289    :PROPERTIES:
16290    :CUSTOM_ID: org-src-tab-acts-natively
16291    :END:
16293 - *Type:* boolean
16294 - *Since:* Emacs version 24.1
16295 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
16296 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-tab-acts-natively][Find modifications in git logs]]
16298 : If non-nil, the effect of TAB in a code block is as if it were
16299 : issued in the language major mode buffer.
16301 ** org-log-done-with-time =(funcall (function (closure (f...=
16302    :PROPERTIES:
16303    :CUSTOM_ID: org-log-done-with-time
16304    :END:
16306 - *Type:* boolean
16307 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16308 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-done-with-time][Find modifications in git logs]]
16310 : Non-nil means the CLOSED time stamp will contain date and time.
16311 : When nil, only the date will be recorded.
16313 ** org-html-table-data-tags =(funcall (function (closure (h...=
16314    :PROPERTIES:
16315    :CUSTOM_ID: org-html-table-data-tags
16316    :END:
16318 - *Type:* (cons (string :tag "Opening ta...
16319 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
16320 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-data-tags][Find modifications in git logs]]
16322 : The opening and ending tags for table data fields.
16323 : This is customizable so that alignment options can be specified.
16324 : The first %s will be filled with the scope of the field, either row or col.
16325 : The second %s will be replaced by a style entry to align the field.
16326 : See also the variable `org-html-table-align-individual-fields'.
16328 ** org-agenda-use-time-grid =t=
16329    :PROPERTIES:
16330    :CUSTOM_ID: org-agenda-use-time-grid
16331    :END:
16333 - *Type:* boolean
16334 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16335 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-use-time-grid][Find modifications in git logs]]
16337 : Non-nil means show a time grid in the agenda schedule.
16338 : A time grid is a set of lines for specific times (like every two hours between
16339 : 8:00 and 20:00).  The items scheduled for a day at specific times are
16340 : sorted in between these lines.
16341 : For details about when the grid will be shown, and what it will look like, see
16342 : the variable `org-agenda-time-grid'.
16344 ** org-columns-modify-value-for-display-function =(funcall (function (closure (t...=
16345    :PROPERTIES:
16346    :CUSTOM_ID: org-columns-modify-value-for-display-function
16347    :END:
16349 - *Type:* (choice (const nil) (function)...
16350 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
16351 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-modify-value-for-display-function][Find modifications in git logs]]
16353 : Function that modifies values for display in column view.
16354 : For example, it can be used to cut out a certain part from a time stamp.
16355 : The function must take 2 arguments:
16357 : column-title    The title of the column (*not* the property name)
16358 : value           The value that should be modified.
16360 : The function should return the value that should be displayed,
16361 : or nil if the normal value should be used.
16363 ** org-edit-src-content-indentation =(funcall (function (closure (t...=
16364    :PROPERTIES:
16365    :CUSTOM_ID: org-edit-src-content-indentation
16366    :END:
16368 - *Type:* integer
16369 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
16370 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-content-indentation][Find modifications in git logs]]
16372 : Indentation for the content of a source code block.
16374 : This should be the number of spaces added to the indentation of the #+begin
16375 : line in order to compute the indentation of the block content after
16376 : editing it with `\[org-edit-src-code]'.
16378 : It has no effect if `org-src-preserve-indentation' is non-nil.
16380 ** org-indent-mode-turns-off-org-adapt-indentation =(funcall (function (closure (t...=
16381    :PROPERTIES:
16382    :CUSTOM_ID: org-indent-mode-turns-off-org-adapt-indentation
16383    :END:
16385 - *Type:* boolean
16386 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
16387 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-mode-turns-off-org-adapt-indentation][Find modifications in git logs]]
16389 : Non-nil means setting the variable `org-indent-mode' will turn off indentation adaptation.
16390 : For details see the variable `org-adapt-indentation'.
16392 ** org-table-relative-ref-may-cross-hline =(funcall (function (closure (o...=
16393    :PROPERTIES:
16394    :CUSTOM_ID: org-table-relative-ref-may-cross-hline
16395    :END:
16397 - *Type:* (choice (const :tag "Allow to ...
16398 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
16399 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-relative-ref-may-cross-hline][Find modifications in git logs]]
16401 : Non-nil means relative formula references may cross hlines.
16402 : Here are the allowed values:
16404 : nil    Relative references may not cross hlines.  They will reference the
16405 :        field next to the hline instead.  Coming from below, the reference
16406 :        will be to the field below the hline.  Coming from above, it will be
16407 :        to the field above.
16408 : t      Relative references may cross hlines.
16409 : error  An attempt to cross a hline will throw an error.
16411 : It is probably good to never set this variable to nil, for the sake of
16412 : portability of tables.
16414 ** org-ascii-paragraph-spacing =(funcall (function (closure (t...=
16415    :PROPERTIES:
16416    :CUSTOM_ID: org-ascii-paragraph-spacing
16417    :END:
16419 - *Type:* (choice (integer :tag "Number ...
16420 - *Since:* Emacs version 24.4
16421 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
16422 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-paragraph-spacing][Find modifications in git logs]]
16424 : Number of white lines between paragraphs.
16425 : If the value is an integer, add this number of blank lines
16426 : between contiguous paragraphs.  If is it the symbol `auto', keep
16427 : the same number of blank lines as in the original document.
16429 ** org-export-headline-levels =(funcall (function (closure (t...=
16430    :PROPERTIES:
16431    :CUSTOM_ID: org-export-headline-levels
16432    :END:
16434 - *Type:* integer
16435 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16436 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-headline-levels][Find modifications in git logs]]
16438 : The last level which is still exported as a headline.
16440 : Inferior levels will usually produce itemize or enumerate lists
16441 : when exported, but back-end behavior may differ.
16443 : This option can also be set with the OPTIONS keyword,
16444 : e.g. "H:2".
16446 ** org-export-with-statistics-cookies =(funcall (function (closure (t...=
16447    :PROPERTIES:
16448    :CUSTOM_ID: org-export-with-statistics-cookies
16449    :END:
16451 - *Type:* boolean
16452 - *Since:* Emacs version 24.4
16453 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16454 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-statistics-cookies][Find modifications in git logs]]
16456 : Non-nil means include statistics cookies in export.
16457 : This option can also be set with the OPTIONS keyword,
16458 : e.g. "stat:nil"
16460 ** org-agenda-entry-text-maxlines =5=
16461    :PROPERTIES:
16462    :CUSTOM_ID: org-agenda-entry-text-maxlines
16463    :END:
16465 - *Type:* integer
16466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-maxlines][Find modifications in git logs]]
16469 : Number of text lines to be added when `E' is pressed in the agenda.
16471 : Note that this variable only used during agenda display.  To add entry text
16472 : when exporting the agenda, configure the variable
16473 : `org-agenda-add-entry-text-maxlines'.
16475 ** org-babel-tangle-use-relative-file-links =(funcall (function (closure (t...=
16476    :PROPERTIES:
16477    :CUSTOM_ID: org-babel-tangle-use-relative-file-links
16478    :END:
16480 - *Type:* boolean
16481 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
16482 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-use-relative-file-links][Find modifications in git logs]]
16484 : Use relative path names in links from tangled source back the Org file.
16486 ** org-agenda-entry-text-leaders ="    > "=
16487    :PROPERTIES:
16488    :CUSTOM_ID: org-agenda-entry-text-leaders
16489    :END:
16491 - *Type:* string
16492 - *Since:* Emacs version 24.4
16493 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16494 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-entry-text-leaders][Find modifications in git logs]]
16496 : Text prepended to the entry text in agenda buffers.
16498 ** org-ctrl-k-protect-subtree =(funcall (function (closure (f...=
16499    :PROPERTIES:
16500    :CUSTOM_ID: org-ctrl-k-protect-subtree
16501    :END:
16503 - *Type:* (choice (const :tag "Do not pr...
16504 - *Since:* Emacs version 24.1
16505 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16506 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctrl-k-protect-subtree][Find modifications in git logs]]
16508 : Non-nil means, do not delete a hidden subtree with C-k.
16509 : When set to the symbol `error', simply throw an error when C-k is
16510 : used to kill (part-of) a headline that has hidden text behind it.
16511 : Any other non-nil value will result in a query to the user, if it is
16512 : OK to kill that hidden subtree.  When nil, kill without remorse.
16514 ** org-directory =(funcall (function (closure (f...=
16515    :PROPERTIES:
16516    :CUSTOM_ID: org-directory
16517    :END:
16519 - *Type:* directory
16520 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16521 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-directory][Find modifications in git logs]]
16523 : Directory with Org files.
16524 : This is just a default location to look for Org files.  There is no need
16525 : at all to put your files into this directory.  It is used in the
16526 : following situations:
16528 : 1. When a capture template specifies a target file that is not an
16529 :    absolute path.  The path will then be interpreted relative to
16530 :    `org-directory'
16531 : 2. When the value of variable `org-agenda-files' is a single file, any
16532 :    relative paths in this file will be taken as relative to
16533 :    `org-directory'.
16535 ** org-latex-footnote-separator =(funcall (function (closure (t...=
16536    :PROPERTIES:
16537    :CUSTOM_ID: org-latex-footnote-separator
16538    :END:
16540 - *Type:* string
16541 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
16542 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-footnote-separator][Find modifications in git logs]]
16544 : Text used to separate footnotes.
16546 ** org-clock-auto-clock-resolution =(funcall (function (closure (t...=
16547    :PROPERTIES:
16548    :CUSTOM_ID: org-clock-auto-clock-resolution
16549    :END:
16551 - *Type:* (choice (const :tag "Never" ni...
16552 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
16553 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-auto-clock-resolution][Find modifications in git logs]]
16555 : When to automatically resolve open clocks found in Org buffers.
16557 ** org-log-state-notes-insert-after-drawers =(funcall (function (closure (f...=
16558    :PROPERTIES:
16559    :CUSTOM_ID: org-log-state-notes-insert-after-drawers
16560    :END:
16562 - *Type:* boolean
16563 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16564 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-state-notes-insert-after-drawers][Find modifications in git logs]]
16566 : Non-nil means insert state change notes after any drawers in entry.
16567 : Only the drawers that *immediately* follow the headline and the
16568 : deadline/scheduled line are skipped.
16569 : When nil, insert notes right after the heading and perhaps the line
16570 : with deadline/scheduling if present.
16572 : This variable will have no effect if `org-log-into-drawer' is
16573 : set.
16575 ** org-plain-list-ordered-item-terminator =(funcall (function (closure (o...=
16576    :PROPERTIES:
16577    :CUSTOM_ID: org-plain-list-ordered-item-terminator
16578    :END:
16580 - *Type:* (choice (const :tag "dot like ...
16581 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
16582 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plain-list-ordered-item-terminator][Find modifications in git logs]]
16584 : The character that makes a line with leading number an ordered list item.
16585 : Valid values are ?. and ?).  To get both terminators, use t.
16587 : This variable needs to be set before org.el is loaded.  If you
16588 : need to make a change while Emacs is running, use the customize
16589 : interface or run the following code after updating it:
16591 :   `\[org-element-update-syntax]'
16593 ** org-ascii-indented-line-width =(funcall (function (closure (t...=
16594    :PROPERTIES:
16595    :CUSTOM_ID: org-ascii-indented-line-width
16596    :END:
16598 - *Type:* (choice (integer :tag "Number ...
16599 - *Since:* Emacs version 24.4
16600 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
16601 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-indented-line-width][Find modifications in git logs]]
16603 : Additional indentation width for the first line in a paragraph.
16604 : If the value is an integer, indent the first line of each
16605 : paragraph by this width, unless it is located at the beginning of
16606 : a section, in which case indentation is removed from that line.
16607 : If it is the symbol `auto' preserve indentation from original
16608 : document.
16610 ** org-attach-expert =(funcall (function (closure (t...=
16611    :PROPERTIES:
16612    :CUSTOM_ID: org-attach-expert
16613    :END:
16615 - *Type:* boolean
16616 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
16617 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-expert][Find modifications in git logs]]
16619 : Non-nil means do not show the splash buffer with the attach dispatcher.
16621 ** org-highlight-links =(funcall (function (closure (f...=
16622    :PROPERTIES:
16623    :CUSTOM_ID: org-highlight-links
16624    :END:
16626 - *Type:* (set :greedy t (const :tag "Do...
16627 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16628 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-highlight-links][Find modifications in git logs]]
16630 : Types of links that should be highlighted in Org files.
16632 : This is a list of symbols, each one of them leading to the
16633 : highlighting of a certain link type.
16635 : You can still open links that are not highlighted.
16637 : In principle, it does not hurt to turn on highlighting for all
16638 : link types.  There may be a small gain when turning off unused
16639 : link types.  The types are:
16641 : bracket   The recommended [[link][description]] or [[link]] links with hiding.
16642 : angle     Links in angular brackets that may contain whitespace like
16643 :           <bbdb:Carsten Dominik>.
16644 : plain     Plain links in normal text, no whitespace, like http://google.com.
16645 : radio     Text that is matched by a radio target, see manual for details.
16646 : tag       Tag settings in a headline (link to tag search).
16647 : date      Time stamps (link to calendar).
16648 : footnote  Footnote labels.
16650 : If you set this variable during an Emacs session, use `org-mode-restart'
16651 : in the Org buffer so that the change takes effect.
16653 ** org-src-preserve-indentation =(funcall (function (closure (t...=
16654    :PROPERTIES:
16655    :CUSTOM_ID: org-src-preserve-indentation
16656    :END:
16658 - *Type:* boolean
16659 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
16660 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-preserve-indentation][Find modifications in git logs]]
16662 : If non-nil preserve leading whitespace characters on export.
16663 : \<org-mode-map>
16664 : If non-nil leading whitespace characters in source code blocks
16665 : are preserved on export, and when switching between the org
16666 : buffer and the language mode edit buffer.
16668 : When this variable is nil, after editing with `\[org-edit-src-code]',
16669 : the minimum (across-lines) number of leading whitespace characters
16670 : are removed from all lines, and the code block is uniformly indented
16671 : according to the value of `org-edit-src-content-indentation'.
16673 ** org-custom-properties =(funcall (function (closure (f...=
16674    :PROPERTIES:
16675    :CUSTOM_ID: org-custom-properties
16676    :END:
16678 - *Type:* (repeat (string :tag "Property...
16679 - *Since:* Emacs version 24.3
16680 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16681 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-custom-properties][Find modifications in git logs]]
16683 : List of properties (as strings) with a special meaning.
16684 : The default use of these custom properties is to let the user
16685 : hide them with `org-toggle-custom-properties-visibility'.
16687 ** org-clock-heading-function =(funcall (function (closure (t...=
16688    :PROPERTIES:
16689    :CUSTOM_ID: org-clock-heading-function
16690    :END:
16692 - *Type:* (choice (const nil) (function)...
16693 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
16694 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-heading-function][Find modifications in git logs]]
16696 : When non-nil, should be a function to create `org-clock-heading'.
16697 : This is the string shown in the mode line when a clock is running.
16698 : The function is called with point at the beginning of the headline.
16700 ** org-link-frame-setup =(funcall (function (closure (f...=
16701    :PROPERTIES:
16702    :CUSTOM_ID: org-link-frame-setup
16703    :END:
16705 - *Type:* (list (cons (const vm) (choice...
16706 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16707 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-frame-setup][Find modifications in git logs]]
16709 : Setup the frame configuration for following links.
16710 : When following a link with Emacs, it may often be useful to display
16711 : this link in another window or frame.  This variable can be used to
16712 : set this up for the different types of links.
16713 : For VM, use any of
16714 :     `vm-visit-folder'
16715 :     `vm-visit-folder-other-window'
16716 :     `vm-visit-folder-other-frame'
16717 : For Gnus, use any of
16718 :     `gnus'
16719 :     `gnus-other-frame'
16720 :     `org-gnus-no-new-news'
16721 : For FILE, use any of
16722 :     `find-file'
16723 :     `find-file-other-window'
16724 :     `find-file-other-frame'
16725 : For Wanderlust use any of
16726 :     `wl'
16727 :     `wl-other-frame'
16728 : For the calendar, use the variable `calendar-setup'.
16729 : For BBDB, it is currently only possible to display the matches in
16730 : another window.
16732 ** org-agenda-remove-times-when-in-prefix =t=
16733    :PROPERTIES:
16734    :CUSTOM_ID: org-agenda-remove-times-when-in-prefix
16735    :END:
16737 - *Type:* (choice (const :tag "Always" t...
16738 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
16739 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-remove-times-when-in-prefix][Find modifications in git logs]]
16741 : Non-nil means remove duplicate time specifications in agenda items.
16742 : When the format `org-agenda-prefix-format' contains a `%t' specifier, a
16743 : time-of-day specification in a headline or diary entry is extracted and
16744 : placed into the prefix.  If this option is non-nil, the original specification
16745 : (a timestamp or -range, or just a plain time(range) specification like
16746 : 11:30-4pm) will be removed for agenda display.  This makes the agenda less
16747 : cluttered.
16748 : The option can be t or nil.  It may also be the symbol `beg', indicating
16749 : that the time should only be removed when it is located at the beginning of
16750 : the headline/diary entry.
16752 ** org-pretty-entities-include-sub-superscripts =(funcall (function (closure (f...=
16753    :PROPERTIES:
16754    :CUSTOM_ID: org-pretty-entities-include-sub-superscripts
16755    :END:
16757 - *Type:* boolean
16758 - *Since:* Emacs version 24.1
16759 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16760 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-pretty-entities-include-sub-superscripts][Find modifications in git logs]]
16762 : Non-nil means, pretty entity display includes formatting sub/superscripts.
16764 ** org-todo-interpretation =(funcall (function (closure (f...=
16765    :PROPERTIES:
16766    :CUSTOM_ID: org-todo-interpretation
16767    :END:
16769 - *Type:* (choice (const sequence) (cons...
16770 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16771 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-interpretation][Find modifications in git logs]]
16773 : Controls how TODO keywords are interpreted.
16774 : This variable is in principle obsolete and is only used for
16775 : backward compatibility, if the interpretation of todo keywords is
16776 : not given already in `org-todo-keywords'.  See that variable for
16777 : more information.
16779 ** org-yank-folded-subtrees =(funcall (function (closure (f...=
16780    :PROPERTIES:
16781    :CUSTOM_ID: org-yank-folded-subtrees
16782    :END:
16784 - *Type:* boolean
16785 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16786 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-yank-folded-subtrees][Find modifications in git logs]]
16788 : Non-nil means when yanking subtrees, fold them.
16789 : If the kill is a single subtree, or a sequence of subtrees, i.e. if
16790 : it starts with a heading and all other headings in it are either children
16791 : or siblings, then fold all the subtrees.  However, do this only if no
16792 : text after the yank would be swallowed into a folded tree by this action.
16794 ** org-table-formula-use-constants =(funcall (function (closure (o...=
16795    :PROPERTIES:
16796    :CUSTOM_ID: org-table-formula-use-constants
16797    :END:
16799 - *Type:* boolean
16800 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
16801 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-formula-use-constants][Find modifications in git logs]]
16803 : Non-nil means interpret constants in formulas in tables.
16804 : A constant looks like `$c' or `$Grav' and will be replaced before evaluation
16805 : by the value given in `org-table-formula-constants', or by a value obtained
16806 : from the `constants.el' package.
16808 ** org-display-internal-link-with-indirect-buffer =(funcall (function (closure (f...=
16809    :PROPERTIES:
16810    :CUSTOM_ID: org-display-internal-link-with-indirect-buffer
16811    :END:
16813 - *Type:* boolean
16814 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16815 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-display-internal-link-with-indirect-buffer][Find modifications in git logs]]
16817 : Non-nil means use indirect buffer to display infile links.
16818 : Activating internal links (from one location in a file to another location
16819 : in the same file) normally just jumps to the location.  When the link is
16820 : activated with a `\[universal-argument]' prefix (or with mouse-3), the link is displayed in
16821 : another window.  When this option is set, the other window actually displays
16822 : an indirect buffer clone of the current buffer, to avoid any visibility
16823 : changes to the current buffer.
16825 ** org-clock-sound =(funcall (function (closure (t...=
16826    :PROPERTIES:
16827    :CUSTOM_ID: org-clock-sound
16828    :END:
16830 - *Type:* (choice (const :tag "No sound"...
16831 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
16832 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-sound][Find modifications in git logs]]
16834 : Sound to use for notifications.
16835 : Possible values are:
16837 : nil        No sound played
16838 : t          Standard Emacs beep
16839 : file name  Play this sound file, fall back to beep
16841 ** org-property-format =(funcall (function (closure (f...=
16842    :PROPERTIES:
16843    :CUSTOM_ID: org-property-format
16844    :END:
16846 - *Type:* string
16847 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16848 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-property-format][Find modifications in git logs]]
16850 : How property key/value pairs should be formatted by `indent-line'.
16851 : When `indent-line' hits a property definition, it will format the line
16852 : according to this format, mainly to make sure that the values are
16853 : lined-up with respect to each other.
16855 ** org-log-refile =(funcall (function (closure (f...=
16856    :PROPERTIES:
16857    :CUSTOM_ID: org-log-refile
16858    :END:
16860 - *Type:* (choice (const :tag "No loggin...
16861 - *Since:* Emacs version 24.1
16862 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16863 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-refile][Find modifications in git logs]]
16865 : Information to record when a task is refiled.
16867 : Possible values are:
16869 : nil     Don't add anything
16870 : time    Add a time stamp to the task
16871 : note    Prompt for a note and add it with template `org-log-note-headings'
16873 : This option can also be set with on a per-file-basis with
16875 :    #+STARTUP: nologrefile
16876 :    #+STARTUP: logrefile
16877 :    #+STARTUP: lognoterefile
16879 : You can have local logging settings for a subtree by setting the LOGGING
16880 : property to one or more of these keywords.
16882 : When bulk-refiling from the agenda, the value `note' is forbidden and
16883 : will temporarily be changed to `time'.
16885 ** org-mobile-allpriorities =(funcall (function (closure (t...=
16886    :PROPERTIES:
16887    :CUSTOM_ID: org-mobile-allpriorities
16888    :END:
16890 - *Type:* string
16891 - *Since:* Emacs version 24.4
16892 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
16893 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-allpriorities][Find modifications in git logs]]
16895 : Default set of priority cookies for the index file.
16897 ** org-bibtex-autogen-keys =(funcall (function (closure (t...=
16898    :PROPERTIES:
16899    :CUSTOM_ID: org-bibtex-autogen-keys
16900    :END:
16902 - *Type:* boolean
16903 - *Since:* Emacs version 24.1
16904 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
16905 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-autogen-keys][Find modifications in git logs]]
16907 : Set to a truth value to use `bibtex-generate-autokey' to generate keys.
16909 ** org-export-with-todo-keywords =(funcall (function (closure (t...=
16910    :PROPERTIES:
16911    :CUSTOM_ID: org-export-with-todo-keywords
16912    :END:
16914 - *Type:* boolean
16915 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16916 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-todo-keywords][Find modifications in git logs]]
16918 : Non-nil means include TODO keywords in export.
16919 : When nil, remove all these keywords from the export.  This option
16920 : can also be set with the OPTIONS keyword, e.g.  "todo:nil".
16922 ** org-export-with-tags =(funcall (function (closure (t...=
16923    :PROPERTIES:
16924    :CUSTOM_ID: org-export-with-tags
16925    :END:
16927 - *Type:* (choice (const :tag "Off" nil)...
16928 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
16929 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-tags][Find modifications in git logs]]
16931 : If nil, do not export tags, just remove them from headlines.
16933 : If this is the symbol `not-in-toc', tags will be removed from
16934 : table of contents entries, but still be shown in the headlines of
16935 : the document.
16937 : This option can also be set with the OPTIONS keyword,
16938 : e.g. "tags:nil".
16940 ** org-latex-toc-command =(funcall (function (closure (t...=
16941    :PROPERTIES:
16942    :CUSTOM_ID: org-latex-toc-command
16943    :END:
16945 - *Type:* string
16946 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
16947 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-toc-command][Find modifications in git logs]]
16949 : LaTeX command to set the table of contents, list of figures, etc.
16950 : This command only applies to the table of contents generated with
16951 : the toc:nil option, not to those generated with #+TOC keyword.
16953 ** org-cycle-separator-lines =(funcall (function (closure (f...=
16954    :PROPERTIES:
16955    :CUSTOM_ID: org-cycle-separator-lines
16956    :END:
16958 - *Type:* integer
16959 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16960 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-separator-lines][Find modifications in git logs]]
16962 : Number of empty lines needed to keep an empty line between collapsed trees.
16963 : If you leave an empty line between the end of a subtree and the following
16964 : headline, this empty line is hidden when the subtree is folded.
16965 : Org mode will leave (exactly) one empty line visible if the number of
16966 : empty lines is equal or larger to the number given in this variable.
16967 : So the default 2 means at least 2 empty lines after the end of a subtree
16968 : are needed to produce free space between a collapsed subtree and the
16969 : following headline.
16971 : If the number is negative, and the number of empty lines is at least -N,
16972 : all empty lines are shown.
16974 : Special case: when 0, never leave empty lines in collapsed view.
16976 ** org-disputed-keys =(funcall (function (closure (f...=
16977    :PROPERTIES:
16978    :CUSTOM_ID: org-disputed-keys
16979    :END:
16981 - *Type:* alist
16982 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
16983 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-disputed-keys][Find modifications in git logs]]
16985 : Keys for which Org mode and other modes compete.
16986 : This is an alist, cars are the default keys, second element specifies
16987 : the alternative to use when `org-replace-disputed-keys' is t.
16989 : Keys can be specified in any syntax supported by `define-key'.
16990 : The value of this option takes effect only at Org mode startup,
16991 : therefore you'll have to restart Emacs to apply it after changing.
16993 ** org-cycle-skip-children-state-if-no-children =(funcall (function (closure (f...=
16994    :PROPERTIES:
16995    :CUSTOM_ID: org-cycle-skip-children-state-if-no-children
16996    :END:
16998 - *Type:* boolean
16999 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17000 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-skip-children-state-if-no-children][Find modifications in git logs]]
17002 : Non-nil means skip CHILDREN state in entries that don't have any.
17004 ** org-hide-emphasis-markers =(funcall (function (closure (f...=
17005    :PROPERTIES:
17006    :CUSTOM_ID: org-hide-emphasis-markers
17007    :END:
17009 - *Type:* boolean
17010 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17011 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-emphasis-markers][Find modifications in git logs]]
17013 : Non-nil mean font-lock should hide the emphasis marker characters.
17015 ** org-clock-persist-query-save =(funcall (function (closure (t...=
17016    :PROPERTIES:
17017    :CUSTOM_ID: org-clock-persist-query-save
17018    :END:
17020 - *Type:* boolean
17021 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
17022 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-persist-query-save][Find modifications in git logs]]
17024 : When non-nil, ask before saving the current clock on exit.
17026 ** org-odt-format-headline-function =(funcall (function (closure (h...=
17027    :PROPERTIES:
17028    :CUSTOM_ID: org-odt-format-headline-function
17029    :END:
17031 - *Type:* function
17032 - *Since:* Emacs version 26.1
17033 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
17034 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-format-headline-function][Find modifications in git logs]]
17036 : Function to format headline text.
17038 : This function will be called with 5 arguments:
17039 : TODO      the todo keyword (string or nil).
17040 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
17041 : PRIORITY  the priority of the headline (integer or nil)
17042 : TEXT      the main headline text (string).
17043 : TAGS      the tags string, separated with colons (string or nil).
17045 : The function result will be used as headline text.
17047 ** org-refile-target-verify-function =(funcall (function (closure (f...=
17048    :PROPERTIES:
17049    :CUSTOM_ID: org-refile-target-verify-function
17050    :END:
17052 - *Type:* (choice (const nil) (function)...
17053 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17054 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-target-verify-function][Find modifications in git logs]]
17056 : Function to verify if the headline at point should be a refile target.
17057 : The function will be called without arguments, with point at the
17058 : beginning of the headline.  It should return t and leave point
17059 : where it is if the headline is a valid target for refiling.
17061 : If the target should not be selected, the function must return nil.
17062 : In addition to this, it may move point to a place from where the search
17063 : should be continued.  For example, the function may decide that the entire
17064 : subtree of the current entry should be excluded and move point to the end
17065 : of the subtree.
17067 ** org-clock-out-when-done =(funcall (function (closure (t...=
17068    :PROPERTIES:
17069    :CUSTOM_ID: org-clock-out-when-done
17070    :END:
17072 - *Type:* (choice (const :tag "No" nil) ...
17073 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
17074 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-out-when-done][Find modifications in git logs]]
17076 : When non-nil, clock will be stopped when the clocked entry is marked DONE.
17077 : \<org-mode-map>DONE here means any DONE-like state.
17078 : A nil value means clock will keep running until stopped explicitly with
17079 : `\[org-clock-out]', or until the clock is started in a different item.
17080 : Instead of t, this can also be a list of TODO states that should trigger
17081 : clocking out.
17083 ** org-attach-allow-inheritance =(funcall (function (closure (t...=
17084    :PROPERTIES:
17085    :CUSTOM_ID: org-attach-allow-inheritance
17086    :END:
17088 - *Type:* boolean
17089 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
17090 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-allow-inheritance][Find modifications in git logs]]
17092 : Non-nil means allow attachment directories be inherited.
17094 ** org-export-copy-to-kill-ring =(funcall (function (closure (t...=
17095    :PROPERTIES:
17096    :CUSTOM_ID: org-export-copy-to-kill-ring
17097    :END:
17099 - *Type:* (choice (const :tag "Always" t...
17100 - *Since:* Emacs version 26.1
17101 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
17102 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-copy-to-kill-ring][Find modifications in git logs]]
17104 : Non-nil means pushing export output to the kill ring.
17105 : This variable is ignored during asynchronous export.
17107 ** org-inlinetask-min-level =(funcall (function (closure (t...=
17108    :PROPERTIES:
17109    :CUSTOM_ID: org-inlinetask-min-level
17110    :END:
17112 - *Type:* (choice (const :tag "Off" nil)...
17113 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
17114 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-min-level][Find modifications in git logs]]
17116 : Minimum level a headline must have before it is treated as an inline task.
17117 : Don't set it to something higher than `29' or clocking will break since this
17118 : is the hardcoded maximum number of stars `org-clock-sum' will work with.
17120 : It is strongly recommended that you set `org-cycle-max-level' not at all,
17121 : or to a number smaller than this one.  In fact, when `org-cycle-max-level' is
17122 : not set, it will be assumed to be one less than the value of smaller than
17123 : the value of this variable.
17125 ** org-archive-mark-done =(funcall (function (closure (t...=
17126    :PROPERTIES:
17127    :CUSTOM_ID: org-archive-mark-done
17128    :END:
17130 - *Type:* (choice (const :tag "No" nil) ...
17131 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
17132 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-mark-done][Find modifications in git logs]]
17134 : Non-nil means mark entries as DONE when they are moved to the archive file.
17135 : This can be a string to set the keyword to use.  When non-nil, Org will
17136 : use the first keyword in its list that means done.
17138 ** org-icalendar-combined-agenda-file =(funcall (function (closure (t...=
17139    :PROPERTIES:
17140    :CUSTOM_ID: org-icalendar-combined-agenda-file
17141    :END:
17143 - *Type:* file
17144 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
17145 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-combined-agenda-file][Find modifications in git logs]]
17147 : The file name for the iCalendar file covering all agenda files.
17148 : This file is created with the command `\[org-icalendar-combine-agenda-files]'.
17149 : The file name should be absolute.  It will be overwritten without warning.
17151 ** org-confirm-elisp-link-not-regexp =(funcall (function (closure (f...=
17152    :PROPERTIES:
17153    :CUSTOM_ID: org-confirm-elisp-link-not-regexp
17154    :END:
17156 - *Type:* regexp
17157 - *Since:* Emacs version 24.1
17158 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17159 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-confirm-elisp-link-not-regexp][Find modifications in git logs]]
17161 : A regexp to skip confirmation for Elisp links.
17163 ** org-babel-C-compiler =(funcall (function (closure (t...=
17164    :PROPERTIES:
17165    :CUSTOM_ID: org-babel-C-compiler
17166    :END:
17168 - *Type:* string
17169 - *Since:* Emacs version 24.3
17170 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-C.el][ob-C.el]]
17171 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-C-compiler][Find modifications in git logs]]
17173 : Command used to compile a C source code file into an executable.
17174 : May be either a command in the path, like gcc
17175 : or an absolute path name, like /usr/local/bin/gcc
17176 : parameter may be used, like gcc -v
17178 ** org-babel-D-compiler =(funcall (function (closure (t...=
17179    :PROPERTIES:
17180    :CUSTOM_ID: org-babel-D-compiler
17181    :END:
17183 - *Type:* string
17184 - *Since:* Emacs version 24.3
17185 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-C.el][ob-C.el]]
17186 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-D-compiler][Find modifications in git logs]]
17188 : Command used to compile and execute a D source code file.
17189 : May be either a command in the path, like rdmd
17190 : or an absolute path name, like /usr/local/bin/rdmd
17191 : parameter may be used, like rdmd --chatty
17193 ** org-clock-string-limit =(funcall (function (closure (t...=
17194    :PROPERTIES:
17195    :CUSTOM_ID: org-clock-string-limit
17196    :END:
17198 - *Type:* integer
17199 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
17200 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-string-limit][Find modifications in git logs]]
17202 : Maximum length of clock strings in the mode line.  0 means no limit.
17204 ** org-agenda-move-date-from-past-immediately-to-today =t=
17205    :PROPERTIES:
17206    :CUSTOM_ID: org-agenda-move-date-from-past-immediately-to-today
17207    :END:
17209 - *Type:* boolean
17210 - *Since:* Emacs version 24.1
17211 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
17212 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-move-date-from-past-immediately-to-today][Find modifications in git logs]]
17214 : Non-nil means jump to today when moving a past date forward in time.
17215 : When using S-right in the agenda to move a a date forward, and the date
17216 : stamp currently points to the past, the first key press will move it
17217 : to today.  WHen nil, just move one day forward even if the date stays
17218 : in the past.
17220 ** org-bookmark-names-plist =(funcall (function (closure (f...=
17221    :PROPERTIES:
17222    :CUSTOM_ID: org-bookmark-names-plist
17223    :END:
17225 - *Type:* plist
17226 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17227 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bookmark-names-plist][Find modifications in git logs]]
17229 : Names for bookmarks automatically set by some Org commands.
17230 : This can provide strings as names for a number of bookmarks Org sets
17231 : automatically.  The following keys are currently implemented:
17232 :   :last-capture
17233 :   :last-capture-marker
17234 :   :last-refile
17235 : When a key does not show up in the property list, the corresponding bookmark
17236 : is not set.
17238 ** org-babel-clojure-backend =(funcall (function (closure (t...=
17239    :PROPERTIES:
17240    :CUSTOM_ID: org-babel-clojure-backend
17241    :END:
17243 - *Type:* (choice (const :tag "cider" ci...
17244 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-clojure.el][ob-clojure.el]]
17245 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-clojure-backend][Find modifications in git logs]]
17247 : Backend used to evaluate Clojure code blocks.
17249 ** org-export-show-temporary-export-buffer =(funcall (function (closure (t...=
17250    :PROPERTIES:
17251    :CUSTOM_ID: org-export-show-temporary-export-buffer
17252    :END:
17254 - *Type:* boolean
17255 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
17256 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-show-temporary-export-buffer][Find modifications in git logs]]
17258 : Non-nil means show buffer after exporting to temp buffer.
17259 : When Org exports to a file, the buffer visiting that file is never
17260 : shown, but remains buried.  However, when exporting to
17261 : a temporary buffer, that buffer is popped up in a second window.
17262 : When this variable is nil, the buffer remains buried also in
17263 : these cases.
17265 ** org-export-in-background =(funcall (function (closure (t...=
17266    :PROPERTIES:
17267    :CUSTOM_ID: org-export-in-background
17268    :END:
17270 - *Type:* boolean
17271 - *Since:* Emacs version 24.4
17272 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
17273 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-in-background][Find modifications in git logs]]
17275 : Non-nil means export and publishing commands will run in background.
17276 : Results from an asynchronous export are never displayed
17277 : automatically.  But you can retrieve them with `\[org-export-stack]'.
17279 ** org-agenda-show-inherited-tags =t=
17280    :PROPERTIES:
17281    :CUSTOM_ID: org-agenda-show-inherited-tags
17282    :END:
17284 - *Type:* (choice (const :tag "Show inhe...
17285 - *Since:* Emacs version 24.3
17286 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
17287 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-inherited-tags][Find modifications in git logs]]
17289 : Non-nil means show inherited tags in each agenda line.
17291 : When this option is set to `always', it takes precedence over
17292 : `org-agenda-use-tag-inheritance' and inherited tags are shown
17293 : in every agenda.
17295 : When this option is set to t (the default), inherited tags are
17296 : shown when they are available, i.e. when the value of
17297 : `org-agenda-use-tag-inheritance' enables tag inheritance for the
17298 : given agenda type.
17300 : This can be set to a list of agenda types in which the agenda
17301 : must display the inherited tags.  Available types are `todo',
17302 : `agenda', `search' and `timeline'.
17304 : When set to nil, never show inherited tags in agenda lines.
17306 ** org-babel-no-eval-on-ctrl-c-ctrl-c =(funcall (function (closure (t...=
17307    :PROPERTIES:
17308    :CUSTOM_ID: org-babel-no-eval-on-ctrl-c-ctrl-c
17309    :END:
17311 - *Type:* boolean
17312 - *Since:* Emacs version 24.1
17313 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
17314 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-no-eval-on-ctrl-c-ctrl-c][Find modifications in git logs]]
17316 : \<org-mode-map>Remove code block evaluation from the `\[org-ctrl-c-ctrl-c]' key binding.
17318 ** org-odd-levels-only =(funcall (function (closure (f...=
17319    :PROPERTIES:
17320    :CUSTOM_ID: org-odd-levels-only
17321    :END:
17323 - *Type:* boolean
17324 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17325 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odd-levels-only][Find modifications in git logs]]
17327 : Non-nil means skip even levels and only use odd levels for the outline.
17328 : This has the effect that two stars are being added/taken away in
17329 : promotion/demotion commands.  It also influences how levels are
17330 : handled by the exporters.
17331 : Changing it requires restart of `font-lock-mode' to become effective
17332 : for fontification also in regions already fontified.
17333 : You may also set this on a per-file basis by adding one of the following
17334 : lines to the buffer:
17336 :    #+STARTUP: odd
17337 :    #+STARTUP: oddeven
17339 ** org-ascii-headline-spacing =(funcall (function (closure (t...=
17340    :PROPERTIES:
17341    :CUSTOM_ID: org-ascii-headline-spacing
17342    :END:
17344 - *Type:* (choice (const :tag "Replicate...
17345 - *Since:* Emacs version 24.4
17346 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
17347 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-headline-spacing][Find modifications in git logs]]
17349 : Number of blank lines inserted around headlines.
17351 : This variable can be set to a cons cell.  In that case, its car
17352 : represents the number of blank lines present before headline
17353 : contents whereas its cdr reflects the number of blank lines after
17354 : contents.
17356 : A nil value replicates the number of blank lines found in the
17357 : original Org buffer at the same place.
17359 ** org-html-htmlize-output-type =(funcall (function (closure (h...=
17360    :PROPERTIES:
17361    :CUSTOM_ID: org-html-htmlize-output-type
17362    :END:
17364 - *Type:* (choice (const css) (const inl...
17365 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
17366 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-htmlize-output-type][Find modifications in git logs]]
17368 : Output type to be used by htmlize when formatting code snippets.
17369 : Choices are `css' to export the CSS selectors only,`inline-css'
17370 : to export the CSS attribute values inline in the HTML or `nil' to
17371 : export plain text.  We use as default `inline-css', in order to
17372 : make the resulting HTML self-containing.
17374 : However, this will fail when using Emacs in batch mode for export, because
17375 : then no rich font definitions are in place.  It will also not be good if
17376 : people with different Emacs setup contribute HTML files to a website,
17377 : because the fonts will represent the individual setups.  In these cases,
17378 : it is much better to let Org/Htmlize assign classes only, and to use
17379 : a style file to define the look of these classes.
17380 : To get a start for your css file, start Emacs session and make sure that
17381 : all the faces you are interested in are defined, for example by loading files
17382 : in all modes you want.  Then, use the command
17383 : `\[org-html-htmlize-generate-css]' to extract class definitions.
17385 ** org-read-date-display-live =(funcall (function (closure (f...=
17386    :PROPERTIES:
17387    :CUSTOM_ID: org-read-date-display-live
17388    :END:
17390 - *Type:* boolean
17391 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17392 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-read-date-display-live][Find modifications in git logs]]
17394 : Non-nil means display current interpretation of date prompt live.
17395 : This display will be in an overlay, in the minibuffer.
17397 ** org-clock-history-length =(funcall (function (closure (t...=
17398    :PROPERTIES:
17399    :CUSTOM_ID: org-clock-history-length
17400    :END:
17402 - *Type:* integer
17403 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
17404 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-history-length][Find modifications in git logs]]
17406 : Number of clock tasks to remember in history.
17408 ** org-imenu-depth =(funcall (function (closure (f...=
17409    :PROPERTIES:
17410    :CUSTOM_ID: org-imenu-depth
17411    :END:
17413 - *Type:* integer
17414 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17415 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-imenu-depth][Find modifications in git logs]]
17417 : The maximum level for Imenu access to Org headlines.
17418 : This also applied for speedbar access.
17420 ** org-icalendar-use-scheduled =(funcall (function (closure (t...=
17421    :PROPERTIES:
17422    :CUSTOM_ID: org-icalendar-use-scheduled
17423    :END:
17425 - *Type:* (set :greedy t (const :tag "SC...
17426 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
17427 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-use-scheduled][Find modifications in git logs]]
17429 : Contexts where iCalendar export should use a scheduling time stamp.
17431 : This is a list with possibly several symbols in it.  Valid symbols are:
17433 : `event-if-todo'       Scheduling time stamps in TODO entries become an event.
17434 : `event-if-not-todo'   Scheduling time stamps in non-TODO entries become an event.
17435 : `todo-start'          Scheduling time stamps in TODO entries become start date.
17436 :                       Some calendar applications show TODO entries only after
17437 :                       that date.
17439 ** org-latex-format-headline-function =(funcall (function (closure (t...=
17440    :PROPERTIES:
17441    :CUSTOM_ID: org-latex-format-headline-function
17442    :END:
17444 - *Type:* function
17445 - *Since:* Emacs version 24.4
17446 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
17447 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-format-headline-function][Find modifications in git logs]]
17449 : Function for formatting the headline's text.
17451 : This function will be called with six arguments:
17452 : TODO      the todo keyword (string or nil)
17453 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
17454 : PRIORITY  the priority of the headline (integer or nil)
17455 : TEXT      the main headline text (string)
17456 : TAGS      the tags (list of strings or nil)
17457 : INFO      the export options (plist)
17459 : The function result will be used in the section format string.
17461 ** org-koma-letter-default-class ="default-koma-letter"=
17462    :PROPERTIES:
17463    :CUSTOM_ID: org-koma-letter-default-class
17464    :END:
17466 - *Type:* string
17467 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17468 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-default-class][Find modifications in git logs]]
17470 : Default class for `org-koma-letter'.
17471 : The value must be a member of `org-latex-classes'.
17473 ** org-cycle-max-level =(funcall (function (closure (f...=
17474    :PROPERTIES:
17475    :CUSTOM_ID: org-cycle-max-level
17476    :END:
17478 - *Type:* (choice (const :tag "No limit"...
17479 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17480 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-max-level][Find modifications in git logs]]
17482 : Maximum level which should still be subject to visibility cycling.
17483 : Levels higher than this will, for cycling, be treated as text, not a headline.
17484 : When `org-odd-levels-only' is set, a value of N in this variable actually
17485 : means 2N-1 stars as the limiting headline.
17486 : When nil, cycle all levels.
17487 : Note that the limiting level of cycling is also influenced by
17488 : `org-inlinetask-min-level'.  When `org-cycle-max-level' is not set but
17489 : `org-inlinetask-min-level' is, cycling will be limited to levels one less
17490 : than its value.
17492 ** org-md-footnote-format =(funcall (function (closure (t...=
17493    :PROPERTIES:
17494    :CUSTOM_ID: org-md-footnote-format
17495    :END:
17497 - *Type:* string
17498 - *Since:* Emacs version 26.1
17499 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
17500 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-footnote-format][Find modifications in git logs]]
17502 : Format string for the footnote reference.
17503 : The %s will be replaced by the footnote reference itself.
17505 ** org-bbdb-extract-date-fun =(funcall (function (closure (d...=
17506    :PROPERTIES:
17507    :CUSTOM_ID: org-bbdb-extract-date-fun
17508    :END:
17510 - *Type:* function
17511 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bbdb.el][org-bbdb.el]]
17512 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bbdb-extract-date-fun][Find modifications in git logs]]
17514 : How to retrieve `month date year' from the anniversary field.
17516 : Customize if you have already filled your BBDB with dates
17517 : different from YYYY-MM-DD.  The function must return a list (month
17518 : date year).
17520 ** org-link-file-path-type =(funcall (function (closure (f...=
17521    :PROPERTIES:
17522    :CUSTOM_ID: org-link-file-path-type
17523    :END:
17525 - *Type:* (choice (const relative) (cons...
17526 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17527 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-file-path-type][Find modifications in git logs]]
17529 : How the path name in file links should be stored.
17530 : Valid values are:
17532 : relative  Relative to the current directory, i.e. the directory of the file
17533 :           into which the link is being inserted.
17534 : absolute  Absolute path, if possible with ~ for home directory.
17535 : noabbrev  Absolute path, no abbreviation of home directory.
17536 : adaptive  Use relative path for files in the current directory and sub-
17537 :           directories of it.  For other files, use an absolute path.
17539 ** org-koma-letter-from-address =""=
17540    :PROPERTIES:
17541    :CUSTOM_ID: org-koma-letter-from-address
17542    :END:
17544 - *Type:* string
17545 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17546 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-from-address][Find modifications in git logs]]
17548 : Sender's address, as a string.
17549 : This option can also be set with one or more FROM_ADDRESS
17550 : keywords.
17552 ** org-export-with-emphasize =(funcall (function (closure (t...=
17553    :PROPERTIES:
17554    :CUSTOM_ID: org-export-with-emphasize
17555    :END:
17557 - *Type:* boolean
17558 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
17559 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-emphasize][Find modifications in git logs]]
17561 : Non-nil means interpret *word*, /word/, _word_ and +word+.
17563 : If the export target supports emphasizing text, the word will be
17564 : typeset in bold, italic, with an underline or strike-through,
17565 : respectively.
17567 : This option can also be set with the OPTIONS keyword,
17568 : e.g. "*:nil".
17570 ** org-odt-schema-dir =(funcall (function (closure (h...=
17571    :PROPERTIES:
17572    :CUSTOM_ID: org-odt-schema-dir
17573    :END:
17575 - *Type:* (choice (const :tag "Not set" ...
17576 - *Since:* Emacs version 24.1
17577 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
17578 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-schema-dir][Find modifications in git logs]]
17580 : Directory that contains OpenDocument schema files.
17582 : This directory contains:
17583 : 1. rnc files for OpenDocument schema
17584 : 2. a "schemas.xml" file that specifies locating rules needed
17585 :    for auto validation of OpenDocument XML files.
17587 : Use the customize interface to set this variable.  This ensures
17588 : that `rng-schema-locating-files' is updated and auto-validation
17589 : of OpenDocument XML takes place based on the value
17590 : `rng-nxml-auto-validate-flag'.
17592 : The default value of this variable varies depending on the
17593 : version of org in use and is initialized from
17594 : `org-odt-schema-dir-list'.  The OASIS schema files are available
17595 : only in the org's private git repository.  It is *not* bundled
17596 : with GNU ELPA tar or standard Emacs distribution.
17598 ** org-inlinetask-default-state =(funcall (function (closure (t...=
17599    :PROPERTIES:
17600    :CUSTOM_ID: org-inlinetask-default-state
17601    :END:
17603 - *Type:* (choice (const :tag "No state"...
17604 - *Since:* Emacs version 24.1
17605 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-inlinetask.el][org-inlinetask.el]]
17606 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-inlinetask-default-state][Find modifications in git logs]]
17608 : Non-nil means make inline tasks have a TODO keyword initially.
17609 : This should be the state `org-inlinetask-insert-task' should use by
17610 : default, or nil of no state should be assigned.
17612 ** org-mobile-inbox-for-pull =(funcall (function (closure (t...=
17613    :PROPERTIES:
17614    :CUSTOM_ID: org-mobile-inbox-for-pull
17615    :END:
17617 - *Type:* file
17618 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
17619 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-inbox-for-pull][Find modifications in git logs]]
17621 : The file where captured notes and flags will be appended to.
17622 : During the execution of `org-mobile-pull', the file
17623 : `org-mobile-capture-file' will be emptied it's contents have
17624 : been appended to the file given here.  This file should be in
17625 : `org-directory', and not in the staging area or on the web server.
17627 ** org-babel-exp-call-line-template =(funcall (function (closure (t...=
17628    :PROPERTIES:
17629    :CUSTOM_ID: org-babel-exp-call-line-template
17630    :END:
17632 - *Type:* string
17633 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
17634 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-exp-call-line-template][Find modifications in git logs]]
17636 : Template used to export call lines.
17637 : This template may be customized to include the call line name
17638 : with any export markup.  The template is filled out using
17639 : `org-fill-template', and the following %keys may be used.
17641 :  line --- call line
17643 : An example value would be "\n: call: %line" to export the call line
17644 : wrapped in a verbatim environment.
17646 : Note: the results are inserted separately after the contents of
17647 : this template.
17649 ** org-agenda-skip-timestamp-if-done =nil=
17650    :PROPERTIES:
17651    :CUSTOM_ID: org-agenda-skip-timestamp-if-done
17652    :END:
17654 - *Type:* boolean
17655 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
17656 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-timestamp-if-done][Find modifications in git logs]]
17658 : Non-nil means don't select item by timestamp or -range if it is DONE.
17660 ** org-html-toplevel-hlevel =(funcall (function (closure (h...=
17661    :PROPERTIES:
17662    :CUSTOM_ID: org-html-toplevel-hlevel
17663    :END:
17665 - *Type:* integer
17666 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
17667 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-toplevel-hlevel][Find modifications in git logs]]
17669 : The <H> level for level 1 headings in HTML export.
17670 : This is also important for the classes that will be wrapped around headlines
17671 : and outline structure.  If this variable is 1, the top-level headlines will
17672 : be <h1>, and the corresponding classes will be outline-1, section-number-1,
17673 : and outline-text-1.  If this is 2, all of these will get a 2 instead.
17674 : The default for this variable is 2, because we use <h1> for formatting the
17675 : document title.
17677 ** org-latex-minted-langs =(funcall (function (closure (t...=
17678    :PROPERTIES:
17679    :CUSTOM_ID: org-latex-minted-langs
17680    :END:
17682 - *Type:* (repeat (list (symbol :tag "Ma...
17683 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
17684 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-minted-langs][Find modifications in git logs]]
17686 : Alist mapping languages to their minted language counterpart.
17687 : The key is a symbol, the major mode symbol without the "-mode".
17688 : The value is the string that should be inserted as the language
17689 : parameter for the minted package.  If the mode name and the
17690 : listings name are the same, the language does not need an entry
17691 : in this list - but it does not hurt if it is present.
17693 : Note that minted uses all lower case for language identifiers,
17694 : and that the full list of language identifiers can be obtained
17695 : with:
17697 :   pygmentize -L lexers
17699 ** org-clock-clocktable-default-properties =(funcall (function (closure (t...=
17700    :PROPERTIES:
17701    :CUSTOM_ID: org-clock-clocktable-default-properties
17702    :END:
17704 - *Type:* plist
17705 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
17706 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-clocktable-default-properties][Find modifications in git logs]]
17708 : Default properties for new clocktables.
17709 : These will be inserted into the BEGIN line, to make it easy for users to
17710 : play with them.
17712 ** org-html-table-use-header-tags-for-first-column =(funcall (function (closure (h...=
17713    :PROPERTIES:
17714    :CUSTOM_ID: org-html-table-use-header-tags-for-first-column
17715    :END:
17717 - *Type:* boolean
17718 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
17719 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-use-header-tags-for-first-column][Find modifications in git logs]]
17721 : Non-nil means format column one in tables with header tags.
17722 : When nil, also column one will use data tags.
17724 ** org-link-translation-function =(funcall (function (closure (f...=
17725    :PROPERTIES:
17726    :CUSTOM_ID: org-link-translation-function
17727    :END:
17729 - *Type:* (choice (const nil) (function)...
17730 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17731 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-translation-function][Find modifications in git logs]]
17733 : Function to translate links with different syntax to Org syntax.
17734 : This can be used to translate links created for example by the Planner
17735 : or emacs-wiki packages to Org syntax.
17736 : The function must accept two parameters, a TYPE containing the link
17737 : protocol name like "rmail" or "gnus" as a string, and the linked path,
17738 : which is everything after the link protocol.  It should return a cons
17739 : with possibly modified values of type and path.
17740 : Org contains a function for this, so if you set this variable to
17741 : `org-translate-link-from-planner', you should be able follow many
17742 : links created by planner.
17744 ** org-latex-remove-logfiles =(funcall (function (closure (t...=
17745    :PROPERTIES:
17746    :CUSTOM_ID: org-latex-remove-logfiles
17747    :END:
17749 - *Type:* boolean
17750 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
17751 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-remove-logfiles][Find modifications in git logs]]
17753 : Non-nil means remove the logfiles produced by PDF production.
17754 : By default, logfiles are files with these extensions: .aux, .idx,
17755 : .log, .out, .toc, .nav, .snm and .vrb.  To define the set of
17756 : logfiles to remove, set `org-latex-logfiles-extensions'.
17758 ** org-koma-letter-location =""=
17759    :PROPERTIES:
17760    :CUSTOM_ID: org-koma-letter-location
17761    :END:
17763 - *Type:* string
17764 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17765 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-location][Find modifications in git logs]]
17767 : Sender's extension field, as a string.
17769 : This option can also be set with the LOCATION keyword.
17770 : Moreover, when:
17771 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
17772 :       or there is no LOCATION keyword or the LOCATION keyword is
17773 :       empty;
17774 :   (2) the letter contains a headline with the special
17775 :       tag "location";
17776 : then the location will be set as the content of the location
17777 : special heading.
17779 : The location field is typically printed right of the address
17780 : field (See Figure 4.9. in the English manual of 2015-10-03).
17782 ** org-latex-custom-lang-environments =(funcall (function (closure (t...=
17783    :PROPERTIES:
17784    :CUSTOM_ID: org-latex-custom-lang-environments
17785    :END:
17787 - *Type:* (repeat (list (symbol :tag "La...
17788 - *Since:* Emacs version 26.1
17789 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
17790 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-custom-lang-environments][Find modifications in git logs]]
17792 : Alist mapping languages to language-specific LaTeX environments.
17794 : It is used during export of src blocks by the listings and minted
17795 : latex packages.  The environment may be a simple string, composed of
17796 : only letters and numbers.  In this case, the string is directly the
17797 : name of the latex environment to use.  The environment may also be
17798 : a format string.  In this case the format string will be directly
17799 : exported.  This format string may contain these elements:
17801 :   %s for the formatted source
17802 :   %c for the caption
17803 :   %f for the float attribute
17804 :   %l for an appropriate label
17805 :   %o for the LaTeX attributes
17807 : For example,
17809 :   (setq org-latex-custom-lang-environments
17810 :      \='((python "pythoncode")
17811 :        (ocaml "\\begin{listing}
17812 : \\begin{minted}[%o]{ocaml}
17813 : %s\\end{minted}
17814 : \\caption{%c}
17815 : \\label{%l}")))
17817 : would have the effect that if Org encounters a Python source block
17818 : during LaTeX export it will produce
17820 :   \begin{pythoncode}
17821 :   <src block body>
17822 :   \end{pythoncode}
17824 : and if Org encounters an Ocaml source block during LaTeX export it
17825 : will produce
17827 :   \begin{listing}
17828 :   \begin{minted}[<attr_latex options>]{ocaml}
17829 :   <src block body>
17830 :   \end{minted}
17831 :   \caption{<caption>}
17832 :   \label{<label>}
17833 :   \end{listing}
17835 ** org-id-search-archives =(funcall (function (closure (t...=
17836    :PROPERTIES:
17837    :CUSTOM_ID: org-id-search-archives
17838    :END:
17840 - *Type:* boolean
17841 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
17842 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-search-archives][Find modifications in git logs]]
17844 : Non-nil means search also the archive files of agenda files for entries.
17845 : This is a possibility to reduce overhead, but it means that entries moved
17846 : to the archives can no longer be found by ID.
17847 : This variable is only relevant when `org-id-track-globally' is set.
17849 ** org-org-htmlized-css-url =(funcall (function (closure (h...=
17850    :PROPERTIES:
17851    :CUSTOM_ID: org-org-htmlized-css-url
17852    :END:
17854 - *Type:* (choice (const :tag "Don't inc...
17855 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-org.el][ox-org.el]]
17856 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-org-htmlized-css-url][Find modifications in git logs]]
17858 : URL pointing to the CSS defining colors for htmlized Emacs buffers.
17859 : Normally when creating an htmlized version of an Org buffer,
17860 : htmlize will create the CSS to define the font colors.  However,
17861 : this does not work when converting in batch mode, and it also can
17862 : look bad if different people with different fontification setup
17863 : work on the same website.  When this variable is non-nil,
17864 : creating an htmlized version of an Org buffer using
17865 : `org-org-export-as-org' will include a link to this URL if the
17866 : setting of `org-html-htmlize-output-type' is `css'.
17868 ** org-use-fast-tag-selection =(funcall (function (closure (f...=
17869    :PROPERTIES:
17870    :CUSTOM_ID: org-use-fast-tag-selection
17871    :END:
17873 - *Type:* (choice (const :tag "Always" t...
17874 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17875 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-fast-tag-selection][Find modifications in git logs]]
17877 : Non-nil means use fast tag selection scheme.
17878 : This is a special interface to select and deselect tags with single keys.
17879 : When nil, fast selection is never used.
17880 : When the symbol `auto', fast selection is used if and only if selection
17881 : characters for tags have been configured, either through the variable
17882 : `org-tag-alist' or through a #+TAGS line in the buffer.
17883 : When t, fast selection is always used and selection keys are assigned
17884 : automatically if necessary.
17886 ** org-preview-latex-process-alist =(funcall (function (closure (f...=
17887    :PROPERTIES:
17888    :CUSTOM_ID: org-preview-latex-process-alist
17889    :END:
17891 - *Type:* (alist :tag "LaTeX to image ba...
17892 - *Since:* Emacs version 26.1
17893 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17894 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-preview-latex-process-alist][Find modifications in git logs]]
17896 : Definitions of external processes for LaTeX previewing.
17897 : Org mode can use some external commands to generate TeX snippet's images for
17898 : previewing or inserting into HTML files, e.g., "dvipng".  This variable tells
17899 : `org-create-formula-image' how to call them.
17901 : The value is an alist with the pattern (NAME . PROPERTIES).  NAME is a symbol.
17902 : PROPERTIES accepts the following attributes:
17904 :   :programs           list of strings, required programs.
17905 :   :description        string, describe the process.
17906 :   :message            string, message it when required programs cannot be found.
17907 :   :image-input-type   string, input file type of image converter (e.g., "dvi").
17908 :   :image-output-type  string, output file type of image converter (e.g., "png").
17909 :   :use-xcolor         boolean, when non-nil, LaTeX "xcolor" macro is used to
17910 :                       deal with background and foreground color of image.
17911 :                       Otherwise, dvipng style background and foregroud color
17912 :                       format are generated.  You may then refer to them in
17913 :                       command options with "%F" and "%B".
17914 :   :image-size-adjust  cons of numbers, the car element is used to adjust LaTeX
17915 :                       image size showed in buffer and the cdr element is for
17916 :                       HTML file.  This option is only useful for process
17917 :                       developers, users should use variable
17918 :                       `org-format-latex-options' instead.
17919 :   :post-clean         list of strings, files matched are to be cleaned up once
17920 :                       the image is generated.  When nil, the files with ".dvi",
17921 :                       ".xdv", ".pdf", ".tex", ".aux", ".log", ".svg",
17922 :                       ".png", ".jpg", ".jpeg" or ".out" extension will
17923 :                       be cleaned up.
17924 :   :latex-header       list of strings, the LaTeX header of the snippet file.
17925 :                       When nil, the fallback value is used instead, which is
17926 :                       controlled by `org-format-latex-header',
17927 :                       `org-latex-default-packages-alist' and
17928 :                       `org-latex-packages-alist', which see.
17929 :   :latex-compiler     list of LaTeX commands, as strings.  Each of them is given
17930 :                       to the shell.  Place-holders "%t", "%b" and "%o" are
17931 :                       replaced with values defined below.
17932 :   :image-converter    list of image converter commands strings.  Each of them is
17933 :                       given to the shell and supports any of the following
17934 :                       place-holders defined below.
17936 : Place-holders used by `:image-converter' and `:latex-compiler':
17938 :   %f    input file name
17939 :   %b    base name of input file
17940 :   %o    base directory of input file
17941 :   %O    absolute output file name
17943 : Place-holders only used by `:image-converter':
17945 :   %F    foreground of image
17946 :   %B    background of image
17947 :   %D    dpi, which is used to adjust image size by some processing commands.
17948 :   %S    the image size scale ratio, which is used to adjust image size by some
17949 :         processing commands.
17951 ** org-archive-subtree-add-inherited-tags =(funcall (function (closure (t...=
17952    :PROPERTIES:
17953    :CUSTOM_ID: org-archive-subtree-add-inherited-tags
17954    :END:
17956 - *Type:* (choice (const :tag "Never" ni...
17957 - *Since:* Emacs version 24.1
17958 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
17959 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-subtree-add-inherited-tags][Find modifications in git logs]]
17961 : Non-nil means append inherited tags when archiving a subtree.
17963 ** org-get-priority-function =(funcall (function (closure (f...=
17964    :PROPERTIES:
17965    :CUSTOM_ID: org-get-priority-function
17966    :END:
17968 - *Type:* (choice (const nil) (function)...
17969 - *Since:* Emacs version 24.1
17970 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
17971 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-get-priority-function][Find modifications in git logs]]
17973 : Function to extract the priority from a string.
17974 : The string is normally the headline.  If this is nil Org computes the
17975 : priority from the priority cookie like [#A] in the headline.  It returns
17976 : an integer, increasing by 1000 for each priority level.
17977 : The user can set a different function here, which should take a string
17978 : as an argument and return the numeric priority.
17980 ** org-html-table-align-individual-fields =(funcall (function (closure (h...=
17981    :PROPERTIES:
17982    :CUSTOM_ID: org-html-table-align-individual-fields
17983    :END:
17985 - *Type:* boolean
17986 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
17987 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-align-individual-fields][Find modifications in git logs]]
17989 : Non-nil means attach style attributes for alignment to each table field.
17990 : When nil, alignment will only be specified in the column tags, but this
17991 : is ignored by some browsers (like Firefox, Safari).  Opera does it right
17992 : though.
17994 ** org-beamer-outline-frame-title =(funcall (function (closure (t...=
17995    :PROPERTIES:
17996    :CUSTOM_ID: org-beamer-outline-frame-title
17997    :END:
17999 - *Type:* (string :tag "Outline frame ti...
18000 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
18001 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-outline-frame-title][Find modifications in git logs]]
18003 : Default title of a frame containing an outline.
18005 ** org-latex-text-markup-alist =(funcall (function (closure (t...=
18006    :PROPERTIES:
18007    :CUSTOM_ID: org-latex-text-markup-alist
18008    :END:
18010 - *Type:* alist
18011 - *Since:* Emacs version 26.1
18012 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
18013 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-text-markup-alist][Find modifications in git logs]]
18015 : Alist of LaTeX expressions to convert text markup.
18017 : The key must be a symbol among `bold', `code', `italic',
18018 : `strike-through', `underline' and `verbatim'.  The value is
18019 : a formatting string to wrap fontified text with.
18021 : Value can also be set to the following symbols: `verb' and
18022 : `protectedtexttt'.  For the former, Org will use "\verb" to
18023 : create a format string and select a delimiter character that
18024 : isn't in the string.  For the latter, Org will use "\texttt"
18025 : to typeset and try to protect special characters.
18027 : If no association can be found for a given markup, text will be
18028 : returned as-is.
18030 ** org-ascii-caption-above =(funcall (function (closure (t...=
18031    :PROPERTIES:
18032    :CUSTOM_ID: org-ascii-caption-above
18033    :END:
18035 - *Type:* boolean
18036 - *Since:* Emacs version 24.4
18037 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
18038 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-caption-above][Find modifications in git logs]]
18040 : When non-nil, place caption string before the element.
18041 : Otherwise, place it right after it.
18043 ** org-clock-file-time-cell-format =(funcall (function (closure (t...=
18044    :PROPERTIES:
18045    :CUSTOM_ID: org-clock-file-time-cell-format
18046    :END:
18048 - *Type:* string
18049 - *Since:* Emacs version 24.1
18050 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
18051 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-file-time-cell-format][Find modifications in git logs]]
18053 : Format string for the file time cells.
18055 ** org-babel-lua-mode =(funcall (function (closure (t...=
18056    :PROPERTIES:
18057    :CUSTOM_ID: org-babel-lua-mode
18058    :END:
18060 - *Type:* symbol
18061 - *Since:* Emacs version 24.5
18062 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lua.el][ob-lua.el]]
18063 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lua-mode][Find modifications in git logs]]
18065 : Preferred lua mode for use in running lua interactively.
18066 : This will typically be 'lua-mode.
18068 ** org-export-dispatch-use-expert-ui =(funcall (function (closure (t...=
18069    :PROPERTIES:
18070    :CUSTOM_ID: org-export-dispatch-use-expert-ui
18071    :END:
18073 - *Type:* boolean
18074 - *Since:* Emacs version 24.4
18075 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
18076 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-dispatch-use-expert-ui][Find modifications in git logs]]
18078 : Non-nil means using a non-intrusive `org-export-dispatch'.
18079 : In that case, no help buffer is displayed.  Though, an indicator
18080 : for current export scope is added to the prompt ("b" when
18081 : output is restricted to body only, "s" when it is restricted to
18082 : the current subtree, "v" when only visible elements are
18083 : considered for export, "f" when publishing functions should be
18084 : passed the FORCE argument and "a" when the export should be
18085 : asynchronous).  Also, [?] allows switching back to standard
18086 : mode.
18088 ** org-export-with-footnotes =(funcall (function (closure (t...=
18089    :PROPERTIES:
18090    :CUSTOM_ID: org-export-with-footnotes
18091    :END:
18093 - *Type:* boolean
18094 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
18095 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-footnotes][Find modifications in git logs]]
18097 : Non-nil means Org footnotes should be exported.
18098 : This option can also be set with the OPTIONS keyword,
18099 : e.g. "f:nil".
18101 ** org-html-creator-string =(funcall (function (closure (h...=
18102    :PROPERTIES:
18103    :CUSTOM_ID: org-html-creator-string
18104    :END:
18106 - *Type:* (string :tag "Creator string")
18107 - *Since:* Emacs version 24.4
18108 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
18109 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-creator-string][Find modifications in git logs]]
18111 : Information about the creator of the HTML document.
18112 : This option can also be set on with the CREATOR keyword.
18114 ** org-md-footnotes-section =(funcall (function (closure (t...=
18115    :PROPERTIES:
18116    :CUSTOM_ID: org-md-footnotes-section
18117    :END:
18119 - *Type:* string
18120 - *Since:* Emacs version 26.1
18121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
18122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-footnotes-section][Find modifications in git logs]]
18124 : Format string for the footnotes section.
18125 : The first %s placeholder will be replaced with the localized Footnotes section
18126 : heading, the second with the contents of the Footnotes section.
18128 ** org-export-with-inlinetasks =(funcall (function (closure (t...=
18129    :PROPERTIES:
18130    :CUSTOM_ID: org-export-with-inlinetasks
18131    :END:
18133 - *Type:* boolean
18134 - *Since:* Emacs version 24.4
18135 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
18136 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-inlinetasks][Find modifications in git logs]]
18138 : Non-nil means inlinetasks should be exported.
18139 : This option can also be set with the OPTIONS keyword,
18140 : e.g. "inline:nil".
18142 ** org-html-coding-system =(funcall (function (closure (h...=
18143    :PROPERTIES:
18144    :CUSTOM_ID: org-html-coding-system
18145    :END:
18147 - *Type:* coding-system
18148 - *Since:* Emacs version 24.4
18149 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
18150 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-coding-system][Find modifications in git logs]]
18152 : Coding system for HTML export.
18153 : Use utf-8 as the default value.
18155 ** org-agenda-skip-additional-timestamps-same-entry =nil=
18156    :PROPERTIES:
18157    :CUSTOM_ID: org-agenda-skip-additional-timestamps-same-entry
18158    :END:
18160 - *Type:* boolean
18161 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18162 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-additional-timestamps-same-entry][Find modifications in git logs]]
18164 : When nil, multiple same-day timestamps in entry make multiple agenda lines.
18165 : When non-nil, after the search for timestamps has matched once in an
18166 : entry, the rest of the entry will not be searched.
18168 ** org-icalendar-include-bbdb-anniversaries =(funcall (function (closure (t...=
18169    :PROPERTIES:
18170    :CUSTOM_ID: org-icalendar-include-bbdb-anniversaries
18171    :END:
18173 - *Type:* boolean
18174 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
18175 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-include-bbdb-anniversaries][Find modifications in git logs]]
18177 : Non-nil means a combined iCalendar file should include anniversaries.
18178 : The anniversaries are defined in the BBDB database.
18180 ** org-babel-picolisp-cmd =(funcall (function (closure (t...=
18181    :PROPERTIES:
18182    :CUSTOM_ID: org-babel-picolisp-cmd
18183    :END:
18185 - *Type:* string
18186 - *Since:* Emacs version 24.1
18187 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-picolisp.el][ob-picolisp.el]]
18188 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-picolisp-cmd][Find modifications in git logs]]
18190 : Name of command used to evaluate picolisp blocks.
18192 ** org-enforce-todo-dependencies =(funcall (function (closure (f...=
18193    :PROPERTIES:
18194    :CUSTOM_ID: org-enforce-todo-dependencies
18195    :END:
18197 - *Type:* boolean
18198 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18199 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-enforce-todo-dependencies][Find modifications in git logs]]
18201 : Non-nil means undone TODO entries will block switching the parent to DONE.
18202 : Also, if a parent has an :ORDERED: property, switching an entry to DONE will
18203 : be blocked if any prior sibling is not yet done.
18204 : Finally, if the parent is blocked because of ordered siblings of its own,
18205 : the child will also be blocked.
18207 ** org-id-method =(funcall (function (closure (t...=
18208    :PROPERTIES:
18209    :CUSTOM_ID: org-id-method
18210    :END:
18212 - *Type:* (choice (const :tag "Org's int...
18213 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
18214 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-method][Find modifications in git logs]]
18216 : The method that should be used to create new IDs.
18218 : An ID will consist of the optional prefix specified in `org-id-prefix',
18219 : and a unique part created by the method this variable specifies.
18221 : Allowed values are:
18223 : org        Org's own internal method, using an encoding of the current time to
18224 :            microsecond accuracy, and optionally the current domain of the
18225 :            computer.  See the variable `org-id-include-domain'.
18227 : uuid       Create random (version 4) UUIDs.  If the program defined in
18228 :            `org-id-uuid-program' is available it is used to create the ID.
18229 :            Otherwise an internal functions is used.
18231 ** org-export-with-sub-superscripts =(funcall (function (closure (t...=
18232    :PROPERTIES:
18233    :CUSTOM_ID: org-export-with-sub-superscripts
18234    :END:
18236 - *Type:* (choice (const :tag "Interpret...
18237 - *Since:* Emacs version 24.4
18238 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
18239 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-sub-superscripts][Find modifications in git logs]]
18241 : Non-nil means interpret "_" and "^" for export.
18243 : If you want to control how Org displays those characters, see
18244 : `org-use-sub-superscripts'.  `org-export-with-sub-superscripts'
18245 : used to be an alias for `org-use-sub-superscripts' in Org <8.0,
18246 : it is not anymore.
18248 : When this option is turned on, you can use TeX-like syntax for
18249 : sub- and superscripts and see them exported correctly.
18251 : You can also set the option with #+OPTIONS: ^:t
18253 : Several characters after "_" or "^" will be considered as a
18254 : single item - so grouping with {} is normally not needed.  For
18255 : example, the following things will be parsed as single sub- or
18256 : superscripts:
18258 :  10^24   or   10^tau     several digits will be considered 1 item.
18259 :  10^-12  or   10^-tau    a leading sign with digits or a word
18260 :  x^2-y^3                 will be read as x^2 - y^3, because items are
18261 :                        terminated by almost any nonword/nondigit char.
18262 :  x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
18264 : Still, ambiguity is possible.  So when in doubt, use {} to enclose
18265 : the sub/superscript.  If you set this variable to the symbol `{}',
18266 : the braces are *required* in order to trigger interpretations as
18267 : sub/superscript.  This can be helpful in documents that need "_"
18268 : frequently in plain text.
18270 ** org-icalendar-exclude-tags =(funcall (function (closure (t...=
18271    :PROPERTIES:
18272    :CUSTOM_ID: org-icalendar-exclude-tags
18273    :END:
18275 - *Type:* (repeat (string :tag "Tag"))
18276 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
18277 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-exclude-tags][Find modifications in git logs]]
18279 : Tags that exclude a tree from export.
18280 : This variable allows specifying different exclude tags from other
18281 : back-ends.  It can also be set with the ICALENDAR_EXCLUDE_TAGS
18282 : keyword.
18284 ** org-src-ask-before-returning-to-edit-buffer =(funcall (function (closure (t...=
18285    :PROPERTIES:
18286    :CUSTOM_ID: org-src-ask-before-returning-to-edit-buffer
18287    :END:
18289 - *Type:* boolean
18290 - *Since:* Emacs version 24.4
18291 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
18292 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-ask-before-returning-to-edit-buffer][Find modifications in git logs]]
18294 : Non-nil means ask before switching to an existing edit buffer.
18295 : If nil, when `org-edit-src-code' is used on a block that already
18296 : has an active edit buffer, it will switch to that edit buffer
18297 : immediately; otherwise it will ask whether you want to return to
18298 : the existing edit buffer.
18300 ** org-agenda-window-frame-fractions =(quote (0.5 . 0.75))=
18301    :PROPERTIES:
18302    :CUSTOM_ID: org-agenda-window-frame-fractions
18303    :END:
18305 - *Type:* (cons (number :tag "Minimum") ...
18306 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18307 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-window-frame-fractions][Find modifications in git logs]]
18309 : The min and max height of the agenda window as a fraction of frame height.
18310 : The value of the variable is a cons cell with two numbers between 0 and 1.
18311 : It only matters if `org-agenda-window-setup' is `reorganize-frame'.
18313 ** org-latex-default-table-environment =(funcall (function (closure (t...=
18314    :PROPERTIES:
18315    :CUSTOM_ID: org-latex-default-table-environment
18316    :END:
18318 - *Type:* string
18319 - *Since:* Emacs version 24.4
18320 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
18321 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-default-table-environment][Find modifications in git logs]]
18323 : Default environment used to build tables.
18325 ** org-babel-stan-cmdstan-directory =(funcall (function (closure (t...=
18326    :PROPERTIES:
18327    :CUSTOM_ID: org-babel-stan-cmdstan-directory
18328    :END:
18330 - *Type:* string
18331 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-stan.el][ob-stan.el]]
18332 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-stan-cmdstan-directory][Find modifications in git logs]]
18334 : CmdStan source directory.
18335 : 'make' will be called from this directory to compile the Stan
18336 : block.  When nil, executing Stan blocks dumps the content to a
18337 : plain text file.
18339 ** org-columns-default-format =(funcall (function (closure (f...=
18340    :PROPERTIES:
18341    :CUSTOM_ID: org-columns-default-format
18342    :END:
18344 - *Type:* string
18345 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18346 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-default-format][Find modifications in git logs]]
18348 : The default column format, if no other format has been defined.
18349 : This variable can be set on the per-file basis by inserting a line
18351 : #+COLUMNS: %25ITEM .....
18353 ** org-url-hexify-p =(funcall (function (closure (f...=
18354    :PROPERTIES:
18355    :CUSTOM_ID: org-url-hexify-p
18356    :END:
18358 - *Type:* boolean
18359 - *Since:* Emacs version 24.3
18360 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18361 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-url-hexify-p][Find modifications in git logs]]
18363 : When non-nil, hexify URL when creating a link.
18365 ** org-table-duration-hour-zero-padding =(funcall (function (closure (o...=
18366    :PROPERTIES:
18367    :CUSTOM_ID: org-table-duration-hour-zero-padding
18368    :END:
18370 - *Type:* boolean
18371 - *Since:* Emacs version 26.1
18372 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
18373 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-duration-hour-zero-padding][Find modifications in git logs]]
18375 : Non-nil means hours in table duration computations should be zero-padded.
18376 : So this is about 08:32:34 versus 8:33:34.
18378 ** org-clock-continuously =(funcall (function (closure (t...=
18379    :PROPERTIES:
18380    :CUSTOM_ID: org-clock-continuously
18381    :END:
18383 - *Type:* boolean
18384 - *Since:* Emacs version 24.1
18385 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
18386 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-continuously][Find modifications in git logs]]
18388 : Non-nil means to start clocking from the last clock-out time, if any.
18390 ** org-agenda-include-diary =nil=
18391    :PROPERTIES:
18392    :CUSTOM_ID: org-agenda-include-diary
18393    :END:
18395 - *Type:* boolean
18396 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18397 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-include-diary][Find modifications in git logs]]
18399 : If non-nil, include in the agenda entries from the Emacs Calendar's diary.
18400 : Custom commands can set this variable in the options section.
18402 ** org-export-with-priority =(funcall (function (closure (t...=
18403    :PROPERTIES:
18404    :CUSTOM_ID: org-export-with-priority
18405    :END:
18407 - *Type:* boolean
18408 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
18409 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-priority][Find modifications in git logs]]
18411 : Non-nil means include priority cookies in export.
18412 : This option can also be set with the OPTIONS keyword,
18413 : e.g. "pri:t".
18415 ** org-provide-todo-statistics =(funcall (function (closure (f...=
18416    :PROPERTIES:
18417    :CUSTOM_ID: org-provide-todo-statistics
18418    :END:
18420 - *Type:* (choice (const :tag "Yes, only...
18421 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18422 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-provide-todo-statistics][Find modifications in git logs]]
18424 : Non-nil means update todo statistics after insert and toggle.
18425 : ALL-HEADLINES means update todo statistics by including headlines
18426 : with no TODO keyword as well, counting them as not done.
18427 : A list of TODO keywords means the same, but skip keywords that are
18428 : not in this list.
18429 : When set to a list of two lists, the first list contains keywords
18430 : to consider as TODO keywords, the second list contains keywords
18431 : to consider as DONE keywords.
18433 : When this is set, todo statistics is updated in the parent of the
18434 : current entry each time a todo state is changed.
18436 ** org-ditaa-jar-path =(funcall (function (closure (t...=
18437    :PROPERTIES:
18438    :CUSTOM_ID: org-ditaa-jar-path
18439    :END:
18441 - *Type:* string
18442 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ditaa.el][ob-ditaa.el]]
18443 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ditaa-jar-path][Find modifications in git logs]]
18445 : Path to the ditaa jar executable.
18447 ** org-highest-priority =(funcall (function (closure (f...=
18448    :PROPERTIES:
18449    :CUSTOM_ID: org-highest-priority
18450    :END:
18452 - *Type:* character
18453 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18454 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-highest-priority][Find modifications in git logs]]
18456 : The highest priority of TODO items.  A character like ?A, ?B etc.
18457 : Must have a smaller ASCII number than `org-lowest-priority'.
18459 ** org-edit-src-auto-save-idle-delay =(funcall (function (closure (t...=
18460    :PROPERTIES:
18461    :CUSTOM_ID: org-edit-src-auto-save-idle-delay
18462    :END:
18464 - *Type:* integer
18465 - *Since:* Emacs version 24.4
18466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
18467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-auto-save-idle-delay][Find modifications in git logs]]
18469 : Delay before saving a source code buffer back into its base buffer.
18470 : When a positive integer N, save after N seconds of idle time.
18471 : When 0 (the default), don't auto-save.
18473 : If you want to save the source code buffer itself, don't use this.
18474 : Check `org-edit-src-turn-on-auto-save' instead.
18476 ** org-koma-letter-closing =""=
18477    :PROPERTIES:
18478    :CUSTOM_ID: org-koma-letter-closing
18479    :END:
18481 - *Type:* string
18482 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
18483 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-closing][Find modifications in git logs]]
18485 : Letter's closing, as a string.
18486 : This option can also be set with the CLOSING keyword.  Moreover,
18487 : when:
18488 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
18489 :       or the CLOSING keyword is empty;
18490 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
18491 :   (3) the letter contains a headline with the special
18492 :       tag "closing";
18493 : then the opening will be set as the title of the closing special
18494 : heading title.
18496 ** org-capture-templates-contexts =(funcall (function (closure (o...=
18497    :PROPERTIES:
18498    :CUSTOM_ID: org-capture-templates-contexts
18499    :END:
18501 - *Type:* (repeat (list :tag "Rule" (str...
18502 - *Since:* Emacs version 24.3
18503 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
18504 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-templates-contexts][Find modifications in git logs]]
18506 : Alist of capture templates and valid contexts.
18508 : For example, if you have a capture template "c" and you want
18509 : this template to be accessible only from `message-mode' buffers,
18510 : use this:
18512 :    \='(("c" ((in-mode . "message-mode"))))
18514 : Here are the available contexts definitions:
18516 :       in-file: command displayed only in matching files
18517 :       in-mode: command displayed only in matching modes
18518 :   not-in-file: command not displayed in matching files
18519 :   not-in-mode: command not displayed in matching modes
18520 :     in-buffer: command displayed only in matching buffers
18521 : not-in-buffer: command not displayed in matching buffers
18522 :    [function]: a custom function taking no argument
18524 : If you define several checks, the agenda command will be
18525 : accessible if there is at least one valid check.
18527 : You can also bind a key to another agenda custom command
18528 : depending on contextual rules.
18530 :     \='(("c" "d" ((in-mode . "message-mode"))))
18532 : Here it means: in `message-mode buffers', use "c" as the
18533 : key for the capture template otherwise associated with "d".
18534 : (The template originally associated with "d" is not displayed
18535 : to avoid duplicates.)
18537 ** org-odt-format-drawer-function =(funcall (function (closure (h...=
18538    :PROPERTIES:
18539    :CUSTOM_ID: org-odt-format-drawer-function
18540    :END:
18542 - *Type:* function
18543 - *Since:* Emacs version 24.4
18544 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
18545 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-format-drawer-function][Find modifications in git logs]]
18547 : Function called to format a drawer in ODT code.
18549 : The function must accept two parameters:
18550 :   NAME      the drawer name, like "LOGBOOK"
18551 :   CONTENTS  the contents of the drawer.
18553 : The function should return the string to be exported.
18555 : The default value simply returns the value of CONTENTS.
18557 ** org-table-number-regexp =(funcall (function (closure (o...=
18558    :PROPERTIES:
18559    :CUSTOM_ID: org-table-number-regexp
18560    :END:
18562 - *Type:* (choice (const :tag "Positive ...
18563 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
18564 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-number-regexp][Find modifications in git logs]]
18566 : Regular expression for recognizing numbers in table columns.
18567 : If a table column contains mostly numbers, it will be aligned to the
18568 : right.  If not, it will be aligned to the left.
18570 : The default value of this option is a regular expression which allows
18571 : anything which looks remotely like a number as used in scientific
18572 : context.  For example, all of the following will be considered a
18573 : number:
18574 :     12    12.2    2.4e-08    2x10^12    4.034+-0.02    2.7(10)  >3.5
18576 : Other options offered by the customize interface are more restrictive.
18578 ** org-return-follows-link =(funcall (function (closure (f...=
18579    :PROPERTIES:
18580    :CUSTOM_ID: org-return-follows-link
18581    :END:
18583 - *Type:* boolean
18584 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18585 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-return-follows-link][Find modifications in git logs]]
18587 : Non-nil means on links RET will follow the link.
18588 : In tables, the special behavior of RET has precedence.
18590 ** org-ascii-underline =(funcall (function (closure (t...=
18591    :PROPERTIES:
18592    :CUSTOM_ID: org-ascii-underline
18593    :END:
18595 - *Type:* (list (cons :tag "Underline ch...
18596 - *Since:* Emacs version 24.4
18597 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
18598 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-underline][Find modifications in git logs]]
18600 : Characters for underlining headings in ASCII export.
18602 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
18603 : and whose value is a list of characters.
18605 : For each supported charset, this variable associates a sequence
18606 : of underline characters.  In a sequence, the characters will be
18607 : used in order for headlines level 1, 2, ...  If no character is
18608 : available for a given level, the headline won't be underlined.
18610 ** org-agenda-compact-blocks =nil=
18611    :PROPERTIES:
18612    :CUSTOM_ID: org-agenda-compact-blocks
18613    :END:
18615 - *Type:* boolean
18616 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18617 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-compact-blocks][Find modifications in git logs]]
18619 : Non-nil means make the block agenda more compact.
18620 : This is done globally by leaving out lines like the agenda span
18621 : name and week number or the separator lines.
18623 ** org-texinfo-format-drawer-function =(funcall (function (closure (t...=
18624    :PROPERTIES:
18625    :CUSTOM_ID: org-texinfo-format-drawer-function
18626    :END:
18628 - *Type:* function
18629 - *Since:* Emacs version 24.4
18630 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
18631 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-format-drawer-function][Find modifications in git logs]]
18633 : Function called to format a drawer in Texinfo code.
18635 : The function must accept two parameters:
18636 :   NAME      the drawer name, like "LOGBOOK"
18637 :   CONTENTS  the contents of the drawer.
18639 : The function should return the string to be exported.
18641 : The default function simply returns the value of CONTENTS.
18643 ** org-highlight-sparse-tree-matches =(funcall (function (closure (f...=
18644    :PROPERTIES:
18645    :CUSTOM_ID: org-highlight-sparse-tree-matches
18646    :END:
18648 - *Type:* boolean
18649 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18650 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-highlight-sparse-tree-matches][Find modifications in git logs]]
18652 : Non-nil means highlight all matches that define a sparse tree.
18653 : The highlights will automatically disappear the next time the buffer is
18654 : changed by an edit command.
18656 ** org-bibtex-inherit-tags =(funcall (function (closure (t...=
18657    :PROPERTIES:
18658    :CUSTOM_ID: org-bibtex-inherit-tags
18659    :END:
18661 - *Type:* boolean
18662 - *Since:* Emacs version 26.1
18663 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
18664 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-inherit-tags][Find modifications in git logs]]
18666 : Controls whether inherited tags are converted to bibtex keywords.
18667 : It is relevant only if `org-bibtex-tags-are-keywords' is non-nil.
18668 : Tag inheritence itself is controlled by `org-use-tag-inheritence'
18669 : and `org-exclude-tags-from-inheritence'.
18671 ** org-archive-sibling-heading =(funcall (function (closure (t...=
18672    :PROPERTIES:
18673    :CUSTOM_ID: org-archive-sibling-heading
18674    :END:
18676 - *Type:* string
18677 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
18678 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-sibling-heading][Find modifications in git logs]]
18680 : Name of the local archive sibling that is used to archive entries locally.
18681 : Locally means: in the tree, under a sibling.
18682 : See `org-archive-to-archive-sibling' for more information.
18684 ** org-learn-fraction =0.5=
18685    :PROPERTIES:
18686    :CUSTOM_ID: org-learn-fraction
18687    :END:
18689 - *Type:* float
18690 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-learn.el][org-learn.el]]
18691 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-learn-fraction][Find modifications in git logs]]
18693 : Controls the rate at which EF is increased or decreased.
18694 : Must be a number between 0 and 1 (the greater it is the faster
18695 : the changes of the OF matrix).
18697 ** org-agenda-files =(funcall (function (closure (f...=
18698    :PROPERTIES:
18699    :CUSTOM_ID: org-agenda-files
18700    :END:
18702 - *Type:* (choice (repeat :tag "List of ...
18703 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18704 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-files][Find modifications in git logs]]
18706 : The files to be used for agenda display.
18708 : If an entry is a directory, all files in that directory that are matched
18709 : by `org-agenda-file-regexp' will be part of the file list.
18711 : If the value of the variable is not a list but a single file name, then
18712 : the list of agenda files is actually stored and maintained in that file,
18713 : one agenda file per line.  In this file paths can be given relative to
18714 : `org-directory'.  Tilde expansion and environment variable substitution
18715 : are also made.
18717 : Entries may be added to this list with `\[org-agenda-file-to-front]'
18718 : and removed with `\[org-remove-file]'.
18720 ** org-fontify-whole-heading-line =(funcall (function (closure (f...=
18721    :PROPERTIES:
18722    :CUSTOM_ID: org-fontify-whole-heading-line
18723    :END:
18725 - *Type:* boolean
18726 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18727 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fontify-whole-heading-line][Find modifications in git logs]]
18729 : Non-nil means fontify the whole line for headings.
18730 : This is useful when setting a background color for the
18731 : org-level-* faces.
18733 ** org-properties-postprocess-alist =(funcall (function (closure (f...=
18734    :PROPERTIES:
18735    :CUSTOM_ID: org-properties-postprocess-alist
18736    :END:
18738 - *Type:* (alist :key-type (string :tag ...
18739 - *Since:* Emacs version 24.1
18740 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18741 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-properties-postprocess-alist][Find modifications in git logs]]
18743 : Alist of properties and functions to adjust inserted values.
18744 : Elements of this alist must be of the form
18746 :   ([string] [function])
18748 : where [string] must be a property name and [function] must be a
18749 : lambda expression: this lambda expression must take one argument,
18750 : the value to adjust, and return the new value as a string.
18752 : For example, this element will allow the property "Remaining"
18753 : to be updated wrt the relation between the "Effort" property
18754 : and the clock summary:
18756 :  (("Remaining" (lambda(value)
18757 :                    (let ((clocksum (org-clock-sum-current-item))
18758 :                          (effort (org-duration-to-minutes
18759 :                                    (org-entry-get (point) "Effort"))))
18760 :                      (org-minutes-to-clocksum-string (- effort clocksum))))))
18762 ** org-latex-subtitle-format =(funcall (function (closure (t...=
18763    :PROPERTIES:
18764    :CUSTOM_ID: org-latex-subtitle-format
18765    :END:
18767 - *Type:* (string :tag "Format string")
18768 - *Since:* Emacs version 26.1
18769 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
18770 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-subtitle-format][Find modifications in git logs]]
18772 : Format string used for transcoded subtitle.
18773 : The format string should have at most one "%s"-expression,
18774 : which is replaced with the subtitle.
18776 ** org-agenda-skip-scheduled-if-deadline-is-shown =nil=
18777    :PROPERTIES:
18778    :CUSTOM_ID: org-agenda-skip-scheduled-if-deadline-is-shown
18779    :END:
18781 - *Type:* (choice (const :tag "Never" ni...
18782 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18783 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-scheduled-if-deadline-is-shown][Find modifications in git logs]]
18785 : Non-nil means skip scheduling line if same entry shows because of deadline.
18787 : In the agenda of today, an entry can show up multiple times
18788 : because it is both scheduled and has a nearby deadline, and maybe
18789 : a plain time stamp as well.
18791 : When this variable is nil, the entry will be shown several times.
18793 : When set to t, then only the deadline is shown and the fact that
18794 : the entry is scheduled today or was scheduled previously is not
18795 : shown.
18797 : When set to the symbol `not-today', skip scheduled previously,
18798 : but not scheduled today.
18800 : When set to the symbol `repeated-after-deadline', skip scheduled
18801 : items if they are repeated beyond the current deadline.
18803 ** org-babel-lisp-dir-fmt =(funcall (function (closure (t...=
18804    :PROPERTIES:
18805    :CUSTOM_ID: org-babel-lisp-dir-fmt
18806    :END:
18808 - *Type:* string
18809 - *Since:* Emacs version 24.1
18810 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lisp.el][ob-lisp.el]]
18811 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lisp-dir-fmt][Find modifications in git logs]]
18813 : Format string used to wrap code bodies to set the current directory.
18814 : For example a value of "(progn ;; %s\n   %%s)" would ignore the
18815 : current directory string.
18817 ** org-footnote-define-inline =(funcall (function (closure (t...=
18818    :PROPERTIES:
18819    :CUSTOM_ID: org-footnote-define-inline
18820    :END:
18822 - *Type:* boolean
18823 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
18824 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-define-inline][Find modifications in git logs]]
18826 : Non-nil means define footnotes inline, at reference location.
18827 : When nil, footnotes will be defined in a special section near
18828 : the end of the document.  When t, the [fn:label:definition] notation
18829 : will be used to define the footnote at the reference position.
18831 ** org-replace-disputed-keys =(funcall (function (closure (f...=
18832    :PROPERTIES:
18833    :CUSTOM_ID: org-replace-disputed-keys
18834    :END:
18836 - *Type:* boolean
18837 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18838 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-replace-disputed-keys][Find modifications in git logs]]
18840 : Non-nil means use alternative key bindings for some keys.
18841 : Org mode uses S-<cursor> keys for changing timestamps and priorities.
18842 : These keys are also used by other packages like shift-selection-mode'
18843 : (built into Emacs 23), `CUA-mode' or `windmove.el'.
18844 : If you want to use Org mode together with one of these other modes,
18845 : or more generally if you would like to move some Org mode commands to
18846 : other keys, set this variable and configure the keys with the variable
18847 : `org-disputed-keys'.
18849 : This option is only relevant at load-time of Org mode, and must be set
18850 : *before* org.el is loaded.  Changing it requires a restart of Emacs to
18851 : become effective.
18853 ** org-agenda-block-separator =61=
18854    :PROPERTIES:
18855    :CUSTOM_ID: org-agenda-block-separator
18856    :END:
18858 - *Type:* (choice (const :tag "Disabled"...
18859 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18860 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-block-separator][Find modifications in git logs]]
18862 : The separator between blocks in the agenda.
18863 : If this is a string, it will be used as the separator, with a newline added.
18864 : If it is a character, it will be repeated to fill the window width.
18865 : If nil the separator is disabled.  In `org-agenda-custom-commands' this
18866 : addresses the separator between the current and the previous block.
18868 ** org-beamer-column-view-format =(funcall (function (closure (t...=
18869    :PROPERTIES:
18870    :CUSTOM_ID: org-beamer-column-view-format
18871    :END:
18873 - *Type:* (choice (const :tag "Do not in...
18874 - *Since:* Emacs version 24.4
18875 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
18876 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-column-view-format][Find modifications in git logs]]
18878 : Column view format that should be used to fill the template.
18880 ** org-texinfo-text-markup-alist =(funcall (function (closure (t...=
18881    :PROPERTIES:
18882    :CUSTOM_ID: org-texinfo-text-markup-alist
18883    :END:
18885 - *Type:* alist
18886 - *Since:* Emacs version 26.1
18887 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
18888 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-text-markup-alist][Find modifications in git logs]]
18890 : Alist of Texinfo expressions to convert text markup.
18892 : The key must be a symbol among `bold', `code', `italic',
18893 : `strike-through', `underscore' and `verbatim'.  The value is
18894 : a formatting string to wrap fontified text with.
18896 : Value can also be set to the following symbols: `verb', `samp'
18897 : and `code'.  With the first one, Org uses "@verb" to create
18898 : a format string and selects a delimiter character that isn't in
18899 : the string.  For the other two, Org uses "@samp" or "@code"
18900 : to typeset and protects special characters.
18902 : When no association is found for a given markup, text is returned
18903 : as-is.
18905 ** org-clock-in-switch-to-state =(funcall (function (closure (t...=
18906    :PROPERTIES:
18907    :CUSTOM_ID: org-clock-in-switch-to-state
18908    :END:
18910 - *Type:* (choice (const :tag "Don't for...
18911 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
18912 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in-switch-to-state][Find modifications in git logs]]
18914 : Set task to a special todo state while clocking it.
18915 : The value should be the state to which the entry should be
18916 : switched.  If the value is a function, it must take one
18917 : parameter (the current TODO state of the item) and return the
18918 : state to switch it to.
18920 ** org-agenda-restore-windows-after-quit =nil=
18921    :PROPERTIES:
18922    :CUSTOM_ID: org-agenda-restore-windows-after-quit
18923    :END:
18925 - *Type:* boolean
18926 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
18927 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-restore-windows-after-quit][Find modifications in git logs]]
18929 : Non-nil means restore window configuration upon exiting agenda.
18930 : Before the window configuration is changed for displaying the agenda,
18931 : the current status is recorded.  When the agenda is exited with
18932 : `q' or `x' and this option is set, the old state is restored.  If
18933 : `org-agenda-window-setup' is `other-frame', the value of this
18934 : option will be ignored.
18936 ** org-src-fontify-natively =(funcall (function (closure (b...=
18937    :PROPERTIES:
18938    :CUSTOM_ID: org-src-fontify-natively
18939    :END:
18941 - *Type:* boolean
18942 - *Since:* Emacs version 24.4
18943 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
18944 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-fontify-natively][Find modifications in git logs]]
18946 : When non-nil, fontify code in code blocks.
18947 : See also the `org-block' face.
18949 ** org-bbdb-general-anniversary-description-after =(funcall (function (closure (d...=
18950    :PROPERTIES:
18951    :CUSTOM_ID: org-bbdb-general-anniversary-description-after
18952    :END:
18954 - *Type:* integer
18955 - *Since:* Emacs version 26.1
18956 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bbdb.el][org-bbdb.el]]
18957 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bbdb-general-anniversary-description-after][Find modifications in git logs]]
18959 : When to switch anniversary descriptions to a more general format.
18961 : Anniversary descriptions include the point in time, when the
18962 : anniversary appears.  This is, in its most general form, just the
18963 : date of the anniversary.  Or more specific terms, like "today",
18964 : "tomorrow" or "in n days" are used to describe the time span.
18966 : If the anniversary happens in less than that number of days, the
18967 : specific description is used.  Otherwise, the general one is
18968 : used.
18970 ** org-gnus-no-server =(funcall (function (closure (t...=
18971    :PROPERTIES:
18972    :CUSTOM_ID: org-gnus-no-server
18973    :END:
18975 - *Type:* boolean
18976 - *Since:* Emacs version 24.4
18977 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-gnus.el][org-gnus.el]]
18978 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-gnus-no-server][Find modifications in git logs]]
18980 : Should Gnus be started using `gnus-no-server'?
18982 ** org-protocol-reverse-list-of-files =(funcall (function (closure (t...=
18983    :PROPERTIES:
18984    :CUSTOM_ID: org-protocol-reverse-list-of-files
18985    :END:
18987 - *Type:* boolean
18988 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
18989 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-reverse-list-of-files][Find modifications in git logs]]
18991 : Non-nil means re-reverse the list of filenames passed on the command line.
18992 : The filenames passed on the command line are passed to the emacs-server in
18993 : reverse order.  Set to t (default) to re-reverse the list, i.e. use the
18994 : sequence on the command line.  If nil, the sequence of the filenames is
18995 : unchanged.
18997 ** org-protocol-project-alist =(funcall (function (closure (t...=
18998    :PROPERTIES:
18999    :CUSTOM_ID: org-protocol-project-alist
19000    :END:
19002 - *Type:* alist
19003 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
19004 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-project-alist][Find modifications in git logs]]
19006 : Map URLs to local filenames for `org-protocol-open-source' (open-source).
19008 : Each element of this list must be of the form:
19010 :   (module-name :property value property: value ...)
19012 : where module-name is an arbitrary name.  All the values are strings.
19014 : Possible properties are:
19016 :   :online-suffix     - the suffix to strip from the published URLs
19017 :   :working-suffix    - the replacement for online-suffix
19018 :   :base-url          - the base URL, e.g. http://www.example.com/project/
19019 :                        Last slash required.
19020 :   :working-directory - the local working directory.  This is, what base-url will
19021 :                        be replaced with.
19022 :   :redirects         - A list of cons cells, each of which maps a regular
19023 :                        expression to match to a path relative to :working-directory.
19025 : Example:
19027 :    (setq org-protocol-project-alist
19028 :        \='(("https://orgmode.org/worg/"
19029 :           :online-suffix ".php"
19030 :           :working-suffix ".org"
19031 :           :base-url "https://orgmode.org/worg/"
19032 :           :working-directory "/home/user/org/Worg/")
19033 :          ("http://localhost/org-notes/"
19034 :           :online-suffix ".html"
19035 :           :working-suffix ".org"
19036 :           :base-url "http://localhost/org/"
19037 :           :working-directory "/home/user/org/"
19038 :           :rewrites (("org/?$" . "index.php")))
19039 :          ("Hugo based blog"
19040 :           :base-url "https://www.site.com/"
19041 :           :working-directory "~/site/content/post/"
19042 :           :online-suffix ".html"
19043 :           :working-suffix ".md"
19044 :           :rewrites (("\(https://site.com/[0-9]+/[0-9]+/[0-9]+/\)" . ".md")))))
19047 :    The last line tells `org-protocol-open-source' to open
19048 :    /home/user/org/index.php, if the URL cannot be mapped to an existing
19049 :    file, and ends with either "org" or "org/".
19051 : Consider using the interactive functions `org-protocol-create' and
19052 : `org-protocol-create-for-org' to help you filling this variable with valid contents.
19054 ** org-enforce-todo-checkbox-dependencies =(funcall (function (closure (f...=
19055    :PROPERTIES:
19056    :CUSTOM_ID: org-enforce-todo-checkbox-dependencies
19057    :END:
19059 - *Type:* boolean
19060 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19061 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-enforce-todo-checkbox-dependencies][Find modifications in git logs]]
19063 : Non-nil means unchecked boxes will block switching the parent to DONE.
19064 : When this is nil, checkboxes have no influence on switching TODO states.
19065 : When non-nil, you first need to check off all check boxes before the TODO
19066 : entry can be switched to DONE.
19067 : This variable needs to be set before org.el is loaded, and you need to
19068 : restart Emacs after a change to make the change effective.  The only way
19069 : to change is while Emacs is running is through the customize interface.
19071 ** org-babel-ditaa-java-cmd =(funcall (function (closure (t...=
19072    :PROPERTIES:
19073    :CUSTOM_ID: org-babel-ditaa-java-cmd
19074    :END:
19076 - *Type:* string
19077 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ditaa.el][ob-ditaa.el]]
19078 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-ditaa-java-cmd][Find modifications in git logs]]
19080 : Java executable to use when evaluating ditaa blocks.
19082 ** org-icalendar-include-sexps =(funcall (function (closure (t...=
19083    :PROPERTIES:
19084    :CUSTOM_ID: org-icalendar-include-sexps
19085    :END:
19087 - *Type:* boolean
19088 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
19089 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-include-sexps][Find modifications in git logs]]
19091 : Non-nil means export to iCalendar files should also cover sexp entries.
19092 : These are entries like in the diary, but directly in an Org file.
19094 ** org-babel-ruby-hline-to =(funcall (function (closure (i...=
19095    :PROPERTIES:
19096    :CUSTOM_ID: org-babel-ruby-hline-to
19097    :END:
19099 - *Type:* string
19100 - *Since:* Emacs version 24.4
19101 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ruby.el][ob-ruby.el]]
19102 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-ruby-hline-to][Find modifications in git logs]]
19104 : Replace hlines in incoming tables with this when translating to ruby.
19106 ** org-cycle-level-after-item/entry-creation =(funcall (function (closure (f...=
19107    :PROPERTIES:
19108    :CUSTOM_ID: org-cycle-level-after-item/entry-creation
19109    :END:
19111 - *Type:* boolean
19112 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19113 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-level-after-item/entry-creation][Find modifications in git logs]]
19115 : Non-nil means cycle entry level or item indentation in new empty entries.
19117 : When the cursor is at the end of an empty headline, i.e., with only stars
19118 : and maybe a TODO keyword, TAB will then switch the entry to become a child,
19119 : and then all possible ancestor states, before returning to the original state.
19120 : This makes data entry extremely fast:  M-RET to create a new headline,
19121 : on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
19123 : When the cursor is at the end of an empty plain list item, one TAB will
19124 : make it a subitem, two or more tabs will back up to make this an item
19125 : higher up in the item hierarchy.
19127 ** org-agenda-start-with-follow-mode =nil=
19128    :PROPERTIES:
19129    :CUSTOM_ID: org-agenda-start-with-follow-mode
19130    :END:
19132 - *Type:* boolean
19133 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19134 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-start-with-follow-mode][Find modifications in git logs]]
19136 : The initial value of follow mode in a newly created agenda window.
19138 ** org-agenda-export-html-style =nil=
19139    :PROPERTIES:
19140    :CUSTOM_ID: org-agenda-export-html-style
19141    :END:
19143 - *Type:* (choice (const nil) (string))
19144 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19145 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-export-html-style][Find modifications in git logs]]
19147 : The style specification for exported HTML Agenda files.
19148 : If this variable contains a string, it will replace the default <style>
19149 : section as produced by `htmlize'.
19150 : Since there are different ways of setting style information, this variable
19151 : needs to contain the full HTML structure to provide a style, including the
19152 : surrounding HTML tags.  The style specifications should include definitions
19153 : the fonts used by the agenda, here is an example:
19155 :    <style type="text/css">
19156 :        p { font-weight: normal; color: gray; }
19157 :        .org-agenda-structure {
19158 :           font-size: 110%;
19159 :           color: #003399;
19160 :           font-weight: 600;
19161 :        }
19162 :        .org-todo {
19163 :           color: #cc6666;
19164 :           font-weight: bold;
19165 :        }
19166 :        .org-agenda-done {
19167 :           color: #339933;
19168 :        }
19169 :        .org-done {
19170 :           color: #339933;
19171 :        }
19172 :        .title { text-align: center; }
19173 :        .todo, .deadline { color: red; }
19174 :        .done { color: green; }
19175 :     </style>
19177 : or, if you want to keep the style in a file,
19179 :    <link rel="stylesheet" type="text/css" href="mystyles.css">
19181 : As the value of this option simply gets inserted into the HTML <head> header,
19182 : you can "misuse" it to also add other text to the header.
19184 ** org-agenda-follow-indirect =nil=
19185    :PROPERTIES:
19186    :CUSTOM_ID: org-agenda-follow-indirect
19187    :END:
19189 - *Type:* boolean
19190 - *Since:* Emacs version 24.1
19191 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19192 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-follow-indirect][Find modifications in git logs]]
19194 : Non-nil means `org-agenda-follow-mode' displays only the
19195 : current item's tree, in an indirect buffer.
19197 ** org-agenda-persistent-filter =nil=
19198    :PROPERTIES:
19199    :CUSTOM_ID: org-agenda-persistent-filter
19200    :END:
19202 - *Type:* boolean
19203 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19204 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-persistent-filter][Find modifications in git logs]]
19206 : When set, keep filters from one agenda view to the next.
19208 ** org-global-properties =(funcall (function (closure (f...=
19209    :PROPERTIES:
19210    :CUSTOM_ID: org-global-properties
19211    :END:
19213 - *Type:* (repeat (cons (string :tag "Pr...
19214 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19215 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-global-properties][Find modifications in git logs]]
19217 : List of property/value pairs that can be inherited by any entry.
19219 : This list will be combined with the constant `org-global-properties-fixed'.
19221 : The entries in this list are cons cells where the car is a property
19222 : name and cdr is a string with the value.
19224 : You can set buffer-local values for the same purpose in the variable
19225 : `org-file-properties' this by adding lines like
19227 : #+PROPERTY: NAME VALUE
19229 ** org-hide-block-startup =(funcall (function (closure (f...=
19230    :PROPERTIES:
19231    :CUSTOM_ID: org-hide-block-startup
19232    :END:
19234 - *Type:* boolean
19235 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19236 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-block-startup][Find modifications in git logs]]
19238 : Non-nil means entering Org mode will fold all blocks.
19239 : This can also be set in on a per-file basis with
19241 : #+STARTUP: hideblocks
19242 : #+STARTUP: showblocks
19244 ** org-babel-tangle-comment-format-beg =(funcall (function (closure (t...=
19245    :PROPERTIES:
19246    :CUSTOM_ID: org-babel-tangle-comment-format-beg
19247    :END:
19249 - *Type:* string
19250 - *Since:* Emacs version 24.1
19251 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
19252 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-comment-format-beg][Find modifications in git logs]]
19254 : Format of inserted comments in tangled code files.
19255 : The following format strings can be used to insert special
19256 : information into the output using `org-fill-template'.
19257 : %start-line --- the line number at the start of the code block
19258 : %file --------- the file from which the code block was tangled
19259 : %link --------- Org style link to the code block
19260 : %source-name -- name of the code block
19262 : Upon insertion the formatted comment will be commented out, and
19263 : followed by a newline.  To inhibit this post-insertion processing
19264 : set the `org-babel-tangle-uncomment-comments' variable to a
19265 : non-nil value.
19267 : Whether or not comments are inserted during tangling is
19268 : controlled by the :comments header argument.
19270 ** org-archive-stamp-time =(funcall (function (closure (t...=
19271    :PROPERTIES:
19272    :CUSTOM_ID: org-archive-stamp-time
19273    :END:
19275 - *Type:* boolean
19276 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
19277 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-stamp-time][Find modifications in git logs]]
19279 : Non-nil means add a time stamp to entries moved to an archive file.
19280 : This variable is obsolete and has no effect anymore, instead add or remove
19281 : `time' from the variable `org-archive-save-context-info'.
19283 ** org-odt-format-inlinetask-function =(funcall (function (closure (h...=
19284    :PROPERTIES:
19285    :CUSTOM_ID: org-odt-format-inlinetask-function
19286    :END:
19288 - *Type:* function
19289 - *Since:* Emacs version 26.1
19290 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
19291 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-format-inlinetask-function][Find modifications in git logs]]
19293 : Function called to format an inlinetask in ODT code.
19295 : The function must accept six parameters:
19296 :   TODO      the todo keyword, as a string
19297 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
19298 :   PRIORITY  the inlinetask priority, as a string
19299 :   NAME      the inlinetask name, as a string.
19300 :   TAGS      the inlinetask tags, as a string.
19301 :   CONTENTS  the contents of the inlinetask, as a string.
19303 : The function should return the string to be exported.
19305 ** org-babel-inline-result-wrap =(funcall (function (closure (t...=
19306    :PROPERTIES:
19307    :CUSTOM_ID: org-babel-inline-result-wrap
19308    :END:
19310 - *Type:* string
19311 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
19312 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-inline-result-wrap][Find modifications in git logs]]
19314 : Format string used to wrap inline results.
19315 : This string must include a "%s" which will be replaced by the results.
19317 ** org-calc-default-modes =(funcall (function (closure (o...=
19318    :PROPERTIES:
19319    :CUSTOM_ID: org-calc-default-modes
19320    :END:
19322 - *Type:* plist
19323 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
19324 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calc-default-modes][Find modifications in git logs]]
19326 : List with Calc mode settings for use in `calc-eval' for table formulas.
19327 : The list must contain alternating symbols (Calc modes variables and values).
19328 : Don't remove any of the default settings, just change the values.  Org mode
19329 : relies on the variables to be present in the list.
19331 ** org-agenda-exporter-settings =nil=
19332    :PROPERTIES:
19333    :CUSTOM_ID: org-agenda-exporter-settings
19334    :END:
19336 - *Type:* (repeat (list (variable) (sexp...
19337 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19338 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-exporter-settings][Find modifications in git logs]]
19340 : Alist of variable/value pairs that should be active during agenda export.
19341 : This is a good place to set options for ps-print and for htmlize.
19342 : Note that the way this is implemented, the values will be evaluated
19343 : before assigned to the variables.  So make sure to quote values you do
19344 : *not* want evaluated, for example
19346 :    (setq org-agenda-exporter-settings
19347 :          \='((ps-print-color-p \='black-white)))
19349 ** org-log-note-headings =(funcall (function (closure (f...=
19350    :PROPERTIES:
19351    :CUSTOM_ID: org-log-note-headings
19352    :END:
19354 - *Type:* (list :greedy t (cons (const :...
19355 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19356 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-note-headings][Find modifications in git logs]]
19358 : Headings for notes added to entries.
19360 : The value is an alist, with the car being a symbol indicating the
19361 : note context, and the cdr is the heading to be used.  The heading
19362 : may also be the empty string.  The following placeholders can be
19363 : used:
19365 :   %t  a time stamp.
19366 :   %T  an active time stamp instead the default inactive one
19367 :   %d  a short-format time stamp.
19368 :   %D  an active short-format time stamp.
19369 :   %s  the new TODO state or time stamp (inactive), in double quotes.
19370 :   %S  the old TODO state or time stamp (inactive), in double quotes.
19371 :   %u  the user name.
19372 :   %U  full user name.
19374 : In fact, it is not a good idea to change the `state' entry,
19375 : because Agenda Log mode depends on the format of these entries.
19377 ** org-babel-python-hline-to =(funcall (function (closure (t...=
19378    :PROPERTIES:
19379    :CUSTOM_ID: org-babel-python-hline-to
19380    :END:
19382 - *Type:* string
19383 - *Since:* Emacs version 24.4
19384 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-python.el][ob-python.el]]
19385 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-python-hline-to][Find modifications in git logs]]
19387 : Replace hlines in incoming tables with this when translating to python.
19389 ** org-babel-shell-names =(funcall (function (closure (o...=
19390    :PROPERTIES:
19391    :CUSTOM_ID: org-babel-shell-names
19392    :END:
19394 - *Type:* (repeat (string :tag "Shell na...
19395 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-shell.el][ob-shell.el]]
19396 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-shell-names][Find modifications in git logs]]
19398 : List of names of shell supported by babel shell code blocks.
19399 : Call `org-babel-shell-initialize' when modifying this variable
19400 : outside the Customize interface.
19402 ** org-deadline-past-days =10000=
19403    :PROPERTIES:
19404    :CUSTOM_ID: org-deadline-past-days
19405    :END:
19407 - *Type:* integer
19408 - *Since:* Emacs version 26.1
19409 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19410 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-deadline-past-days][Find modifications in git logs]]
19412 : Number of days to warn about missed deadlines.
19413 : When an item has deadline on a date, it shows up in the agenda on
19414 : this day and will appear as a reminder until it is marked DONE or
19415 : for the number of days given here.
19417 ** org-html-use-infojs =(funcall (function (closure (h...=
19418    :PROPERTIES:
19419    :CUSTOM_ID: org-html-use-infojs
19420    :END:
19422 - *Type:* (choice (const :tag "Never" ni...
19423 - *Since:* Emacs version 24.4
19424 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
19425 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-use-infojs][Find modifications in git logs]]
19427 : Non-nil when Sebastian Rose's Java Script org-info.js should be active.
19428 : This option can be nil or t to never or always use the script.
19429 : It can also be the symbol `when-configured', meaning that the
19430 : script will be linked into the export file if and only if there
19431 : is a "#+INFOJS_OPT:" line in the buffer.  See also the variable
19432 : `org-html-infojs-options'.
19434 ** org-beamer-theme =(funcall (function (closure (t...=
19435    :PROPERTIES:
19436    :CUSTOM_ID: org-beamer-theme
19437    :END:
19439 - *Type:* (choice (const :tag "Do not in...
19440 - *Since:* Emacs version 24.4
19441 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
19442 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-theme][Find modifications in git logs]]
19444 : Default theme used in Beamer presentations.
19446 ** org-clock-total-time-cell-format =(funcall (function (closure (t...=
19447    :PROPERTIES:
19448    :CUSTOM_ID: org-clock-total-time-cell-format
19449    :END:
19451 - *Type:* string
19452 - *Since:* Emacs version 24.1
19453 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
19454 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-total-time-cell-format][Find modifications in git logs]]
19456 : Format string for the total time cells.
19458 ** org-export-snippet-translation-alist =(funcall (function (closure (t...=
19459    :PROPERTIES:
19460    :CUSTOM_ID: org-export-snippet-translation-alist
19461    :END:
19463 - *Type:* (repeat (cons (string :tag "Sh...
19464 - *Since:* Emacs version 24.4
19465 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
19466 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-snippet-translation-alist][Find modifications in git logs]]
19468 : Alist between export snippets back-ends and exporter back-ends.
19470 : This variable allows providing shortcuts for export snippets.
19472 : For example, with a value of \='(("h" . "html")), the
19473 : HTML back-end will recognize the contents of "@@h:<b>@@" as
19474 : HTML code while every other back-end will ignore it.
19476 ** org-agenda-category-icon-alist =nil=
19477    :PROPERTIES:
19478    :CUSTOM_ID: org-agenda-category-icon-alist
19479    :END:
19481 - *Type:* (alist :key-type (string :tag ...
19482 - *Since:* Emacs version 24.1
19483 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19484 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-category-icon-alist][Find modifications in git logs]]
19486 : Alist of category icon to be displayed in agenda views.
19488 : Each entry should have the following format:
19490 :   (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
19492 : Where CATEGORY-REGEXP is a regexp matching the categories where
19493 : the icon should be displayed.
19494 : FILE-OR-DATA either a file path or a string containing image data.
19496 : The other fields can be omitted safely if not needed:
19497 : TYPE indicates the image type.
19498 : DATA-P is a boolean indicating whether the FILE-OR-DATA string is
19499 : image data.
19500 : PROPS are additional image attributes to assign to the image,
19501 : like, e.g. `:ascent center'.
19503 :    ("Org" "/path/to/icon.png" nil nil :ascent center)
19505 : If you want to set the display properties yourself, just put a
19506 : list as second element:
19508 :   (CATEGORY-REGEXP (MY PROPERTY LIST))
19510 : For example, to display a 16px horizontal space for Emacs
19511 : category, you can use:
19513 :   ("Emacs" \='(space . (:width (16))))
19515 ** org-fontify-done-headline =(funcall (function (closure (f...=
19516    :PROPERTIES:
19517    :CUSTOM_ID: org-fontify-done-headline
19518    :END:
19520 - *Type:* boolean
19521 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19522 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fontify-done-headline][Find modifications in git logs]]
19524 : Non-nil means change the face of a headline if it is marked DONE.
19525 : Normally, only the TODO/DONE keyword indicates the state of a headline.
19526 : When this is non-nil, the headline after the keyword is set to the
19527 : `org-headline-done' as an additional indication.
19529 ** org-mouse-punctuation =(funcall (function (closure (t...=
19530    :PROPERTIES:
19531    :CUSTOM_ID: org-mouse-punctuation
19532    :END:
19534 - *Type:* string
19535 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
19536 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-punctuation][Find modifications in git logs]]
19538 : Punctuation used when inserting text by drag and drop.
19540 ** org-latex-tables-booktabs =(funcall (function (closure (t...=
19541    :PROPERTIES:
19542    :CUSTOM_ID: org-latex-tables-booktabs
19543    :END:
19545 - *Type:* boolean
19546 - *Since:* Emacs version 24.4
19547 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
19548 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-tables-booktabs][Find modifications in git logs]]
19550 : When non-nil, display tables in a formal "booktabs" style.
19551 : This option assumes that the "booktabs" package is properly
19552 : loaded in the header of the document.  This value can be ignored
19553 : locally with ":booktabs t" and ":booktabs nil" LaTeX
19554 : attributes.
19556 ** org-startup-indented =(funcall (function (closure (f...=
19557    :PROPERTIES:
19558    :CUSTOM_ID: org-startup-indented
19559    :END:
19561 - *Type:* (choice (const :tag "Not" nil)...
19562 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19563 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-indented][Find modifications in git logs]]
19565 : Non-nil means turn on `org-indent-mode' on startup.
19566 : This can also be configured on a per-file basis by adding one of
19567 : the following lines anywhere in the buffer:
19569 :    #+STARTUP: indent
19570 :    #+STARTUP: noindent
19572 ** org-agenda-add-entry-text-descriptive-links =t=
19573    :PROPERTIES:
19574    :CUSTOM_ID: org-agenda-add-entry-text-descriptive-links
19575    :END:
19577 - *Type:* boolean
19578 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
19579 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-add-entry-text-descriptive-links][Find modifications in git logs]]
19581 : Non-nil means export org-links as descriptive links in agenda added text.
19582 : This variable applies to the text added to the agenda when
19583 : `org-agenda-add-entry-text-maxlines' is larger than 0.
19584 : When this variable nil, the URL will (also) be shown.
19586 ** org-html-text-markup-alist =(funcall (function (closure (h...=
19587    :PROPERTIES:
19588    :CUSTOM_ID: org-html-text-markup-alist
19589    :END:
19591 - *Type:* (alist :key-type (symbol :tag ...
19592 - *Since:* Emacs version 24.4
19593 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
19594 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-text-markup-alist][Find modifications in git logs]]
19596 : Alist of HTML expressions to convert text markup.
19598 : The key must be a symbol among `bold', `code', `italic',
19599 : `strike-through', `underline' and `verbatim'.  The value is
19600 : a formatting string to wrap fontified text with.
19602 : If no association can be found for a given markup, text will be
19603 : returned as-is.
19605 ** org-list-automatic-rules =(funcall (function (closure (o...=
19606    :PROPERTIES:
19607    :CUSTOM_ID: org-list-automatic-rules
19608    :END:
19610 - *Type:* (alist :tag "Sets of rules" :k...
19611 - *Since:* Emacs version 24.1
19612 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
19613 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-automatic-rules][Find modifications in git logs]]
19615 : Non-nil means apply set of rules when acting on lists.
19616 : \<org-mode-map>
19617 : By default, automatic actions are taken when using
19618 :   `\[org-meta-return]',
19619 :   `\[org-metaright]',
19620 :   `\[org-metaleft]',
19621 :   `\[org-shiftmetaright]',
19622 :   `\[org-shiftmetaleft]',
19623 :   `\[org-ctrl-c-minus]',
19624 :   `\[org-toggle-checkbox]',
19625 :   `\[org-insert-todo-heading]'.
19627 : You can disable individually these rules by setting them to nil.
19628 : Valid rules are:
19630 : checkbox  when non-nil, checkbox statistics is updated each time
19631 :           you either insert a new checkbox or toggle a checkbox.
19632 : indent    when non-nil, indenting or outdenting list top-item
19633 :           with its subtree will move the whole list and
19634 :           outdenting a list whose bullet is * to column 0 will
19635 :           change that bullet to "-".
19637 ** org-hide-leading-stars =(funcall (function (closure (f...=
19638    :PROPERTIES:
19639    :CUSTOM_ID: org-hide-leading-stars
19640    :END:
19642 - *Type:* boolean
19643 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19644 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-leading-stars][Find modifications in git logs]]
19646 : Non-nil means hide the first N-1 stars in a headline.
19647 : This works by using the face `org-hide' for these stars.  This
19648 : face is white for a light background, and black for a dark
19649 : background.  You may have to customize the face `org-hide' to
19650 : make this work.
19651 : Changing it requires restart of `font-lock-mode' to become effective
19652 : also in regions already fontified.
19653 : You may also set this on a per-file basis by adding one of the following
19654 : lines to the buffer:
19656 :    #+STARTUP: hidestars
19657 :    #+STARTUP: showstars
19659 ** org-odt-inline-formula-rules =(funcall (function (closure (h...=
19660    :PROPERTIES:
19661    :CUSTOM_ID: org-odt-inline-formula-rules
19662    :END:
19664 - *Type:* (alist :key-type (string :tag ...
19665 - *Since:* Emacs version 24.4
19666 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
19667 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-inline-formula-rules][Find modifications in git logs]]
19669 : Rules characterizing formula files that can be inlined into ODT.
19671 : A rule consists in an association whose key is the type of link
19672 : to consider, and value is a regexp that will be matched against
19673 : link's path.
19675 ** org-table-allow-automatic-line-recalculation =(funcall (function (closure (o...=
19676    :PROPERTIES:
19677    :CUSTOM_ID: org-table-allow-automatic-line-recalculation
19678    :END:
19680 - *Type:* boolean
19681 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
19682 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-allow-automatic-line-recalculation][Find modifications in git logs]]
19684 : Non-nil means lines marked with |#| or |*| will be recomputed automatically.
19685 : \<org-mode-map>Automatically means when `TAB' or `RET' or `\[org-ctrl-c-ctrl-c]' are pressed in the line.
19687 ** org-use-fast-todo-selection =(funcall (function (closure (f...=
19688    :PROPERTIES:
19689    :CUSTOM_ID: org-use-fast-todo-selection
19690    :END:
19692 - *Type:* (choice (const :tag "Never" ni...
19693 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19694 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-fast-todo-selection][Find modifications in git logs]]
19696 : \<org-mode-map>Non-nil means use the fast todo selection scheme with `\[org-todo]'.
19697 : This variable describes if and under what circumstances the cycling
19698 : mechanism for TODO keywords will be replaced by a single-key, direct
19699 : selection scheme.
19701 : When nil, fast selection is never used.
19703 : When the symbol `prefix', it will be used when `org-todo' is called
19704 : with a prefix argument,  i.e. `\[universal-argument] \[org-todo]' in an Org buffer, and
19705 : `\[universal-argument] t' in an agenda buffer.
19707 : When t, fast selection is used by default.  In this case, the prefix
19708 : argument forces cycling instead.
19710 : In all cases, the special interface is only used if access keys have
19711 : actually been assigned by the user, i.e. if keywords in the configuration
19712 : are followed by a letter in parenthesis, like TODO(t).
19714 ** org-habit-following-days =(funcall (function (closure (t...=
19715    :PROPERTIES:
19716    :CUSTOM_ID: org-habit-following-days
19717    :END:
19719 - *Type:* integer
19720 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
19721 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-following-days][Find modifications in git logs]]
19723 : Number of days after today to appear in consistency graphs.
19725 ** org-special-ctrl-k =(funcall (function (closure (f...=
19726    :PROPERTIES:
19727    :CUSTOM_ID: org-special-ctrl-k
19728    :END:
19730 - *Type:* boolean
19731 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19732 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-special-ctrl-k][Find modifications in git logs]]
19734 : Non-nil means `C-k' will behave specially in headlines.
19735 : When nil, `C-k' will call the default `kill-line' command.
19736 : When t, the following will happen while the cursor is in the headline:
19738 : - When the cursor is at the beginning of a headline, kill the entire
19739 :   line and possible the folded subtree below the line.
19740 : - When in the middle of the headline text, kill the headline up to the tags.
19741 : - When after the headline text, kill the tags.
19743 ** org-special-ctrl-o =(funcall (function (closure (f...=
19744    :PROPERTIES:
19745    :CUSTOM_ID: org-special-ctrl-o
19746    :END:
19748 - *Type:* boolean
19749 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19750 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-special-ctrl-o][Find modifications in git logs]]
19752 : Non-nil means, make `C-o' insert a row in tables.
19754 ** org-man-remove-logfiles =(funcall (function (closure (o...=
19755    :PROPERTIES:
19756    :CUSTOM_ID: org-man-remove-logfiles
19757    :END:
19759 - *Type:* boolean
19760 - *Since:* Emacs version 24.4
19761 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
19762 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-remove-logfiles][Find modifications in git logs]]
19764 : Non-nil means remove the logfiles produced by PDF production.
19765 : These are the .aux, .log, .out, and .toc files.
19767 ** org-latex-image-default-width =(funcall (function (closure (t...=
19768    :PROPERTIES:
19769    :CUSTOM_ID: org-latex-image-default-width
19770    :END:
19772 - *Type:* string
19773 - *Since:* Emacs version 24.4
19774 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
19775 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-image-default-width][Find modifications in git logs]]
19777 : Default width for images.
19778 : This value will not be used if a height is provided.
19780 ** org-columns-summary-types =(funcall (function (closure (t...=
19781    :PROPERTIES:
19782    :CUSTOM_ID: org-columns-summary-types
19783    :END:
19785 - *Type:* (alist :key-type (string :tag ...
19786 - *Since:* Emacs version 26.1
19787 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-colview.el][org-colview.el]]
19788 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-summary-types][Find modifications in git logs]]
19790 : Alist between operators and summarize functions.
19792 : Each association follows the pattern (LABEL . SUMMARIZE) where
19794 :   LABEL is a string used in #+COLUMNS definition describing the
19795 :   summary type.  It can contain any character but "}".  It is
19796 :   case-sensitive.
19798 :   SUMMARIZE is a function called with two arguments.  The first
19799 :   argument is a non-empty list of values, as non-empty strings.
19800 :   The second one is a format string or nil.  It has to return
19801 :   a string summarizing the list of values.
19803 : Note that the return value can become one value for an higher
19804 : order summary, so the function is expected to handle its own
19805 : output.
19807 : Types defined in this variable take precedence over those defined
19808 : in `org-columns-summary-types-default', which see.
19810 ** org-list-demote-modify-bullet =(funcall (function (closure (o...=
19811    :PROPERTIES:
19812    :CUSTOM_ID: org-list-demote-modify-bullet
19813    :END:
19815 - *Type:* (repeat (cons (choice :tag "If...
19816 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
19817 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-demote-modify-bullet][Find modifications in git logs]]
19819 : Default bullet type installed when demoting an item.
19820 : This is an association list, for each bullet type, this alist will point
19821 : to the bullet that should be used when this item is demoted.
19822 : For example,
19824 :  (setq org-list-demote-modify-bullet
19825 :        \='(("+" . "-") ("-" . "+") ("*" . "+")))
19827 : will make
19829 :   + Movies
19830 :     + Silence of the Lambs
19831 :     + My Cousin Vinny
19832 :   + Books
19833 :     + The Hunt for Red October
19834 :     + The Road to Omaha
19836 : into
19838 :   + Movies
19839 :     - Silence of the Lambs
19840 :     - My Cousin Vinny
19841 :   + Books
19842 :     - The Hunt for Red October
19843 :     - The Road to Omaha
19845 ** org-clock-task-overrun-text =(funcall (function (closure (t...=
19846    :PROPERTIES:
19847    :CUSTOM_ID: org-clock-task-overrun-text
19848    :END:
19850 - *Type:* (choice (const :tag "Just mark...
19851 - *Since:* Emacs version 24.1
19852 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
19853 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-task-overrun-text][Find modifications in git logs]]
19855 : Extra mode line text to indicate that the clock is overrun.
19856 : The can be nil to indicate that instead of adding text, the clock time
19857 : should get a different face (`org-mode-line-clock-overrun').
19858 : When this is a string, it is prepended to the clock string as an indication,
19859 : also using the face `org-mode-line-clock-overrun'.
19861 ** org-publish-sitemap-sort-ignore-case =(funcall (function (closure (t...=
19862    :PROPERTIES:
19863    :CUSTOM_ID: org-publish-sitemap-sort-ignore-case
19864    :END:
19866 - *Type:* boolean
19867 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
19868 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-sitemap-sort-ignore-case][Find modifications in git logs]]
19870 : Non-nil when site-map sorting should ignore case.
19872 : You can overwrite this default per project in your
19873 : `org-publish-project-alist', using `:sitemap-ignore-case'.
19875 ** org-tags-sort-function =(funcall (function (closure (f...=
19876    :PROPERTIES:
19877    :CUSTOM_ID: org-tags-sort-function
19878    :END:
19880 - *Type:* (choice (const :tag "No sortin...
19881 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19882 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-sort-function][Find modifications in git logs]]
19884 : When set, tags are sorted using this function as a comparator.
19886 ** org-read-date-prefer-future =(funcall (function (closure (f...=
19887    :PROPERTIES:
19888    :CUSTOM_ID: org-read-date-prefer-future
19889    :END:
19891 - *Type:* (choice (const :tag "Never" ni...
19892 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19893 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-read-date-prefer-future][Find modifications in git logs]]
19895 : Non-nil means assume future for incomplete date input from user.
19896 : This affects the following situations:
19897 : 1. The user gives a month but not a year.
19898 :    For example, if it is April and you enter "feb 2", this will be read
19899 :    as Feb 2, *next* year.  "May 5", however, will be this year.
19900 : 2. The user gives a day, but no month.
19901 :    For example, if today is the 15th, and you enter "3", Org will read
19902 :    this as the third of *next* month.  However, if you enter "17",
19903 :    it will be considered as *this* month.
19905 : If you set this variable to the symbol `time', then also the following
19906 : will work:
19908 : 3. If the user gives a time.
19909 :    If the time is before now, it will be interpreted as tomorrow.
19911 : Currently none of this works for ISO week specifications.
19913 : When this option is nil, the current day, month and year will always be
19914 : used as defaults.
19916 : See also `org-agenda-jump-prefer-future'.
19918 ** org-edit-src-turn-on-auto-save =(funcall (function (closure (t...=
19919    :PROPERTIES:
19920    :CUSTOM_ID: org-edit-src-turn-on-auto-save
19921    :END:
19923 - *Type:* boolean
19924 - *Since:* Emacs version 24.4
19925 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
19926 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-turn-on-auto-save][Find modifications in git logs]]
19928 : Non-nil means turn `auto-save-mode' on when editing a source block.
19929 : This will save the content of the source code editing buffer into
19930 : a newly created file, not the base buffer for this source block.
19932 : If you want to regularly save the base buffer instead of the source
19933 : code editing buffer, see `org-edit-src-auto-save-idle-delay' instead.
19935 ** org-agenda-file-regexp =(funcall (function (closure (f...=
19936    :PROPERTIES:
19937    :CUSTOM_ID: org-agenda-file-regexp
19938    :END:
19940 - *Type:* regexp
19941 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
19942 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-file-regexp][Find modifications in git logs]]
19944 : Regular expression to match files for `org-agenda-files'.
19945 : If any element in the list in that variable contains a directory instead
19946 : of a normal file, all files in that directory that are matched by this
19947 : regular expression will be included.
19949 ** org-export-with-smart-quotes =(funcall (function (closure (t...=
19950    :PROPERTIES:
19951    :CUSTOM_ID: org-export-with-smart-quotes
19952    :END:
19954 - *Type:* boolean
19955 - *Since:* Emacs version 24.4
19956 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
19957 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-smart-quotes][Find modifications in git logs]]
19959 : Non-nil means activate smart quotes during export.
19960 : This option can also be set with the OPTIONS keyword,
19961 : e.g., "':t".
19963 : When setting this to non-nil, you need to take care of
19964 : using the correct Babel package when exporting to LaTeX.
19965 : E.g., you can load Babel for french like this:
19967 : #+LATEX_HEADER: \usepackage[french]{babel}
19969 ** org-html-inline-image-rules =(funcall (function (closure (h...=
19970    :PROPERTIES:
19971    :CUSTOM_ID: org-html-inline-image-rules
19972    :END:
19974 - *Type:* (alist :key-type (string :tag ...
19975 - *Since:* Emacs version 24.4
19976 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
19977 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-inline-image-rules][Find modifications in git logs]]
19979 : Rules characterizing image files that can be inlined into HTML.
19980 : A rule consists in an association whose key is the type of link
19981 : to consider, and value is a regexp that will be matched against
19982 : link's path.
19984 ** org-table-convert-region-max-lines =(funcall (function (closure (o...=
19985    :PROPERTIES:
19986    :CUSTOM_ID: org-table-convert-region-max-lines
19987    :END:
19989 - *Type:* integer
19990 - *Since:* Emacs version 26.1
19991 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
19992 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-convert-region-max-lines][Find modifications in git logs]]
19994 : Max lines that `org-table-convert-region' will attempt to process.
19996 : The function can be slow on larger regions; this safety feature
19997 : prevents it from hanging emacs.
19999 ** org-latex-compiler =(funcall (function (closure (t...=
20000    :PROPERTIES:
20001    :CUSTOM_ID: org-latex-compiler
20002    :END:
20004 - *Type:* (choice (const :tag "pdfLaTeX"...
20005 - *Since:* Emacs version 26.1
20006 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
20007 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-compiler][Find modifications in git logs]]
20009 : LaTeX compiler to use.
20011 : Must be an element in `org-latex-compilers' or the empty quote.
20012 : Can also be set in buffers via #+LATEX_COMPILER.  See also
20013 : `org-latex-compiler-file-string'.
20015 ** org-log-redeadline =(funcall (function (closure (f...=
20016    :PROPERTIES:
20017    :CUSTOM_ID: org-log-redeadline
20018    :END:
20020 - *Type:* (choice (const :tag "No loggin...
20021 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20022 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-redeadline][Find modifications in git logs]]
20024 : Information to record when the deadline date of a tasks is modified.
20026 : Possible values are:
20028 : nil     Don't add anything, just change the date
20029 : time    Add a time stamp to the task
20030 : note    Prompt for a note and add it with template `org-log-note-headings'
20032 : This option can also be set with on a per-file-basis with
20034 :    #+STARTUP: nologredeadline
20035 :    #+STARTUP: logredeadline
20036 :    #+STARTUP: lognoteredeadline
20038 : You can have local logging settings for a subtree by setting the LOGGING
20039 : property to one or more of these keywords.
20041 ** org-agenda-todo-ignore-timestamp =nil=
20042    :PROPERTIES:
20043    :CUSTOM_ID: org-agenda-todo-ignore-timestamp
20044    :END:
20046 - *Type:* (choice (const :tag "Ignore fu...
20047 - *Since:* Emacs version 24.1
20048 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20049 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-ignore-timestamp][Find modifications in git logs]]
20051 : Non-nil means don't show entries with a timestamp.
20052 : This applies when creating the global todo list.
20053 : Valid values are:
20055 : past     Don't show entries for today or in the past.
20057 : future   Don't show entries with a timestamp in the future.
20058 :          The idea behind this is that if it has a future
20059 :          timestamp, you don't want to think about it until the
20060 :          date.
20062 : all      Don't show any entries with a timestamp in the global todo list.
20063 :          The idea behind this is that by setting a timestamp, you
20064 :          have already "taken care" of this item.
20066 : This variable can also have an integer as a value.  If positive (N),
20067 : todos with a timestamp N or more days in the future will be ignored.  If
20068 : negative (-N), todos with a timestamp N or more days in the past will be
20069 : ignored.  If 0, todos with a timestamp either today or in the future will
20070 : be ignored.  For example, a value of -1 will exclude todos with a
20071 : timestamp in the past (yesterday or earlier), while a value of 7 will
20072 : exclude todos with a timestamp a week or more in the future.
20074 : See also `org-agenda-todo-ignore-with-date'.
20075 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
20076 : to make his option also apply to the tags-todo list.
20078 ** org-koma-letter-email =(quote org-koma-letter-email)=
20079    :PROPERTIES:
20080    :CUSTOM_ID: org-koma-letter-email
20081    :END:
20083 - *Type:* (radio (function-item org-koma...
20084 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20085 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-email][Find modifications in git logs]]
20087 : Sender's email address.
20089 : This variable defaults to the value `org-koma-letter-email' which
20090 : returns `user-mail-address'.  Alternatively a string, nil or
20091 : a function may be given.  Functions must return a string.
20093 : This option can also be set with the EMAIL keyword.
20095 ** org-agenda-tags-column =-80=
20096    :PROPERTIES:
20097    :CUSTOM_ID: org-agenda-tags-column
20098    :END:
20100 - *Type:* integer
20101 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20102 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-tags-column][Find modifications in git logs]]
20104 : Shift tags in agenda items to this column.
20105 : If this number is positive, it specifies the column.  If it is negative,
20106 : it means that the tags should be flushright to that column.  For example,
20107 : -80 works well for a normal 80 character screen.
20109 ** org-koma-letter-headline-is-opening-maybe =t=
20110    :PROPERTIES:
20111    :CUSTOM_ID: org-koma-letter-headline-is-opening-maybe
20112    :END:
20114 - *Type:* boolean
20115 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20116 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-headline-is-opening-maybe][Find modifications in git logs]]
20118 : Non-nil means a headline may be used as an opening and closing.
20119 : See also `org-koma-letter-opening' and
20120 : `org-koma-letter-closing'.
20122 ** org-agenda-current-time-string ="now - - - - - - - - - - - - -...=
20123    :PROPERTIES:
20124    :CUSTOM_ID: org-agenda-current-time-string
20125    :END:
20127 - *Type:* string
20128 - *Since:* Emacs version 24.1
20129 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20130 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-current-time-string][Find modifications in git logs]]
20132 : The string for the current time marker in the agenda.
20134 ** org-bibtex-key-property =(funcall (function (closure (t...=
20135    :PROPERTIES:
20136    :CUSTOM_ID: org-bibtex-key-property
20137    :END:
20139 - *Type:* string
20140 - *Since:* Emacs version 24.1
20141 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
20142 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-key-property][Find modifications in git logs]]
20144 : Property that holds the bibtex key.
20145 : By default, this is CUSTOM_ID, which enables easy linking to
20146 : bibtex headlines from within an org file.  This can be set to ID
20147 : to enable global links, but only with great caution, as global
20148 : IDs must be unique.
20150 ** org-export-with-archived-trees =(funcall (function (closure (t...=
20151    :PROPERTIES:
20152    :CUSTOM_ID: org-export-with-archived-trees
20153    :END:
20155 - *Type:* (choice (const :tag "Not at al...
20156 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
20157 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-archived-trees][Find modifications in git logs]]
20159 : Whether sub-trees with the ARCHIVE tag should be exported.
20161 : This can have three different values:
20162 : nil         Do not export, pretend this tree is not present.
20163 : t           Do export the entire tree.
20164 : `headline'  Only export the headline, but skip the tree below it.
20166 : This option can also be set with the OPTIONS keyword,
20167 : e.g. "arch:nil".
20169 ** org-coderef-label-format =(funcall (function (closure (t...=
20170    :PROPERTIES:
20171    :CUSTOM_ID: org-coderef-label-format
20172    :END:
20174 - *Type:* string
20175 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
20176 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-coderef-label-format][Find modifications in git logs]]
20178 : The default coderef format.
20179 : This format string will be used to search for coderef labels in literal
20180 : examples (EXAMPLE and SRC blocks).  The format can be overwritten in
20181 : an individual literal example with the -l option, like
20183 : #+BEGIN_SRC pascal +n -r -l "((%s))"
20184 : ...
20185 : #+END_SRC
20187 : If you want to use this for HTML export, make sure that the format does
20188 : not introduce special font-locking, and avoid the HTML special
20189 : characters `<', `>', and `&'.  The reason for this restriction is that
20190 : the labels are searched for only after htmlize has done its job.
20192 ** org-bbdb-default-anniversary-format =(funcall (function (closure (d...=
20193    :PROPERTIES:
20194    :CUSTOM_ID: org-bbdb-default-anniversary-format
20195    :END:
20197 - *Type:* string
20198 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bbdb.el][org-bbdb.el]]
20199 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bbdb-default-anniversary-format][Find modifications in git logs]]
20201 : Default anniversary class.
20203 ** org-clock-out-remove-zero-time-clocks =(funcall (function (closure (t...=
20204    :PROPERTIES:
20205    :CUSTOM_ID: org-clock-out-remove-zero-time-clocks
20206    :END:
20208 - *Type:* boolean
20209 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
20210 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-out-remove-zero-time-clocks][Find modifications in git logs]]
20212 : Non-nil means remove the clock line when the resulting time is zero.
20214 ** org-export-with-fixed-width =(funcall (function (closure (t...=
20215    :PROPERTIES:
20216    :CUSTOM_ID: org-export-with-fixed-width
20217    :END:
20219 - *Type:* boolean
20220 - *Since:* Emacs version 24.4
20221 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
20222 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-fixed-width][Find modifications in git logs]]
20224 : Non-nil means export lines starting with ":".
20225 : This option can also be set with the OPTIONS keyword,
20226 : e.g. "::nil".
20228 ** org-rss-categories =(quote from-tags)=
20229    :PROPERTIES:
20230    :CUSTOM_ID: org-rss-categories
20231    :END:
20233 - *Type:* (choice (const :tag "From tags...
20234 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
20235 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-categories][Find modifications in git logs]]
20237 : Where to extract items category information from.
20238 : The default is to extract categories from the tags of the
20239 : headlines.  When set to another value, extract the category
20240 : from the :CATEGORY: property of the entry.
20242 ** org-babel-python-command =(funcall (function (closure (t...=
20243    :PROPERTIES:
20244    :CUSTOM_ID: org-babel-python-command
20245    :END:
20247 - *Type:* string
20248 - *Since:* Emacs version 24.4
20249 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-python.el][ob-python.el]]
20250 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-python-command][Find modifications in git logs]]
20252 : Name of the command for executing Python code.
20254 ** org-latex-logfiles-extensions =(funcall (function (closure (t...=
20255    :PROPERTIES:
20256    :CUSTOM_ID: org-latex-logfiles-extensions
20257    :END:
20259 - *Type:* (repeat (string :tag "Extensio...
20260 - *Since:* Emacs version 26.1
20261 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
20262 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-logfiles-extensions][Find modifications in git logs]]
20264 : The list of file extensions to consider as LaTeX logfiles.
20265 : The logfiles will be removed if `org-latex-remove-logfiles' is
20266 : non-nil.
20268 ** org-rss-use-entry-url-as-guid =t=
20269    :PROPERTIES:
20270    :CUSTOM_ID: org-rss-use-entry-url-as-guid
20271    :END:
20273 - *Type:* boolean
20274 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
20275 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-use-entry-url-as-guid][Find modifications in git logs]]
20277 : Use the URL for the <guid> metatag?
20278 : When nil, Org will create ids using `org-icalendar-create-uid'.
20280 ** org-babel-tangle-comment-format-end =(funcall (function (closure (t...=
20281    :PROPERTIES:
20282    :CUSTOM_ID: org-babel-tangle-comment-format-end
20283    :END:
20285 - *Type:* string
20286 - *Since:* Emacs version 24.1
20287 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
20288 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-comment-format-end][Find modifications in git logs]]
20290 : Format of inserted comments in tangled code files.
20291 : The following format strings can be used to insert special
20292 : information into the output using `org-fill-template'.
20293 : %start-line --- the line number at the start of the code block
20294 : %file --------- the file from which the code block was tangled
20295 : %link --------- Org style link to the code block
20296 : %source-name -- name of the code block
20298 : Upon insertion the formatted comment will be commented out, and
20299 : followed by a newline.  To inhibit this post-insertion processing
20300 : set the `org-babel-tangle-uncomment-comments' variable to a
20301 : non-nil value.
20303 : Whether or not comments are inserted during tangling is
20304 : controlled by the :comments header argument.
20306 ** org-export-preserve-breaks =(funcall (function (closure (t...=
20307    :PROPERTIES:
20308    :CUSTOM_ID: org-export-preserve-breaks
20309    :END:
20311 - *Type:* boolean
20312 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
20313 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-preserve-breaks][Find modifications in git logs]]
20315 : Non-nil means preserve all line breaks when exporting.
20316 : This option can also be set with the OPTIONS keyword,
20317 : e.g. "\n:t".
20319 ** org-doi-server-url =(funcall (function (closure (f...=
20320    :PROPERTIES:
20321    :CUSTOM_ID: org-doi-server-url
20322    :END:
20324 - *Type:* string
20325 - *Since:* Emacs version 24.3
20326 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20327 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-doi-server-url][Find modifications in git logs]]
20329 : The URL of the DOI server.
20331 ** org-ctags-path-to-ctags =(funcall (function (closure (t...=
20332    :PROPERTIES:
20333    :CUSTOM_ID: org-ctags-path-to-ctags
20334    :END:
20336 - *Type:* file
20337 - *Since:* Emacs version 24.1
20338 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
20339 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-path-to-ctags][Find modifications in git logs]]
20341 : Name of the ctags executable file.
20343 ** org-clock-in-resume =(funcall (function (closure (t...=
20344    :PROPERTIES:
20345    :CUSTOM_ID: org-clock-in-resume
20346    :END:
20348 - *Type:* boolean
20349 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
20350 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-in-resume][Find modifications in git logs]]
20352 : If non-nil, resume clock when clocking into task with open clock.
20353 : When clocking into a task with a clock entry which has not been closed,
20354 : the clock can be resumed from that point.
20356 ** org-agenda-show-current-time-in-grid =t=
20357    :PROPERTIES:
20358    :CUSTOM_ID: org-agenda-show-current-time-in-grid
20359    :END:
20361 - *Type:* boolean
20362 - *Since:* Emacs version 24.1
20363 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20364 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-show-current-time-in-grid][Find modifications in git logs]]
20366 : Non-nil means show the current time in the time grid.
20368 ** org-goto-interface =(funcall (function (closure (f...=
20369    :PROPERTIES:
20370    :CUSTOM_ID: org-goto-interface
20371    :END:
20373 - *Type:* (choice (const :tag "Outline" ...
20374 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20375 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-interface][Find modifications in git logs]]
20377 : The default interface to be used for `org-goto'.
20378 : Allowed values are:
20379 : outline                  The interface shows an outline of the relevant file
20380 :                          and the correct heading is found by moving through
20381 :                          the outline or by searching with incremental search.
20382 : outline-path-completion  Headlines in the current buffer are offered via
20383 :                          completion.  This is the interface also used by
20384 :                          the refile command.
20386 ** org-agenda-timerange-leaders =(quote ("" "(%d/%d): "))=
20387    :PROPERTIES:
20388    :CUSTOM_ID: org-agenda-timerange-leaders
20389    :END:
20391 - *Type:* (list (string :tag "Deadline t...
20392 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20393 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-timerange-leaders][Find modifications in git logs]]
20395 : Text preceding timerange entries in the agenda view.
20396 : This is a list with two strings.  The first applies when the range
20397 : is entirely on one day.  The second applies if the range spans several days.
20398 : The strings may have two "%d" format specifiers which will be filled
20399 : with the sequence number of the days, and the total number of days in the
20400 : range, respectively.
20402 ** org-format-latex-signal-error =(funcall (function (closure (f...=
20403    :PROPERTIES:
20404    :CUSTOM_ID: org-format-latex-signal-error
20405    :END:
20407 - *Type:* boolean
20408 - *Since:* Emacs version 24.1
20409 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20410 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-format-latex-signal-error][Find modifications in git logs]]
20412 : Non-nil means signal an error when image creation of LaTeX snippets fails.
20413 : When nil, just push out a message.
20415 ** org-agenda-skip-unavailable-files =(funcall (function (closure (f...=
20416    :PROPERTIES:
20417    :CUSTOM_ID: org-agenda-skip-unavailable-files
20418    :END:
20420 - *Type:* boolean
20421 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20422 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-unavailable-files][Find modifications in git logs]]
20424 : Non-nil means to just skip non-reachable files in `org-agenda-files'.
20425 : A nil value means to remove them, after a query, from the list.
20427 ** org-ascii-text-width =(funcall (function (closure (t...=
20428    :PROPERTIES:
20429    :CUSTOM_ID: org-ascii-text-width
20430    :END:
20432 - *Type:* integer
20433 - *Since:* Emacs version 24.4
20434 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
20435 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-text-width][Find modifications in git logs]]
20437 : Maximum width of exported text.
20438 : This number includes margin size, as set in
20439 : `org-ascii-global-margin'.
20441 ** org-table-duration-custom-format =(funcall (function (closure (o...=
20442    :PROPERTIES:
20443    :CUSTOM_ID: org-table-duration-custom-format
20444    :END:
20446 - *Type:* (choice (symbol :tag "Seconds"...
20447 - *Since:* Emacs version 24.1
20448 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
20449 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-duration-custom-format][Find modifications in git logs]]
20451 : Format for the output of calc computations like $1+$2;t.
20452 : The default value is `hours', and will output the results as a
20453 : number of hours.  Other allowed values are `seconds', `minutes' and
20454 : `days', and the output will be a fraction of seconds, minutes or
20455 : days. `hh:mm' selects to use hours and minutes, ignoring seconds.
20456 : The `U' flag in a table formula will select this specific format for
20457 : a single formula.
20459 ** org-latex-caption-above =(funcall (function (closure (t...=
20460    :PROPERTIES:
20461    :CUSTOM_ID: org-latex-caption-above
20462    :END:
20464 - *Type:* (choice (const :tag "For all e...
20465 - *Since:* Emacs version 26.1
20466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
20467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-caption-above][Find modifications in git logs]]
20469 : When non-nil, place caption string at the beginning of elements.
20470 : Otherwise, place it near the end.  When value is a list of
20471 : symbols, put caption above selected elements only.  Allowed
20472 : symbols are: `image', `table', `src-block' and `special-block'.
20474 ** org-agenda-sticky =nil=
20475    :PROPERTIES:
20476    :CUSTOM_ID: org-agenda-sticky
20477    :END:
20479 - *Type:* boolean
20480 - *Since:* Emacs version 24.3
20481 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20482 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-sticky][Find modifications in git logs]]
20484 : Non-nil means agenda q key will bury agenda buffers.
20485 : Agenda commands will then show existing buffer instead of generating new ones.
20486 : When nil, `q' will kill the single agenda buffer.
20488 ** org-loop-over-headlines-in-active-region =(funcall (function (closure (f...=
20489    :PROPERTIES:
20490    :CUSTOM_ID: org-loop-over-headlines-in-active-region
20491    :END:
20493 - *Type:* (choice (const :tag "Don't loo...
20494 - *Since:* Emacs version 24.1
20495 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20496 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-loop-over-headlines-in-active-region][Find modifications in git logs]]
20498 : Shall some commands act upon headlines in the active region?
20500 : When set to t, some commands will be performed in all headlines
20501 : within the active region.
20503 : When set to `start-level', some commands will be performed in all
20504 : headlines within the active region, provided that these headlines
20505 : are of the same level than the first one.
20507 : When set to a string, those commands will be performed on the
20508 : matching headlines within the active region.  Such string must be
20509 : a tags/property/todo match as it is used in the agenda tags view.
20511 : The list of commands is: `org-schedule', `org-deadline',
20512 : `org-todo', `org-archive-subtree', `org-archive-set-tag' and
20513 : `org-archive-to-archive-sibling'.  The archiving commands skip
20514 : already archived entries.
20516 ** org-sort-agenda-notime-is-late =t=
20517    :PROPERTIES:
20518    :CUSTOM_ID: org-sort-agenda-notime-is-late
20519    :END:
20521 - *Type:* boolean
20522 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20523 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sort-agenda-notime-is-late][Find modifications in git logs]]
20525 : Non-nil means items without time are considered late.
20526 : This is only relevant for sorting.  When t, items which have no explicit
20527 : time like 15:30 will be considered as 99:01, i.e. later than any items which
20528 : do have a time.  When nil, the default time is before 0:00.  You can use this
20529 : option to decide if the schedule for today should come before or after timeless
20530 : agenda entries.
20532 ** org-calendar-to-agenda-key =(funcall (function (closure (f...=
20533    :PROPERTIES:
20534    :CUSTOM_ID: org-calendar-to-agenda-key
20535    :END:
20537 - *Type:* sexp
20538 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20539 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-to-agenda-key][Find modifications in git logs]]
20541 : The key to be installed in `calendar-mode-map' for switching to the agenda.
20542 : The command `org-calendar-goto-agenda' will be bound to this key.  The
20543 : default is the character `c' because then `c' can be used to switch back and
20544 : forth between agenda and calendar.
20546 ** org-faces-easy-properties =(funcall (function (closure (t...=
20547    :PROPERTIES:
20548    :CUSTOM_ID: org-faces-easy-properties
20549    :END:
20551 - *Type:* (repeat (cons (choice (const t...
20552 - *Since:* Emacs version 24.1
20553 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
20554 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-faces-easy-properties][Find modifications in git logs]]
20556 : The property changes by easy faces.
20557 : This is an alist, the keys show the area of application, the values
20558 : can be `:foreground' or `:background'.  A color string for special
20559 : keywords will then be interpreted as either foreground or background
20560 : color.
20562 ** org-clock-frame-title-format =(funcall (function (closure (t...=
20563    :PROPERTIES:
20564    :CUSTOM_ID: org-clock-frame-title-format
20565    :END:
20567 - *Type:* sexp
20568 - *Since:* Emacs version 24.1
20569 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
20570 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-frame-title-format][Find modifications in git logs]]
20572 : The value for `frame-title-format' when clocking in.
20574 : When `org-clock-clocked-in-display' is set to `frame-title'
20575 : or `both', clocking in will replace `frame-title-format' with
20576 : this value.  Clocking out will restore `frame-title-format'.
20578 : `org-frame-title-string' is a format string using the same
20579 : specifications than `frame-title-format', which see.
20581 ** org-icalendar-include-todo =(funcall (function (closure (t...=
20582    :PROPERTIES:
20583    :CUSTOM_ID: org-icalendar-include-todo
20584    :END:
20586 - *Type:* (choice (const :tag "None" nil...
20587 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
20588 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-include-todo][Find modifications in git logs]]
20590 : Non-nil means create VTODO components from TODO items.
20592 : Valid values are:
20593 : nil                  don't include any task.
20594 : t                    include tasks that are not in DONE state.
20595 : `unblocked'          include all TODO items that are not blocked.
20596 : `all'                include both done and not done items.
20598 ** org-agenda-todo-ignore-with-date =nil=
20599    :PROPERTIES:
20600    :CUSTOM_ID: org-agenda-todo-ignore-with-date
20601    :END:
20603 - *Type:* boolean
20604 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20605 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-ignore-with-date][Find modifications in git logs]]
20607 : Non-nil means don't show entries with a date in the global todo list.
20608 : You can use this if you prefer to mark mere appointments with a TODO keyword,
20609 : but don't want them to show up in the TODO list.
20610 : When this is set, it also covers deadlines and scheduled items, the settings
20611 : of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
20612 : will be ignored.
20613 : See also the variable `org-agenda-tags-todo-honor-ignore-options'.
20615 ** org-use-effective-time =(funcall (function (closure (f...=
20616    :PROPERTIES:
20617    :CUSTOM_ID: org-use-effective-time
20618    :END:
20620 - *Type:* boolean
20621 - *Since:* Emacs version 24.1
20622 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20623 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-effective-time][Find modifications in git logs]]
20625 : If non-nil, consider `org-extend-today-until' when creating timestamps.
20626 : For example, if `org-extend-today-until' is 8, and it's 4am, then the
20627 : "effective time" of any timestamps between midnight and 8am will be
20628 : 23:59 of the previous day.
20630 ** org-icalendar-use-deadline =(funcall (function (closure (t...=
20631    :PROPERTIES:
20632    :CUSTOM_ID: org-icalendar-use-deadline
20633    :END:
20635 - *Type:* (set :greedy t (const :tag "De...
20636 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
20637 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-use-deadline][Find modifications in git logs]]
20639 : Contexts where iCalendar export should use a deadline time stamp.
20641 : This is a list with possibly several symbols in it.  Valid symbols are:
20643 : `event-if-todo'       Deadlines in TODO entries become calendar events.
20644 : `event-if-not-todo'   Deadlines in non-TODO entries become calendar events.
20645 : `todo-due'            Use deadlines in TODO entries as due-dates.
20647 ** org-latex-tables-centered =(funcall (function (closure (t...=
20648    :PROPERTIES:
20649    :CUSTOM_ID: org-latex-tables-centered
20650    :END:
20652 - *Type:* boolean
20653 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
20654 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-tables-centered][Find modifications in git logs]]
20656 : When non-nil, tables are exported in a center environment.
20658 ** org-table-formula-create-columns =(funcall (function (closure (o...=
20659    :PROPERTIES:
20660    :CUSTOM_ID: org-table-formula-create-columns
20661    :END:
20663 - *Type:* (choice (const :tag "Setting a...
20664 - *Since:* Emacs version 26.1
20665 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
20666 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-formula-create-columns][Find modifications in git logs]]
20668 : Non-nil means that evaluation of a field formula can add new
20669 : columns if an out-of-bounds field is being set.
20671 ** org-agenda-span =(quote week)=
20672    :PROPERTIES:
20673    :CUSTOM_ID: org-agenda-span
20674    :END:
20676 - *Type:* (choice (const :tag "Day" day)...
20677 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
20678 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-span][Find modifications in git logs]]
20680 : Number of days to include in overview display.
20681 : Can be day, week, month, year, or any number of days.
20682 : Custom commands can set this variable in the options section.
20684 ** org-startup-with-beamer-mode =(funcall (function (closure (f...=
20685    :PROPERTIES:
20686    :CUSTOM_ID: org-startup-with-beamer-mode
20687    :END:
20689 - *Type:* boolean
20690 - *Since:* Emacs version 24.1
20691 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20692 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-with-beamer-mode][Find modifications in git logs]]
20694 : Non-nil means turn on `org-beamer-mode' on startup.
20695 : This can also be configured on a per-file basis by adding one of
20696 : the following lines anywhere in the buffer:
20698 :    #+STARTUP: beamer
20700 ** org-koma-letter-prefer-subject =nil=
20701    :PROPERTIES:
20702    :CUSTOM_ID: org-koma-letter-prefer-subject
20703    :END:
20705 - *Type:* boolean
20706 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20707 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-prefer-subject][Find modifications in git logs]]
20709 : Non-nil means title should be interpreted as subject if subject is missing.
20710 : This option can also be set with the OPTIONS keyword,
20711 : e.g. "title-subject:t".
20713 ** org-export-with-author =(funcall (function (closure (t...=
20714    :PROPERTIES:
20715    :CUSTOM_ID: org-export-with-author
20716    :END:
20718 - *Type:* boolean
20719 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
20720 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-author][Find modifications in git logs]]
20722 : Non-nil means insert author name into the exported file.
20723 : This option can also be set with the OPTIONS keyword,
20724 : e.g. "author:nil".
20726 ** org-show-notification-handler =(funcall (function (closure (t...=
20727    :PROPERTIES:
20728    :CUSTOM_ID: org-show-notification-handler
20729    :END:
20731 - *Type:* (choice (const nil) (string :t...
20732 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
20733 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-notification-handler][Find modifications in git logs]]
20735 : Function or program to send notification with.
20736 : The function or program will be called with the notification
20737 : string as argument.
20739 ** org-attach-store-link-p =(funcall (function (closure (t...=
20740    :PROPERTIES:
20741    :CUSTOM_ID: org-attach-store-link-p
20742    :END:
20744 - *Type:* (choice (const :tag "Don't sto...
20745 - *Since:* Emacs version 24.1
20746 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
20747 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-store-link-p][Find modifications in git logs]]
20749 : Non-nil means store a link to a file when attaching it.
20751 ** org-babel-maxima-command =(funcall (function (closure (t...=
20752    :PROPERTIES:
20753    :CUSTOM_ID: org-babel-maxima-command
20754    :END:
20756 - *Type:* string
20757 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-maxima.el][ob-maxima.el]]
20758 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-maxima-command][Find modifications in git logs]]
20760 : Command used to call maxima on the shell.
20762 ** org-html-mathjax-template =(funcall (function (closure (h...=
20763    :PROPERTIES:
20764    :CUSTOM_ID: org-html-mathjax-template
20765    :END:
20767 - *Type:* string
20768 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
20769 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-mathjax-template][Find modifications in git logs]]
20771 : The MathJax template.  See also `org-html-mathjax-options'.
20773 ** org-enable-table-editor =(funcall (function (closure (f...=
20774    :PROPERTIES:
20775    :CUSTOM_ID: org-enable-table-editor
20776    :END:
20778 - *Type:* (choice (const :tag "off" nil)...
20779 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20780 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-enable-table-editor][Find modifications in git logs]]
20782 : Non-nil means lines starting with "|" are handled by the table editor.
20783 : When nil, such lines will be treated like ordinary lines.
20785 : When equal to the symbol `optimized', the table editor will be optimized to
20786 : do the following:
20787 : - Automatic overwrite mode in front of whitespace in table fields.
20788 :   This makes the structure of the table stay in tact as long as the edited
20789 :   field does not exceed the column width.
20790 : - Minimize the number of realigns.  Normally, the table is aligned each time
20791 :   TAB or RET are pressed to move to another field.  With optimization this
20792 :   happens only if changes to a field might have changed the column width.
20793 : Optimization requires replacing the functions `self-insert-command',
20794 : `delete-char', and `backward-delete-char' in Org buffers, with a
20795 : slight (in fact: unnoticeable) speed impact for normal typing.  Org is very
20796 : good at guessing when a re-align will be necessary, but you can always
20797 : force one with `\[org-ctrl-c-ctrl-c]'.
20799 : If you would like to use the optimized version in Org mode, but the
20800 : un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
20802 : This variable can be used to turn on and off the table editor during a session,
20803 : but in order to toggle optimization, a restart is required.
20805 : See also the variable `org-table-auto-blank-field'.
20807 ** org-mobile-encryption-tempfile =(funcall (function (closure (t...=
20808    :PROPERTIES:
20809    :CUSTOM_ID: org-mobile-encryption-tempfile
20810    :END:
20812 - *Type:* directory
20813 - *Since:* Emacs version 24.1
20814 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
20815 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-encryption-tempfile][Find modifications in git logs]]
20817 : File that is being used as a temporary file for encryption.
20818 : This must be local file on your local machine (not on the WebDAV server).
20819 : You might want to put this file into a directory where only you have access.
20821 ** org-time-stamp-rounding-minutes =(funcall (function (closure (f...=
20822    :PROPERTIES:
20823    :CUSTOM_ID: org-time-stamp-rounding-minutes
20824    :END:
20826 - *Type:* (list (integer :tag "when inse...
20827 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20828 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-time-stamp-rounding-minutes][Find modifications in git logs]]
20830 : Number of minutes to round time stamps to.
20831 : \<org-mode-map>These are two values, the first applies when first creating a time stamp.
20832 : The second applies when changing it with the commands `S-up' and `S-down'.
20833 : When changing the time stamp, this means that it will change in steps
20834 : of N minutes, as given by the second value.
20836 : When a setting is 0 or 1, insert the time unmodified.  Useful rounding
20837 : numbers should be factors of 60, so for example 5, 10, 15.
20839 : When this is larger than 1, you can still force an exact time stamp by using
20840 : a double prefix argument to a time stamp command like `\[org-time-stamp]' or `\[org-time-stamp-inactive],
20841 : and by using a prefix arg to `S-up/down' to specify the exact number
20842 : of minutes to shift.
20844 ** org-html-html5-fancy =(funcall (function (closure (h...=
20845    :PROPERTIES:
20846    :CUSTOM_ID: org-html-html5-fancy
20847    :END:
20849 - *Type:* boolean
20850 - *Since:* Emacs version 24.4
20851 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
20852 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-html5-fancy][Find modifications in git logs]]
20854 : Non-nil means using new HTML5 elements.
20855 : This variable is ignored for anything other than HTML5 export.
20857 : For compatibility with Internet Explorer, it's probably a good
20858 : idea to download some form of the html5shiv (for instance
20859 : https://code.google.com/p/html5shiv/) and add it to your
20860 : HTML_HEAD_EXTRA, so that your pages don't break for users of IE
20861 : versions 8 and below.
20863 ** org-babel-exp-inline-code-template =(funcall (function (closure (t...=
20864    :PROPERTIES:
20865    :CUSTOM_ID: org-babel-exp-inline-code-template
20866    :END:
20868 - *Type:* string
20869 - *Since:* Emacs version 26.1
20870 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
20871 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-exp-inline-code-template][Find modifications in git logs]]
20873 : Template used to export the body of inline code blocks.
20874 : This template may be customized to include additional information
20875 : such as the code block name, or the values of particular header
20876 : arguments.  The template is filled out using `org-fill-template',
20877 : and the following %keys may be used.
20879 :  lang ------ the language of the code block
20880 :  name ------ the name of the code block
20881 :  body ------ the body of the code block
20882 :  switches -- the switches associated to the code block
20883 :  flags ----- the flags passed to the code block
20885 : In addition to the keys mentioned above, every header argument
20886 : defined for the code block may be used as a key and will be
20887 : replaced with its value.
20889 ** org-export-use-babel =(funcall (function (closure (t...=
20890    :PROPERTIES:
20891    :CUSTOM_ID: org-export-use-babel
20892    :END:
20894 - *Type:* (choice (const :tag "Never" ni...
20895 - *Since:* Emacs version 24.1
20896 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
20897 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-use-babel][Find modifications in git logs]]
20899 : Switch controlling code evaluation and header processing during export.
20900 : When set to nil no code will be evaluated as part of the export
20901 : process and no header arguments will be obeyed.  When set to
20902 : `inline-only', only inline code blocks will be executed.  Users
20903 : who wish to avoid evaluating code on export should use the header
20904 : argument `:eval never-export'.
20906 ** org-latex-to-mathml-convert-command =(funcall (function (closure (f...=
20907    :PROPERTIES:
20908    :CUSTOM_ID: org-latex-to-mathml-convert-command
20909    :END:
20911 - *Type:* (choice (const :tag "None" nil...
20912 - *Since:* Emacs version 24.1
20913 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20914 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-to-mathml-convert-command][Find modifications in git logs]]
20916 : Command to convert LaTeX fragments to MathML.
20917 : Replace format-specifiers in the command as noted below and use
20918 : `shell-command' to convert LaTeX to MathML.
20919 : %j:     Executable file in fully expanded form as specified by
20920 :         `org-latex-to-mathml-jar-file'.
20921 : %I:     Input LaTeX file in fully expanded form.
20922 : %i:     The latex fragment to be converted.
20923 : %o:     Output MathML file.
20925 : This command is used by `org-create-math-formula'.
20927 : When using MathToWeb as the converter, set this option to
20928 : "java -jar %j -unicode -force -df %o %I".
20930 : When using LaTeXML set this option to
20931 : "latexmlmath "%i" --presentationmathml=%o".
20933 ** org-startup-align-all-tables =(funcall (function (closure (f...=
20934    :PROPERTIES:
20935    :CUSTOM_ID: org-startup-align-all-tables
20936    :END:
20938 - *Type:* boolean
20939 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20940 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-align-all-tables][Find modifications in git logs]]
20942 : Non-nil means align all tables when visiting a file.
20943 : This is useful when the column width in tables is forced with <N> cookies
20944 : in table fields.  Such tables will look correct only after the first re-align.
20945 : This can also be configured on a per-file basis by adding one of
20946 : the following lines anywhere in the buffer:
20947 :    #+STARTUP: align
20948 :    #+STARTUP: noalign
20950 ** org-table-default-size =(funcall (function (closure (o...=
20951    :PROPERTIES:
20952    :CUSTOM_ID: org-table-default-size
20953    :END:
20955 - *Type:* string
20956 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
20957 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-default-size][Find modifications in git logs]]
20959 : The default size for newly created tables, Columns x Rows.
20961 ** org-default-notes-file =(funcall (function (closure (f...=
20962    :PROPERTIES:
20963    :CUSTOM_ID: org-default-notes-file
20964    :END:
20966 - *Type:* file
20967 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20968 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-default-notes-file][Find modifications in git logs]]
20970 : Default target for storing notes.
20971 : Used as a fall back file for org-capture.el, for templates that
20972 : do not specify a target file.
20974 ** org-make-link-description-function =(funcall (function (closure (f...=
20975    :PROPERTIES:
20976    :CUSTOM_ID: org-make-link-description-function
20977    :END:
20979 - *Type:* (choice (const nil) (function)...
20980 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
20981 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-make-link-description-function][Find modifications in git logs]]
20983 : Function to use for generating link descriptions from links.
20984 : When nil, the link location will be used.  This function must take
20985 : two parameters: the first one is the link, the second one is the
20986 : description generated by `org-insert-link'.  The function should
20987 : return the description to use.
20989 ** org-koma-letter-opening =""=
20990    :PROPERTIES:
20991    :CUSTOM_ID: org-koma-letter-opening
20992    :END:
20994 - *Type:* string
20995 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20996 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-opening][Find modifications in git logs]]
20998 : Letter's opening, as a string.
21000 : This option can also be set with the OPENING keyword.  Moreover,
21001 : when:
21002 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
21003 :       or the CLOSING keyword is empty
21004 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
21005 :   (3) the letter contains a headline without a special
21006 :       tag (e.g. "to" or "ps");
21007 : then the opening will be implicitly set as the untagged headline title.
21009 ** org-agenda-todo-keyword-format ="%-1s"=
21010    :PROPERTIES:
21011    :CUSTOM_ID: org-agenda-todo-keyword-format
21012    :END:
21014 - *Type:* string
21015 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21016 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-keyword-format][Find modifications in git logs]]
21018 : Format for the TODO keyword in agenda lines.
21019 : Set this to something like "%-12s" if you want all TODO keywords
21020 : to occupy a fixed space in the agenda display.
21022 ** org-babel-sh-var-quote-fmt ="$(cat <<'BABEL_TABLE'\n%s\nBA...=
21023    :PROPERTIES:
21024    :CUSTOM_ID: org-babel-sh-var-quote-fmt
21025    :END:
21027 - *Type:* string
21028 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-sh.el][ob-sh.el]]
21029 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-sh-var-quote-fmt][Find modifications in git logs]]
21033 ** org-man-tables-verbatim =(funcall (function (closure (o...=
21034    :PROPERTIES:
21035    :CUSTOM_ID: org-man-tables-verbatim
21036    :END:
21038 - *Type:* boolean
21039 - *Since:* Emacs version 24.4
21040 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
21041 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-tables-verbatim][Find modifications in git logs]]
21043 : When non-nil, tables are exported verbatim.
21045 ** org-habit-show-done-always-green =(funcall (function (closure (t...=
21046    :PROPERTIES:
21047    :CUSTOM_ID: org-habit-show-done-always-green
21048    :END:
21050 - *Type:* boolean
21051 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
21052 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-show-done-always-green][Find modifications in git logs]]
21054 : Non-nil means DONE days will always be green in the consistency graph.
21055 : It will be green even if it was done after the deadline.
21057 ** org-agenda-log-mode-items =(quote (closed clock))=
21058    :PROPERTIES:
21059    :CUSTOM_ID: org-agenda-log-mode-items
21060    :END:
21062 - *Type:* (set :greedy t (const closed) ...
21063 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21064 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-log-mode-items][Find modifications in git logs]]
21066 : List of items that should be shown in agenda log mode.
21067 : \<org-agenda-mode-map>This list may contain the following symbols:
21069 :   closed    Show entries that have been closed on that day.
21070 :   clock     Show entries that have received clocked time on that day.
21071 :   state     Show all logged state changes.
21072 : Note that instead of changing this variable, you can also press `\[universal-argument] \[org-agenda-log-mode]' in
21073 : the agenda to display all available LOG items temporarily.
21075 ** org-agenda-remove-timeranges-from-blocks =nil=
21076    :PROPERTIES:
21077    :CUSTOM_ID: org-agenda-remove-timeranges-from-blocks
21078    :END:
21080 - *Type:* boolean
21081 - *Since:* Emacs version 24.1
21082 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21083 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-remove-timeranges-from-blocks][Find modifications in git logs]]
21085 : Non-nil means remove time ranges specifications in agenda
21086 : items that span on several days.
21088 ** org-latex-footnote-defined-format =(funcall (function (closure (t...=
21089    :PROPERTIES:
21090    :CUSTOM_ID: org-latex-footnote-defined-format
21091    :END:
21093 - *Type:* (choice (const :tag "Use plain...
21094 - *Since:* Emacs version 26.1
21095 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
21096 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-footnote-defined-format][Find modifications in git logs]]
21098 : Format string used to format reference to footnote already defined.
21099 : %s will be replaced by the label of the referred footnote.
21101 ** org-archive-location =(funcall (function (closure (t...=
21102    :PROPERTIES:
21103    :CUSTOM_ID: org-archive-location
21104    :END:
21106 - *Type:* string
21107 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21108 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-location][Find modifications in git logs]]
21110 : The location where subtrees should be archived.
21112 : The value of this variable is a string, consisting of two parts,
21113 : separated by a double-colon.  The first part is a filename and
21114 : the second part is a headline.
21116 : When the filename is omitted, archiving happens in the same file.
21117 : %s in the filename will be replaced by the current file
21118 : name (without the directory part).  Archiving to a different file
21119 : is useful to keep archived entries from contributing to the
21120 : Org Agenda.
21122 : The archived entries will be filed as subtrees of the specified
21123 : headline.  When the headline is omitted, the subtrees are simply
21124 : filed away at the end of the file, as top-level entries.  Also in
21125 : the heading you can use %s to represent the file name, this can be
21126 : useful when using the same archive for a number of different files.
21128 : Here are a few examples:
21129 : "%s_archive::"
21130 :       If the current file is Projects.org, archive in file
21131 :       Projects.org_archive, as top-level trees.  This is the default.
21133 : "::* Archived Tasks"
21134 :       Archive in the current file, under the top-level headline
21135 :       "* Archived Tasks".
21137 : "~/org/archive.org::"
21138 :       Archive in file ~/org/archive.org (absolute path), as top-level trees.
21140 : "~/org/archive.org::* From %s"
21141 :       Archive in file ~/org/archive.org (absolute path), under headlines
21142 :         "From FILENAME" where file name is the current file name.
21144 : "~/org/datetree.org::datetree/* Finished Tasks"
21145 :         The "datetree/" string is special, signifying to archive
21146 :         items to the datetree.  Items are placed in either the CLOSED
21147 :         date of the item, or the current date if there is no CLOSED date.
21148 :         The heading will be a subentry to the current date.  There doesn't
21149 :         need to be a heading, but there always needs to be a slash after
21150 :         datetree.  For example, to store archived items directly in the
21151 :         datetree, use "~/org/datetree.org::datetree/".
21153 : "basement::** Finished Tasks"
21154 :       Archive in file ./basement (relative path), as level 3 trees
21155 :       below the level 2 heading "** Finished Tasks".
21157 : You may set this option on a per-file basis by adding to the buffer a
21158 : line like
21160 : #+ARCHIVE: basement::** Finished Tasks
21162 : You may also define it locally for a subtree by setting an ARCHIVE property
21163 : in the entry.  If such a property is found in an entry, or anywhere up
21164 : the hierarchy, it will be used.
21166 ** org-html-table-row-open-tag =(funcall (function (closure (h...=
21167    :PROPERTIES:
21168    :CUSTOM_ID: org-html-table-row-open-tag
21169    :END:
21171 - *Type:* (choice :tag "Opening tag" (st...
21172 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21173 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-row-open-tag][Find modifications in git logs]]
21175 : The opening tag for table rows.
21176 : This is customizable so that alignment options can be specified.
21177 : Instead of strings, these can be a Lisp function that will be
21178 : evaluated for each row in order to construct the table row tags.
21180 : The function will be called with these arguments:
21182 :          `number': row number (0 is the first row)
21183 :    `group-number': group number of current row
21184 :    `start-group?': non-nil means the row starts a group
21185 :      `end-group?': non-nil means the row ends a group
21186 :            `top?': non-nil means this is the top row
21187 :         `bottom?': non-nil means this is the bottom row
21189 : For example:
21191 :   (setq org-html-table-row-open-tag
21192 :         (lambda (number group-number start-group? end-group-p top? bottom?)
21193 :            (cond (top? "<tr class=\"tr-top\">")
21194 :                  (bottom? "<tr class=\"tr-bottom\">")
21195 :                  (t (if (= (mod number 2) 1)
21196 :                         "<tr class=\"tr-odd\">"
21197 :                       "<tr class=\"tr-even\">")))))
21199 : will use the "tr-top" and "tr-bottom" classes for the top row
21200 : and the bottom row, and otherwise alternate between "tr-odd" and
21201 : "tr-even" for odd and even rows.
21203 ** org-icalendar-combined-name =(funcall (function (closure (t...=
21204    :PROPERTIES:
21205    :CUSTOM_ID: org-icalendar-combined-name
21206    :END:
21208 - *Type:* string
21209 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
21210 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-combined-name][Find modifications in git logs]]
21212 : Calendar name for the combined iCalendar representing all agenda files.
21214 ** org-priority-start-cycle-with-default =(funcall (function (closure (f...=
21215    :PROPERTIES:
21216    :CUSTOM_ID: org-priority-start-cycle-with-default
21217    :END:
21219 - *Type:* boolean
21220 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21221 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-priority-start-cycle-with-default][Find modifications in git logs]]
21223 : Non-nil means start with default priority when starting to cycle.
21224 : When this is nil, the first step in the cycle will be (depending on the
21225 : command used) one higher or lower than the default priority.
21226 : See also `org-default-priority'.
21228 ** org-table-use-standard-references =(funcall (function (closure (o...=
21229    :PROPERTIES:
21230    :CUSTOM_ID: org-table-use-standard-references
21231    :END:
21233 - *Type:* (choice (const :tag "Never, do...
21234 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
21235 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-use-standard-references][Find modifications in git logs]]
21237 : Non-nil means using table references like B3 instead of @3$2.
21238 : Possible values are:
21239 : nil     never use them
21240 : from    accept as input, do not present for editing
21241 : t       accept as input and present for editing
21243 ** org-src-lang-modes =(funcall (function (closure (t...=
21244    :PROPERTIES:
21245    :CUSTOM_ID: org-src-lang-modes
21246    :END:
21248 - *Type:* (repeat (cons (string "Languag...
21249 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
21250 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-lang-modes][Find modifications in git logs]]
21252 : Alist mapping languages to their major mode.
21253 : The key is the language name, the value is the string that should
21254 : be inserted as the name of the major mode.  For many languages this is
21255 : simple, but for language where this is not the case, this variable
21256 : provides a way to simplify things on the user side.
21257 : For example, there is no ocaml-mode in Emacs, but the mode to use is
21258 : `tuareg-mode'.
21260 ** org-startup-with-inline-images =(funcall (function (closure (f...=
21261    :PROPERTIES:
21262    :CUSTOM_ID: org-startup-with-inline-images
21263    :END:
21265 - *Type:* boolean
21266 - *Since:* Emacs version 24.1
21267 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21268 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-with-inline-images][Find modifications in git logs]]
21270 : Non-nil means show inline images when loading a new Org file.
21271 : This can also be configured on a per-file basis by adding one of
21272 : the following lines anywhere in the buffer:
21273 :    #+STARTUP: inlineimages
21274 :    #+STARTUP: noinlineimages
21276 ** org-refile-allow-creating-parent-nodes =(funcall (function (closure (f...=
21277    :PROPERTIES:
21278    :CUSTOM_ID: org-refile-allow-creating-parent-nodes
21279    :END:
21281 - *Type:* (choice (const :tag "Never" ni...
21282 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21283 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-allow-creating-parent-nodes][Find modifications in git logs]]
21285 : Non-nil means allow the creation of new nodes as refile targets.
21286 : New nodes are then created by adding "/new node name" to the completion
21287 : of an existing node.  When the value of this variable is `confirm',
21288 : new node creation must be confirmed by the user (recommended).
21289 : When nil, the completion must match an existing entry.
21291 : Note that, if the new heading is not seen by the criteria
21292 : listed in `org-refile-targets', multiple instances of the same
21293 : heading would be created by trying again to file under the new
21294 : heading.
21296 ** org-enable-fixed-width-editor =(funcall (function (closure (f...=
21297    :PROPERTIES:
21298    :CUSTOM_ID: org-enable-fixed-width-editor
21299    :END:
21301 - *Type:* boolean
21302 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21303 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-enable-fixed-width-editor][Find modifications in git logs]]
21305 : Non-nil means lines starting with ":" are treated as fixed-width.
21306 : This currently only means they are never auto-wrapped.
21307 : When nil, such lines will be treated like ordinary lines.
21309 ** org-html-metadata-timestamp-format =(funcall (function (closure (h...=
21310    :PROPERTIES:
21311    :CUSTOM_ID: org-html-metadata-timestamp-format
21312    :END:
21314 - *Type:* string
21315 - *Since:* Emacs version 24.4
21316 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21317 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-metadata-timestamp-format][Find modifications in git logs]]
21319 : Format used for timestamps in preamble, postamble and metadata.
21320 : See `format-time-string' for more information on its components.
21322 ** org-entities-user =(funcall (function (closure (t...=
21323    :PROPERTIES:
21324    :CUSTOM_ID: org-entities-user
21325    :END:
21327 - *Type:* (repeat (list (string :tag "na...
21328 - *Since:* Emacs version 24.1
21329 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-entities.el][org-entities.el]]
21330 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-entities-user][Find modifications in git logs]]
21332 : User-defined entities used in Org to produce special characters.
21333 : Each entry in this list is a list of strings.  It associates the name
21334 : of the entity that can be inserted into an Org file as \name with the
21335 : appropriate replacements for the different export backends.  The order
21336 : of the fields is the following
21338 : name                 As a string, without the leading backslash.
21339 : LaTeX replacement    In ready LaTeX, no further processing will take place.
21340 : LaTeX mathp          Either t or nil.  When t this entity needs to be in
21341 :                      math mode.
21342 : HTML replacement     In ready HTML, no further processing will take place.
21343 :                      Usually this will be an &...; entity.
21344 : ASCII replacement    Plain ASCII, no extensions.
21345 : Latin1 replacement   Use the special characters available in latin1.
21346 : utf-8 replacement    Use the special characters available in utf-8.
21348 : If you define new entities here that require specific LaTeX
21349 : packages to be loaded, add these packages to `org-latex-packages-alist'.
21351 ** org-agenda-prefer-last-repeat =nil=
21352    :PROPERTIES:
21353    :CUSTOM_ID: org-agenda-prefer-last-repeat
21354    :END:
21356 - *Type:* (choice (const :tag "Prefer la...
21357 - *Since:* Emacs version 26.1
21358 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21359 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-prefer-last-repeat][Find modifications in git logs]]
21361 : Non-nil sets date for repeated entries to their last repeat.
21363 : When nil, display SCHEDULED and DEADLINE dates at their base
21364 : date, and in today's agenda, as a reminder.  Display plain
21365 : time-stamps, on the other hand, at every repeat date in the past
21366 : in addition to the base date.
21368 : When non-nil, show a repeated entry at its latest repeat date,
21369 : possibly being today even if it wasn't marked as done.  This
21370 : setting is useful if you do not always mark repeated entries as
21371 : done and, yet, consider that reaching repeat date starts the task
21372 : anew.
21374 : When set to a list of strings, prefer last repeats only for
21375 : entries with these TODO keywords.
21377 ** org-agenda-skip-deadline-if-done =nil=
21378    :PROPERTIES:
21379    :CUSTOM_ID: org-agenda-skip-deadline-if-done
21380    :END:
21382 - *Type:* boolean
21383 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21384 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-deadline-if-done][Find modifications in git logs]]
21386 : Non-nil means don't show deadlines when the corresponding item is done.
21387 : When nil, the deadline is still shown and should give you a happy feeling.
21388 : This is relevant for the daily/weekly agenda.  It applies only to the
21389 : actual date of the deadline.  Warnings about approaching and past-due
21390 : deadlines are always turned off when the item is DONE.
21392 ** org-texinfo-classes =(funcall (function (closure (t...=
21393    :PROPERTIES:
21394    :CUSTOM_ID: org-texinfo-classes
21395    :END:
21397 - *Type:* (repeat (list (string :tag "Te...
21398 - *Since:* Emacs version 26.1
21399 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
21400 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-classes][Find modifications in git logs]]
21402 : Alist of Texinfo classes and associated header and structure.
21403 : If #+TEXINFO_CLASS is set in the buffer, use its value and the
21404 : associated information.  Here is the structure of a class
21405 : definition:
21407 :   (class-name
21408 :     header-string
21409 :     (numbered-1 unnumbered-1 appendix-1)
21410 :     (numbered-2 unnumbered-2 appendix-2)
21411 :     ...)
21414 : The header string
21415 : -----------------
21417 : The header string is inserted in the header of the generated
21418 : document, right after "@setfilename" and "@settitle"
21419 : commands.
21421 : If it contains the special string
21423 :   "@documentencoding AUTO"
21425 : "AUTO" will be replaced with an appropriate coding system.  See
21426 : `org-texinfo-coding-system' for more information.  Likewise, if
21427 : the string contains the special string
21429 :   "@documentlanguage AUTO"
21431 : "AUTO" will be replaced with the language defined in the
21432 : buffer, through #+LANGUAGE keyword, or globally, with
21433 : `org-export-default-language', which see.
21436 : The sectioning structure
21437 : ------------------------
21439 : The sectioning structure of the class is given by the elements
21440 : following the header string.  For each sectioning level, a number
21441 : of strings is specified.  A %s formatter is mandatory in each
21442 : section string and will be replaced by the title of the section.
21444 ** org-html-xml-declaration =(funcall (function (closure (h...=
21445    :PROPERTIES:
21446    :CUSTOM_ID: org-html-xml-declaration
21447    :END:
21449 - *Type:* (choice (string :tag "Single d...
21450 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21451 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-xml-declaration][Find modifications in git logs]]
21453 : The extension for exported HTML files.
21454 : %s will be replaced with the charset of the exported file.
21455 : This may be a string, or an alist with export extensions
21456 : and corresponding declarations.
21458 : This declaration only applies when exporting to XHTML.
21460 ** org-sort-agenda-noeffort-is-high =t=
21461    :PROPERTIES:
21462    :CUSTOM_ID: org-sort-agenda-noeffort-is-high
21463    :END:
21465 - *Type:* boolean
21466 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21467 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sort-agenda-noeffort-is-high][Find modifications in git logs]]
21469 : Non-nil means items without effort estimate are sorted as high effort.
21470 : This also applies when filtering an agenda view with respect to the
21471 : < or > effort operator.  Then, tasks with no effort defined will be treated
21472 : as tasks with high effort.
21473 : When nil, such items are sorted as 0 minutes effort.
21475 ** org-html-table-header-tags =(funcall (function (closure (h...=
21476    :PROPERTIES:
21477    :CUSTOM_ID: org-html-table-header-tags
21478    :END:
21480 - *Type:* (cons (string :tag "Opening ta...
21481 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21482 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-header-tags][Find modifications in git logs]]
21484 : The opening and ending tags for table header fields.
21485 : This is customizable so that alignment options can be specified.
21486 : The first %s will be filled with the scope of the field, either row or col.
21487 : The second %s will be replaced by a style entry to align the field.
21488 : See also the variable `org-html-table-use-header-tags-for-first-column'.
21489 : See also the variable `org-html-table-align-individual-fields'.
21491 ** org-use-extra-keys =(funcall (function (closure (f...=
21492    :PROPERTIES:
21493    :CUSTOM_ID: org-use-extra-keys
21494    :END:
21496 - *Type:* boolean
21497 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21498 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-extra-keys][Find modifications in git logs]]
21500 : Non-nil means use extra key sequence definitions for certain commands.
21501 : This happens automatically if `window-system' is nil.  This
21502 : variable lets you do the same manually.  You must set it before
21503 : loading Org.
21505 ** org-html-allow-name-attribute-in-anchors =(funcall (function (closure (h...=
21506    :PROPERTIES:
21507    :CUSTOM_ID: org-html-allow-name-attribute-in-anchors
21508    :END:
21510 - *Type:* boolean
21511 - *Since:* Emacs version 24.4
21512 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21513 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-allow-name-attribute-in-anchors][Find modifications in git logs]]
21515 : When nil, do not set "name" attribute in anchors.
21516 : By default, when appropriate, anchors are formatted with "id"
21517 : but without "name" attribute.
21519 ** org-use-tag-inheritance =(funcall (function (closure (f...=
21520    :PROPERTIES:
21521    :CUSTOM_ID: org-use-tag-inheritance
21522    :END:
21524 - *Type:* (choice (const :tag "Not" nil)...
21525 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21526 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-tag-inheritance][Find modifications in git logs]]
21528 : Non-nil means tags in levels apply also for sublevels.
21529 : When nil, only the tags directly given in a specific line apply there.
21530 : This may also be a list of tags that should be inherited, or a regexp that
21531 : matches tags that should be inherited.  Additional control is possible
21532 : with the variable  `org-tags-exclude-from-inheritance' which gives an
21533 : explicit list of tags to be excluded from inheritance, even if the value of
21534 : `org-use-tag-inheritance' would select it for inheritance.
21536 : If this option is t, a match early-on in a tree can lead to a large
21537 : number of matches in the subtree when constructing the agenda or creating
21538 : a sparse tree.  If you only want to see the first match in a tree during
21539 : a search, check out the variable `org-tags-match-list-sublevels'.
21541 ** org-html-doctype =(funcall (function (closure (h...=
21542    :PROPERTIES:
21543    :CUSTOM_ID: org-html-doctype
21544    :END:
21546 - *Type:* (choice (const "html4-strict")...
21547 - *Since:* Emacs version 24.4
21548 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21549 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-doctype][Find modifications in git logs]]
21551 : Document type definition to use for exported HTML files.
21552 : Can be set with the in-buffer HTML_DOCTYPE property or for
21553 : publishing, with :html-doctype.
21555 ** org-agenda-todo-ignore-deadlines =nil=
21556    :PROPERTIES:
21557    :CUSTOM_ID: org-agenda-todo-ignore-deadlines
21558    :END:
21560 - *Type:* (choice (const :tag "Ignore ne...
21561 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21562 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-ignore-deadlines][Find modifications in git logs]]
21564 : Non-nil means ignore some deadline TODO items when making TODO list.
21566 : There are different motivations for using different values, please think
21567 : carefully when configuring this variable.
21569 : This applies when creating the global TODO list.
21571 : Valid values are:
21573 : near    Don't show near deadline entries.  A deadline is near when it is
21574 :         closer than `org-deadline-warning-days' days.  The idea behind this
21575 :         is that such items will appear in the agenda anyway.
21577 : far     Don't show TODO entries where a deadline has been defined, but
21578 :         is not going to happen anytime soon.  This is useful if you want to use
21579 :         the TODO list to figure out what to do now.
21581 : past    Don't show entries with a deadline timestamp for today or in the past.
21583 : future  Don't show entries with a deadline timestamp in the future, not even
21584 :         when they become `near' ones.  Use it with caution.
21586 : all     Ignore all TODO entries that do have a deadline.
21588 : t       Same as `near', for backward compatibility.
21590 : This variable can also have an integer as a value.  See
21591 : `org-agenda-todo-ignore-timestamp' for more details.
21593 : See also `org-agenda-todo-ignore-with-date'.
21594 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
21595 : to make his option also apply to the tags-todo list.
21597 ** org-latex-default-class =(funcall (function (closure (t...=
21598    :PROPERTIES:
21599    :CUSTOM_ID: org-latex-default-class
21600    :END:
21602 - *Type:* (string :tag "LaTeX class")
21603 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
21604 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-default-class][Find modifications in git logs]]
21606 : The default LaTeX class.
21608 ** org-crypt-key =(funcall (function (closure (t...=
21609    :PROPERTIES:
21610    :CUSTOM_ID: org-crypt-key
21611    :END:
21613 - *Type:* string
21614 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
21615 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-crypt-key][Find modifications in git logs]]
21617 : The default key to use when encrypting the contents of a heading.
21619 : This setting can also be overridden in the CRYPTKEY property.
21621 ** org-agenda-menu-show-matcher =t=
21622    :PROPERTIES:
21623    :CUSTOM_ID: org-agenda-menu-show-matcher
21624    :END:
21626 - *Type:* boolean
21627 - *Since:* Emacs version 24.1
21628 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21629 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-menu-show-matcher][Find modifications in git logs]]
21631 : Non-nil means show the match string in the agenda dispatcher menu.
21632 : When nil, the matcher string is not shown, but is put into the help-echo
21633 : property so than moving the mouse over the command shows it.
21634 : Setting it to nil is good if matcher strings are very long and/or if
21635 : you want to use two-columns display (see `org-agenda-menu-two-columns').
21637 ** org-cycle-level-faces =(funcall (function (closure (t...=
21638    :PROPERTIES:
21639    :CUSTOM_ID: org-cycle-level-faces
21640    :END:
21642 - *Type:* boolean
21643 - *Since:* Emacs version 24.1
21644 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
21645 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-level-faces][Find modifications in git logs]]
21647 : Non-nil means level styles cycle after level `org-n-level-faces'.
21648 : Then so level org-n-level-faces+1 is styled like level 1.
21649 : If nil, then all levels >=org-n-level-faces are styled like
21650 : level org-n-level-faces
21652 ** org-html-with-latex =(funcall (function (closure (h...=
21653    :PROPERTIES:
21654    :CUSTOM_ID: org-html-with-latex
21655    :END:
21657 - *Type:* (choice (const :tag "Do not pr...
21658 - *Since:* Emacs version 24.4
21659 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
21660 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-with-latex][Find modifications in git logs]]
21662 : Non-nil means process LaTeX math snippets.
21664 : When set, the exporter will process LaTeX environments and
21665 : fragments.
21667 : This option can also be set with the +OPTIONS line,
21668 : e.g. "tex:mathjax".  Allowed values are:
21670 :   nil           Ignore math snippets.
21671 :   `verbatim'    Keep everything in verbatim
21672 :   `mathjax', t  Do MathJax preprocessing and arrange for MathJax.js to
21673 :                 be loaded.
21674 :   SYMBOL        Any symbol defined in `org-preview-latex-process-alist',
21675 :                 e.g., `dvipng'.
21677 ** org-agenda-mouse-1-follows-link =nil=
21678    :PROPERTIES:
21679    :CUSTOM_ID: org-agenda-mouse-1-follows-link
21680    :END:
21682 - *Type:* boolean
21683 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21684 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-mouse-1-follows-link][Find modifications in git logs]]
21686 : Non-nil means mouse-1 on a link will follow the link in the agenda.
21687 : A longer mouse click will still set point.  Needs to be set
21688 : before org.el is loaded.
21690 ** org-babel-lua-command =(funcall (function (closure (t...=
21691    :PROPERTIES:
21692    :CUSTOM_ID: org-babel-lua-command
21693    :END:
21695 - *Type:* string
21696 - *Since:* Emacs version 24.5
21697 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lua.el][ob-lua.el]]
21698 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lua-command][Find modifications in git logs]]
21700 : Name of the command for executing Lua code.
21702 ** org-ditaa-jar-option =(funcall (function (closure (t...=
21703    :PROPERTIES:
21704    :CUSTOM_ID: org-ditaa-jar-option
21705    :END:
21707 - *Type:* string
21708 - *Since:* Emacs version 24.1
21709 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ditaa.el][ob-ditaa.el]]
21710 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ditaa-jar-option][Find modifications in git logs]]
21712 : Option for the ditaa jar file.
21713 : Do not leave leading or trailing spaces in this string.
21715 ** org-export-default-language =(funcall (function (closure (t...=
21716    :PROPERTIES:
21717    :CUSTOM_ID: org-export-default-language
21718    :END:
21720 - *Type:* (string :tag "Language")
21721 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
21722 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-default-language][Find modifications in git logs]]
21724 : The default language for export and clocktable translations, as a string.
21725 : This may have an association in
21726 : `org-clock-clocktable-language-setup',
21727 : `org-export-smart-quotes-alist' and `org-export-dictionary'.
21728 : This option can also be set with the LANGUAGE keyword.
21730 ** org-publish-timestamp-directory =(funcall (function (closure (t...=
21731    :PROPERTIES:
21732    :CUSTOM_ID: org-publish-timestamp-directory
21733    :END:
21735 - *Type:* directory
21736 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
21737 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-timestamp-directory][Find modifications in git logs]]
21739 : Name of directory in which to store publishing timestamps.
21741 ** org-agenda-scheduled-leaders =(quote ("Scheduled: " "Sched.%...=
21742    :PROPERTIES:
21743    :CUSTOM_ID: org-agenda-scheduled-leaders
21744    :END:
21746 - *Type:* (list (string :tag "Scheduled ...
21747 - *Since:* Emacs version 24.4
21748 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21749 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-scheduled-leaders][Find modifications in git logs]]
21751 : Text preceding scheduled items in the agenda view.
21752 : This is a list with two strings.  The first applies when the item is
21753 : scheduled on the current day.  The second applies when it has been scheduled
21754 : previously, it may contain a %d indicating that this is the nth time that
21755 : this item is scheduled, due to automatic rescheduling of unfinished items
21756 : for the following day.  So this number is one larger than the number of days
21757 : that passed since this item was scheduled first.
21759 ** org-export-with-tables =(funcall (function (closure (t...=
21760    :PROPERTIES:
21761    :CUSTOM_ID: org-export-with-tables
21762    :END:
21764 - *Type:* boolean
21765 - *Since:* Emacs version 24.4
21766 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
21767 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-tables][Find modifications in git logs]]
21769 : Non-nil means export tables.
21770 : This option can also be set with the OPTIONS keyword,
21771 : e.g. "|:nil".
21773 ** org-duration-format =(funcall (function (closure (t...=
21774    :PROPERTIES:
21775    :CUSTOM_ID: org-duration-format
21776    :END:
21778 - *Type:* (choice (const :tag "Use H:MM"...
21779 - *Since:* Emacs version 26.1
21780 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-duration.el][org-duration.el]]
21781 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-duration-format][Find modifications in git logs]]
21783 : Format definition for a duration.
21785 : The value can be set to, respectively, the symbols `h:mm:ss' or
21786 : `h:mm', which means a duration is expressed as, respectively,
21787 : a "H:MM:SS" or "H:MM" string.
21789 : Alternatively, the value can be a list of entries following the
21790 : pattern:
21792 :   (UNIT . REQUIRED?)
21794 : UNIT is a unit string, as defined in `org-duration-units'.  The
21795 : time duration is formatted using only the time components that
21796 : are specified here.
21798 : Units with a zero value are skipped, unless REQUIRED? is non-nil.
21799 : In that case, the unit is always used.
21801 : Eventually, the list can contain one of the following special
21802 : entries:
21804 :   (special . h:mm)
21805 :   (special . h:mm:ss)
21807 :     Units shorter than an hour are ignored.  The hours and
21808 :     minutes part of the duration is expressed unconditionally
21809 :     with H:MM, or H:MM:SS, pattern.
21811 :   (special . PRECISION)
21813 :     A duration is expressed with a single unit, PRECISION being
21814 :     the number of decimal places to show.  The unit chosen is the
21815 :     first one required or with a non-zero integer part.  If there
21816 :     is no such unit, the smallest one is used.
21818 : For example,
21820 :    (("d" . nil) ("h" . t) ("min" . t))
21822 : means a duration longer than a day is expressed in days, hours
21823 : and minutes, whereas a duration shorter than a day is always
21824 : expressed in hours and minutes, even when shorter than an hour.
21826 : On the other hand, the value
21828 :   (("d" . nil) ("min" . nil))
21830 : means a duration longer than a day is expressed in days and
21831 : minutes, whereas a duration shorter than a day is expressed
21832 : entirely in minutes, even when longer than an hour.
21834 : The following format
21836 :   (("d" . nil) (special . h:mm))
21838 : means that any duration longer than a day is expressed with both
21839 : a "d" unit and a "H:MM" part, whereas a duration shorter than
21840 : a day is expressed only as a "H:MM" string.
21842 : Eventually,
21844 :   (("d" . nil) ("h" . nil) (special . 2))
21846 : expresses a duration longer than a day as a decimal number, with
21847 : a 2-digits fractional part, of "d" unit.  A duration shorter
21848 : than a day uses "h" unit instead.
21850 ** org-timer-default-timer =(funcall (function (closure (t...=
21851    :PROPERTIES:
21852    :CUSTOM_ID: org-timer-default-timer
21853    :END:
21855 - *Type:* string
21856 - *Since:* Emacs version 26.1
21857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
21858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-default-timer][Find modifications in git logs]]
21860 : The default timer when a timer is set, in minutes or hh:mm:ss format.
21861 : When 0, the user is prompted for a value.
21863 ** org-clock-persist =(funcall (function (closure (t...=
21864    :PROPERTIES:
21865    :CUSTOM_ID: org-clock-persist
21866    :END:
21868 - *Type:* (choice (const :tag "Just the ...
21869 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
21870 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-persist][Find modifications in git logs]]
21872 : When non-nil, save the running clock when Emacs is closed.
21873 : The clock is resumed when Emacs restarts.
21874 : When this is t, both the running clock, and the entire clock
21875 : history are saved.  When this is the symbol `clock', only the
21876 : running clock is saved.  When this is the symbol `history', only
21877 : the clock history is saved.
21879 : When Emacs restarts with saved clock information, the file containing
21880 : the running clock as well as all files mentioned in the clock history
21881 : will be visited.
21883 : All this depends on running `org-clock-persistence-insinuate' in your
21884 : Emacs initialization file.
21886 ** org-agenda-columns-compute-summary-properties =t=
21887    :PROPERTIES:
21888    :CUSTOM_ID: org-agenda-columns-compute-summary-properties
21889    :END:
21891 - *Type:* boolean
21892 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
21893 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-columns-compute-summary-properties][Find modifications in git logs]]
21895 : Non-nil means recompute all summary properties before column view.
21896 : When column view in the agenda is listing properties that have a summary
21897 : operator, it can go to all relevant buffers and recompute the summaries
21898 : there.  This can mean overhead for the agenda column view, but is necessary
21899 : to have thing up to date.
21900 : As a special case, a CLOCKSUM property also makes sure that the clock
21901 : computations are current.
21903 ** org-agenda-deadline-faces =(funcall (function (closure (t...=
21904    :PROPERTIES:
21905    :CUSTOM_ID: org-agenda-deadline-faces
21906    :END:
21908 - *Type:* (repeat (cons (number :tag "Fr...
21909 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
21910 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-deadline-faces][Find modifications in git logs]]
21912 : Faces for showing deadlines in the agenda.
21913 : This is a list of cons cells.  The cdr of each cell is a face to be used,
21914 : and it can also just be like \='(:foreground "yellow").
21915 : Each car is a fraction of the head-warning time that must have passed for
21916 : this the face in the cdr to be used for display.  The numbers must be
21917 : given in descending order.  The head-warning time is normally taken
21918 : from `org-deadline-warning-days', but can also be specified in the deadline
21919 : timestamp itself, like this:
21921 :    DEADLINE: <2007-08-13 Mon -8d>
21923 : You may use d for days, w for weeks, m for months and y for years.  Months
21924 : and years will only be treated in an approximate fashion (30.4 days for a
21925 : month and 365.24 days for a year).
21927 ** org-export-with-toc =(funcall (function (closure (t...=
21928    :PROPERTIES:
21929    :CUSTOM_ID: org-export-with-toc
21930    :END:
21932 - *Type:* (choice (const :tag "No Table ...
21933 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
21934 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-toc][Find modifications in git logs]]
21936 : Non-nil means create a table of contents in exported files.
21938 : The TOC contains headlines with levels up
21939 : to`org-export-headline-levels'.  When an integer, include levels
21940 : up to N in the toc, this may then be different from
21941 : `org-export-headline-levels', but it will not be allowed to be
21942 : larger than the number of headline levels.  When nil, no table of
21943 : contents is made.
21945 : This option can also be set with the OPTIONS keyword,
21946 : e.g. "toc:nil" or "toc:3".
21948 ** org-cycle-emulate-tab =(funcall (function (closure (f...=
21949    :PROPERTIES:
21950    :CUSTOM_ID: org-cycle-emulate-tab
21951    :END:
21953 - *Type:* (choice (const :tag "Never" ni...
21954 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21955 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-emulate-tab][Find modifications in git logs]]
21957 : Where should `org-cycle' emulate TAB.
21958 : nil         Never
21959 : white       Only in completely white lines
21960 : whitestart  Only at the beginning of lines, before the first non-white char
21961 : t           Everywhere except in headlines
21962 : exc-hl-bol  Everywhere except at the start of a headline
21963 : If TAB is used in a place where it does not emulate TAB, the current subtree
21964 : visibility is cycled.
21966 ** org-remove-highlights-with-change =(funcall (function (closure (f...=
21967    :PROPERTIES:
21968    :CUSTOM_ID: org-remove-highlights-with-change
21969    :END:
21971 - *Type:* boolean
21972 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21973 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-remove-highlights-with-change][Find modifications in git logs]]
21975 : Non-nil means any change to the buffer will remove temporary highlights.
21976 : \<org-mode-map>Such highlights are created by `org-occur' and `org-clock-display'.
21977 : When nil, `\[org-ctrl-c-ctrl-c]' needs to be used to get rid of the highlights.
21978 : The highlights created by `org-toggle-latex-fragment' always need
21979 : `\[org-toggle-latex-fragment]' to be removed.
21981 ** org-adapt-indentation =(funcall (function (closure (f...=
21982    :PROPERTIES:
21983    :CUSTOM_ID: org-adapt-indentation
21984    :END:
21986 - *Type:* boolean
21987 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
21988 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-adapt-indentation][Find modifications in git logs]]
21990 : Non-nil means adapt indentation to outline node level.
21992 : When this variable is set, Org assumes that you write outlines by
21993 : indenting text in each node to align with the headline (after the
21994 : stars).  The following issues are influenced by this variable:
21996 : - The indentation is increased by one space in a demotion
21997 :   command, and decreased by one in a promotion command.  However,
21998 :   in the latter case, if shifting some line in the entry body
21999 :   would alter document structure (e.g., insert a new headline),
22000 :   indentation is not changed at all.
22002 : - Property drawers and planning information is inserted indented
22003 :   when this variable is set.  When nil, they will not be indented.
22005 : - TAB indents a line relative to current level.  The lines below
22006 :   a headline will be indented when this variable is set.
22008 : Note that this is all about true indentation, by adding and
22009 : removing space characters.  See also `org-indent.el' which does
22010 : level-dependent indentation in a virtual way, i.e. at display
22011 : time in Emacs.
22013 ** org-list-radio-list-templates =(funcall (function (closure (o...=
22014    :PROPERTIES:
22015    :CUSTOM_ID: org-list-radio-list-templates
22016    :END:
22018 - *Type:* (repeat (list (symbol :tag "Ma...
22019 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
22020 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-radio-list-templates][Find modifications in git logs]]
22022 : Templates for radio lists in different major modes.
22023 : All occurrences of %n in a template will be replaced with the name of the
22024 : list, obtained by prompting the user.
22026 ** org-koma-letter-use-foldmarks =t=
22027    :PROPERTIES:
22028    :CUSTOM_ID: org-koma-letter-use-foldmarks
22029    :END:
22031 - *Type:* (choice (const :tag "Activate ...
22032 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
22033 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-use-foldmarks][Find modifications in git logs]]
22035 : Configure appearance of folding marks.
22037 : When t, activate default folding marks.  When nil, do not insert
22038 : folding marks at all.  It can also be a list of symbols among the
22039 : following ones:
22041 :   `B'  Activate upper horizontal mark on left paper edge
22042 :   `b'  Deactivate upper horizontal mark on left paper edge
22044 :   `H'  Activate all horizontal marks on left paper edge
22045 :   `h'  Deactivate all horizontal marks on left paper edge
22047 :   `L'  Activate left vertical mark on upper paper edge
22048 :   `l'  Deactivate left vertical mark on upper paper edge
22050 :   `M'  Activate middle horizontal mark on left paper edge
22051 :   `m'  Deactivate middle horizontal mark on left paper edge
22053 :   `P'  Activate punch or center mark on left paper edge
22054 :   `p'  Deactivate punch or center mark on left paper edge
22056 :   `T'  Activate lower horizontal mark on left paper edge
22057 :   `t'  Deactivate lower horizontal mark on left paper edge
22059 :   `V'  Activate all vertical marks on upper paper edge
22060 :   `v'  Deactivate all vertical marks on upper paper edge
22062 : This option can also be set with the OPTIONS keyword, e.g.:
22063 : "foldmarks:(b l m t)".
22065 ** org-odt-table-styles =(funcall (function (closure (h...=
22066    :PROPERTIES:
22067    :CUSTOM_ID: org-odt-table-styles
22068    :END:
22070 - *Type:* (choice (const :tag "None" nil...
22071 - *Since:* Emacs version 24.1
22072 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
22073 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-table-styles][Find modifications in git logs]]
22075 : Specify how Table Styles should be derived from a Table Template.
22076 : This is a list where each element is of the
22077 : form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
22079 : TABLE-STYLE-NAME is the style associated with the table through
22080 : "#+ATTR_ODT: :style TABLE-STYLE-NAME" line.
22082 : TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
22083 : TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
22084 : below) that is included in `org-odt-content-template-file'.
22086 : TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
22087 :                          "TableCell"
22088 : PARAGRAPH-STYLE-NAME  := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
22089 :                          "TableParagraph"
22090 : TABLE-CELL-TYPE       := "FirstRow"   | "LastColumn" |
22091 :                          "FirstRow"   | "LastRow"    |
22092 :                          "EvenRow"    | "OddRow"     |
22093 :                          "EvenColumn" | "OddColumn"  | ""
22094 : where "+" above denotes string concatenation.
22096 : TABLE-CELL-OPTIONS is an alist where each element is of the
22097 : form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
22098 : TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles'       |
22099 :                              `use-last-row-styles'        |
22100 :                              `use-first-column-styles'    |
22101 :                              `use-last-column-styles'     |
22102 :                              `use-banding-rows-styles'    |
22103 :                              `use-banding-columns-styles' |
22104 :                              `use-first-row-styles'
22105 : ON-OR-OFF                 := t | nil
22107 : For example, with the following configuration
22109 : (setq org-odt-table-styles
22110 :       \='(("TableWithHeaderRowsAndColumns" "Custom"
22111 :          ((use-first-row-styles . t)
22112 :           (use-first-column-styles . t)))
22113 :         ("TableWithHeaderColumns" "Custom"
22114 :          ((use-first-column-styles . t)))))
22116 : 1. A table associated with "TableWithHeaderRowsAndColumns"
22117 :    style will use the following table-cell styles -
22118 :    "CustomFirstRowTableCell", "CustomFirstColumnTableCell",
22119 :    "CustomTableCell" and the following paragraph styles
22120 :    "CustomFirstRowTableParagraph",
22121 :    "CustomFirstColumnTableParagraph", "CustomTableParagraph"
22122 :    as appropriate.
22124 : 2. A table associated with "TableWithHeaderColumns" style will
22125 :    use the following table-cell styles -
22126 :    "CustomFirstColumnTableCell", "CustomTableCell" and the
22127 :    following paragraph styles
22128 :    "CustomFirstColumnTableParagraph", "CustomTableParagraph"
22129 :    as appropriate..
22131 : Note that TABLE-TEMPLATE-NAME corresponds to the
22132 : "<table:table-template>" elements contained within
22133 : "<office:styles>".  The entries (TABLE-STYLE-NAME
22134 : TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
22135 : "table:template-name" and "table:use-first-row-styles" etc
22136 : attributes of "<table:table>" element.  Refer ODF-1.2
22137 : specification for more information.  Also consult the
22138 : implementation filed under `org-odt-get-table-cell-styles'.
22140 : The TABLE-STYLE-NAME "OrgEquation" is used internally for
22141 : formatting of numbered display equations.  Do not delete this
22142 : style from the list.
22144 ** org-export-date-timestamp-format =(funcall (function (closure (t...=
22145    :PROPERTIES:
22146    :CUSTOM_ID: org-export-date-timestamp-format
22147    :END:
22149 - *Type:* (choice (string :tag "Time-sta...
22150 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
22151 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-date-timestamp-format][Find modifications in git logs]]
22153 : Time-stamp format string to use for DATE keyword.
22155 : The format string, when specified, only applies if date consists
22156 : in a single time-stamp.  Otherwise its value will be ignored.
22158 : See `format-time-string' for details on how to build this
22159 : string.
22161 ** org-agenda-hide-tags-regexp =nil=
22162    :PROPERTIES:
22163    :CUSTOM_ID: org-agenda-hide-tags-regexp
22164    :END:
22166 - *Type:* (choice (const :tag "Hide none...
22167 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
22168 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-hide-tags-regexp][Find modifications in git logs]]
22170 : Regular expression used to filter away specific tags in agenda views.
22171 : This means that these tags will be present, but not be shown in the agenda
22172 : line.  Secondary filtering will still work on the hidden tags.
22173 : Nil means don't hide any tags.
22175 ** org-table-tab-recognizes-table.el =(funcall (function (closure (f...=
22176    :PROPERTIES:
22177    :CUSTOM_ID: org-table-tab-recognizes-table.el
22178    :END:
22180 - *Type:* boolean
22181 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22182 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-tab-recognizes-table.el][Find modifications in git logs]]
22184 : Non-nil means TAB will automatically notice a table.el table.
22185 : When it sees such a table, it moves point into it and - if necessary -
22186 : calls `table-recognize-table'.
22188 ** org-preview-latex-image-directory =(funcall (function (closure (f...=
22189    :PROPERTIES:
22190    :CUSTOM_ID: org-preview-latex-image-directory
22191    :END:
22193 - *Type:* string
22194 - *Since:* Emacs version 26.1
22195 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22196 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-preview-latex-image-directory][Find modifications in git logs]]
22198 : Path to store latex preview images.
22199 : A relative path here creates many directories relative to the
22200 : processed org files paths.  An absolute path puts all preview
22201 : images at the same place.
22203 ** org-latex-subtitle-separate =(funcall (function (closure (t...=
22204    :PROPERTIES:
22205    :CUSTOM_ID: org-latex-subtitle-separate
22206    :END:
22208 - *Type:* boolean
22209 - *Since:* Emacs version 26.1
22210 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
22211 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-subtitle-separate][Find modifications in git logs]]
22213 : Non-nil means the subtitle is not typeset as part of title.
22215 ** org-attach-file-list-property =(funcall (function (closure (t...=
22216    :PROPERTIES:
22217    :CUSTOM_ID: org-attach-file-list-property
22218    :END:
22220 - *Type:* (choice (const :tag "None" nil...
22221 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
22222 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-file-list-property][Find modifications in git logs]]
22224 : The property used to keep a list of attachment belonging to this entry.
22225 : This is not really needed, so you may set this to nil if you don't want it.
22226 : Also, for entries where children inherit the directory, the list of
22227 : attachments is not kept in this property.
22229 ** org-agenda-skip-deadline-prewarning-if-scheduled =nil=
22230    :PROPERTIES:
22231    :CUSTOM_ID: org-agenda-skip-deadline-prewarning-if-scheduled
22232    :END:
22234 - *Type:* (choice (const :tag "Always sh...
22235 - *Since:* Emacs version 24.1
22236 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
22237 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-deadline-prewarning-if-scheduled][Find modifications in git logs]]
22239 : Non-nil means skip deadline prewarning when entry is also scheduled.
22240 : This will apply on all days where a prewarning for the deadline would
22241 : be shown, but not at the day when the entry is actually due.  On that day,
22242 : the deadline will be shown anyway.
22243 : This variable may be set to nil, t, the symbol `pre-scheduled',
22244 : or a number which will then give the number of days before the actual
22245 : deadline when the prewarnings should resume.  The symbol `pre-scheduled'
22246 : eliminates the deadline prewarning only prior to the scheduled date.
22247 : This can be used in a workflow where the first showing of the deadline will
22248 : trigger you to schedule it, and then you don't want to be reminded of it
22249 : because you will take care of it on the day when scheduled.
22251 ** org-closed-keep-when-no-todo =(funcall (function (closure (f...=
22252    :PROPERTIES:
22253    :CUSTOM_ID: org-closed-keep-when-no-todo
22254    :END:
22256 - *Type:* boolean
22257 - *Since:* Emacs version 24.4
22258 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22259 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-closed-keep-when-no-todo][Find modifications in git logs]]
22261 : Remove CLOSED: time-stamp when switching back to a non-todo state?
22263 ** org-babel-uppercase-example-markers =(funcall (function (closure (t...=
22264    :PROPERTIES:
22265    :CUSTOM_ID: org-babel-uppercase-example-markers
22266    :END:
22268 - *Type:* boolean
22269 - *Since:* Emacs version 26.1
22270 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
22271 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-uppercase-example-markers][Find modifications in git logs]]
22273 : When non-nil, begin/end example markers will be inserted in upper case.
22275 ** org-texinfo-active-timestamp-format =(funcall (function (closure (t...=
22276    :PROPERTIES:
22277    :CUSTOM_ID: org-texinfo-active-timestamp-format
22278    :END:
22280 - *Type:* string
22281 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
22282 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-active-timestamp-format][Find modifications in git logs]]
22284 : A printf format string to be applied to active timestamps.
22286 ** org-refile-targets =(funcall (function (closure (f...=
22287    :PROPERTIES:
22288    :CUSTOM_ID: org-refile-targets
22289    :END:
22291 - *Type:* (repeat (cons (choice :value o...
22292 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22293 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-targets][Find modifications in git logs]]
22295 : Targets for refiling entries with `\[org-refile]'.
22296 : This is a list of cons cells.  Each cell contains:
22297 : - a specification of the files to be considered, either a list of files,
22298 :   or a symbol whose function or variable value will be used to retrieve
22299 :   a file name or a list of file names.  If you use `org-agenda-files' for
22300 :   that, all agenda files will be scanned for targets.  Nil means consider
22301 :   headings in the current buffer.
22302 : - A specification of how to find candidate refile targets.  This may be
22303 :   any of:
22304 :   - a cons cell (:tag . "TAG") to identify refile targets by a tag.
22305 :     This tag has to be present in all target headlines, inheritance will
22306 :     not be considered.
22307 :   - a cons cell (:todo . "KEYWORD") to identify refile targets by
22308 :     todo keyword.
22309 :   - a cons cell (:regexp . "REGEXP") with a regular expression matching
22310 :     headlines that are refiling targets.
22311 :   - a cons cell (:level . N).  Any headline of level N is considered a target.
22312 :     Note that, when `org-odd-levels-only' is set, level corresponds to
22313 :     order in hierarchy, not to the number of stars.
22314 :   - a cons cell (:maxlevel . N).  Any headline with level <= N is a target.
22315 :     Note that, when `org-odd-levels-only' is set, level corresponds to
22316 :     order in hierarchy, not to the number of stars.
22318 : Each element of this list generates a set of possible targets.
22319 : The union of these sets is presented (with completion) to
22320 : the user by `org-refile'.
22322 : You can set the variable `org-refile-target-verify-function' to a function
22323 : to verify each headline found by the simple criteria above.
22325 : When this variable is nil, all top-level headlines in the current buffer
22326 : are used, equivalent to the value `((nil . (:level . 1))'.
22328 ** org-html-preamble =(funcall (function (closure (h...=
22329    :PROPERTIES:
22330    :CUSTOM_ID: org-html-preamble
22331    :END:
22333 - *Type:* (choice (const :tag "No preamb...
22334 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
22335 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-preamble][Find modifications in git logs]]
22337 : Non-nil means insert a preamble in HTML export.
22339 : When t, insert a string as defined by the formatting string in
22340 : `org-html-preamble-format'.  When set to a string, use this
22341 : formatting string instead (see `org-html-postamble-format' for an
22342 : example of such a formatting string).
22344 : When set to a function, apply this function and insert the
22345 : returned string.  The function takes the property list of export
22346 : options as its only argument.
22348 : Setting :html-preamble in publishing projects will take
22349 : precedence over this variable.
22351 ** org-babel-noweb-wrap-start =(funcall (function (closure (t...=
22352    :PROPERTIES:
22353    :CUSTOM_ID: org-babel-noweb-wrap-start
22354    :END:
22356 - *Type:* string
22357 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
22358 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-noweb-wrap-start][Find modifications in git logs]]
22360 : String used to begin a noweb reference in a code block.
22361 : See also `org-babel-noweb-wrap-end'.
22363 ** org-mark-ring-length =(funcall (function (closure (f...=
22364    :PROPERTIES:
22365    :CUSTOM_ID: org-mark-ring-length
22366    :END:
22368 - *Type:* integer
22369 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22370 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mark-ring-length][Find modifications in git logs]]
22372 : Number of different positions to be recorded in the ring.
22373 : Changing this requires a restart of Emacs to work correctly.
22375 ** org-startup-folded =(funcall (function (closure (f...=
22376    :PROPERTIES:
22377    :CUSTOM_ID: org-startup-folded
22378    :END:
22380 - *Type:* (choice (const :tag "nofold: s...
22381 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22382 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-folded][Find modifications in git logs]]
22384 : Non-nil means entering Org mode will switch to OVERVIEW.
22386 : This can also be configured on a per-file basis by adding one of
22387 : the following lines anywhere in the buffer:
22389 :    #+STARTUP: fold              (or `overview', this is equivalent)
22390 :    #+STARTUP: nofold            (or `showall', this is equivalent)
22391 :    #+STARTUP: content
22392 :    #+STARTUP: showeverything
22394 : Set `org-agenda-inhibit-startup' to a non-nil value if you want
22395 : to ignore this option when Org opens agenda files for the first
22396 : time.
22398 ** org-md-headline-style =(funcall (function (closure (t...=
22399    :PROPERTIES:
22400    :CUSTOM_ID: org-md-headline-style
22401    :END:
22403 - *Type:* (choice (const :tag "Use \"atx...
22404 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-md.el][ox-md.el]]
22405 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-md-headline-style][Find modifications in git logs]]
22407 : Style used to format headlines.
22408 : This variable can be set to either `atx' or `setext'.
22410 ** org-export-allow-bind-keywords =(funcall (function (closure (t...=
22411    :PROPERTIES:
22412    :CUSTOM_ID: org-export-allow-bind-keywords
22413    :END:
22415 - *Type:* boolean
22416 - *Since:* Emacs version 24.4
22417 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
22418 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-allow-bind-keywords][Find modifications in git logs]]
22420 : Non-nil means BIND keywords can define local variable values.
22421 : This is a potential security risk, which is why the default value
22422 : is nil.  You can also allow them through local buffer variables.
22424 ** org-highlight-latex-and-related =(funcall (function (closure (f...=
22425    :PROPERTIES:
22426    :CUSTOM_ID: org-highlight-latex-and-related
22427    :END:
22429 - *Type:* (choice (const :tag "No highli...
22430 - *Since:* Emacs version 24.4
22431 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22432 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-highlight-latex-and-related][Find modifications in git logs]]
22434 : Non-nil means highlight LaTeX related syntax in the buffer.
22435 : When non nil, the value should be a list containing any of the
22436 : following symbols:
22437 :   `latex'    Highlight LaTeX snippets and environments.
22438 :   `script'   Highlight subscript and superscript.
22439 :   `entities' Highlight entities.
22441 ** org-texinfo-table-default-markup =(funcall (function (closure (t...=
22442    :PROPERTIES:
22443    :CUSTOM_ID: org-texinfo-table-default-markup
22444    :END:
22446 - *Type:* string
22447 - *Since:* Emacs version 26.1
22448 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
22449 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-table-default-markup][Find modifications in git logs]]
22451 : Default markup for first column in two-column tables.
22453 : This should an indicating command, e.g., "@code", "@kbd" or
22454 : "@samp".
22456 : It can be overridden locally using the ":indic" attribute.
22458 ** org-mobile-use-encryption =(funcall (function (closure (t...=
22459    :PROPERTIES:
22460    :CUSTOM_ID: org-mobile-use-encryption
22461    :END:
22463 - *Type:* boolean
22464 - *Since:* Emacs version 24.1
22465 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
22466 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-use-encryption][Find modifications in git logs]]
22468 : Non-nil means keep only encrypted files on the WebDAV server.
22469 : Encryption uses AES-256, with a password given in
22470 : `org-mobile-encryption-password'.
22471 : When nil, plain files are kept on the server.
22472 : Turning on encryption requires setting the same password in the MobileOrg
22473 : application.  Before turning this on, check of MobileOrg does already
22474 : support it - at the time of this writing it did not yet.
22476 ** org-export-with-timestamps =(funcall (function (closure (t...=
22477    :PROPERTIES:
22478    :CUSTOM_ID: org-export-with-timestamps
22479    :END:
22481 - *Type:* (choice (const :tag "All times...
22482 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
22483 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-timestamps][Find modifications in git logs]]
22485 : Non nil means allow timestamps in export.
22487 : It can be set to any of the following values:
22488 :   t          export all timestamps.
22489 :   `active'   export active timestamps only.
22490 :   `inactive' export inactive timestamps only.
22491 :   nil        do not export timestamps
22493 : This only applies to timestamps isolated in a paragraph
22494 : containing only timestamps.  Other timestamps are always
22495 : exported.
22497 : This option can also be set with the OPTIONS keyword, e.g.
22498 : "<:nil".
22500 ** org-export-time-stamp-file =(funcall (function (closure (t...=
22501    :PROPERTIES:
22502    :CUSTOM_ID: org-export-time-stamp-file
22503    :END:
22505 - *Type:* boolean
22506 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
22507 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-time-stamp-file][Find modifications in git logs]]
22509 : Non-nil means insert a time stamp into the exported file.
22510 : The time stamp shows when the file was created.  This option can
22511 : also be set with the OPTIONS keyword, e.g. "timestamp:nil".
22513 ** org-auto-align-tags =(funcall (function (closure (f...=
22514    :PROPERTIES:
22515    :CUSTOM_ID: org-auto-align-tags
22516    :END:
22518 - *Type:* boolean
22519 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22520 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-auto-align-tags][Find modifications in git logs]]
22522 : Non-nil keeps tags aligned when modifying headlines.
22523 : Some operations (i.e. demoting) change the length of a headline and
22524 : therefore shift the tags around.  With this option turned on, after
22525 : each such operation the tags are again aligned to `org-tags-column'.
22527 ** org-koma-letter-use-email =nil=
22528    :PROPERTIES:
22529    :CUSTOM_ID: org-koma-letter-use-email
22530    :END:
22532 - *Type:* boolean
22533 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
22534 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-use-email][Find modifications in git logs]]
22536 : Non-nil prints sender's email address.
22537 : This option can also be set with the OPTIONS keyword, e.g.:
22538 : "email:t".
22540 ** org-bibtex-no-export-tags =(funcall (function (closure (t...=
22541    :PROPERTIES:
22542    :CUSTOM_ID: org-bibtex-no-export-tags
22543    :END:
22545 - *Type:* (repeat :tag "Tag" (string))
22546 - *Since:* Emacs version 24.1
22547 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
22548 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-no-export-tags][Find modifications in git logs]]
22550 : List of tag(s) that should not be converted to keywords.
22551 : This variable is relevant only if `org-bibtex-tags-are-keywords'
22552 : is non-nil.
22554 ** org-tag-persistent-alist =(funcall (function (closure (f...=
22555    :PROPERTIES:
22556    :CUSTOM_ID: org-tag-persistent-alist
22557    :END:
22559 - *Type:* (repeat (choice (cons (string ...
22560 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22561 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tag-persistent-alist][Find modifications in git logs]]
22563 : Tags always available in Org files.
22565 : The value of this variable is an alist.  Associations either:
22567 :   (TAG)
22568 :   (TAG . SELECT)
22569 :   (SPECIAL)
22571 : where TAG is a tag as a string, SELECT is a character, used to
22572 : select that tag through the fast tag selection interface, and
22573 : SPECIAL is one of the following keywords: `:startgroup',
22574 : `:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
22575 : `:newline'.  These keywords are used to define a hierarchy of
22576 : tags.  See manual for details.
22578 : Unlike to `org-tag-alist', tags defined in this variable do not
22579 : depend on a local TAGS keyword.  Instead, to disable these tags
22580 : on a per-file basis, insert anywhere in the file:
22582 :   #+STARTUP: noptag
22584 ** org-datetree-add-timestamp =(funcall (function (closure (t...=
22585    :PROPERTIES:
22586    :CUSTOM_ID: org-datetree-add-timestamp
22587    :END:
22589 - *Type:* (choice (const :tag "Do not ad...
22590 - *Since:* Emacs version 24.3
22591 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-datetree.el][org-datetree.el]]
22592 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-datetree-add-timestamp][Find modifications in git logs]]
22594 : When non-nil, add a time stamp matching date of entry.
22595 : Added time stamp is active unless value is `inactive'.
22597 ** org-babel-python-None-to =(funcall (function (closure (t...=
22598    :PROPERTIES:
22599    :CUSTOM_ID: org-babel-python-None-to
22600    :END:
22602 - *Type:* symbol
22603 - *Since:* Emacs version 24.4
22604 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-python.el][ob-python.el]]
22605 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-python-None-to][Find modifications in git logs]]
22607 : Replace `None' in python tables with this before returning.
22609 ** org-latex-minted-options =(funcall (function (closure (t...=
22610    :PROPERTIES:
22611    :CUSTOM_ID: org-latex-minted-options
22612    :END:
22614 - *Type:* (repeat (list (string :tag "Mi...
22615 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
22616 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-minted-options][Find modifications in git logs]]
22618 : Association list of options for the latex minted package.
22620 : These options are supplied within square brackets in
22621 : \begin{minted} environments.  Each element of the alist should
22622 : be a list containing two strings: the name of the option, and the
22623 : value.  For example,
22625 :   (setq org-latex-minted-options
22626 :     \='(("bgcolor" "bg") ("frame" "lines")))
22628 : will result in src blocks being exported with
22630 : \begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
22632 : as the start of the minted environment. Note that the same
22633 : options will be applied to blocks of all languages.  If you need
22634 : block-specific options, you may use the following syntax:
22636 :   #+ATTR_LATEX: :options key1=value1,key2=value2
22637 :   #+BEGIN_SRC <LANG>
22638 :   ...
22639 :   #+END_SRC
22641 ** org-html-validation-link =(funcall (function (closure (h...=
22642    :PROPERTIES:
22643    :CUSTOM_ID: org-html-validation-link
22644    :END:
22646 - *Type:* string
22647 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
22648 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-validation-link][Find modifications in git logs]]
22650 : Link to HTML validation service.
22652 ** org-agenda-time-leading-zero =nil=
22653    :PROPERTIES:
22654    :CUSTOM_ID: org-agenda-time-leading-zero
22655    :END:
22657 - *Type:* boolean
22658 - *Since:* Emacs version 24.1
22659 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
22660 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-time-leading-zero][Find modifications in git logs]]
22662 : Non-nil means use leading zero for military times in agenda.
22663 : For example, 9:30am would become 09:30 rather than  9:30.
22665 ** org-odt-inline-image-rules =(funcall (function (closure (h...=
22666    :PROPERTIES:
22667    :CUSTOM_ID: org-odt-inline-image-rules
22668    :END:
22670 - *Type:* (alist :key-type (string :tag ...
22671 - *Since:* Emacs version 26.1
22672 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
22673 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-inline-image-rules][Find modifications in git logs]]
22675 : Rules characterizing image files that can be inlined into ODT.
22677 : A rule consists in an association whose key is the type of link
22678 : to consider, and value is a regexp that will be matched against
22679 : link's path.
22681 ** org-latex-format-inlinetask-function =(funcall (function (closure (t...=
22682    :PROPERTIES:
22683    :CUSTOM_ID: org-latex-format-inlinetask-function
22684    :END:
22686 - *Type:* function
22687 - *Since:* Emacs version 26.1
22688 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
22689 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-format-inlinetask-function][Find modifications in git logs]]
22691 : Function called to format an inlinetask in LaTeX code.
22693 : The function must accept seven parameters:
22694 :   TODO      the todo keyword (string or nil)
22695 :   TODO-TYPE the todo type (symbol: `todo', `done', nil)
22696 :   PRIORITY  the inlinetask priority (integer or nil)
22697 :   NAME      the inlinetask name (string)
22698 :   TAGS      the inlinetask tags (list of strings or nil)
22699 :   CONTENTS  the contents of the inlinetask (string or nil)
22700 :   INFO      the export options (plist)
22702 : The function should return the string to be exported.
22704 ** org-icalendar-alarm-time =(funcall (function (closure (t...=
22705    :PROPERTIES:
22706    :CUSTOM_ID: org-icalendar-alarm-time
22707    :END:
22709 - *Type:* integer
22710 - *Since:* Emacs version 24.1
22711 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
22712 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-alarm-time][Find modifications in git logs]]
22714 : Number of minutes for triggering an alarm for exported timed events.
22716 : A zero value (the default) turns off the definition of an alarm trigger
22717 : for timed events.  If non-zero, alarms are created.
22719 : - a single alarm per entry is defined
22720 : - The alarm will go off N minutes before the event
22721 : - only a DISPLAY action is defined.
22723 ** org-icalendar-include-body =(funcall (function (closure (t...=
22724    :PROPERTIES:
22725    :CUSTOM_ID: org-icalendar-include-body
22726    :END:
22728 - *Type:* (choice (const :tag "Nothing" ...
22729 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
22730 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-include-body][Find modifications in git logs]]
22732 : Amount of text below headline to be included in iCalendar export.
22733 : This is a number of characters that should maximally be included.
22734 : Properties, scheduling and clocking lines will always be removed.
22735 : The text will be inserted into the DESCRIPTION field.
22737 ** org-latex-listings-options =(funcall (function (closure (t...=
22738    :PROPERTIES:
22739    :CUSTOM_ID: org-latex-listings-options
22740    :END:
22742 - *Type:* (repeat (list (string :tag "Li...
22743 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
22744 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-listings-options][Find modifications in git logs]]
22746 : Association list of options for the latex listings package.
22748 : These options are supplied as a comma-separated list to the
22749 : \lstset command.  Each element of the association list should be
22750 : a list containing two strings: the name of the option, and the
22751 : value.  For example,
22753 :   (setq org-latex-listings-options
22754 :     \='(("basicstyle" "\\small")
22755 :       ("keywordstyle" "\\color{black}\\bfseries\\underbar")))
22757 : will typeset the code in a small size font with underlined, bold
22758 : black keywords.
22760 : Note that the same options will be applied to blocks of all
22761 : languages.  If you need block-specific options, you may use the
22762 : following syntax:
22764 :   #+ATTR_LATEX: :options key1=value1,key2=value2
22765 :   #+BEGIN_SRC <LANG>
22766 :   ...
22767 :   #+END_SRC
22769 ** org-bibtex-headline-format-function =(funcall (function (closure (t...=
22770    :PROPERTIES:
22771    :CUSTOM_ID: org-bibtex-headline-format-function
22772    :END:
22774 - *Type:* function
22775 - *Since:* Emacs version 26.1
22776 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
22777 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-headline-format-function][Find modifications in git logs]]
22779 : Function returning the headline text for `org-bibtex-write'.
22780 : It should take a single argument, the bibtex entry (an alist as
22781 : returned by `org-bibtex-read').  The default value simply returns
22782 : the entry title.
22784 ** org-confirm-shell-link-function =(funcall (function (closure (f...=
22785    :PROPERTIES:
22786    :CUSTOM_ID: org-confirm-shell-link-function
22787    :END:
22789 - *Type:* (choice (const :tag "with yes-...
22790 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22791 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-confirm-shell-link-function][Find modifications in git logs]]
22793 : Non-nil means ask for confirmation before executing shell links.
22794 : Shell links can be dangerous: just think about a link
22796 :      [[shell:rm -rf ~/*][Google Search]]
22798 : This link would show up in your Org document as "Google Search",
22799 : but really it would remove your entire home directory.
22800 : Therefore we advise against setting this variable to nil.
22801 : Just change it to `y-or-n-p' if you want to confirm with a
22802 : single keystroke rather than having to type "yes".
22804 ** org-texinfo-diary-timestamp-format =(funcall (function (closure (t...=
22805    :PROPERTIES:
22806    :CUSTOM_ID: org-texinfo-diary-timestamp-format
22807    :END:
22809 - *Type:* string
22810 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
22811 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-diary-timestamp-format][Find modifications in git logs]]
22813 : A printf format string to be applied to diary timestamps.
22815 ** org-list-allow-alphabetical =(funcall (function (closure (o...=
22816    :PROPERTIES:
22817    :CUSTOM_ID: org-list-allow-alphabetical
22818    :END:
22820 - *Type:* boolean
22821 - *Since:* Emacs version 24.1
22822 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
22823 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-allow-alphabetical][Find modifications in git logs]]
22825 : Non-nil means single character alphabetical bullets are allowed.
22827 : Both uppercase and lowercase are handled.  Lists with more than
22828 : 26 items will fallback to standard numbering.  Alphabetical
22829 : counters like "[@c]" will be recognized.
22831 : This variable needs to be set before org.el is loaded.  If you
22832 : need to make a change while Emacs is running, use the customize
22833 : interface or run the following code after updating it:
22835 :   `\[org-element-update-syntax]'
22837 ** org-crypt-disable-auto-save =(funcall (function (closure (t...=
22838    :PROPERTIES:
22839    :CUSTOM_ID: org-crypt-disable-auto-save
22840    :END:
22842 - *Type:* (choice (const :tag "Always" t...
22843 - *Since:* Emacs version 24.1
22844 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-crypt.el][org-crypt.el]]
22845 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-crypt-disable-auto-save][Find modifications in git logs]]
22847 : What org-decrypt should do if `auto-save-mode' is enabled.
22849 : t        : Disable auto-save-mode for the current buffer
22850 :            prior to decrypting an entry.
22852 : nil      : Leave auto-save-mode enabled.
22853 :            This may cause data to be written to disk unencrypted!
22855 : `ask'    : Ask user whether or not to disable auto-save-mode
22856 :            for the current buffer.
22858 : `encrypt': Leave auto-save-mode enabled for the current buffer,
22859 :            but automatically re-encrypt all decrypted entries
22860 :            *before* auto-saving.
22861 :            NOTE: This only works for entries which have a tag
22862 :            that matches `org-crypt-tag-matcher'.
22864 ** org-id-prefix =(funcall (function (closure (t...=
22865    :PROPERTIES:
22866    :CUSTOM_ID: org-id-prefix
22867    :END:
22869 - *Type:* (choice (const :tag "No prefix...
22870 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
22871 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-prefix][Find modifications in git logs]]
22873 : The prefix for IDs.
22875 : This may be a string, or it can be nil to indicate that no prefix is required.
22876 : When a string, the string should have no space characters as IDs are expected
22877 : to have no space characters in them.
22879 ** org-tag-faces =(funcall (function (closure (t...=
22880    :PROPERTIES:
22881    :CUSTOM_ID: org-tag-faces
22882    :END:
22884 - *Type:* (repeat (cons (string :tag "Ta...
22885 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
22886 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tag-faces][Find modifications in git logs]]
22888 : Faces for specific tags.
22889 : This is a list of cons cells, with tags in the car and faces in the cdr.
22890 : The face can be a symbol, a foreground color (in which case the rest is
22891 : inherited from the `org-tag' face) or a property list of attributes,
22892 : like (:foreground "blue" :weight bold :underline t).
22893 : If you set this variable through customize, it will immediately be effective
22894 : in new buffers and in modified lines.
22895 : If you set it with Lisp, a restart of Emacs is required to activate the
22896 : changes.
22898 ** org-icalendar-categories =(funcall (function (closure (t...=
22899    :PROPERTIES:
22900    :CUSTOM_ID: org-icalendar-categories
22901    :END:
22903 - *Type:* (repeat (choice (const :tag "T...
22904 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
22905 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-categories][Find modifications in git logs]]
22907 : Items that should be entered into the "categories" field.
22909 : This is a list of symbols, the following are valid:
22910 : `category'    The Org mode category of the current file or tree
22911 : `todo-state'  The todo state, if any
22912 : `local-tags'  The tags, defined in the current line
22913 : `all-tags'    All tags, including inherited ones.
22915 ** org-mobile-agendas =(funcall (function (closure (t...=
22916    :PROPERTIES:
22917    :CUSTOM_ID: org-mobile-agendas
22918    :END:
22920 - *Type:* (choice (const :tag "Default A...
22921 - *Since:* Emacs version 24.1
22922 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
22923 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-agendas][Find modifications in git logs]]
22925 : The agendas that should be pushed to MobileOrg.
22926 : Allowed values:
22928 : default  the weekly agenda and the global TODO list
22929 : custom   all custom agendas defined by the user
22930 : all      the custom agendas and the default ones
22931 : list     a list of selection key(s) as string.
22933 ** org-track-ordered-property-with-tag =(funcall (function (closure (o...=
22934    :PROPERTIES:
22935    :CUSTOM_ID: org-track-ordered-property-with-tag
22936    :END:
22938 - *Type:* (choice (const :tag "No tracki...
22939 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
22940 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-track-ordered-property-with-tag][Find modifications in git logs]]
22942 : Should the ORDERED property also be shown as a tag?
22943 : The ORDERED property decides if an entry should require subtasks to be
22944 : completed in sequence.  Since a property is not very visible, setting
22945 : this option means that toggling the ORDERED property with the command
22946 : `org-toggle-ordered-property' will also toggle a tag ORDERED.  That tag is
22947 : not relevant for the behavior, but it makes things more visible.
22949 : Note that toggling the tag with tags commands will not change the property
22950 : and therefore not influence behavior!
22952 : This can be t, meaning the tag ORDERED should be used,  It can also be a
22953 : string to select a different tag for this task.
22955 ** org-habit-graph-column =(funcall (function (closure (t...=
22956    :PROPERTIES:
22957    :CUSTOM_ID: org-habit-graph-column
22958    :END:
22960 - *Type:* integer
22961 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
22962 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-graph-column][Find modifications in git logs]]
22964 : The absolute column at which to insert habit consistency graphs.
22965 : Note that consistency graphs will overwrite anything else in the buffer.
22967 ** org-odt-preferred-output-format =(funcall (function (closure (h...=
22968    :PROPERTIES:
22969    :CUSTOM_ID: org-odt-preferred-output-format
22970    :END:
22972 - *Type:* (choice :convert-widget (lambd...
22973 - *Since:* Emacs version 24.1
22974 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
22975 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-preferred-output-format][Find modifications in git logs]]
22977 : Automatically post-process to this format after exporting to "odt".
22978 : Command `org-odt-export-to-odt' exports first to "odt" format
22979 : and then uses `org-odt-convert-process' to convert the
22980 : resulting document to this format.  During customization of this
22981 : variable, the list of valid values are populated based on
22982 : `org-odt-convert-capabilities'.
22984 : You can set this option on per-file basis using file local
22985 : values.  See Info node `(emacs) File Variables'.
22987 ** org-list-indent-offset =(funcall (function (closure (o...=
22988    :PROPERTIES:
22989    :CUSTOM_ID: org-list-indent-offset
22990    :END:
22992 - *Type:* integer
22993 - *Since:* Emacs version 24.1
22994 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
22995 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-indent-offset][Find modifications in git logs]]
22997 : Additional indentation for sub-items in a list.
22998 : By setting this to a small number, usually 1 or 2, one can more
22999 : clearly distinguish sub-items in a list.
23001 ** org-support-shift-select =(funcall (function (closure (f...=
23002    :PROPERTIES:
23003    :CUSTOM_ID: org-support-shift-select
23004    :END:
23006 - *Type:* (choice (const :tag "Never" ni...
23007 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23008 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-support-shift-select][Find modifications in git logs]]
23010 : Non-nil means make shift-cursor commands select text when possible.
23011 : \<org-mode-map>
23012 : In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
23013 : start selecting a region, or enlarge regions started in this way.
23014 : In Org mode, in special contexts, these same keys are used for
23015 : other purposes, important enough to compete with shift selection.
23016 : Org tries to balance these needs by supporting `shift-select-mode'
23017 : outside these special contexts, under control of this variable.
23019 : The default of this variable is nil, to avoid confusing behavior.  Shifted
23020 : cursor keys will then execute Org commands in the following contexts:
23021 : - on a headline, changing TODO state (left/right) and priority (up/down)
23022 : - on a time stamp, changing the time
23023 : - in a plain list item, changing the bullet type
23024 : - in a property definition line, switching between allowed values
23025 : - in the BEGIN line of a clock table (changing the time block).
23026 : Outside these contexts, the commands will throw an error.
23028 : When this variable is t and the cursor is not in a special
23029 : context, Org mode will support shift-selection for making and
23030 : enlarging regions.  To make this more effective, the bullet
23031 : cycling will no longer happen anywhere in an item line, but only
23032 : if the cursor is exactly on the bullet.
23034 : If you set this variable to the symbol `always', then the keys
23035 : will not be special in headlines, property lines, and item lines,
23036 : to make shift selection work there as well.  If this is what you
23037 : want, you can use the following alternative commands:
23038 : `\[org-todo]' and `\[org-priority]' to change TODO state and priority,
23039 : `\[universal-argument] \[universal-argument] \[org-todo]' can be used to switch TODO sets,
23040 : `\[org-ctrl-c-minus]' to cycle item bullet types,
23041 : and properties can be edited by hand or in column view.
23043 : However, when the cursor is on a timestamp, shift-cursor commands
23044 : will still edit the time stamp - this is just too good to give up.
23046 ** org-ascii-verbatim-format =(funcall (function (closure (t...=
23047    :PROPERTIES:
23048    :CUSTOM_ID: org-ascii-verbatim-format
23049    :END:
23051 - *Type:* string
23052 - *Since:* Emacs version 24.4
23053 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
23054 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-verbatim-format][Find modifications in git logs]]
23056 : Format string used for verbatim text and inline code.
23058 ** org-agenda-start-with-entry-text-mode =nil=
23059    :PROPERTIES:
23060    :CUSTOM_ID: org-agenda-start-with-entry-text-mode
23061    :END:
23063 - *Type:* boolean
23064 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23065 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-start-with-entry-text-mode][Find modifications in git logs]]
23067 : The initial value of entry-text-mode in a newly created agenda window.
23069 ** org-mobile-index-file =(funcall (function (closure (t...=
23070    :PROPERTIES:
23071    :CUSTOM_ID: org-mobile-index-file
23072    :END:
23074 - *Type:* file
23075 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
23076 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-index-file][Find modifications in git logs]]
23078 : The index file with links to all Org files that should be loaded by MobileOrg.
23079 : Relative to `org-mobile-directory'.  The Address field in the MobileOrg setup
23080 : should point to this file.
23082 ** org-clock-clocktable-language-setup =(funcall (function (closure (t...=
23083    :PROPERTIES:
23084    :CUSTOM_ID: org-clock-clocktable-language-setup
23085    :END:
23087 - *Type:* alist
23088 - *Since:* Emacs version 24.1
23089 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
23090 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-clocktable-language-setup][Find modifications in git logs]]
23092 : Terms used in clocktable, translated to different languages.
23094 ** org-treat-S-cursor-todo-selection-as-state-change =(funcall (function (closure (f...=
23095    :PROPERTIES:
23096    :CUSTOM_ID: org-treat-S-cursor-todo-selection-as-state-change
23097    :END:
23099 - *Type:* boolean
23100 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23101 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-treat-S-cursor-todo-selection-as-state-change][Find modifications in git logs]]
23103 : Non-nil means switching TODO states with S-cursor counts as state change.
23104 : This is the default behavior.  However, setting this to nil allows a
23105 : convenient way to select a TODO state and bypass any logging associated
23106 : with that.
23108 ** org-html-link-org-files-as-html =(funcall (function (closure (h...=
23109    :PROPERTIES:
23110    :CUSTOM_ID: org-html-link-org-files-as-html
23111    :END:
23113 - *Type:* boolean
23114 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23115 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-link-org-files-as-html][Find modifications in git logs]]
23117 : Non-nil means make file links to `file.org' point to `file.html'.
23118 : When `org-mode' is exporting an `org-mode' file to HTML, links to
23119 : non-html files are directly put into a href tag in HTML.
23120 : However, links to other Org files (recognized by the extension
23121 : ".org") should become links to the corresponding HTML
23122 : file, assuming that the linked `org-mode' file will also be
23123 : converted to HTML.
23124 : When nil, the links still point to the plain ".org" file.
23126 ** org-bbdb-anniversary-field =(funcall (function (closure (d...=
23127    :PROPERTIES:
23128    :CUSTOM_ID: org-bbdb-anniversary-field
23129    :END:
23131 - *Type:* symbol
23132 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bbdb.el][org-bbdb.el]]
23133 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bbdb-anniversary-field][Find modifications in git logs]]
23135 : The BBDB field which contains anniversaries.
23136 : The anniversaries are stored in the following format
23138 : YYYY-MM-DD Class-or-Format-String
23140 : where class is one of the customized classes for anniversaries;
23141 : birthday and wedding are predefined.  Format-String can take three
23142 : substitutions 1) the name of the record containing this
23143 : anniversary, 2) the number of years, and 3) an ordinal suffix for
23144 : the year.
23146 : Multiple anniversaries can be separated by \n.
23148 ** org-agenda-bulk-mark-char =">"=
23149    :PROPERTIES:
23150    :CUSTOM_ID: org-agenda-bulk-mark-char
23151    :END:
23153 - *Type:* string
23154 - *Since:* Emacs version 24.1
23155 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23156 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-bulk-mark-char][Find modifications in git logs]]
23158 : A single-character string to be used as the bulk mark.
23160 ** org-koma-letter-subject-format =t=
23161    :PROPERTIES:
23162    :CUSTOM_ID: org-koma-letter-subject-format
23163    :END:
23165 - *Type:* (choice (const :tag "No export...
23166 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
23167 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-subject-format][Find modifications in git logs]]
23169 : Non-nil means include the subject.
23171 : Support formatting options.
23173 : When t, insert a subject using default options.  When nil, do not
23174 : insert a subject at all.  It can also be a list of symbols among
23175 : the following ones:
23177 :  `afteropening'  Subject after opening
23178 :  `beforeopening' Subject before opening
23179 :  `centered'      Subject centered
23180 :  `left'          Subject left-justified
23181 :  `right'         Subject right-justified
23182 :  `titled'        Add title/description to subject
23183 :  `underlined'    Set subject underlined
23184 :  `untitled'      Do not add title/description to subject
23186 : Please refer to the KOMA-script manual (Table 4.16. in the
23187 : English manual of 2012-07-22).
23189 : This option can also be set with the OPTIONS keyword, e.g.:
23190 : "subject:(underlined centered)".
23192 ** org-list-description-max-indent =(funcall (function (closure (o...=
23193    :PROPERTIES:
23194    :CUSTOM_ID: org-list-description-max-indent
23195    :END:
23197 - *Type:* integer
23198 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
23199 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-description-max-indent][Find modifications in git logs]]
23201 : Maximum indentation for the second line of a description list.
23202 : When the indentation would be larger than this, it will become
23203 : 5 characters instead.
23205 ** org-html-postamble-format =(funcall (function (closure (h...=
23206    :PROPERTIES:
23207    :CUSTOM_ID: org-html-postamble-format
23208    :END:
23210 - *Type:* (repeat (list (string :tag "La...
23211 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23212 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-postamble-format][Find modifications in git logs]]
23214 : Alist of languages and format strings for the HTML postamble.
23216 : The first element of each list is the language code, as used for
23217 : the LANGUAGE keyword.  See `org-export-default-language'.
23219 : The second element of each list is a format string to format the
23220 : postamble itself.  This format string can contain these elements:
23222 :   %t stands for the title.
23223 :   %s stands for the subtitle.
23224 :   %a stands for the author's name.
23225 :   %e stands for the author's email.
23226 :   %d stands for the date.
23227 :   %c will be replaced by `org-html-creator-string'.
23228 :   %v will be replaced by `org-html-validation-link'.
23229 :   %T will be replaced by the export time.
23230 :   %C will be replaced by the last modification time.
23232 : If you need to use a "%" character, you need to escape it
23233 : like that: "%%".
23235 ** org-agenda-ignore-properties =(funcall (function (closure (o...=
23236    :PROPERTIES:
23237    :CUSTOM_ID: org-agenda-ignore-properties
23238    :END:
23240 - *Type:* (set :greedy t (const effort) ...
23241 - *Since:* Emacs version 26.1
23242 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23243 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-ignore-properties][Find modifications in git logs]]
23245 : Avoid updating text properties when building the agenda.
23246 : Properties are used to prepare buffers for effort estimates,
23247 : appointments, statistics and subtree-local categories.
23248 : If you don't use these in the agenda, you can add them to this
23249 : list and agenda building will be a bit faster.
23250 : The value is a list, with zero or more of the symbols `effort', `appt',
23251 : `stats' or `category'.
23253 ** org-babel-hash-show-time =(funcall (function (closure (t...=
23254    :PROPERTIES:
23255    :CUSTOM_ID: org-babel-hash-show-time
23256    :END:
23258 - *Type:* boolean
23259 - *Since:* Emacs version 26.1
23260 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
23261 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-hash-show-time][Find modifications in git logs]]
23263 : Non-nil means show the time the code block was evaluated in the result hash.
23265 ** org-agenda-max-tags =nil=
23266    :PROPERTIES:
23267    :CUSTOM_ID: org-agenda-max-tags
23268    :END:
23270 - *Type:* (choice (symbol :tag "No limit...
23271 - *Since:* Emacs version 24.4
23272 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23273 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-max-tags][Find modifications in git logs]]
23275 : Maximum number of tagged entries to display in an agenda.
23276 : This can be nil (no limit) or an integer or an alist of agenda
23277 : types with an associated number of entries to display in this
23278 : type.
23280 ** org-export-with-drawers =(funcall (function (closure (t...=
23281    :PROPERTIES:
23282    :CUSTOM_ID: org-export-with-drawers
23283    :END:
23285 - *Type:* (choice (const :tag "All drawe...
23286 - *Since:* Emacs version 24.4
23287 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
23288 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-drawers][Find modifications in git logs]]
23290 : Non-nil means export contents of standard drawers.
23292 : When t, all drawers are exported.  This may also be a list of
23293 : drawer names to export, as strings.  If that list starts with
23294 : `not', only drawers with such names will be ignored.
23296 : This variable doesn't apply to properties drawers.  See
23297 : `org-export-with-properties' instead.
23299 : This option can also be set with the OPTIONS keyword,
23300 : e.g. "d:nil".
23302 ** org-html-inline-images =(funcall (function (closure (h...=
23303    :PROPERTIES:
23304    :CUSTOM_ID: org-html-inline-images
23305    :END:
23307 - *Type:* boolean
23308 - *Since:* Emacs version 24.4
23309 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23310 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-inline-images][Find modifications in git logs]]
23312 : Non-nil means inline images into exported HTML pages.
23313 : This is done using an <img> tag.  When nil, an anchor with href is used to
23314 : link to the image.
23316 ** org-agenda-clock-consistency-checks =(quote (:max-duration "10:00" ...=
23317    :PROPERTIES:
23318    :CUSTOM_ID: org-agenda-clock-consistency-checks
23319    :END:
23321 - *Type:* plist
23322 - *Since:* Emacs version 24.1
23323 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23324 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clock-consistency-checks][Find modifications in git logs]]
23326 : This is a property list, with the following keys:
23328 : :max-duration    Mark clocking chunks that are longer than this time.
23329 :                  This is a time string like "HH:MM", or the number
23330 :                  of minutes as an integer.
23332 : :min-duration    Mark clocking chunks that are shorter that this.
23333 :                  This is a time string like "HH:MM", or the number
23334 :                  of minutes as an integer.
23336 : :max-gap         Mark gaps between clocking chunks that are longer than
23337 :                  this duration.  A number of minutes, or a string
23338 :                  like "HH:MM".
23340 : :gap-ok-around   List of times during the day which are usually not working
23341 :                  times.  When a gap is detected, but the gap contains any
23342 :                  of these times, the gap is *not* reported.  For example,
23343 :                  if this is ("4:00" "13:00") then gaps that contain
23344 :                  4:00 in the morning (i.e. the night) and 13:00
23345 :                  (i.e. a typical lunch time) do not cause a warning.
23346 :                  You should have at least one time during the night in this
23347 :                  list, or otherwise the first task each morning will trigger
23348 :                  a warning because it follows a long gap.
23350 : Furthermore, the following properties can be used to define faces for
23351 : issue display.
23353 : :default-face         the default face, if the specific face is undefined
23354 : :overlap-face         face for overlapping clocks
23355 : :gap-face             face for gaps between clocks
23356 : :no-end-time-face     face for incomplete clocks
23357 : :long-face            face for clock intervals that are too long
23358 : :short-face           face for clock intervals that are too short
23360 ** org-format-latex-header =(funcall (function (closure (f...=
23361    :PROPERTIES:
23362    :CUSTOM_ID: org-format-latex-header
23363    :END:
23365 - *Type:* string
23366 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23367 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-format-latex-header][Find modifications in git logs]]
23369 : The document header used for processing LaTeX fragments.
23370 : It is imperative that this header make sure that no page number
23371 : appears on the page.  The package defined in the variables
23372 : `org-latex-default-packages-alist' and `org-latex-packages-alist'
23373 : will either replace the placeholder "[PACKAGES]" in this
23374 : header, or they will be appended.
23376 ** org-agenda-auto-exclude-function =nil=
23377    :PROPERTIES:
23378    :CUSTOM_ID: org-agenda-auto-exclude-function
23379    :END:
23381 - *Type:* (choice (const nil) (function)...
23382 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23383 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-auto-exclude-function][Find modifications in git logs]]
23385 : A function called with a tag to decide if it is filtered on \<org-agenda-mode-map>`\[org-agenda-filter-by-tag] RET'.
23386 : The sole argument to the function, which is called once for each
23387 : possible tag, is a string giving the name of the tag.  The
23388 : function should return either nil if the tag should be included
23389 : as normal, or "-<TAG>" to exclude the tag.
23390 : Note that for the purpose of tag filtering, only the lower-case version of
23391 : all tags will be considered, so that this function will only ever see
23392 : the lower-case version of all tags.
23394 ** org-agenda-remove-tags =nil=
23395    :PROPERTIES:
23396    :CUSTOM_ID: org-agenda-remove-tags
23397    :END:
23399 - *Type:* (choice (const :tag "Always" t...
23400 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23401 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-remove-tags][Find modifications in git logs]]
23403 : Non-nil means remove the tags from the headline copy in the agenda.
23404 : When this is the symbol `prefix', only remove tags when
23405 : `org-agenda-prefix-format' contains a `%T' specifier.
23407 ** org-koma-letter-prefer-special-headings =nil=
23408    :PROPERTIES:
23409    :CUSTOM_ID: org-koma-letter-prefer-special-headings
23410    :END:
23412 - *Type:* boolean
23413 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
23414 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-prefer-special-headings][Find modifications in git logs]]
23416 : Non-nil means prefer headlines over keywords for TO and FROM.
23417 : This option can also be set with the OPTIONS keyword, e.g.:
23418 : "special-headings:t".
23420 ** org-mobile-force-mobile-change =(funcall (function (closure (t...=
23421    :PROPERTIES:
23422    :CUSTOM_ID: org-mobile-force-mobile-change
23423    :END:
23425 - *Type:* (choice (const :tag "Always" t...
23426 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
23427 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-force-mobile-change][Find modifications in git logs]]
23429 : Non-nil means force the change made on the mobile device.
23430 : So even if there have been changes to the computer version of the entry,
23431 : force the new value set on the mobile.
23432 : When nil, mark the entry from the mobile with an error message.
23433 : Instead of nil or t, this variable can also be a list of symbols, indicating
23434 : the editing types for which the mobile version should always dominate.
23436 ** org-mouse-features =(funcall (function (closure (t...=
23437    :PROPERTIES:
23438    :CUSTOM_ID: org-mouse-features
23439    :END:
23441 - *Type:* (set :greedy t (const :tag "Mo...
23442 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mouse.el][org-mouse.el]]
23443 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-features][Find modifications in git logs]]
23445 : The features of org-mouse that should be activated.
23446 : Changing this variable requires a restart of Emacs to get activated.
23448 ** org-agenda-menu-two-columns =nil=
23449    :PROPERTIES:
23450    :CUSTOM_ID: org-agenda-menu-two-columns
23451    :END:
23453 - *Type:* boolean
23454 - *Since:* Emacs version 24.1
23455 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23456 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-menu-two-columns][Find modifications in git logs]]
23458 : Non-nil means, use two columns to show custom commands in the dispatcher.
23459 : If you use this, you probably want to set `org-agenda-menu-show-matcher'
23460 : to nil.
23462 ** org-mobile-force-id-on-agenda-items =(funcall (function (closure (t...=
23463    :PROPERTIES:
23464    :CUSTOM_ID: org-mobile-force-id-on-agenda-items
23465    :END:
23467 - *Type:* boolean
23468 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
23469 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-force-id-on-agenda-items][Find modifications in git logs]]
23471 : Non-nil means make all agenda items carry an ID.
23473 ** org-clock-clocked-in-display =(funcall (function (closure (t...=
23474    :PROPERTIES:
23475    :CUSTOM_ID: org-clock-clocked-in-display
23476    :END:
23478 - *Type:* (choice (const :tag "Mode line...
23479 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
23480 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-clocked-in-display][Find modifications in git logs]]
23482 : When clocked in for a task, Org can display the current
23483 : task and accumulated time in the mode line and/or frame title.
23484 : Allowed values are:
23486 : both         displays in both mode line and frame title
23487 : mode-line    displays only in mode line (default)
23488 : frame-title  displays only in frame title
23489 : nil          current clock is not displayed
23491 ** org-latex-classes =(funcall (function (closure (t...=
23492    :PROPERTIES:
23493    :CUSTOM_ID: org-latex-classes
23494    :END:
23496 - *Type:* (repeat (list (string :tag "La...
23497 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
23498 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-classes][Find modifications in git logs]]
23500 : Alist of LaTeX classes and associated header and structure.
23501 : If #+LATEX_CLASS is set in the buffer, use its value and the
23502 : associated information.  Here is the structure of each cell:
23504 :   (class-name
23505 :     header-string
23506 :     (numbered-section . unnumbered-section)
23507 :     ...)
23509 : The header string
23510 : -----------------
23512 : The HEADER-STRING is the header that will be inserted into the
23513 : LaTeX file.  It should contain the \documentclass macro, and
23514 : anything else that is needed for this setup.  To this header, the
23515 : following commands will be added:
23517 : - Calls to \usepackage for all packages mentioned in the
23518 :   variables `org-latex-default-packages-alist' and
23519 :   `org-latex-packages-alist'.  Thus, your header definitions
23520 :   should avoid to also request these packages.
23522 : - Lines specified via "#+LATEX_HEADER:" and
23523 :   "#+LATEX_HEADER_EXTRA:" keywords.
23525 : If you need more control about the sequence in which the header
23526 : is built up, or if you want to exclude one of these building
23527 : blocks for a particular class, you can use the following
23528 : macro-like placeholders.
23530 :  [DEFAULT-PACKAGES]      \usepackage statements for default packages
23531 :  [NO-DEFAULT-PACKAGES]   do not include any of the default packages
23532 :  [PACKAGES]              \usepackage statements for packages
23533 :  [NO-PACKAGES]           do not include the packages
23534 :  [EXTRA]                 the stuff from #+LATEX_HEADER(_EXTRA)
23535 :  [NO-EXTRA]              do not include #+LATEX_HEADER(_EXTRA) stuff
23537 : So a header like
23539 :   \documentclass{article}
23540 :   [NO-DEFAULT-PACKAGES]
23541 :   [EXTRA]
23542 :   \providecommand{\alert}[1]{\textbf{#1}}
23543 :   [PACKAGES]
23545 : will omit the default packages, and will include the
23546 : #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
23547 : to \providecommand, and then place \usepackage commands based
23548 : on the content of `org-latex-packages-alist'.
23550 : If your header, `org-latex-default-packages-alist' or
23551 : `org-latex-packages-alist' inserts "\usepackage[AUTO]{inputenc}",
23552 : AUTO will automatically be replaced with a coding system derived
23553 : from `buffer-file-coding-system'.  See also the variable
23554 : `org-latex-inputenc-alist' for a way to influence this mechanism.
23556 : Likewise, if your header contains "\usepackage[AUTO]{babel}"
23557 : or "\usepackage[AUTO]{polyglossia}", AUTO will be replaced
23558 : with the language related to the language code specified by
23559 : `org-export-default-language'.  Note that constructions such as
23560 : "\usepackage[french,AUTO,english]{babel}" are permitted.  For
23561 : Polyglossia the language will be set via the macros
23562 : "\setmainlanguage" and "\setotherlanguage".  See also
23563 : `org-latex-guess-babel-language' and
23564 : `org-latex-guess-polyglossia-language'.
23566 : The sectioning structure
23567 : ------------------------
23569 : The sectioning structure of the class is given by the elements
23570 : following the header string.  For each sectioning level, a number
23571 : of strings is specified.  A %s formatter is mandatory in each
23572 : section string and will be replaced by the title of the section.
23574 : Instead of a cons cell (numbered . unnumbered), you can also
23575 : provide a list of 2 or 4 elements,
23577 :   (numbered-open numbered-close)
23579 : or
23581 :   (numbered-open numbered-close unnumbered-open unnumbered-close)
23583 : providing opening and closing strings for a LaTeX environment
23584 : that should represent the document section.  The opening clause
23585 : should have a %s to represent the section title.
23587 : Instead of a list of sectioning commands, you can also specify
23588 : a function name.  That function will be called with two
23589 : parameters, the (reduced) level of the headline, and a predicate
23590 : non-nil when the headline should be numbered.  It must return
23591 : a format string in which the section title will be added.
23593 ** org-startup-truncated =(funcall (function (closure (f...=
23594    :PROPERTIES:
23595    :CUSTOM_ID: org-startup-truncated
23596    :END:
23598 - *Type:* boolean
23599 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23600 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-truncated][Find modifications in git logs]]
23602 : Non-nil means entering Org mode will set `truncate-lines'.
23603 : This is useful since some lines containing links can be very long and
23604 : uninteresting.  Also tables look terrible when wrapped.
23606 : The variable `org-startup-truncated' allows to configure
23607 : truncation for Org mode different to the other modes that use the
23608 : variable `truncate-lines' and as a shortcut instead of putting
23609 : the variable `truncate-lines' into the `org-mode-hook'.  If one
23610 : wants to configure truncation for Org mode not statically but
23611 : dynamically e. g. in a hook like `ediff-prepare-buffer-hook' then
23612 : the variable `truncate-lines' has to be used because in such a
23613 : case it is too late to set the variable `org-startup-truncated'.
23615 ** org-complete-tags-always-offer-all-agenda-tags =(funcall (function (closure (f...=
23616    :PROPERTIES:
23617    :CUSTOM_ID: org-complete-tags-always-offer-all-agenda-tags
23618    :END:
23620 - *Type:* boolean
23621 - *Since:* Emacs version 24.1
23622 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23623 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-complete-tags-always-offer-all-agenda-tags][Find modifications in git logs]]
23625 : If non-nil, always offer completion for all tags of all agenda files.
23626 : Instead of customizing this variable directly, you might want to
23627 : set it locally for capture buffers, because there no list of
23628 : tags in that file can be created dynamically (there are none).
23630 :   (add-hook \='org-capture-mode-hook
23631 :             (lambda ()
23632 :               (setq-local org-complete-tags-always-offer-all-agenda-tags t)))
23634 ** org-html-link-up =(funcall (function (closure (h...=
23635    :PROPERTIES:
23636    :CUSTOM_ID: org-html-link-up
23637    :END:
23639 - *Type:* (string :tag "File or URL")
23640 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23641 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-link-up][Find modifications in git logs]]
23643 : Where should the "UP" link of exported HTML pages lead?
23645 ** org-feed-drawer =(funcall (function (closure (t...=
23646    :PROPERTIES:
23647    :CUSTOM_ID: org-feed-drawer
23648    :END:
23650 - *Type:* (string :tag "Drawer Name")
23651 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
23652 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-drawer][Find modifications in git logs]]
23654 : The name of the drawer for feed status information.
23655 : Each feed may also specify its own drawer name using the `:drawer'
23656 : parameter in `org-feed-alist'.
23658 ** org-clock-resolve-expert =(funcall (function (closure (t...=
23659    :PROPERTIES:
23660    :CUSTOM_ID: org-clock-resolve-expert
23661    :END:
23663 - *Type:* boolean
23664 - *Since:* Emacs version 24.1
23665 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
23666 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-resolve-expert][Find modifications in git logs]]
23668 : Non-nil means do not show the splash buffer with the clock resolver.
23670 ** org-publish-sitemap-sort-folders =(funcall (function (closure (t...=
23671    :PROPERTIES:
23672    :CUSTOM_ID: org-publish-sitemap-sort-folders
23673    :END:
23675 - *Type:* (choice (const :tag "Folders b...
23676 - *Since:* Emacs version 26.1
23677 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
23678 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-sitemap-sort-folders][Find modifications in git logs]]
23680 : A symbol, denoting if folders are sorted first in site-maps.
23682 : Possible values are `first', `last', `ignore' and nil.
23683 : If `first', folders will be sorted before files.
23684 : If `last', folders are sorted to the end after the files.
23685 : If `ignore', folders do not appear in the site-map.
23686 : Any other value will mix files and folders.
23688 : You can overwrite this default per project in your
23689 : `org-publish-project-alist', using `:sitemap-sort-folders'.
23691 : This variable is ignored when site-map style is `tree'.
23693 ** org-ascii-format-drawer-function =(funcall (function (closure (t...=
23694    :PROPERTIES:
23695    :CUSTOM_ID: org-ascii-format-drawer-function
23696    :END:
23698 - *Type:* function
23699 - *Since:* Emacs version 24.4
23700 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
23701 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-format-drawer-function][Find modifications in git logs]]
23703 : Function called to format a drawer in ASCII.
23705 : The function must accept three parameters:
23706 :   NAME      the drawer name, like "LOGBOOK"
23707 :   CONTENTS  the contents of the drawer.
23708 :   WIDTH     the text width within the drawer.
23710 : The function should return either the string to be exported or
23711 : nil to ignore the drawer.
23713 : The default value simply returns the value of CONTENTS.
23715 ** org-log-reschedule =(funcall (function (closure (f...=
23716    :PROPERTIES:
23717    :CUSTOM_ID: org-log-reschedule
23718    :END:
23720 - *Type:* (choice (const :tag "No loggin...
23721 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23722 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-reschedule][Find modifications in git logs]]
23724 : Information to record when the scheduling date of a tasks is modified.
23726 : Possible values are:
23728 : nil     Don't add anything, just change the date
23729 : time    Add a time stamp to the task
23730 : note    Prompt for a note and add it with template `org-log-note-headings'
23732 : This option can also be set with on a per-file-basis with
23734 :    #+STARTUP: nologreschedule
23735 :    #+STARTUP: logreschedule
23736 :    #+STARTUP: lognotereschedule
23738 ** org-odt-fontify-srcblocks =(funcall (function (closure (h...=
23739    :PROPERTIES:
23740    :CUSTOM_ID: org-odt-fontify-srcblocks
23741    :END:
23743 - *Type:* boolean
23744 - *Since:* Emacs version 24.1
23745 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
23746 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-fontify-srcblocks][Find modifications in git logs]]
23748 : Specify whether or not source blocks need to be fontified.
23749 : Turn this option on if you want to colorize the source code
23750 : blocks in the exported file.  For colorization to work, you need
23751 : to make available an enhanced version of `htmlfontify' library.
23753 ** org-feed-save-after-adding =(funcall (function (closure (t...=
23754    :PROPERTIES:
23755    :CUSTOM_ID: org-feed-save-after-adding
23756    :END:
23758 - *Type:* boolean
23759 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
23760 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-save-after-adding][Find modifications in git logs]]
23762 : Non-nil means save buffer after adding new feed items.
23764 ** org-agenda-window-setup =(quote reorganize-frame)=
23765    :PROPERTIES:
23766    :CUSTOM_ID: org-agenda-window-setup
23767    :END:
23769 - *Type:* (choice (const current-window)...
23770 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23771 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-window-setup][Find modifications in git logs]]
23773 : How the agenda buffer should be displayed.
23774 : Possible values for this option are:
23776 : current-window    Show agenda in the current window, keeping all other windows.
23777 : other-window      Use `switch-to-buffer-other-window' to display agenda.
23778 : only-window       Show agenda, deleting all other windows.
23779 : reorganize-frame  Show only two windows on the current frame, the current
23780 :                   window and the agenda.
23781 : other-frame       Use `switch-to-buffer-other-frame' to display agenda.
23782 :                   Also, when exiting the agenda, kill that frame.
23783 : See also the variable `org-agenda-restore-windows-after-quit'.
23785 ** org-html-tag-class-prefix =(funcall (function (closure (h...=
23786    :PROPERTIES:
23787    :CUSTOM_ID: org-html-tag-class-prefix
23788    :END:
23790 - *Type:* string
23791 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23792 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-tag-class-prefix][Find modifications in git logs]]
23794 : Prefix to class names for TODO keywords.
23795 : Each tag gets a class given by the tag itself, with this prefix.
23796 : The default prefix is empty because it is nice to just use the keyword
23797 : as a class name.  But if you get into conflicts with other, existing
23798 : CSS classes, then this prefix can be very useful.
23800 ** org-hide-macro-markers =(funcall (function (closure (f...=
23801    :PROPERTIES:
23802    :CUSTOM_ID: org-hide-macro-markers
23803    :END:
23805 - *Type:* boolean
23806 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23807 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hide-macro-markers][Find modifications in git logs]]
23809 : Non-nil mean font-lock should hide the brackets marking macro calls.
23811 ** org-table-number-fraction =(funcall (function (closure (o...=
23812    :PROPERTIES:
23813    :CUSTOM_ID: org-table-number-fraction
23814    :END:
23816 - *Type:* number
23817 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
23818 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-number-fraction][Find modifications in git logs]]
23820 : Fraction of numbers in a column required to make the column align right.
23821 : In a column all non-white fields are considered.  If at least
23822 : this fraction of fields is matched by `org-table-number-regexp',
23823 : alignment to the right border applies.
23825 ** org-agenda-include-deadlines =t=
23826    :PROPERTIES:
23827    :CUSTOM_ID: org-agenda-include-deadlines
23828    :END:
23830 - *Type:* boolean
23831 - *Since:* Emacs version 24.1
23832 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23833 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-include-deadlines][Find modifications in git logs]]
23835 : If non-nil, include entries within their deadline warning period.
23836 : Custom commands can set this variable in the options section.
23838 ** org-html-indent =(funcall (function (closure (h...=
23839    :PROPERTIES:
23840    :CUSTOM_ID: org-html-indent
23841    :END:
23843 - *Type:* boolean
23844 - *Since:* Emacs version 24.4
23845 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23846 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-indent][Find modifications in git logs]]
23848 : Non-nil means to indent the generated HTML.
23849 : Warning: non-nil may break indentation of source code blocks.
23851 ** org-archive-default-command =(funcall (function (closure (t...=
23852    :PROPERTIES:
23853    :CUSTOM_ID: org-archive-default-command
23854    :END:
23856 - *Type:* (choice (const org-archive-sub...
23857 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
23858 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-default-command][Find modifications in git logs]]
23860 : The default archiving command.
23862 ** org-todo-keywords =(funcall (function (closure (f...=
23863    :PROPERTIES:
23864    :CUSTOM_ID: org-todo-keywords
23865    :END:
23867 - *Type:* (choice (repeat :tag "Old synt...
23868 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23869 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-keywords][Find modifications in git logs]]
23871 : List of TODO entry keyword sequences and their interpretation.
23872 : \<org-mode-map>This is a list of sequences.
23874 : Each sequence starts with a symbol, either `sequence' or `type',
23875 : indicating if the keywords should be interpreted as a sequence of
23876 : action steps, or as different types of TODO items.  The first
23877 : keywords are states requiring action - these states will select a headline
23878 : for inclusion into the global TODO list Org produces.  If one of the
23879 : "keywords" is the vertical bar, "|", the remaining keywords
23880 : signify that no further action is necessary.  If "|" is not found,
23881 : the last keyword is treated as the only DONE state of the sequence.
23883 : The command `\[org-todo]' cycles an entry through these states, and one
23884 : additional state where no keyword is present.  For details about this
23885 : cycling, see the manual.
23887 : TODO keywords and interpretation can also be set on a per-file basis with
23888 : the special #+SEQ_TODO and #+TYP_TODO lines.
23890 : Each keyword can optionally specify a character for fast state selection
23891 : (in combination with the variable `org-use-fast-todo-selection')
23892 : and specifiers for state change logging, using the same syntax that
23893 : is used in the "#+TODO:" lines.  For example, "WAIT(w)" says that
23894 : the WAIT state can be selected with the "w" key.  "WAIT(w!)"
23895 : indicates to record a time stamp each time this state is selected.
23897 : Each keyword may also specify if a timestamp or a note should be
23898 : recorded when entering or leaving the state, by adding additional
23899 : characters in the parenthesis after the keyword.  This looks like this:
23900 : "WAIT(w@/!)".  "@" means to add a note (with time), "!" means to
23901 : record only the time of the state change.  With X and Y being either
23902 : "@" or "!", "X/Y" means use X when entering the state, and use
23903 : Y when leaving the state if and only if the *target* state does not
23904 : define X.  You may omit any of the fast-selection key or X or /Y,
23905 : so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
23907 : For backward compatibility, this variable may also be just a list
23908 : of keywords.  In this case the interpretation (sequence or type) will be
23909 : taken from the (otherwise obsolete) variable `org-todo-interpretation'.
23911 ** org-src-window-setup =(funcall (function (closure (t...=
23912    :PROPERTIES:
23913    :CUSTOM_ID: org-src-window-setup
23914    :END:
23916 - *Type:* (choice (const current-window)...
23917 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
23918 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-src-window-setup][Find modifications in git logs]]
23920 : How the source code edit buffer should be displayed.
23921 : Possible values for this option are:
23923 : current-window    Show edit buffer in the current window, keeping all other
23924 :                   windows.
23925 : other-window      Use `switch-to-buffer-other-window' to display edit buffer.
23926 : reorganize-frame  Show only two windows on the current frame, the current
23927 :                   window and the edit buffer.  When exiting the edit buffer,
23928 :                   return to one window.
23929 : other-frame       Use `switch-to-buffer-other-frame' to display edit buffer.
23930 :                   Also, when exiting the edit buffer, kill that frame.
23932 ** org-goto-auto-isearch =(funcall (function (closure (f...=
23933    :PROPERTIES:
23934    :CUSTOM_ID: org-goto-auto-isearch
23935    :END:
23937 - *Type:* boolean
23938 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
23939 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-auto-isearch][Find modifications in git logs]]
23941 : Non-nil means typing characters in `org-goto' starts incremental search.
23942 : When nil, you can use these keybindings to navigate the buffer:
23944 :   q    Quit the org-goto interface
23945 :   n    Go to the next visible heading
23946 :   p    Go to the previous visible heading
23947 :   f    Go one heading forward on same level
23948 :   b    Go one heading backward on same level
23949 :   u    Go one heading up
23951 ** org-n-level-faces =(funcall (function (closure (t...=
23952    :PROPERTIES:
23953    :CUSTOM_ID: org-n-level-faces
23954    :END:
23956 - *Type:* integer
23957 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
23958 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-n-level-faces][Find modifications in git logs]]
23960 : The number of different faces to be used for headlines.
23961 : Org mode defines 8 different headline faces, so this can be at most 8.
23962 : If it is less than 8, the level-1 face gets re-used for level N+1 etc.
23964 ** org-capture-bookmark =(funcall (function (closure (o...=
23965    :PROPERTIES:
23966    :CUSTOM_ID: org-capture-bookmark
23967    :END:
23969 - *Type:* boolean
23970 - *Since:* Emacs version 24.3
23971 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-capture.el][org-capture.el]]
23972 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-capture-bookmark][Find modifications in git logs]]
23974 : When non-nil, add a bookmark pointing at the last stored
23975 : position when capturing.
23977 ** org-html-link-home =(funcall (function (closure (h...=
23978    :PROPERTIES:
23979    :CUSTOM_ID: org-html-link-home
23980    :END:
23982 - *Type:* (string :tag "File or URL")
23983 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
23984 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-link-home][Find modifications in git logs]]
23986 : Where should the "HOME" link of exported HTML pages lead?
23988 ** org-agenda-columns-show-summaries =t=
23989    :PROPERTIES:
23990    :CUSTOM_ID: org-agenda-columns-show-summaries
23991    :END:
23993 - *Type:* boolean
23994 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
23995 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-columns-show-summaries][Find modifications in git logs]]
23997 : Non-nil means show summaries for columns displayed in the agenda view.
23999 ** org-export-with-broken-links =(funcall (function (closure (t...=
24000    :PROPERTIES:
24001    :CUSTOM_ID: org-export-with-broken-links
24002    :END:
24004 - *Type:* (choice (const :tag "Ignore br...
24005 - *Since:* Emacs version 26.1
24006 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
24007 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-broken-links][Find modifications in git logs]]
24009 : Non-nil means do not raise an error on broken links.
24011 : When this variable is non-nil, broken links are ignored, without
24012 : stopping the export process.  If it is set to `mark', broken
24013 : links are marked as such in the output, with a string like
24015 :   [BROKEN LINK: path]
24017 : where PATH is the un-resolvable reference.
24019 : This option can also be set with the OPTIONS keyword, e.g.,
24020 : "broken-links:mark".
24022 ** org-ctags-new-topic-template =(funcall (function (closure (t...=
24023    :PROPERTIES:
24024    :CUSTOM_ID: org-ctags-new-topic-template
24025    :END:
24027 - *Type:* string
24028 - *Since:* Emacs version 24.1
24029 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-ctags.el][org-ctags.el]]
24030 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ctags-new-topic-template][Find modifications in git logs]]
24032 : Text to insert when creating a new org file via opening a hyperlink.
24033 : The following patterns are replaced in the string:
24034 :     `%t' - replaced with the capitalized title of the hyperlink
24036 ** org-calendar-follow-timestamp-change =(funcall (function (closure (f...=
24037    :PROPERTIES:
24038    :CUSTOM_ID: org-calendar-follow-timestamp-change
24039    :END:
24041 - *Type:* boolean
24042 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24043 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-follow-timestamp-change][Find modifications in git logs]]
24045 : Non-nil means make the calendar window follow timestamp changes.
24046 : When a timestamp is modified and the calendar window is visible, it will be
24047 : moved to the new date.
24049 ** org-html-todo-kwd-class-prefix =(funcall (function (closure (h...=
24050    :PROPERTIES:
24051    :CUSTOM_ID: org-html-todo-kwd-class-prefix
24052    :END:
24054 - *Type:* string
24055 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24056 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-todo-kwd-class-prefix][Find modifications in git logs]]
24058 : Prefix to class names for TODO keywords.
24059 : Each TODO keyword gets a class given by the keyword itself, with this prefix.
24060 : The default prefix is empty because it is nice to just use the keyword
24061 : as a class name.  But if you get into conflicts with other, existing
24062 : CSS classes, then this prefix can be very useful.
24064 ** org-babel-lua-None-to =(funcall (function (closure (t...=
24065    :PROPERTIES:
24066    :CUSTOM_ID: org-babel-lua-None-to
24067    :END:
24069 - *Type:* symbol
24070 - *Since:* Emacs version 24.5
24071 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lua.el][ob-lua.el]]
24072 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lua-None-to][Find modifications in git logs]]
24074 : Replace 'None' in lua tables with this before returning.
24076 ** org-protocol-protocol-alist =(funcall (function (closure (t...=
24077    :PROPERTIES:
24078    :CUSTOM_ID: org-protocol-protocol-alist
24079    :END:
24081 - *Type:* (alist)
24082 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
24083 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-protocol-alist][Find modifications in git logs]]
24085 : Register custom handlers for org-protocol.
24087 : Each element of this list must be of the form:
24089 :   (module-name :protocol protocol :function func :kill-client nil)
24091 : protocol - protocol to detect in a filename without trailing
24092 :            colon and slashes.  See rfc1738 section 2.1 for more
24093 :            on this.  If you define a protocol "my-protocol",
24094 :            `org-protocol-check-filename-for-protocol' will search
24095 :            filenames for "org-protocol:/my-protocol" and
24096 :            trigger your action for every match.  `org-protocol'
24097 :            is defined in `org-protocol-the-protocol'.  Double and
24098 :            triple slashes are compressed to one by emacsclient.
24100 : function - function that handles requests with protocol and takes
24101 :            one argument.  If a new-style link (key=val&key2=val2)
24102 :            is given, the argument will be a property list with
24103 :            the values from the link.  If an old-style link is
24104 :            given (val1/val2), the argument will be the filename
24105 :            with all protocols stripped.
24107 :            If the function returns nil, emacsclient and -server
24108 :            do nothing.  Any non-nil return value is considered a
24109 :            valid filename and thus passed to the server.
24111 :            `org-protocol.el' provides some support for handling
24112 :            old-style filenames, if you follow the conventions
24113 :            used for the standard handlers in
24114 :            `org-protocol-protocol-alist-default'.  See
24115 :            `org-protocol-parse-parameters'.
24117 : kill-client - If t, kill the client immediately, once the sub-protocol is
24118 :            detected.  This is necessary for actions that can be interrupted by
24119 :            `C-g' to avoid dangling emacsclients.  Note that all other command
24120 :            line arguments but the this one will be discarded.  Greedy handlers
24121 :            still receive the whole list of arguments though.
24123 : Here is an example:
24125 :   (setq org-protocol-protocol-alist
24126 :       \='(("my-protocol"
24127 :          :protocol "my-protocol"
24128 :          :function my-protocol-handler-function)
24129 :         ("your-protocol"
24130 :          :protocol "your-protocol"
24131 :          :function your-protocol-handler-function)))
24133 ** org-agenda-skip-function-global =nil=
24134    :PROPERTIES:
24135    :CUSTOM_ID: org-agenda-skip-function-global
24136    :END:
24138 - *Type:* sexp
24139 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
24140 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-function-global][Find modifications in git logs]]
24142 : Function to be called at each match during agenda construction.
24143 : If this function returns nil, the current match should not be skipped.
24144 : If the function decided to skip an agenda match, is must return the
24145 : buffer position from which the search should be continued.
24146 : This may also be a Lisp form, which will be evaluated.
24148 : This variable will be applied to every agenda match, including
24149 : tags/property searches and TODO lists.  So try to make the test function
24150 : do its checking as efficiently as possible.  To implement a skipping
24151 : condition just for specific agenda commands, use the variable
24152 : `org-agenda-skip-function' which can be set in the options section
24153 : of custom agenda commands.
24155 ** org-emphasis-alist =(funcall (function (closure (f...=
24156    :PROPERTIES:
24157    :CUSTOM_ID: org-emphasis-alist
24158    :END:
24160 - *Type:* (repeat (list (string :tag "Ma...
24161 - *Since:* Emacs version 24.4
24162 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24163 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-emphasis-alist][Find modifications in git logs]]
24165 : Alist of characters and faces to emphasize text.
24166 : Text starting and ending with a special character will be emphasized,
24167 : for example *bold*, _underlined_ and /italic/.  This variable sets the
24168 : marker characters and the face to be used by font-lock for highlighting
24169 : in Org buffers.
24171 : You need to reload Org or to restart Emacs after customizing this.
24173 ** org-ellipsis =(funcall (function (closure (f...=
24174    :PROPERTIES:
24175    :CUSTOM_ID: org-ellipsis
24176    :END:
24178 - *Type:* (choice (const :tag "Default" ...
24179 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24180 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ellipsis][Find modifications in git logs]]
24182 : The ellipsis to use in the Org mode outline.
24184 : When nil, just use the standard three dots.  When a non-empty string,
24185 : use that string instead.
24187 : The change affects only Org mode (which will then use its own display table).
24188 : Changing this requires executing `\[org-mode]' in a buffer to become
24189 : effective.
24191 ** org-html-klipse-js =(funcall (function (closure (h...=
24192    :PROPERTIES:
24193    :CUSTOM_ID: org-html-klipse-js
24194    :END:
24196 - *Type:* string
24197 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24198 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-klipse-js][Find modifications in git logs]]
24200 : Location of the klipse javascript file.
24202 ** orgtbl-optimized =(funcall (function (closure (o...=
24203    :PROPERTIES:
24204    :CUSTOM_ID: orgtbl-optimized
24205    :END:
24207 - *Type:* boolean
24208 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
24209 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgtbl-optimized][Find modifications in git logs]]
24211 : Non-nil means use the optimized table editor version for `orgtbl-mode'.
24212 : In the optimized version, the table editor takes over all simple keys that
24213 : normally just insert a character.  In tables, the characters are inserted
24214 : in a way to minimize disturbing the table structure (i.e. in overwrite mode
24215 : for empty fields).  Outside tables, the correct binding of the keys is
24216 : restored.
24218 : The default for this option is t if the optimized version is also used in
24219 : Org mode.  See the variable `org-enable-table-editor' for details.  Changing
24220 : this variable requires a restart of Emacs to become effective.
24222 ** org-ditaa-eps-jar-path =(funcall (function (closure (t...=
24223    :PROPERTIES:
24224    :CUSTOM_ID: org-ditaa-eps-jar-path
24225    :END:
24227 - *Type:* string
24228 - *Since:* Emacs version 24.4
24229 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ditaa.el][ob-ditaa.el]]
24230 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ditaa-eps-jar-path][Find modifications in git logs]]
24232 : Path to the DitaaEps.jar executable.
24234 ** org-agenda-default-appointment-duration =nil=
24235    :PROPERTIES:
24236    :CUSTOM_ID: org-agenda-default-appointment-duration
24237    :END:
24239 - *Type:* (choice (integer :tag "Minutes...
24240 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
24241 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-default-appointment-duration][Find modifications in git logs]]
24243 : Default duration for appointments that only have a starting time.
24244 : When nil, no duration is specified in such cases.
24245 : When non-nil, this must be the number of minutes, e.g. 60 for one hour.
24247 ** org-habit-show-all-today =(funcall (function (closure (t...=
24248    :PROPERTIES:
24249    :CUSTOM_ID: org-habit-show-all-today
24250    :END:
24252 - *Type:* boolean
24253 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
24254 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-show-all-today][Find modifications in git logs]]
24256 : If non-nil, will show the consistency graph of all habits on
24257 : today's agenda, even if they are not scheduled.
24259 ** org-open-non-existing-files =(funcall (function (closure (f...=
24260    :PROPERTIES:
24261    :CUSTOM_ID: org-open-non-existing-files
24262    :END:
24264 - *Type:* boolean
24265 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24266 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-non-existing-files][Find modifications in git logs]]
24268 : Non-nil means `org-open-file' will open non-existing files.
24269 : When nil, an error will be generated.
24270 : This variable applies only to external applications because they
24271 : might choke on non-existing files.  If the link is to a file that
24272 : will be opened in Emacs, the variable is ignored.
24274 ** org-priority-faces =(funcall (function (closure (t...=
24275    :PROPERTIES:
24276    :CUSTOM_ID: org-priority-faces
24277    :END:
24279 - *Type:* (repeat (cons (character :tag ...
24280 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
24281 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-priority-faces][Find modifications in git logs]]
24283 : Faces for specific Priorities.
24284 : This is a list of cons cells, with priority character in the car
24285 : and faces in the cdr.  The face can be a symbol, a color as
24286 : as a string, or a property list of attributes, like
24287 :     (:foreground "blue" :weight bold :underline t).
24288 : If it is a color string, the variable `org-faces-easy-properties'
24289 : determines if it is a foreground or a background color.
24291 ** org-beamer-frame-default-options =(funcall (function (closure (t...=
24292    :PROPERTIES:
24293    :CUSTOM_ID: org-beamer-frame-default-options
24294    :END:
24296 - *Type:* (string :tag "[options]")
24297 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
24298 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-frame-default-options][Find modifications in git logs]]
24300 : Default options string to use for frames.
24301 : For example, it could be set to "allowframebreaks".
24303 ** org-man-tables-centered =(funcall (function (closure (o...=
24304    :PROPERTIES:
24305    :CUSTOM_ID: org-man-tables-centered
24306    :END:
24308 - *Type:* boolean
24309 - *Since:* Emacs version 24.4
24310 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
24311 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-tables-centered][Find modifications in git logs]]
24313 : When non-nil, tables are exported in a center environment.
24315 ** org-clock-goto-may-find-recent-task =(funcall (function (closure (t...=
24316    :PROPERTIES:
24317    :CUSTOM_ID: org-clock-goto-may-find-recent-task
24318    :END:
24320 - *Type:* boolean
24321 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
24322 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-goto-may-find-recent-task][Find modifications in git logs]]
24324 : Non-nil means `org-clock-goto' can go to recent task if no active clock.
24326 ** org-html-checkbox-type =(funcall (function (closure (h...=
24327    :PROPERTIES:
24328    :CUSTOM_ID: org-html-checkbox-type
24329    :END:
24331 - *Type:* (choice (const :tag "ASCII cha...
24332 - *Since:* Emacs version 24.4
24333 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24334 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-checkbox-type][Find modifications in git logs]]
24336 : The type of checkboxes to use for HTML export.
24337 : See `org-html-checkbox-types' for for the values used for each
24338 : option.
24340 ** org-koma-letter-use-backaddress =nil=
24341    :PROPERTIES:
24342    :CUSTOM_ID: org-koma-letter-use-backaddress
24343    :END:
24345 - *Type:* boolean
24346 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
24347 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-use-backaddress][Find modifications in git logs]]
24349 : Non-nil prints return address in line above to address.
24350 : This option can also be set with the OPTIONS keyword, e.g.:
24351 : "backaddress:t".
24353 ** org-latex-active-timestamp-format =(funcall (function (closure (t...=
24354    :PROPERTIES:
24355    :CUSTOM_ID: org-latex-active-timestamp-format
24356    :END:
24358 - *Type:* string
24359 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
24360 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-active-timestamp-format][Find modifications in git logs]]
24362 : A printf format string to be applied to active timestamps.
24364 ** org-texinfo-format-headline-function =(funcall (function (closure (t...=
24365    :PROPERTIES:
24366    :CUSTOM_ID: org-texinfo-format-headline-function
24367    :END:
24369 - *Type:* function
24370 - *Since:* Emacs version 26.1
24371 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
24372 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-format-headline-function][Find modifications in git logs]]
24374 : Function to format headline text.
24376 : This function will be called with 5 arguments:
24377 : TODO      the todo keyword (string or nil).
24378 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
24379 : PRIORITY  the priority of the headline (integer or nil)
24380 : TEXT      the main headline text (string).
24381 : TAGS      the tags as a list of strings (list of strings or nil).
24383 : The function result will be used in the section format string.
24385 ** org-html-klipse-selection-script =(funcall (function (closure (h...=
24386    :PROPERTIES:
24387    :CUSTOM_ID: org-html-klipse-selection-script
24388    :END:
24390 - *Type:* string
24391 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24392 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-klipse-selection-script][Find modifications in git logs]]
24394 : Javascript snippet to activate klipse.
24396 ** org-todo-repeat-to-state =(funcall (function (closure (f...=
24397    :PROPERTIES:
24398    :CUSTOM_ID: org-todo-repeat-to-state
24399    :END:
24401 - *Type:* (choice (const :tag "Head of s...
24402 - *Since:* Emacs version 24.1
24403 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24404 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-repeat-to-state][Find modifications in git logs]]
24406 : The TODO state to which a repeater should return the repeating task.
24407 : By default this is the first task in a TODO sequence, or the previous state
24408 : in a TODO_TYP set.  But you can specify another task here.
24409 : alternatively, set the :REPEAT_TO_STATE: property of the entry.
24411 ** org-ascii-bullets =(funcall (function (closure (t...=
24412    :PROPERTIES:
24413    :CUSTOM_ID: org-ascii-bullets
24414    :END:
24416 - *Type:* (list (cons :tag "Bullet chara...
24417 - *Since:* Emacs version 24.4
24418 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
24419 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-bullets][Find modifications in git logs]]
24421 : Bullet characters for headlines converted to lists in ASCII export.
24423 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
24424 : and whose value is a list of characters.
24426 : The first character is used for the first level considered as low
24427 : level, and so on.  If there are more levels than characters given
24428 : here, the list will be repeated.
24430 : Note that this variable doesn't affect plain lists
24431 : representation.
24433 ** org-clock-persist-file =(funcall (function (closure (t...=
24434    :PROPERTIES:
24435    :CUSTOM_ID: org-clock-persist-file
24436    :END:
24438 - *Type:* string
24439 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
24440 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-persist-file][Find modifications in git logs]]
24442 : File to save clock data to.
24444 ** org-id-include-domain =(funcall (function (closure (t...=
24445    :PROPERTIES:
24446    :CUSTOM_ID: org-id-include-domain
24447    :END:
24449 - *Type:* boolean
24450 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
24451 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-include-domain][Find modifications in git logs]]
24453 : Non-nil means add the domain name to new IDs.
24454 : This ensures global uniqueness of IDs, and is also suggested by
24455 : RFC 2445 in combination with RFC 822.  This is only relevant if
24456 : `org-id-method' is `org'.  When uuidgen is used, the domain will never
24457 : be added.
24458 : The default is to not use this because we have no really good way to get
24459 : the true domain, and Org entries will normally not be shared with enough
24460 : people to make this necessary.
24462 ** org-columns-skip-archived-trees =(funcall (function (closure (t...=
24463    :PROPERTIES:
24464    :CUSTOM_ID: org-columns-skip-archived-trees
24465    :END:
24467 - *Type:* boolean
24468 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24469 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-columns-skip-archived-trees][Find modifications in git logs]]
24471 : Non-nil means ignore archived trees when creating column view.
24473 ** org-table-exit-follow-field-mode-when-leaving-table =(funcall (function (closure (o...=
24474    :PROPERTIES:
24475    :CUSTOM_ID: org-table-exit-follow-field-mode-when-leaving-table
24476    :END:
24478 - *Type:* boolean
24479 - *Since:* Emacs version 24.1
24480 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
24481 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-exit-follow-field-mode-when-leaving-table][Find modifications in git logs]]
24483 : Non-nil means automatically exit the follow mode.
24484 : When nil, the follow mode will stay on and be active in any table
24485 : the cursor enters.  Since the table follow filed mode messes with the
24486 : window configuration, it is not recommended to set this variable to nil,
24487 : except maybe locally in a special file that has mostly tables with long
24488 : fields.
24490 ** org-checkbox-hierarchical-statistics =(funcall (function (closure (o...=
24491    :PROPERTIES:
24492    :CUSTOM_ID: org-checkbox-hierarchical-statistics
24493    :END:
24495 - *Type:* boolean
24496 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
24497 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-checkbox-hierarchical-statistics][Find modifications in git logs]]
24499 : Non-nil means checkbox statistics counts only the state of direct children.
24500 : When nil, all boxes below the cookie are counted.
24501 : This can be set to nil on a per-node basis using a COOKIE_DATA property
24502 : with the word "recursive" in the value.
24504 ** org-agenda-diary-sexp-prefix =nil=
24505    :PROPERTIES:
24506    :CUSTOM_ID: org-agenda-diary-sexp-prefix
24507    :END:
24509 - *Type:* (choice (const :tag "None" nil...
24510 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
24511 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-diary-sexp-prefix][Find modifications in git logs]]
24513 : A regexp that matches part of a diary sexp entry
24514 : which should be treated as scheduling/deadline information in
24515 : `org-agenda'.
24517 : For example, you can use this to extract the `diary-remind-message' from
24518 : `diary-remind' entries.
24520 ** org-edit-fixed-width-region-mode =(funcall (function (closure (t...=
24521    :PROPERTIES:
24522    :CUSTOM_ID: org-edit-fixed-width-region-mode
24523    :END:
24525 - *Type:* (choice (const artist-mode) (c...
24526 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
24527 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-fixed-width-region-mode][Find modifications in git logs]]
24529 : The mode that should be used to edit fixed-width regions.
24530 : These are the regions where each line starts with a colon.
24532 ** org-agenda-day-face-function =nil=
24533    :PROPERTIES:
24534    :CUSTOM_ID: org-agenda-day-face-function
24535    :END:
24537 - *Type:* (choice (const nil) (function)...
24538 - *Since:* Emacs version 24.1
24539 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
24540 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-day-face-function][Find modifications in git logs]]
24542 : Function called to determine what face should be used to display a day.
24543 : The only argument passed to that function is the day.  It should
24544 : returns a face, or nil if does not want to specify a face and let
24545 : the normal rules apply.
24547 ** org-sparse-tree-default-date-type =(funcall (function (closure (t...=
24548    :PROPERTIES:
24549    :CUSTOM_ID: org-sparse-tree-default-date-type
24550    :END:
24552 - *Type:* (choice (const :tag "Scheduled...
24553 - *Since:* Emacs version 26.1
24554 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24555 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sparse-tree-default-date-type][Find modifications in git logs]]
24557 : The default date type when building a sparse tree.
24558 : When this is nil, a date is a scheduled or a deadline timestamp.
24559 : Otherwise, these types are allowed:
24561 :         all: all timestamps
24562 :      active: only active timestamps (<...>)
24563 :    inactive: only inactive timestamps ([...])
24564 :   scheduled: only scheduled timestamps
24565 :    deadline: only deadline timestamps
24567 ** org-export-with-clocks =(funcall (function (closure (t...=
24568    :PROPERTIES:
24569    :CUSTOM_ID: org-export-with-clocks
24570    :END:
24572 - *Type:* boolean
24573 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
24574 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-clocks][Find modifications in git logs]]
24576 : Non-nil means export CLOCK keywords.
24577 : This option can also be set with the OPTIONS keyword,
24578 : e.g. "c:t".
24580 ** org-clock-idle-time =(funcall (function (closure (t...=
24581    :PROPERTIES:
24582    :CUSTOM_ID: org-clock-idle-time
24583    :END:
24585 - *Type:* (choice (const :tag "Never" ni...
24586 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
24587 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-idle-time][Find modifications in git logs]]
24589 : When non-nil, resolve open clocks if the user is idle more than X minutes.
24591 ** org-html-table-caption-above =(funcall (function (closure (h...=
24592    :PROPERTIES:
24593    :CUSTOM_ID: org-html-table-caption-above
24594    :END:
24596 - *Type:* boolean
24597 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24598 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-caption-above][Find modifications in git logs]]
24600 : When non-nil, place caption string at the beginning of the table.
24601 : Otherwise, place it near the end.
24603 ** org-clock-persist-query-resume =(funcall (function (closure (t...=
24604    :PROPERTIES:
24605    :CUSTOM_ID: org-clock-persist-query-resume
24606    :END:
24608 - *Type:* boolean
24609 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
24610 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-persist-query-resume][Find modifications in git logs]]
24612 : When non-nil, ask before resuming any stored clock during load.
24614 ** org-mobile-files-exclude-regexp =(funcall (function (closure (t...=
24615    :PROPERTIES:
24616    :CUSTOM_ID: org-mobile-files-exclude-regexp
24617    :END:
24619 - *Type:* regexp
24620 - *Since:* Emacs version 24.1
24621 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
24622 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-files-exclude-regexp][Find modifications in git logs]]
24624 : A regexp to exclude files from `org-mobile-files'.
24626 ** org-clone-delete-id =(funcall (function (closure (f...=
24627    :PROPERTIES:
24628    :CUSTOM_ID: org-clone-delete-id
24629    :END:
24631 - *Type:* boolean
24632 - *Since:* Emacs version 24.1
24633 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24634 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clone-delete-id][Find modifications in git logs]]
24636 : Remove ID property of clones of a subtree.
24637 : When non-nil, clones of a subtree don't inherit the ID property.
24638 : Otherwise they inherit the ID property with a new unique
24639 : identifier.
24641 ** org-agenda-restriction-lock-highlight-subtree =t=
24642    :PROPERTIES:
24643    :CUSTOM_ID: org-agenda-restriction-lock-highlight-subtree
24644    :END:
24646 - *Type:* boolean
24647 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
24648 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-restriction-lock-highlight-subtree][Find modifications in git logs]]
24650 : Non-nil means highlight the whole subtree when restriction is active.
24651 : Otherwise only highlight the headline.  Highlighting the whole subtree is
24652 : useful to ensure no edits happen beyond the restricted region.
24654 ** org-export-with-creator =(funcall (function (closure (t...=
24655    :PROPERTIES:
24656    :CUSTOM_ID: org-export-with-creator
24657    :END:
24659 - *Type:* boolean
24660 - *Since:* Emacs version 26.1
24661 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
24662 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-creator][Find modifications in git logs]]
24664 : Non-nil means the postamble should contain a creator sentence.
24666 : The sentence can be set in `org-export-creator-string', which
24667 : see.
24669 : This option can also be set with the OPTIONS keyword, e.g.,
24670 : "creator:t".
24672 ** org-latex-bib-compiler =(funcall (function (closure (t...=
24673    :PROPERTIES:
24674    :CUSTOM_ID: org-latex-bib-compiler
24675    :END:
24677 - *Type:* (choice (const :tag "BibTeX" "...
24678 - *Since:* Emacs version 26.1
24679 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
24680 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-bib-compiler][Find modifications in git logs]]
24682 : Command to process a LaTeX file's bibliography.
24684 : The shorthand %bib in `org-latex-pdf-process' is replaced with
24685 : this value.
24687 : A better approach is to use a compiler suit such as `latexmk'.
24689 ** org-cycle-global-at-bob =(funcall (function (closure (f...=
24690    :PROPERTIES:
24691    :CUSTOM_ID: org-cycle-global-at-bob
24692    :END:
24694 - *Type:* boolean
24695 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24696 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-global-at-bob][Find modifications in git logs]]
24698 : Cycle globally if cursor is at beginning of buffer and not at a headline.
24700 : This makes it possible to do global cycling without having to use `S-TAB'
24701 : or `\[universal-argument] TAB'.  For this special case to work, the first line of the buffer
24702 : must not be a headline -- it may be empty or some other text.
24704 : When used in this way, `org-cycle-hook' is disabled temporarily to make
24705 : sure the cursor stays at the beginning of the buffer.
24707 : When this option is nil, don't do anything special at the beginning of
24708 : the buffer.
24710 ** org-babel-clojure-sync-nrepl-timeout =(funcall (function (closure (t...=
24711    :PROPERTIES:
24712    :CUSTOM_ID: org-babel-clojure-sync-nrepl-timeout
24713    :END:
24715 - *Type:* integer
24716 - *Since:* Emacs version 26.1
24717 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-clojure.el][ob-clojure.el]]
24718 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-clojure-sync-nrepl-timeout][Find modifications in git logs]]
24720 : Timeout value, in seconds, of a Clojure sync call.
24721 : If the value is nil, timeout is disabled.
24723 ** orgstruct-heading-prefix-regexp =(funcall (function (closure (o...=
24724    :PROPERTIES:
24725    :CUSTOM_ID: orgstruct-heading-prefix-regexp
24726    :END:
24728 - *Type:* regexp
24729 - *Since:* Emacs version 24.4
24730 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24731 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=orgstruct-heading-prefix-regexp][Find modifications in git logs]]
24733 : Regexp that matches the custom prefix of Org headlines in
24734 : orgstruct(++)-mode.
24736 ** org-html-footnote-separator =(funcall (function (closure (h...=
24737    :PROPERTIES:
24738    :CUSTOM_ID: org-html-footnote-separator
24739    :END:
24741 - *Type:* string
24742 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24743 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-footnote-separator][Find modifications in git logs]]
24745 : Text used to separate footnotes.
24747 ** org-confirm-babel-evaluate =(funcall (function (closure (t...=
24748    :PROPERTIES:
24749    :CUSTOM_ID: org-confirm-babel-evaluate
24750    :END:
24752 - *Type:* (choice boolean function)
24753 - *Since:* Emacs version 24.1
24754 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-core.el][ob-core.el]]
24755 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-confirm-babel-evaluate][Find modifications in git logs]]
24757 : Confirm before evaluation.
24758 : \<org-mode-map>Require confirmation before interactively evaluating code
24759 : blocks in Org buffers.  The default value of this variable is t,
24760 : meaning confirmation is required for any code block evaluation.
24761 : This variable can be set to nil to inhibit any future
24762 : confirmation requests.  This variable can also be set to a
24763 : function which takes two arguments the language of the code block
24764 : and the body of the code block.  Such a function should then
24765 : return a non-nil value if the user should be prompted for
24766 : execution or nil if no prompt is required.
24768 : Warning: Disabling confirmation may result in accidental
24769 : evaluation of potentially harmful code.  It may be advisable
24770 : remove code block execution from `\[org-ctrl-c-ctrl-c]' as further protection
24771 : against accidental code block evaluation.  The
24772 : `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
24773 : remove code block execution from the `\[org-ctrl-c-ctrl-c]' keybinding.
24775 ** org-latex-listings-langs =(funcall (function (closure (t...=
24776    :PROPERTIES:
24777    :CUSTOM_ID: org-latex-listings-langs
24778    :END:
24780 - *Type:* (repeat (list (symbol :tag "Ma...
24781 - *Since:* Emacs version 24.4
24782 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
24783 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-listings-langs][Find modifications in git logs]]
24785 : Alist mapping languages to their listing language counterpart.
24786 : The key is a symbol, the major mode symbol without the "-mode".
24787 : The value is the string that should be inserted as the language
24788 : parameter for the listings package.  If the mode name and the
24789 : listings name are the same, the language does not need an entry
24790 : in this list - but it does not hurt if it is present.
24792 ** org-html-infojs-options =(funcall (function (closure (h...=
24793    :PROPERTIES:
24794    :CUSTOM_ID: org-html-infojs-options
24795    :END:
24797 - *Type:* (set :greedy t :inline t (cons...
24798 - *Since:* Emacs version 24.4
24799 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
24800 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-infojs-options][Find modifications in git logs]]
24802 : Options settings for the INFOJS JavaScript.
24803 : Each of the options must have an entry in `org-html-infojs-opts-table'.
24804 : The value can either be a string that will be passed to the script, or
24805 : a property.  This property is then assumed to be a property that is defined
24806 : by the Export/Publishing setup of Org.
24807 : The `sdepth' and `tdepth' parameters can also be set to "max", which
24808 : means to use the maximum value consistent with other options.
24810 ** org-agenda-text-search-extra-files =(funcall (function (closure (f...=
24811    :PROPERTIES:
24812    :CUSTOM_ID: org-agenda-text-search-extra-files
24813    :END:
24815 - *Type:* (set :greedy t (const :tag "Ag...
24816 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24817 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-text-search-extra-files][Find modifications in git logs]]
24819 : List of extra files to be searched by text search commands.
24820 : These files will be searched in addition to the agenda files by the
24821 : commands `org-search-view' (`\[org-agenda] s') and `org-occur-in-agenda-files'.
24822 : Note that these files will only be searched for text search commands,
24823 : not for the other agenda views like todo lists, tag searches or the weekly
24824 : agenda.  This variable is intended to list notes and possibly archive files
24825 : that should also be searched by these two commands.
24826 : In fact, if the first element in the list is the symbol `agenda-archives',
24827 : then all archive files of all agenda files will be added to the search
24828 : scope.
24830 ** org-special-ctrl-a/e =(funcall (function (closure (f...=
24831    :PROPERTIES:
24832    :CUSTOM_ID: org-special-ctrl-a/e
24833    :END:
24835 - *Type:* (choice (const :tag "off" nil)...
24836 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24837 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-special-ctrl-a/e][Find modifications in git logs]]
24839 : Non-nil means `C-a' and `C-e' behave specially in headlines and items.
24841 : When t, `C-a' will bring back the cursor to the beginning of the
24842 : headline text, i.e. after the stars and after a possible TODO
24843 : keyword.  In an item, this will be the position after bullet and
24844 : check-box, if any.  When the cursor is already at that position,
24845 : another `C-a' will bring it to the beginning of the line.
24847 : `C-e' will jump to the end of the headline, ignoring the presence
24848 : of tags in the headline.  A second `C-e' will then jump to the
24849 : true end of the line, after any tags.  This also means that, when
24850 : this variable is non-nil, `C-e' also will never jump beyond the
24851 : end of the heading of a folded section, i.e. not after the
24852 : ellipses.
24854 : When set to the symbol `reversed', the first `C-a' or `C-e' works
24855 : normally, going to the true line boundary first.  Only a directly
24856 : following, identical keypress will bring the cursor to the
24857 : special positions.
24859 : This may also be a cons cell where the behavior for `C-a' and
24860 : `C-e' is set separately.
24862 ** org-list-two-spaces-after-bullet-regexp =(funcall (function (closure (o...=
24863    :PROPERTIES:
24864    :CUSTOM_ID: org-list-two-spaces-after-bullet-regexp
24865    :END:
24867 - *Type:* (choice (const :tag "never" ni...
24868 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
24869 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-list-two-spaces-after-bullet-regexp][Find modifications in git logs]]
24871 : A regular expression matching bullets that should have 2 spaces after them.
24872 : When nil, no bullet will have two spaces after them.  When
24873 : a string, it will be used as a regular expression.  When the
24874 : bullet type of a list is changed, the new bullet type will be
24875 : matched against this regexp.  If it matches, there will be two
24876 : spaces instead of one after the bullet in each item of the list.
24878 ** org-koma-letter-class-option-file ="NF"=
24879    :PROPERTIES:
24880    :CUSTOM_ID: org-koma-letter-class-option-file
24881    :END:
24883 - *Type:* string
24884 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
24885 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-class-option-file][Find modifications in git logs]]
24887 : Letter Class Option File.
24888 : This option can also be set with the LCO keyword.
24890 ** org-latex-image-default-height =(funcall (function (closure (t...=
24891    :PROPERTIES:
24892    :CUSTOM_ID: org-latex-image-default-height
24893    :END:
24895 - *Type:* string
24896 - *Since:* Emacs version 24.4
24897 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
24898 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-image-default-height][Find modifications in git logs]]
24900 : Default height for images.
24901 : This value will not be used if a width is provided, or if the
24902 : image is wrapped within a "figure" or "wrapfigure"
24903 : environment.
24905 ** org-cycle-include-plain-lists =(funcall (function (closure (o...=
24906    :PROPERTIES:
24907    :CUSTOM_ID: org-cycle-include-plain-lists
24908    :END:
24910 - *Type:* (choice (const :tag "Never" ni...
24911 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-list.el][org-list.el]]
24912 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-include-plain-lists][Find modifications in git logs]]
24914 : When t, make TAB cycle visibility on plain list items.
24915 : Cycling plain lists works only when the cursor is on a plain list
24916 : item.  When the cursor is on an outline heading, plain lists are
24917 : treated as text.  This is the most stable way of handling this,
24918 : which is why it is the default.
24920 : When this is the symbol `integrate', then integrate plain list
24921 : items when cycling, as if they were children of outline headings.
24923 : This setting can lead to strange effects when switching visibility
24924 : to `children', because the first "child" in a subtree decides
24925 : what children should be listed.  If that first "child" is a
24926 : plain list item with an implied large level number, all true
24927 : children and grand children of the outline heading will be
24928 : exposed in a children' view.
24930 ** org-latex-link-with-unknown-path-format =(funcall (function (closure (t...=
24931    :PROPERTIES:
24932    :CUSTOM_ID: org-latex-link-with-unknown-path-format
24933    :END:
24935 - *Type:* string
24936 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
24937 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-link-with-unknown-path-format][Find modifications in git logs]]
24939 : Format string for links with unknown path type.
24941 ** org-feed-retrieve-method =(funcall (function (closure (t...=
24942    :PROPERTIES:
24943    :CUSTOM_ID: org-feed-retrieve-method
24944    :END:
24946 - *Type:* (choice (const :tag "Internall...
24947 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
24948 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-retrieve-method][Find modifications in git logs]]
24950 : The method to be used to retrieve a feed URL.
24951 : This can be `curl' or `wget' to call these external programs, or it can be
24952 : an Emacs Lisp function that will return a buffer containing the content
24953 : of the file pointed to by the URL.
24955 ** org-group-tags =(funcall (function (closure (t...=
24956    :PROPERTIES:
24957    :CUSTOM_ID: org-group-tags
24958    :END:
24960 - *Type:* boolean
24961 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
24962 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-group-tags][Find modifications in git logs]]
24964 : When non-nil (the default), use group tags.
24965 : This can be turned on/off through `org-toggle-tags-groups'.
24967 ** org-ascii-quote-margin =(funcall (function (closure (t...=
24968    :PROPERTIES:
24969    :CUSTOM_ID: org-ascii-quote-margin
24970    :END:
24972 - *Type:* integer
24973 - *Since:* Emacs version 24.4
24974 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
24975 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-quote-margin][Find modifications in git logs]]
24977 : Width of margin used for quoting text, in characters.
24978 : This margin is applied on both sides of the text.
24980 ** org-odt-display-outline-level =(funcall (function (closure (h...=
24981    :PROPERTIES:
24982    :CUSTOM_ID: org-odt-display-outline-level
24983    :END:
24985 - *Type:* integer
24986 - *Since:* Emacs version 24.4
24987 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
24988 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-display-outline-level][Find modifications in git logs]]
24990 : Outline levels considered for enumerating captioned entities.
24992 ** org-use-last-clock-out-time-as-effective-time =(funcall (function (closure (f...=
24993    :PROPERTIES:
24994    :CUSTOM_ID: org-use-last-clock-out-time-as-effective-time
24995    :END:
24997 - *Type:* boolean
24998 - *Since:* Emacs version 24.4
24999 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25000 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-last-clock-out-time-as-effective-time][Find modifications in git logs]]
25002 : When non-nil, use the last clock out time for `org-todo'.
25003 : Note that this option has precedence over the combined use of
25004 : `org-use-effective-time' and `org-extend-today-until'.
25006 ** org-effort-durations =(funcall (function (closure (o...=
25007    :PROPERTIES:
25008    :CUSTOM_ID: org-effort-durations
25009    :END:
25011 - *Type:* (alist :key-type (string :tag ...
25012 - *Since:* Emacs version 26.1
25013 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25014 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-effort-durations][Find modifications in git logs]]
25016 : Conversion factor to minutes for an effort modifier.
25018 : Each entry has the form (MODIFIER . MINUTES).
25020 : In an effort string, a number followed by MODIFIER is multiplied
25021 : by the specified number of MINUTES to obtain an effort in
25022 : minutes.
25024 : For example, if the value of this variable is (("hours" . 60)), then an
25025 : effort string "2hours" is equivalent to 120 minutes.
25027 ** org-babel-exp-code-template =(funcall (function (closure (t...=
25028    :PROPERTIES:
25029    :CUSTOM_ID: org-babel-exp-code-template
25030    :END:
25032 - *Type:* string
25033 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-exp.el][ob-exp.el]]
25034 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-exp-code-template][Find modifications in git logs]]
25036 : Template used to export the body of code blocks.
25037 : This template may be customized to include additional information
25038 : such as the code block name, or the values of particular header
25039 : arguments.  The template is filled out using `org-fill-template',
25040 : and the following %keys may be used.
25042 :  lang ------ the language of the code block
25043 :  name ------ the name of the code block
25044 :  body ------ the body of the code block
25045 :  switches -- the switches associated to the code block
25046 :  flags ----- the flags passed to the code block
25048 : In addition to the keys mentioned above, every header argument
25049 : defined for the code block may be used as a key and will be
25050 : replaced with its value.
25052 ** org-log-done =(funcall (function (closure (f...=
25053    :PROPERTIES:
25054    :CUSTOM_ID: org-log-done
25055    :END:
25057 - *Type:* (choice (const :tag "No loggin...
25058 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25059 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-done][Find modifications in git logs]]
25061 : Information to record when a task moves to the DONE state.
25063 : Possible values are:
25065 : nil     Don't add anything, just change the keyword
25066 : time    Add a time stamp to the task
25067 : note    Prompt for a note and add it with template `org-log-note-headings'
25069 : This option can also be set with on a per-file-basis with
25071 :    #+STARTUP: nologdone
25072 :    #+STARTUP: logdone
25073 :    #+STARTUP: lognotedone
25075 : You can have local logging settings for a subtree by setting the LOGGING
25076 : property to one or more of these keywords.
25078 ** org-agenda-todo-list-sublevels =t=
25079    :PROPERTIES:
25080    :CUSTOM_ID: org-agenda-todo-list-sublevels
25081    :END:
25083 - *Type:* boolean
25084 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25085 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-list-sublevels][Find modifications in git logs]]
25087 : Non-nil means check also the sublevels of a TODO entry for TODO entries.
25088 : When nil, the sublevels of a TODO entry are not checked, resulting in
25089 : potentially much shorter TODO lists.
25091 ** org-man-source-highlight-langs =(funcall (function (closure (o...=
25092    :PROPERTIES:
25093    :CUSTOM_ID: org-man-source-highlight-langs
25094    :END:
25096 - *Type:* (repeat (list (symbol :tag "Ma...
25097 - *Since:* Emacs version 24.4
25098 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
25099 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-source-highlight-langs][Find modifications in git logs]]
25101 : Alist mapping languages to their listing language counterpart.
25102 : The key is a symbol, the major mode symbol without the "-mode".
25103 : The value is the string that should be inserted as the language
25104 : parameter for the listings package.  If the mode name and the
25105 : listings name are the same, the language does not need an entry
25106 : in this list - but it does not hurt if it is present.
25108 ** org-archive-save-context-info =(funcall (function (closure (t...=
25109    :PROPERTIES:
25110    :CUSTOM_ID: org-archive-save-context-info
25111    :END:
25113 - *Type:* (set :greedy t (const :tag "Ti...
25114 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-archive.el][org-archive.el]]
25115 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-archive-save-context-info][Find modifications in git logs]]
25117 : Parts of context info that should be stored as properties when archiving.
25118 : When a subtree is moved to an archive file, it loses information given by
25119 : context, like inherited tags, the category, and possibly also the TODO
25120 : state (depending on the variable `org-archive-mark-done').
25121 : This variable can be a list of any of the following symbols:
25123 : time       The time of archiving.
25124 : file       The file where the entry originates.
25125 : ltags      The local tags, in the headline of the subtree.
25126 : itags      The tags the subtree inherits from further up the hierarchy.
25127 : todo       The pre-archive TODO state.
25128 : category   The category, taken from file name or #+CATEGORY lines.
25129 : olpath     The outline path to the item.  These are all headlines above
25130 :            the current item, separated by /, like a file path.
25132 : For each symbol present in the list, a property will be created in
25133 : the archived entry, with a prefix "ARCHIVE_", to remember this
25134 : information.
25136 ** org-babel-tangle-uncomment-comments =(funcall (function (closure (t...=
25137    :PROPERTIES:
25138    :CUSTOM_ID: org-babel-tangle-uncomment-comments
25139    :END:
25141 - *Type:* boolean
25142 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-tangle.el][ob-tangle.el]]
25143 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-tangle-uncomment-comments][Find modifications in git logs]]
25145 : Inhibits automatic commenting and addition of trailing newline
25146 : of tangle comments.  Use `org-babel-tangle-comment-format-beg'
25147 : and `org-babel-tangle-comment-format-end' to customize the format
25148 : of tangled comments.
25150 ** org-babel-groovy-command =(funcall (function (closure (t...=
25151    :PROPERTIES:
25152    :CUSTOM_ID: org-babel-groovy-command
25153    :END:
25155 - *Type:* string
25156 - *Since:* Emacs version 24.3
25157 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-groovy.el][ob-groovy.el]]
25158 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-groovy-command][Find modifications in git logs]]
25160 : Name of the command to use for executing Groovy code.
25161 : May be either a command in the path, like groovy
25162 : or an absolute path name, like /usr/local/bin/groovy
25163 : parameters may be used, like groovy -v
25165 ** org-attach-method =(funcall (function (closure (t...=
25166    :PROPERTIES:
25167    :CUSTOM_ID: org-attach-method
25168    :END:
25170 - *Type:* (choice (const :tag "Copy" cp)...
25171 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
25172 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-method][Find modifications in git logs]]
25174 : The preferred method to attach a file.
25175 : Allowed values are:
25177 : mv    rename the file to move it into the attachment directory
25178 : cp    copy the file
25179 : ln    create a hard link.  Note that this is not supported
25180 :       on all systems, and then the result is not defined.
25181 : lns   create a symbol link.  Note that this is not supported
25182 :       on all systems, and then the result is not defined.
25184 ** org-html-table-default-attributes =(funcall (function (closure (h...=
25185    :PROPERTIES:
25186    :CUSTOM_ID: org-html-table-default-attributes
25187    :END:
25189 - *Type:* (plist :key-type (symbol :tag ...
25190 - *Since:* Emacs version 24.4
25191 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
25192 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-default-attributes][Find modifications in git logs]]
25194 : Default attributes and values which will be used in table tags.
25195 : This is a plist where attributes are symbols, starting with
25196 : colons, and values are strings.
25198 : When exporting to HTML5, these values will be disregarded.
25200 ** org-attach-directory =(funcall (function (closure (t...=
25201    :PROPERTIES:
25202    :CUSTOM_ID: org-attach-directory
25203    :END:
25205 - *Type:* directory
25206 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
25207 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-directory][Find modifications in git logs]]
25209 : The directory where attachments are stored.
25210 : If this is a relative path, it will be interpreted relative to the directory
25211 : where the Org file lives.
25213 ** org-descriptive-links =(funcall (function (closure (f...=
25214    :PROPERTIES:
25215    :CUSTOM_ID: org-descriptive-links
25216    :END:
25218 - *Type:* boolean
25219 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25220 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-descriptive-links][Find modifications in git logs]]
25222 : Non-nil means Org will display descriptive links.
25223 : E.g. [[https://orgmode.org][Org website]] will be displayed as
25224 : "Org Website", hiding the link itself and just displaying its
25225 : description.  When set to nil, Org will display the full links
25226 : literally.
25228 : You can interactively set the value of this variable by calling
25229 : `org-toggle-link-display' or from the menu Org>Hyperlinks menu.
25231 ** org-plantuml-jar-path =(funcall (function (closure (t...=
25232    :PROPERTIES:
25233    :CUSTOM_ID: org-plantuml-jar-path
25234    :END:
25236 - *Type:* string
25237 - *Since:* Emacs version 24.1
25238 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-plantuml.el][ob-plantuml.el]]
25239 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-plantuml-jar-path][Find modifications in git logs]]
25241 : Path to the plantuml.jar file.
25243 ** org-indent-boundary-char =(funcall (function (closure (t...=
25244    :PROPERTIES:
25245    :CUSTOM_ID: org-indent-boundary-char
25246    :END:
25248 - *Type:* character
25249 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
25250 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-boundary-char][Find modifications in git logs]]
25252 : The end of the virtual indentation strings, a single-character string.
25253 : The default is just a space, but if you wish, you can use "|" or so.
25254 : This can be useful on a terminal window - under a windowing system,
25255 : it may be prettier to customize the `org-indent' face.
25257 ** org-modules =(funcall (function (closure (f...=
25258    :PROPERTIES:
25259    :CUSTOM_ID: org-modules
25260    :END:
25262 - *Type:* (set :greedy t (const :tag "  ...
25263 - *Since:* Emacs version 24.4
25264 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25265 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-modules][Find modifications in git logs]]
25267 : Modules that should always be loaded together with org.el.
25269 : If a description starts with <C>, the file is not part of Emacs
25270 : and loading it will require that you have downloaded and properly
25271 : installed the Org mode distribution.
25273 : You can also use this system to load external packages (i.e. neither Org
25274 : core modules, nor modules from the CONTRIB directory).  Just add symbols
25275 : to the end of the list.  If the package is called org-xyz.el, then you need
25276 : to add the symbol `xyz', and the package must have a call to:
25278 :    (provide \='org-xyz)
25280 : For export specific modules, see also `org-export-backends'.
25282 ** org-default-priority =(funcall (function (closure (f...=
25283    :PROPERTIES:
25284    :CUSTOM_ID: org-default-priority
25285    :END:
25287 - *Type:* character
25288 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25289 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-default-priority][Find modifications in git logs]]
25291 : The default priority of TODO items.
25292 : This is the priority an item gets if no explicit priority is given.
25293 : When starting to cycle on an empty priority the first step in the cycle
25294 : depends on `org-priority-start-cycle-with-default'.  The resulting first
25295 : step priority must not exceed the range from `org-highest-priority' to
25296 : `org-lowest-priority' which means that `org-default-priority' has to be
25297 : in this range exclusive or inclusive the range boundaries.  Else the
25298 : first step refuses to set the default and the second will fall back
25299 : to (depending on the command used) the highest or lowest priority.
25301 ** org-icalendar-date-time-format =(funcall (function (closure (t...=
25302    :PROPERTIES:
25303    :CUSTOM_ID: org-icalendar-date-time-format
25304    :END:
25306 - *Type:* (choice (const :tag "Local tim...
25307 - *Since:* Emacs version 24.1
25308 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
25309 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-date-time-format][Find modifications in git logs]]
25311 : Format-string for exporting icalendar DATE-TIME.
25313 : See `format-time-string' for a full documentation.  The only
25314 : difference is that `org-icalendar-timezone' is used for %Z.
25316 : Interesting value are:
25317 :  - ":%Y%m%dT%H%M%S" for local time
25318 :  - ";TZID=%Z:%Y%m%dT%H%M%S" for local time with explicit timezone
25319 :  - ":%Y%m%dT%H%M%SZ" for time expressed in Universal Time
25321 ** org-beamer-outline-frame-options =(funcall (function (closure (t...=
25322    :PROPERTIES:
25323    :CUSTOM_ID: org-beamer-outline-frame-options
25324    :END:
25326 - *Type:* (string :tag "Outline frame op...
25327 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
25328 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-outline-frame-options][Find modifications in git logs]]
25330 : Outline frame options appended after \begin{frame}.
25331 : You might want to put e.g. "allowframebreaks=0.9" here.
25333 ** org-html-link-use-abs-url =(funcall (function (closure (h...=
25334    :PROPERTIES:
25335    :CUSTOM_ID: org-html-link-use-abs-url
25336    :END:
25338 - *Type:* boolean
25339 - *Since:* Emacs version 24.4
25340 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
25341 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-link-use-abs-url][Find modifications in git logs]]
25343 : Should we prepend relative links with HTML_LINK_HOME?
25345 ** org-catch-invisible-edits =(funcall (function (closure (f...=
25346    :PROPERTIES:
25347    :CUSTOM_ID: org-catch-invisible-edits
25348    :END:
25350 - *Type:* (choice (const :tag "Do not ch...
25351 - *Since:* Emacs version 24.1
25352 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25353 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-catch-invisible-edits][Find modifications in git logs]]
25355 : Check if in invisible region before inserting or deleting a character.
25356 : Valid values are:
25358 : nil              Do not check, so just do invisible edits.
25359 : error            Throw an error and do nothing.
25360 : show             Make point visible, and do the requested edit.
25361 : show-and-error   Make point visible, then throw an error and abort the edit.
25362 : smart            Make point visible, and do insertion/deletion if it is
25363 :                  adjacent to visible text and the change feels predictable.
25364 :                  Never delete a previously invisible character or add in the
25365 :                  middle or right after an invisible region.  Basically, this
25366 :                  allows insertion and backward-delete right before ellipses.
25367 :                  FIXME: maybe in this case we should not even show?
25369 ** org-agenda-view-columns-initially =nil=
25370    :PROPERTIES:
25371    :CUSTOM_ID: org-agenda-view-columns-initially
25372    :END:
25374 - *Type:* boolean
25375 - *Since:* Emacs version 26.1
25376 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25377 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-view-columns-initially][Find modifications in git logs]]
25379 : When non-nil, switch to columns view right after creating the agenda.
25381 ** org-fontify-emphasized-text =(funcall (function (closure (f...=
25382    :PROPERTIES:
25383    :CUSTOM_ID: org-fontify-emphasized-text
25384    :END:
25386 - *Type:* boolean
25387 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25388 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fontify-emphasized-text][Find modifications in git logs]]
25390 : Non-nil means fontify *bold*, /italic/ and _underlined_ text.
25391 : Changing this variable requires a restart of Emacs to take effect.
25393 ** org-confirm-shell-link-not-regexp =(funcall (function (closure (f...=
25394    :PROPERTIES:
25395    :CUSTOM_ID: org-confirm-shell-link-not-regexp
25396    :END:
25398 - *Type:* regexp
25399 - *Since:* Emacs version 24.1
25400 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25401 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-confirm-shell-link-not-regexp][Find modifications in git logs]]
25403 : A regexp to skip confirmation for shell links.
25405 ** org-id-extra-files =(funcall (function (closure (t...=
25406    :PROPERTIES:
25407    :CUSTOM_ID: org-id-extra-files
25408    :END:
25410 - *Type:* (choice (symbol :tag "Variable...
25411 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
25412 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-extra-files][Find modifications in git logs]]
25414 : Files to be searched for IDs, besides the agenda files.
25415 : When Org reparses files to remake the list of files and IDs it is tracking,
25416 : it will normally scan the agenda files, the archives related to agenda files,
25417 : any files that are listed as ID containing in the current register, and
25418 : any Org file currently visited by Emacs.
25419 : You can list additional files here.
25420 : This variable is only relevant when `org-id-track-globally' is set.
25422 ** org-export-initial-scope =(funcall (function (closure (t...=
25423    :PROPERTIES:
25424    :CUSTOM_ID: org-export-initial-scope
25425    :END:
25427 - *Type:* (choice (const :tag "Export cu...
25428 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
25429 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-initial-scope][Find modifications in git logs]]
25431 : The initial scope when exporting with `org-export-dispatch'.
25432 : This variable can be either set to `buffer' or `subtree'.
25434 ** org-use-speed-commands =(funcall (function (closure (f...=
25435    :PROPERTIES:
25436    :CUSTOM_ID: org-use-speed-commands
25437    :END:
25439 - *Type:* (choice (const :tag "Never" ni...
25440 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25441 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-use-speed-commands][Find modifications in git logs]]
25443 : Non-nil means activate single letter commands at beginning of a headline.
25444 : This may also be a function to test for appropriate locations where speed
25445 : commands should be active.
25447 : For example, to activate speed commands when the point is on any
25448 : star at the beginning of the headline, you can do this:
25450 :   (setq org-use-speed-commands
25451 :       (lambda () (and (looking-at org-outline-regexp) (looking-back "^\**"))))
25453 ** org-agenda-skip-comment-trees =t=
25454    :PROPERTIES:
25455    :CUSTOM_ID: org-agenda-skip-comment-trees
25456    :END:
25458 - *Type:* boolean
25459 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25460 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-skip-comment-trees][Find modifications in git logs]]
25462 : Non-nil means skip trees that start with the COMMENT keyword.
25463 : When nil, these trees are also scanned by agenda commands.
25465 ** org-latex-default-packages-alist =(funcall (function (closure (f...=
25466    :PROPERTIES:
25467    :CUSTOM_ID: org-latex-default-packages-alist
25468    :END:
25470 - *Type:* (repeat (choice (list :tag "op...
25471 - *Since:* Emacs version 26.1
25472 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25473 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-default-packages-alist][Find modifications in git logs]]
25475 : Alist of default packages to be inserted in the header.
25477 : Change this only if one of the packages here causes an
25478 : incompatibility with another package you are using.
25480 : The packages in this list are needed by one part or another of
25481 : Org mode to function properly:
25483 : - inputenc, fontenc:  for basic font and character selection
25484 : - graphicx: for including images
25485 : - grffile: allow periods and spaces in graphics file names
25486 : - longtable: For multipage tables
25487 : - wrapfig: for figure placement
25488 : - rotating: for sideways figures and tables
25489 : - ulem: for underline and strike-through
25490 : - amsmath: for subscript and superscript and math environments
25491 : - textcomp, amssymb: for various symbols used
25492 :   for interpreting the entities in `org-entities'.  You can skip
25493 :   some of these packages if you don't use any of their symbols.
25494 : - capt-of: for captions outside of floats
25495 : - hyperref: for cross references
25497 : Therefore you should not modify this variable unless you know
25498 : what you are doing.  The one reason to change it anyway is that
25499 : you might be loading some other package that conflicts with one
25500 : of the default packages.  Each element is either a cell or
25501 : a string.
25503 : A cell is of the format
25505 :   ("options" "package" SNIPPET-FLAG COMPILERS)
25507 : If SNIPPET-FLAG is non-nil, the package also needs to be included
25508 : when compiling LaTeX snippets into images for inclusion into
25509 : non-LaTeX output.  COMPILERS is a list of compilers that should
25510 : include the package, see `org-latex-compiler'.  If the document
25511 : compiler is not in the list, and the list is non-nil, the package
25512 : will not be inserted in the final document.
25514 : A string will be inserted as-is in the header of the document.
25516 ** org-export-with-email =(funcall (function (closure (t...=
25517    :PROPERTIES:
25518    :CUSTOM_ID: org-export-with-email
25519    :END:
25521 - *Type:* boolean
25522 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
25523 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-email][Find modifications in git logs]]
25525 : Non-nil means insert author email into the exported file.
25526 : This option can also be set with the OPTIONS keyword,
25527 : e.g. "email:t".
25529 ** org-rss-extension ="xml"=
25530    :PROPERTIES:
25531    :CUSTOM_ID: org-rss-extension
25532    :END:
25534 - *Type:* string
25535 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-rss.el][ox-rss.el]]
25536 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-rss-extension][Find modifications in git logs]]
25538 : File extension for the RSS 2.0 feed.
25540 ** org-bibtex-export-arbitrary-fields =(funcall (function (closure (t...=
25541    :PROPERTIES:
25542    :CUSTOM_ID: org-bibtex-export-arbitrary-fields
25543    :END:
25545 - *Type:* boolean
25546 - *Since:* Emacs version 24.1
25547 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-bibtex.el][org-bibtex.el]]
25548 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-bibtex-export-arbitrary-fields][Find modifications in git logs]]
25550 : When converting to bibtex allow fields not defined in `org-bibtex-fields'.
25551 : This only has effect if `org-bibtex-prefix' is defined, so as to
25552 : ensure that other org-properties, such as CATEGORY or LOGGING are
25553 : not placed in the exported bibtex entry.
25555 ** org-agenda-persistent-marks =nil=
25556    :PROPERTIES:
25557    :CUSTOM_ID: org-agenda-persistent-marks
25558    :END:
25560 - *Type:* boolean
25561 - *Since:* Emacs version 24.1
25562 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25563 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-persistent-marks][Find modifications in git logs]]
25565 : Non-nil means marked items will stay marked after a bulk action.
25566 : You can toggle this interactively by typing `p' when prompted for a
25567 : bulk action.
25569 ** org-latex-inputenc-alist =(funcall (function (closure (t...=
25570    :PROPERTIES:
25571    :CUSTOM_ID: org-latex-inputenc-alist
25572    :END:
25574 - *Type:* (repeat (cons (string :tag "De...
25575 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
25576 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-inputenc-alist][Find modifications in git logs]]
25578 : Alist of inputenc coding system names, and what should really be used.
25579 : For example, adding an entry
25581 :       ("utf8" . "utf8x")
25583 : will cause \usepackage[utf8x]{inputenc} to be used for buffers that
25584 : are written as utf8 files.
25586 ** org-scheduled-past-days =10000=
25587    :PROPERTIES:
25588    :CUSTOM_ID: org-scheduled-past-days
25589    :END:
25591 - *Type:* integer
25592 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25593 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-scheduled-past-days][Find modifications in git logs]]
25595 : Number of days to continue listing scheduled items not marked DONE.
25596 : When an item is scheduled on a date, it shows up in the agenda on
25597 : this day and will be listed until it is marked done or for the
25598 : number of days given here.
25600 ** org-attach-annex-auto-get =(funcall (function (closure (t...=
25601    :PROPERTIES:
25602    :CUSTOM_ID: org-attach-annex-auto-get
25603    :END:
25605 - *Type:* (choice (const :tag "confirm w...
25606 - *Since:* Emacs version 26.1
25607 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
25608 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-annex-auto-get][Find modifications in git logs]]
25610 : Confirmation preference for automatically getting annex files.
25611 : If \='ask, prompt using `y-or-n-p'.  If t, always get.  If nil, never get.
25613 ** org-format-latex-options =(funcall (function (closure (f...=
25614    :PROPERTIES:
25615    :CUSTOM_ID: org-format-latex-options
25616    :END:
25618 - *Type:* plist
25619 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25620 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-format-latex-options][Find modifications in git logs]]
25622 : Options for creating images from LaTeX fragments.
25623 : This is a property list with the following properties:
25624 : :foreground  the foreground color for images embedded in Emacs, e.g. "Black".
25625 :              `default' means use the foreground of the default face.
25626 :              `auto' means use the foreground from the text face.
25627 : :background  the background color, or "Transparent".
25628 :              `default' means use the background of the default face.
25629 :              `auto' means use the background from the text face.
25630 : :scale       a scaling factor for the size of the images, to get more pixels
25631 : :html-foreground, :html-background, :html-scale
25632 :              the same numbers for HTML export.
25633 : :matchers    a list indicating which matchers should be used to
25634 :              find LaTeX fragments.  Valid members of this list are:
25635 :              "begin" find environments
25636 :              "$1"    find single characters surrounded by $.$
25637 :              "$"     find math expressions surrounded by $...$
25638 :              "$$"    find math expressions surrounded by $$....$$
25639 :              "\("    find math expressions surrounded by \(...\)
25640 :              "\=\["    find math expressions surrounded by \=\[...\]
25642 ** org-babel-lisp-eval-fn =(funcall (function (closure (t...=
25643    :PROPERTIES:
25644    :CUSTOM_ID: org-babel-lisp-eval-fn
25645    :END:
25647 - *Type:* function
25648 - *Since:* Emacs version 26.1
25649 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lisp.el][ob-lisp.el]]
25650 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lisp-eval-fn][Find modifications in git logs]]
25652 : The function to be called to evaluate code on the Lisp side.
25653 : Valid values include `slime-eval' and `sly-eval'.
25655 ** org-latex-compiler-file-string =(funcall (function (closure (t...=
25656    :PROPERTIES:
25657    :CUSTOM_ID: org-latex-compiler-file-string
25658    :END:
25660 - *Type:* (choice (const :tag "Comment" ...
25661 - *Since:* Emacs version 26.1
25662 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
25663 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-compiler-file-string][Find modifications in git logs]]
25665 : LaTeX compiler format-string.
25666 : See also `org-latex-compiler'.
25668 ** org-texinfo-logfiles-extensions =(funcall (function (closure (t...=
25669    :PROPERTIES:
25670    :CUSTOM_ID: org-texinfo-logfiles-extensions
25671    :END:
25673 - *Type:* (repeat (string :tag "Extensio...
25674 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
25675 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-logfiles-extensions][Find modifications in git logs]]
25677 : The list of file extensions to consider as Texinfo logfiles.
25678 : The logfiles will be remove if `org-texinfo-remove-logfiles' is
25679 : non-nil.
25681 ** org-export-global-macros =(funcall (function (closure (t...=
25682    :PROPERTIES:
25683    :CUSTOM_ID: org-export-global-macros
25684    :END:
25686 - *Type:* (repeat (cons (string :tag "Na...
25687 - *Since:* Emacs version 26.1
25688 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
25689 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-global-macros][Find modifications in git logs]]
25691 : Alist between macro names and expansion templates.
25693 : This variable defines macro expansion templates available
25694 : globally.  Associations follow the pattern
25696 :   (NAME . TEMPLATE)
25698 : where NAME is a string beginning with a letter and consisting of
25699 : alphanumeric characters only.
25701 : TEMPLATE is the string to which the macro is going to be
25702 : expanded.  Inside, "$1", "$2"... are place-holders for
25703 : macro's arguments.  Moreover, if the template starts with
25704 : "(eval", it will be parsed as an Elisp expression and evaluated
25705 : accordingly.
25707 ** org-ascii-table-widen-columns =(funcall (function (closure (t...=
25708    :PROPERTIES:
25709    :CUSTOM_ID: org-ascii-table-widen-columns
25710    :END:
25712 - *Type:* boolean
25713 - *Since:* Emacs version 24.4
25714 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
25715 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-table-widen-columns][Find modifications in git logs]]
25717 : Non-nil means widen narrowed columns for export.
25718 : When nil, narrowed columns will look in ASCII export just like in
25719 : Org mode, i.e. with "=>" as ellipsis.
25721 ** org-agenda-confirm-kill =1=
25722    :PROPERTIES:
25723    :CUSTOM_ID: org-agenda-confirm-kill
25724    :END:
25726 - *Type:* (choice (const :tag "Never" ni...
25727 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25728 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-confirm-kill][Find modifications in git logs]]
25730 : When set, remote killing from the agenda buffer needs confirmation.
25731 : When t, a confirmation is always needed.  When a number N, confirmation is
25732 : only needed when the text to be killed contains more than N non-white lines.
25734 ** org-habit-today-glyph =(funcall (function (closure (t...=
25735    :PROPERTIES:
25736    :CUSTOM_ID: org-habit-today-glyph
25737    :END:
25739 - *Type:* character
25740 - *Since:* Emacs version 24.1
25741 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
25742 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-today-glyph][Find modifications in git logs]]
25744 : Glyph character used to identify today.
25746 ** org-mobile-files =(funcall (function (closure (t...=
25747    :PROPERTIES:
25748    :CUSTOM_ID: org-mobile-files
25749    :END:
25751 - *Type:* (list :greedy t (option (const...
25752 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-mobile.el][org-mobile.el]]
25753 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mobile-files][Find modifications in git logs]]
25755 : Files to be staged for MobileOrg.
25756 : This is basically a list of files and directories.  Files will be staged
25757 : directly.  Directories will be search for files with the extension `.org'.
25758 : In addition to this, the list may also contain the following symbols:
25760 : org-agenda-files
25761 :      This means include the complete, unrestricted list of files given in
25762 :      the variable `org-agenda-files'.
25763 : org-agenda-text-search-extra-files
25764 :      Include the files given in the variable
25765 :      `org-agenda-text-search-extra-files'
25767 ** org-babel-java-command =(funcall (function (closure (t...=
25768    :PROPERTIES:
25769    :CUSTOM_ID: org-babel-java-command
25770    :END:
25772 - *Type:* string
25773 - *Since:* Emacs version 24.3
25774 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-java.el][ob-java.el]]
25775 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-java-command][Find modifications in git logs]]
25777 : Name of the java command.
25778 : May be either a command in the path, like java
25779 : or an absolute path name, like /usr/local/bin/java
25780 : parameters may be used, like java -verbose
25782 ** org-tab-follows-link =(funcall (function (closure (f...=
25783    :PROPERTIES:
25784    :CUSTOM_ID: org-tab-follows-link
25785    :END:
25787 - *Type:* boolean
25788 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25789 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tab-follows-link][Find modifications in git logs]]
25791 : Non-nil means on links TAB will follow the link.
25792 : Needs to be set before org.el is loaded.
25793 : This really should not be used, it does not make sense, and the
25794 : implementation is bad.
25796 ** org-enable-priority-commands =(funcall (function (closure (f...=
25797    :PROPERTIES:
25798    :CUSTOM_ID: org-enable-priority-commands
25799    :END:
25801 - *Type:* boolean
25802 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25803 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-enable-priority-commands][Find modifications in git logs]]
25805 : Non-nil means priority commands are active.
25806 : When nil, these commands will be disabled, so that you never accidentally
25807 : set a priority.
25809 ** org-babel-java-compiler =(funcall (function (closure (t...=
25810    :PROPERTIES:
25811    :CUSTOM_ID: org-babel-java-compiler
25812    :END:
25814 - *Type:* string
25815 - *Since:* Emacs version 24.3
25816 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-java.el][ob-java.el]]
25817 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-java-compiler][Find modifications in git logs]]
25819 : Name of the java compiler.
25820 : May be either a command in the path, like javac
25821 : or an absolute path name, like /usr/local/bin/javac
25822 : parameters may be used, like javac -verbose
25824 ** org-indent-indentation-per-level =(funcall (function (closure (t...=
25825    :PROPERTIES:
25826    :CUSTOM_ID: org-indent-indentation-per-level
25827    :END:
25829 - *Type:* integer
25830 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-indent.el][org-indent.el]]
25831 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-indent-indentation-per-level][Find modifications in git logs]]
25833 : Indentation per level in number of characters.
25835 ** org-odt-with-latex =(funcall (function (closure (h...=
25836    :PROPERTIES:
25837    :CUSTOM_ID: org-odt-with-latex
25838    :END:
25840 - *Type:* (choice (const :tag "Do not pr...
25841 - *Since:* Emacs version 24.4
25842 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
25843 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-with-latex][Find modifications in git logs]]
25845 : Non-nil means process LaTeX math snippets.
25847 : When set, the exporter will process LaTeX environments and
25848 : fragments.
25850 : This option can also be set with the +OPTIONS line,
25851 : e.g. "tex:mathjax".  Allowed values are:
25853 : nil            Ignore math snippets.
25854 : `verbatim'     Keep everything in verbatim
25855 : `dvipng'       Process the LaTeX fragments to images.  This will also
25856 :                include processing of non-math environments.
25857 : `imagemagick'  Convert the LaTeX fragments to pdf files and use
25858 :                imagemagick to convert pdf files to png files.
25859 : `mathjax'      Do MathJax preprocessing and arrange for MathJax.js to
25860 :                be loaded.
25861 : t              Synonym for `mathjax'.
25863 ** org-habit-show-habits =(funcall (function (closure (t...=
25864    :PROPERTIES:
25865    :CUSTOM_ID: org-habit-show-habits
25866    :END:
25868 - *Type:* boolean
25869 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
25870 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-show-habits][Find modifications in git logs]]
25872 : If non-nil, show habits in agenda buffers.
25874 ** org-agenda-weekend-days =(quote (6 0))=
25875    :PROPERTIES:
25876    :CUSTOM_ID: org-agenda-weekend-days
25877    :END:
25879 - *Type:* (set :greedy t (const :tag "Mo...
25880 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25881 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-weekend-days][Find modifications in git logs]]
25883 : Which days are weekend?
25884 : These days get the special face `org-agenda-date-weekend' in the agenda
25885 : and timeline buffers.
25887 ** org-habit-preceding-days =(funcall (function (closure (t...=
25888    :PROPERTIES:
25889    :CUSTOM_ID: org-habit-preceding-days
25890    :END:
25892 - *Type:* integer
25893 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-habit.el][org-habit.el]]
25894 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-habit-preceding-days][Find modifications in git logs]]
25896 : Number of days before today to appear in consistency graphs.
25898 ** org-texinfo-coding-system =(funcall (function (closure (t...=
25899    :PROPERTIES:
25900    :CUSTOM_ID: org-texinfo-coding-system
25901    :END:
25903 - *Type:* coding-system
25904 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
25905 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-coding-system][Find modifications in git logs]]
25907 : Default document encoding for Texinfo output.
25909 : If nil it will default to `buffer-file-coding-system'.
25911 ** org-yank-adjusted-subtrees =(funcall (function (closure (f...=
25912    :PROPERTIES:
25913    :CUSTOM_ID: org-yank-adjusted-subtrees
25914    :END:
25916 - *Type:* boolean
25917 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
25918 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-yank-adjusted-subtrees][Find modifications in git logs]]
25920 : Non-nil means when yanking subtrees, adjust the level.
25921 : With this setting, `org-paste-subtree' is used to insert the subtree, see
25922 : this function for details.
25924 ** org-id-locations-file =(funcall (function (closure (t...=
25925    :PROPERTIES:
25926    :CUSTOM_ID: org-id-locations-file
25927    :END:
25929 - *Type:* file
25930 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
25931 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-locations-file][Find modifications in git logs]]
25933 : The file for remembering in which file an ID was defined.
25934 : This variable is only relevant when `org-id-track-globally' is set.
25936 ** org-agenda-deadline-leaders =(quote ("Deadline:  " "In %3d ...=
25937    :PROPERTIES:
25938    :CUSTOM_ID: org-agenda-deadline-leaders
25939    :END:
25941 - *Type:* (list (string :tag "Deadline t...
25942 - *Since:* Emacs version 24.4
25943 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
25944 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-deadline-leaders][Find modifications in git logs]]
25946 : Text preceding deadline items in the agenda view.
25947 : This is a list with three strings.  The first applies when the item has its
25948 : deadline on the current day.  The second applies when the deadline is in the
25949 : future, the third one when it is in the past.  The strings may contain %d
25950 : to capture the number of days.
25952 ** org-clock-goto-before-context =(funcall (function (closure (t...=
25953    :PROPERTIES:
25954    :CUSTOM_ID: org-clock-goto-before-context
25955    :END:
25957 - *Type:* integer
25958 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
25959 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-goto-before-context][Find modifications in git logs]]
25961 : Number of lines of context to display before currently clocked-in entry.
25962 : This applies when using `org-clock-goto'.
25964 ** org-html-head-extra =(funcall (function (closure (h...=
25965    :PROPERTIES:
25966    :CUSTOM_ID: org-html-head-extra
25967    :END:
25969 - *Type:* string
25970 - *Since:* Emacs version 24.4
25971 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
25972 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-head-extra][Find modifications in git logs]]
25974 : More head information to add in the HTML output.
25976 : You can set this on a per-file basis using #+HTML_HEAD_EXTRA:,
25977 : or for publication projects using the :html-head-extra property.
25979 ** org-babel-latex-htlatex =(funcall (function (closure (t...=
25980    :PROPERTIES:
25981    :CUSTOM_ID: org-babel-latex-htlatex
25982    :END:
25984 - *Type:* string
25985 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-latex.el][ob-latex.el]]
25986 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-latex-htlatex][Find modifications in git logs]]
25988 : The htlatex command to enable conversion of latex to SVG or HTML.
25990 ** org-latex-table-scientific-notation =(funcall (function (closure (t...=
25991    :PROPERTIES:
25992    :CUSTOM_ID: org-latex-table-scientific-notation
25993    :END:
25995 - *Type:* (choice (string :tag "Format s...
25996 - *Since:* Emacs version 24.4
25997 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
25998 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-table-scientific-notation][Find modifications in git logs]]
26000 : Format string to display numbers in scientific notation.
26001 : The format should have "%s" twice, for mantissa and exponent
26002 : (i.e., "%s\\times10^{%s}").
26004 : When nil, no transformation is made.
26006 ** org-texinfo-format-inlinetask-function =(funcall (function (closure (t...=
26007    :PROPERTIES:
26008    :CUSTOM_ID: org-texinfo-format-inlinetask-function
26009    :END:
26011 - *Type:* function
26012 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
26013 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-format-inlinetask-function][Find modifications in git logs]]
26015 : Function called to format an inlinetask in Texinfo code.
26017 : The function must accept six parameters:
26018 :   TODO      the todo keyword, as a string
26019 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
26020 :   PRIORITY  the inlinetask priority, as a string
26021 :   NAME      the inlinetask name, as a string.
26022 :   TAGS      the inlinetask tags, as a list of strings.
26023 :   CONTENTS  the contents of the inlinetask, as a string.
26025 : The function should return the string to be exported.
26027 ** org-koma-letter-place =""=
26028    :PROPERTIES:
26029    :CUSTOM_ID: org-koma-letter-place
26030    :END:
26032 - *Type:* string
26033 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
26034 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-place][Find modifications in git logs]]
26036 : Place from which the letter is sent, as a string.
26037 : This option can also be set with the PLACE keyword.
26039 ** org-sparse-tree-open-archived-trees =(funcall (function (closure (t...=
26040    :PROPERTIES:
26041    :CUSTOM_ID: org-sparse-tree-open-archived-trees
26042    :END:
26044 - *Type:* boolean
26045 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26046 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-sparse-tree-open-archived-trees][Find modifications in git logs]]
26048 : Non-nil means sparse tree construction shows matches in archived trees.
26049 : When nil, matches in these trees are highlighted, but the trees are kept in
26050 : collapsed state.
26052 ** org-attach-commit =(funcall (function (closure (t...=
26053    :PROPERTIES:
26054    :CUSTOM_ID: org-attach-commit
26055    :END:
26057 - *Type:* boolean
26058 - *Since:* Emacs version 26.1
26059 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
26060 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-commit][Find modifications in git logs]]
26062 : If non-nil commit attachments with git.
26063 : This is only done if the Org file is in a git repository.
26065 ** org-todo-keyword-faces =(funcall (function (closure (t...=
26066    :PROPERTIES:
26067    :CUSTOM_ID: org-todo-keyword-faces
26068    :END:
26070 - *Type:* (repeat (cons (string :tag "Ke...
26071 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
26072 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-todo-keyword-faces][Find modifications in git logs]]
26074 : Faces for specific TODO keywords.
26075 : This is a list of cons cells, with TODO keywords in the car
26076 : and faces in the cdr.  The face can be a symbol, a color
26077 : as a string (in which case the rest is inherited from the `org-todo' face),
26078 : or a property list of attributes, like
26079 :    (:foreground "blue" :weight bold :underline t).
26080 : If it is a color string, the variable `org-faces-easy-properties'
26081 : determines if it is a foreground or a background color.
26083 ** org-agenda-search-view-force-full-words =nil=
26084    :PROPERTIES:
26085    :CUSTOM_ID: org-agenda-search-view-force-full-words
26086    :END:
26088 - *Type:* boolean
26089 - *Since:* Emacs version 24.1
26090 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26091 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-search-view-force-full-words][Find modifications in git logs]]
26093 : Non-nil means, search words must be matches as complete words.
26094 : When nil, they may also match part of a word.
26096 ** org-icalendar-timezone =(funcall (function (closure (t...=
26097    :PROPERTIES:
26098    :CUSTOM_ID: org-icalendar-timezone
26099    :END:
26101 - *Type:* (choice (const :tag "Unspecifi...
26102 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-icalendar.el][ox-icalendar.el]]
26103 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-icalendar-timezone][Find modifications in git logs]]
26105 : The time zone string for iCalendar export.
26106 : When nil or the empty string, use output
26107 : from (current-time-zone).
26109 ** org-open-directory-means-index-dot-org =(funcall (function (closure (f...=
26110    :PROPERTIES:
26111    :CUSTOM_ID: org-open-directory-means-index-dot-org
26112    :END:
26114 - *Type:* boolean
26115 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26116 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-open-directory-means-index-dot-org][Find modifications in git logs]]
26118 : Non-nil means a link to a directory really means to index.org.
26119 : When nil, following a directory link will run dired or open a finder/explorer
26120 : window on that directory.
26122 ** org-footnote-fill-after-inline-note-extraction =(funcall (function (closure (t...=
26123    :PROPERTIES:
26124    :CUSTOM_ID: org-footnote-fill-after-inline-note-extraction
26125    :END:
26127 - *Type:* boolean
26128 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
26129 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-fill-after-inline-note-extraction][Find modifications in git logs]]
26131 : Non-nil means fill paragraphs after extracting footnotes.
26132 : When extracting inline footnotes, the lengths of lines can change a lot.
26133 : When this option is set, paragraphs from which an inline footnote has been
26134 : extracted will be filled again.
26136 ** org-calendar-insert-diary-entry-key =(funcall (function (closure (f...=
26137    :PROPERTIES:
26138    :CUSTOM_ID: org-calendar-insert-diary-entry-key
26139    :END:
26141 - *Type:* sexp
26142 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26143 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-calendar-insert-diary-entry-key][Find modifications in git logs]]
26145 : The key to be installed in `calendar-mode-map' for adding diary entries.
26146 : This option is irrelevant until `org-agenda-diary-file' has been configured
26147 : to point to an Org file.  When that is the case, the command
26148 : `org-agenda-diary-entry' will be bound to the key given here, by default
26149 : `i'.  In the calendar, `i' normally adds entries to `diary-file'.  So
26150 : if you want to continue doing this, you need to change this to a different
26151 : key.
26153 ** org-beamer-frame-level =(funcall (function (closure (t...=
26154    :PROPERTIES:
26155    :CUSTOM_ID: org-beamer-frame-level
26156    :END:
26158 - *Type:* integer
26159 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
26160 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-frame-level][Find modifications in git logs]]
26162 : The level at which headlines become frames.
26164 : Headlines at a lower level will be translated into a sectioning
26165 : structure.  At a higher level, they will be translated into
26166 : blocks.
26168 : If a headline with a "BEAMER_env" property set to "frame" is
26169 : found within a tree, its level locally overrides this number.
26171 : This variable has no effect on headlines with the "BEAMER_env"
26172 : property set to either "ignoreheading", "appendix", or
26173 : "note", which will respectively, be invisible, become an
26174 : appendix or a note.
26176 : This integer is relative to the minimal level of a headline
26177 : within the parse tree, defined as 1.
26179 ** org-latex-prefer-user-labels =(funcall (function (closure (t...=
26180    :PROPERTIES:
26181    :CUSTOM_ID: org-latex-prefer-user-labels
26182    :END:
26184 - *Type:* boolean
26185 - *Since:* Emacs version 26.1
26186 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
26187 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-prefer-user-labels][Find modifications in git logs]]
26189 : Use user-provided labels instead of internal ones when non-nil.
26191 : When this variable is non-nil, Org will use the value of
26192 : CUSTOM_ID property, NAME keyword or Org target as the key for the
26193 : \label commands generated.
26195 : By default, Org generates its own internal labels during LaTeX
26196 : export.  This process ensures that the \label keys are unique
26197 : and valid, but it means the keys are not available in advance of
26198 : the export process.
26200 : Setting this variable gives you control over how Org generates
26201 : labels during LaTeX export, so that you may know their keys in
26202 : advance.  One reason to do this is that it allows you to refer to
26203 : various elements using a single label both in Org's link syntax
26204 : and in embedded LaTeX code.
26206 : For example, when this variable is non-nil, a headline like this:
26208 :   ** Some section
26209 :      :PROPERTIES:
26210 :      :CUSTOM_ID: sec:foo
26211 :      :END:
26212 :   This is section [[#sec:foo]].
26213 :   #+BEGIN_EXPORT latex
26214 :   And this is still section \ref{sec:foo}.
26215 :   #+END_EXPORT
26217 : will be exported to LaTeX as:
26219 :   \subsection{Some section}
26220 :   \label{sec:foo}
26221 :   This is section \ref{sec:foo}.
26222 :   And this is still section \ref{sec:foo}.
26224 : Note, however, that setting this variable introduces a limitation
26225 : on the possible values for CUSTOM_ID and NAME.  When this
26226 : variable is non-nil, Org passes their value to \label unchanged.
26227 : You are responsible for ensuring that the value is a valid LaTeX
26228 : \label key, and that no other \label commands with the same key
26229 : appear elsewhere in your document.  (Keys may contain letters,
26230 : numbers, and the following punctuation: '_' '.'  '-' ':'.)  There
26231 : are no such limitations on CUSTOM_ID and NAME when this variable
26232 : is nil.
26234 : For headlines that do not define the CUSTOM_ID property or
26235 : elements without a NAME, Org will continue to use its default
26236 : labeling scheme to generate labels and resolve links into proper
26237 : references.
26239 ** org-html-klipse-css =(funcall (function (closure (h...=
26240    :PROPERTIES:
26241    :CUSTOM_ID: org-html-klipse-css
26242    :END:
26244 - *Type:* string
26245 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
26246 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-klipse-css][Find modifications in git logs]]
26248 : Location of the codemirror CSS file for use with klipse.
26250 ** org-export-with-tasks =(funcall (function (closure (t...=
26251    :PROPERTIES:
26252    :CUSTOM_ID: org-export-with-tasks
26253    :END:
26255 - *Type:* (choice (const :tag "All tasks...
26256 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
26257 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-tasks][Find modifications in git logs]]
26259 : Non-nil means include TODO items for export.
26261 : This may have the following values:
26262 : t                    include tasks independent of state.
26263 : `todo'               include only tasks that are not yet done.
26264 : `done'               include only tasks that are already done.
26265 : nil                  ignore all tasks.
26266 : list of keywords     include tasks with these keywords.
26268 : This option can also be set with the OPTIONS keyword,
26269 : e.g. "tasks:nil".
26271 ** org-mouse-1-follows-link =(funcall (function (closure (f...=
26272    :PROPERTIES:
26273    :CUSTOM_ID: org-mouse-1-follows-link
26274    :END:
26276 - *Type:* (choice (const :tag "A double ...
26277 - *Since:* Emacs version 24.4
26278 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26279 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-mouse-1-follows-link][Find modifications in git logs]]
26281 : Non-nil means mouse-1 on a link will follow the link.
26282 : A longer mouse click will still set point.  Needs to be set
26283 : before org.el is loaded.
26285 ** org-file-apps =(funcall (function (closure (f...=
26286    :PROPERTIES:
26287    :CUSTOM_ID: org-file-apps
26288    :END:
26290 - *Type:* (repeat (cons (choice :value "...
26291 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26292 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-file-apps][Find modifications in git logs]]
26294 : External applications for opening `file:path' items in a document.
26295 : \<org-mode-map>
26296 : Org mode uses system defaults for different file types, but
26297 : you can use this variable to set the application for a given file
26298 : extension.  The entries in this list are cons cells where the car identifies
26299 : files and the cdr the corresponding command.
26301 : Possible values for the file identifier are:
26303 :  "string"    A string as a file identifier can be interpreted in different
26304 :                ways, depending on its contents:
26306 :                - Alphanumeric characters only:
26307 :                  Match links with this file extension.
26308 :                  Example: ("pdf" . "evince %s")
26309 :                           to open PDFs with evince.
26311 :                - Regular expression: Match links where the
26312 :                  filename matches the regexp.  If you want to
26313 :                  use groups here, use shy groups.
26315 :                  Example: ("\\.x?html\\\='" . "firefox %s")
26316 :                           ("\\(?:xhtml\\|html\\)\\\='" . "firefox %s")
26317 :                           to open *.html and *.xhtml with firefox.
26319 :                - Regular expression which contains (non-shy) groups:
26320 :                  Match links where the whole link, including "::", and
26321 :                  anything after that, matches the regexp.
26322 :                  In a custom command string, %1, %2, etc. are replaced with
26323 :                  the parts of the link that were matched by the groups.
26324 :                  For backwards compatibility, if a command string is given
26325 :                  that does not use any of the group matches, this case is
26326 :                  handled identically to the second one (i.e. match against
26327 :                  file name only).
26328 :                  In a custom function, you can access the group matches with
26329 :                  (match-string n link).
26331 :                  Example: ("\\.pdf::\\(\\d+\\)\\\='" . "evince -p %1 %s")
26332 :                      to open [[file:document.pdf::5]] with evince at page 5.
26334 :  `directory'   Matches a directory
26335 :  `remote'      Matches a remote file, accessible through tramp or efs.
26336 :                Remote files most likely should be visited through Emacs
26337 :                because external applications cannot handle such paths.
26338 : `auto-mode'    Matches files that are matched by any entry in `auto-mode-alist',
26339 :                so all files Emacs knows how to handle.  Using this with
26340 :                command `emacs' will open most files in Emacs.  Beware that this
26341 :                will also open html files inside Emacs, unless you add
26342 :                ("html" . default) to the list as well.
26343 :  `system'      The system command to open files, like `open' on Windows
26344 :                and macOS, and mailcap under GNU/Linux.  This is the command
26345 :                that will be selected if you call `org-open-at-point' with a
26346 :                double prefix argument (`\[universal-argument] \[universal-argument] \[org-open-at-point]').
26347 :  t             Default for files not matched by any of the other options.
26349 : Possible values for the command are:
26351 :  `emacs'       The file will be visited by the current Emacs process.
26352 :  `default'     Use the default application for this file type, which is the
26353 :                association for t in the list, most likely in the system-specific
26354 :                part.  This can be used to overrule an unwanted setting in the
26355 :                system-specific variable.
26356 :  `system'      Use the system command for opening files, like "open".
26357 :                This command is specified by the entry whose car is `system'.
26358 :                Most likely, the system-specific version of this variable
26359 :                does define this command, but you can overrule/replace it
26360 :                here.
26361 : `mailcap'      Use command specified in the mailcaps.
26362 :  string        A command to be executed by a shell; %s will be replaced
26363 :                by the path to the file.
26364 :  function      A Lisp function, which will be called with two arguments:
26365 :                the file path and the original link string, without the
26366 :                "file:" prefix.
26368 : For more examples, see the system specific constants
26369 : `org-file-apps-defaults-macosx'
26370 : `org-file-apps-defaults-windowsnt'
26371 : `org-file-apps-defaults-gnu'.
26373 ** org-level-color-stars-only =(funcall (function (closure (f...=
26374    :PROPERTIES:
26375    :CUSTOM_ID: org-level-color-stars-only
26376    :END:
26378 - *Type:* boolean
26379 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26380 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-level-color-stars-only][Find modifications in git logs]]
26382 : Non-nil means fontify only the stars in each headline.
26383 : When nil, the entire headline is fontified.
26384 : Changing it requires restart of `font-lock-mode' to become effective
26385 : also in regions already fontified.
26387 ** org-agenda-use-tag-inheritance =(quote (todo search timeline a...=
26388    :PROPERTIES:
26389    :CUSTOM_ID: org-agenda-use-tag-inheritance
26390    :END:
26392 - *Type:* (choice (const :tag "Use tag i...
26393 - *Since:* Emacs version 24.3
26394 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26395 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-use-tag-inheritance][Find modifications in git logs]]
26397 : List of agenda view types where to use tag inheritance.
26399 : In tags/tags-todo/tags-tree agenda views, tag inheritance is
26400 : controlled by `org-use-tag-inheritance'.  In other agenda types,
26401 : `org-use-tag-inheritance' is not used for the selection of the
26402 : agenda entries.  Still, you may want the agenda to be aware of
26403 : the inherited tags anyway, e.g. for later tag filtering.
26405 : Allowed value are `todo', `search', `timeline' and `agenda'.
26407 : This variable has no effect if `org-agenda-show-inherited-tags'
26408 : is set to `always'.  In that case, the agenda is aware of those
26409 : tags.
26411 : The default value sets tags in every agenda type.  Setting this
26412 : option to nil will speed up non-tags agenda view a lot.
26414 ** org-extend-today-until =(funcall (function (closure (f...=
26415    :PROPERTIES:
26416    :CUSTOM_ID: org-extend-today-until
26417    :END:
26419 - *Type:* integer
26420 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26421 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-extend-today-until][Find modifications in git logs]]
26423 : The hour when your day really ends.  Must be an integer.
26424 : This has influence for the following applications:
26425 : - When switching the agenda to "today".  It it is still earlier than
26426 :   the time given here, the day recognized as TODAY is actually yesterday.
26427 : - When a date is read from the user and it is still before the time given
26428 :   here, the current date and time will be assumed to be yesterday, 23:59.
26429 :   Also, timestamps inserted in capture templates follow this rule.
26431 : IMPORTANT:  This is a feature whose implementation is and likely will
26432 : remain incomplete.  Really, it is only here because past midnight seems to
26433 : be the favorite working time of John Wiegley :-)
26435 ** org-outline-path-complete-in-steps =(funcall (function (closure (f...=
26436    :PROPERTIES:
26437    :CUSTOM_ID: org-outline-path-complete-in-steps
26438    :END:
26440 - *Type:* boolean
26441 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26442 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-outline-path-complete-in-steps][Find modifications in git logs]]
26444 : Non-nil means complete the outline path in hierarchical steps.
26445 : When Org uses the refile interface to select an outline path (see
26446 : `org-refile-use-outline-path'), the completion of the path can be
26447 : done in a single go, or it can be done in steps down the headline
26448 : hierarchy.  Going in steps is probably the best if you do not use
26449 : a special completion package like `ido' or `icicles'.  However,
26450 : when using these packages, going in one step can be very fast,
26451 : while still showing the whole path to the entry.
26453 ** org-odt-content-template-file =(funcall (function (closure (h...=
26454    :PROPERTIES:
26455    :CUSTOM_ID: org-odt-content-template-file
26456    :END:
26458 - *Type:* (choice (const nil) (file))
26459 - *Since:* Emacs version 24.3
26460 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
26461 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-content-template-file][Find modifications in git logs]]
26463 : Template file for "content.xml".
26464 : The exporter embeds the exported content just before
26465 : "</office:text>" element.
26467 : If unspecified, the file named "OrgOdtContentTemplate.xml"
26468 : under `org-odt-styles-dir' is used.
26470 ** org-log-repeat =(funcall (function (closure (f...=
26471    :PROPERTIES:
26472    :CUSTOM_ID: org-log-repeat
26473    :END:
26475 - *Type:* (choice (const :tag "Don't for...
26476 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26477 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-log-repeat][Find modifications in git logs]]
26479 : Non-nil means record moving through the DONE state when triggering repeat.
26480 : An auto-repeating task is immediately switched back to TODO when
26481 : marked DONE.  If you are not logging state changes (by adding "@"
26482 : or "!" to the TODO keyword definition), or set `org-log-done' to
26483 : record a closing note, there will be no record of the task moving
26484 : through DONE.  This variable forces taking a note anyway.
26486 : nil     Don't force a record
26487 : time    Record a time stamp
26488 : note    Prompt for a note and add it with template `org-log-note-headings'
26490 : This option can also be set with on a per-file-basis with
26492 :    #+STARTUP: nologrepeat
26493 :    #+STARTUP: logrepeat
26494 :    #+STARTUP: lognoterepeat
26496 : You can have local logging settings for a subtree by setting the LOGGING
26497 : property to one or more of these keywords.
26499 ** org-html-table-row-close-tag =(funcall (function (closure (h...=
26500    :PROPERTIES:
26501    :CUSTOM_ID: org-html-table-row-close-tag
26502    :END:
26504 - *Type:* (choice :tag "Closing tag" (st...
26505 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
26506 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-table-row-close-tag][Find modifications in git logs]]
26508 : The closing tag for table rows.
26509 : This is customizable so that alignment options can be specified.
26510 : Instead of strings, this can be a Lisp function that will be
26511 : evaluated for each row in order to construct the table row tags.
26513 : See documentation of `org-html-table-row-open-tag'.
26515 ** org-latex-image-default-option =(funcall (function (closure (t...=
26516    :PROPERTIES:
26517    :CUSTOM_ID: org-latex-image-default-option
26518    :END:
26520 - *Type:* string
26521 - *Since:* Emacs version 24.4
26522 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
26523 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-image-default-option][Find modifications in git logs]]
26525 : Default option for images.
26527 ** org-latex-format-drawer-function =(funcall (function (closure (t...=
26528    :PROPERTIES:
26529    :CUSTOM_ID: org-latex-format-drawer-function
26530    :END:
26532 - *Type:* function
26533 - *Since:* Emacs version 24.4
26534 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
26535 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-format-drawer-function][Find modifications in git logs]]
26537 : Function called to format a drawer in LaTeX code.
26539 : The function must accept two parameters:
26540 :   NAME      the drawer name, like "LOGBOOK"
26541 :   CONTENTS  the contents of the drawer.
26543 : The function should return the string to be exported.
26545 : The default function simply returns the value of CONTENTS.
26547 ** org-agenda-with-colors =t=
26548    :PROPERTIES:
26549    :CUSTOM_ID: org-agenda-with-colors
26550    :END:
26552 - *Type:* boolean
26553 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26554 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-with-colors][Find modifications in git logs]]
26556 : Non-nil means use colors in agenda views.
26558 ** org-agenda-start-with-clockreport-mode =nil=
26559    :PROPERTIES:
26560    :CUSTOM_ID: org-agenda-start-with-clockreport-mode
26561    :END:
26563 - *Type:* boolean
26564 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26565 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-start-with-clockreport-mode][Find modifications in git logs]]
26567 : The initial value of clockreport-mode in a newly created agenda window.
26569 ** org-self-insert-cluster-for-undo =(funcall (function (closure (f...=
26570    :PROPERTIES:
26571    :CUSTOM_ID: org-self-insert-cluster-for-undo
26572    :END:
26574 - *Type:* boolean
26575 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26576 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-self-insert-cluster-for-undo][Find modifications in git logs]]
26578 : Non-nil means cluster self-insert commands for undo when possible.
26579 : If this is set, then, like in the Emacs command loop, 20 consecutive
26580 : characters will be undone together.
26581 : This is configurable, because there is some impact on typing performance.
26583 ** org-edit-src-persistent-message =(funcall (function (closure (t...=
26584    :PROPERTIES:
26585    :CUSTOM_ID: org-edit-src-persistent-message
26586    :END:
26588 - *Type:* boolean
26589 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-src.el][org-src.el]]
26590 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-edit-src-persistent-message][Find modifications in git logs]]
26592 : Non-nil means show persistent exit help message while editing src examples.
26593 : The message is shown in the header-line, which will be created in the
26594 : first line of the window showing the editing buffer.
26596 ** org-protocol-data-separator =(funcall (function (closure (t...=
26597    :PROPERTIES:
26598    :CUSTOM_ID: org-protocol-data-separator
26599    :END:
26601 - *Type:* string
26602 - *Since:* Emacs version 24.4
26603 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-protocol.el][org-protocol.el]]
26604 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-protocol-data-separator][Find modifications in git logs]]
26606 : The default data separator to use.
26607 : This should be a single regexp string.
26609 ** org-agenda-add-entry-text-maxlines =0=
26610    :PROPERTIES:
26611    :CUSTOM_ID: org-agenda-add-entry-text-maxlines
26612    :END:
26614 - *Type:* integer
26615 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26616 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-add-entry-text-maxlines][Find modifications in git logs]]
26618 : Maximum number of entry text lines to be added to agenda.
26619 : This is only relevant when `org-agenda-add-entry-text' is part of
26620 : `org-agenda-before-write-hook', which is the default.
26621 : When this is 0, nothing will happen.  When it is greater than 0, it
26622 : specifies the maximum number of lines that will be added for each entry
26623 : that is listed in the agenda view.
26625 : Note that this variable is not used during display, only when exporting
26626 : the agenda.  For agenda display, see the variables `org-agenda-entry-text-mode'
26627 : and `org-agenda-entry-text-maxlines'.
26629 ** org-texinfo-default-class =(funcall (function (closure (t...=
26630    :PROPERTIES:
26631    :CUSTOM_ID: org-texinfo-default-class
26632    :END:
26634 - *Type:* (string :tag "Texinfo class")
26635 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
26636 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-default-class][Find modifications in git logs]]
26638 : The default Texinfo class.
26640 ** org-agenda-custom-commands-contexts =nil=
26641    :PROPERTIES:
26642    :CUSTOM_ID: org-agenda-custom-commands-contexts
26643    :END:
26645 - *Type:* (repeat (list :tag "Rule" (str...
26646 - *Since:* Emacs version 24.3
26647 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
26648 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-custom-commands-contexts][Find modifications in git logs]]
26650 : Alist of custom agenda keys and contextual rules.
26652 : For example, if you have a custom agenda command "p" and you
26653 : want this command to be accessible only from plain text files,
26654 : use this:
26656 :    \='(("p" ((in-file . "\\.txt\\'"))))
26658 : Here are the available contexts definitions:
26660 :       in-file: command displayed only in matching files
26661 :       in-mode: command displayed only in matching modes
26662 :   not-in-file: command not displayed in matching files
26663 :   not-in-mode: command not displayed in matching modes
26664 :     in-buffer: command displayed only in matching buffers
26665 : not-in-buffer: command not displayed in matching buffers
26666 :    [function]: a custom function taking no argument
26668 : If you define several checks, the agenda command will be
26669 : accessible if there is at least one valid check.
26671 : You can also bind a key to another agenda custom command
26672 : depending on contextual rules.
26674 :     \='(("p" "q" ((in-file . "\\.txt\\'"))))
26676 : Here it means: in .txt files, use "p" as the key for the
26677 : agenda command otherwise associated with "q".  (The command
26678 : originally associated with "q" is not displayed to avoid
26679 : duplicates.)
26681 ** org-id-link-to-org-use-id =(funcall (function (closure (t...=
26682    :PROPERTIES:
26683    :CUSTOM_ID: org-id-link-to-org-use-id
26684    :END:
26686 - *Type:* (choice (const :tag "Create ID...
26687 - *Since:* Emacs version 24.3
26688 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-id.el][org-id.el]]
26689 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-id-link-to-org-use-id][Find modifications in git logs]]
26691 : Non-nil means storing a link to an Org file will use entry IDs.
26692 : \<org-mode-map>
26693 : The variable can have the following values:
26695 : t     Create an ID if needed to make a link to the current entry.
26697 : create-if-interactive
26698 :       If `org-store-link' is called directly (interactively, as a user
26699 :       command), do create an ID to support the link.  But when doing the
26700 :       job for capture, only use the ID if it already exists.  The
26701 :       purpose of this setting is to avoid proliferation of unwanted
26702 :       IDs, just because you happen to be in an Org file when you
26703 :       call `org-capture' that automatically and preemptively creates a
26704 :       link.  If you do want to get an ID link in a capture template to
26705 :       an entry not having an ID, create it first by explicitly creating
26706 :       a link to it, using `\[org-store-link]' first.
26708 : create-if-interactive-and-no-custom-id
26709 :       Like create-if-interactive, but do not create an ID if there is
26710 :       a CUSTOM_ID property defined in the entry.
26712 : use-existing
26713 :       Use existing ID, do not create one.
26715 : nil   Never use an ID to make a link, instead link using a text search for
26716 :       the headline text.
26718 ** org-tags-match-list-sublevels =(funcall (function (closure (f...=
26719    :PROPERTIES:
26720    :CUSTOM_ID: org-tags-match-list-sublevels
26721    :END:
26723 - *Type:* (choice (const :tag "No, don't...
26724 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26725 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-match-list-sublevels][Find modifications in git logs]]
26727 : Non-nil means list also sublevels of headlines matching a search.
26728 : This variable applies to tags/property searches, and also to stuck
26729 : projects because this search is based on a tags match as well.
26731 : When set to the symbol `indented', sublevels are indented with
26732 : leading dots.
26734 : Because of tag inheritance (see variable `org-use-tag-inheritance'),
26735 : the sublevels of a headline matching a tag search often also match
26736 : the same search.  Listing all of them can create very long lists.
26737 : Setting this variable to nil causes subtrees of a match to be skipped.
26739 : This variable is semi-obsolete and probably should always be true.  It
26740 : is better to limit inheritance to certain tags using the variables
26741 : `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'.
26743 ** org-footnote-section =(funcall (function (closure (t...=
26744    :PROPERTIES:
26745    :CUSTOM_ID: org-footnote-section
26746    :END:
26748 - *Type:* (choice (string :tag "Collect ...
26749 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-footnote.el][org-footnote.el]]
26750 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-footnote-section][Find modifications in git logs]]
26752 : Outline heading containing footnote definitions.
26754 : This can be nil, to place footnotes locally at the end of the
26755 : current outline node.  If can also be the name of a special
26756 : outline heading under which footnotes should be put.
26758 : This variable defines the place where Org puts the definition
26759 : automatically, i.e. when creating the footnote, and when sorting
26760 : the notes.  However, by hand you may place definitions
26761 : *anywhere*.
26763 : If this is a string, during export, all subtrees starting with
26764 : this heading will be ignored.
26766 : If you don't use the customize interface to change this variable,
26767 : you will need to run the following command after the change:
26769 :   `\[universal-argument] \[org-element-cache-reset]'
26771 ** org-feed-alist =(funcall (function (closure (t...=
26772    :PROPERTIES:
26773    :CUSTOM_ID: org-feed-alist
26774    :END:
26776 - *Type:* (repeat (list :value ("" "http...
26777 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-feed.el][org-feed.el]]
26778 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-feed-alist][Find modifications in git logs]]
26780 : Alist specifying RSS feeds that should create inputs for Org.
26781 : Each entry in this list specified an RSS feed tat should be queried
26782 : to create inbox items in Org.  Each entry is a list with the following items:
26784 : name         a custom name for this feed
26785 : URL          the Feed URL
26786 : file         the target Org file where entries should be listed, when
26787 :              nil the target becomes the current buffer (may be an
26788 :              indirect buffer) each time the feed update is invoked
26789 : headline     the headline under which entries should be listed
26791 : Additional arguments can be given using keyword-value pairs.  Many of these
26792 : specify functions that receive one or a list of "entries" as their single
26793 : argument.  An entry is a property list that describes a feed item.  The
26794 : property list has properties for each field in the item, for example `:title'
26795 : for the `<title>' field and `:pubDate' for the publication date.  In addition,
26796 : it contains the following properties:
26798 : `:item-full-text'   the full text in the <item> tag
26799 : `:guid-permalink'   t when the guid property is a permalink
26801 : Here are the keyword-value pair allows in `org-feed-alist'.
26803 : :drawer drawer-name
26804 :      The name of the drawer for storing feed information.  The default is
26805 :      "FEEDSTATUS".  Using different drawers for different feeds allows
26806 :      several feeds to target the same inbox heading.
26808 : :filter filter-function
26809 :      A function to select interesting entries in the feed.  It gets a single
26810 :      entry as parameter.  It should return the entry if it is relevant, or
26811 :      nil if it is not.
26813 : :template template-string
26814 :      The default action on new items in the feed is to add them as children
26815 :      under the headline for the feed.  The template describes how the entry
26816 :      should be formatted.  If not given, it defaults to
26817 :      `org-feed-default-template'.
26819 : :formatter formatter-function
26820 :      Instead of relying on a template, you may specify a function to format
26821 :      the outline node to be inserted as a child.  This function gets passed
26822 :      a property list describing a single feed item, and it should return a
26823 :      string that is a properly formatted Org outline node of level 1.
26825 : :new-handler function
26826 :      If adding new items as children to the outline is not what you want
26827 :      to do with new items, define a handler function that is called with
26828 :      a list of all new items in the feed, each one represented as a property
26829 :      list.  The handler should do what needs to be done, and org-feed will
26830 :      mark all items given to this handler as "handled", i.e. they will not
26831 :      be passed to this handler again in future readings of the feed.
26832 :      When the handler is called, point will be at the feed headline.
26834 : :changed-handler function
26835 :      This function gets passed a list of all entries that have been
26836 :      handled before, but are now still in the feed and have *changed*
26837 :      since last handled (as evidenced by a different sha1 hash).
26838 :      When the handler is called, point will be at the feed headline.
26840 : :parse-feed function
26841 :      This function gets passed a buffer, and should return a list
26842 :      of entries, each being a property list containing the
26843 :      `:guid' and `:item-full-text' keys.  The default is
26844 :      `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an
26845 :      alternative.
26847 : :parse-entry function
26848 :      This function gets passed an entry as returned by the parse-feed
26849 :      function, and should return the entry with interesting properties added.
26850 :      The default is `org-feed-parse-rss-entry'; `org-feed-parse-atom-entry'
26851 :      is an alternative.
26853 ** org-ascii-inner-margin =(funcall (function (closure (t...=
26854    :PROPERTIES:
26855    :CUSTOM_ID: org-ascii-inner-margin
26856    :END:
26858 - *Type:* integer
26859 - *Since:* Emacs version 24.4
26860 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
26861 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-inner-margin][Find modifications in git logs]]
26863 : Width of the inner margin, in number of characters.
26864 : Inner margin is applied between each headline.
26866 ** org-odt-convert-capabilities =(funcall (function (closure (h...=
26867    :PROPERTIES:
26868    :CUSTOM_ID: org-odt-convert-capabilities
26869    :END:
26871 - *Type:* (choice (const :tag "None" nil...
26872 - *Since:* Emacs version 24.1
26873 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
26874 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-convert-capabilities][Find modifications in git logs]]
26876 : Specify input and output formats of `org-odt-convert-process'.
26877 : More correctly, specify the set of input and output formats that
26878 : the user is actually interested in.
26880 : This variable is an alist where each element is of the
26881 : form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
26882 : INPUT-FMT-LIST is a list of INPUT-FMTs.  OUTPUT-FMT-ALIST is an
26883 : alist where each element is of the form (OUTPUT-FMT
26884 : OUTPUT-FILE-EXTENSION EXTRA-OPTIONS).
26886 : The variable is interpreted as follows:
26887 : `org-odt-convert-process' can take any document that is in
26888 : INPUT-FMT-LIST and produce any document that is in the
26889 : OUTPUT-FMT-LIST.  A document converted to OUTPUT-FMT will have
26890 : OUTPUT-FILE-EXTENSION as the file name extension.  OUTPUT-FMT
26891 : serves dual purposes:
26892 : - It is used for populating completion candidates during
26893 :   `org-odt-convert' commands.
26894 : - It is used as the value of "%f" specifier in
26895 :   `org-odt-convert-process'.
26897 : EXTRA-OPTIONS is used as the value of "%x" specifier in
26898 : `org-odt-convert-process'.
26900 : DOCUMENT-CLASS is used to group a set of file formats in
26901 : INPUT-FMT-LIST in to a single class.
26903 : Note that this variable inherently captures how LibreOffice based
26904 : converters work.  LibreOffice maps documents of various formats
26905 : to classes like Text, Web, Spreadsheet, Presentation etc and
26906 : allow document of a given class (irrespective of its source
26907 : format) to be converted to any of the export formats associated
26908 : with that class.
26910 : See default setting of this variable for an typical
26911 : configuration.
26913 ** org-koma-letter-phone-number =""=
26914    :PROPERTIES:
26915    :CUSTOM_ID: org-koma-letter-phone-number
26916    :END:
26918 - *Type:* string
26919 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-koma-letter.el][ox-koma-letter.el]]
26920 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-koma-letter-phone-number][Find modifications in git logs]]
26922 : Sender's phone number, as a string.
26923 : This option can also be set with the PHONE_NUMBER keyword.
26925 ** org-link-search-must-match-exact-headline =(funcall (function (closure (f...=
26926    :PROPERTIES:
26927    :CUSTOM_ID: org-link-search-must-match-exact-headline
26928    :END:
26930 - *Type:* (choice (const :tag "Use fuzzy...
26931 - *Since:* Emacs version 24.1
26932 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26933 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-search-must-match-exact-headline][Find modifications in git logs]]
26935 : Non-nil means internal fuzzy links can only match headlines.
26937 : When nil, the a fuzzy link may point to a target or a named
26938 : construct in the document.  When set to the special value
26939 : `query-to-create', offer to create a new headline when none
26940 : matched.
26942 : Spaces and statistics cookies are ignored during heading searches.
26944 ** org-html-preamble-format =(funcall (function (closure (h...=
26945    :PROPERTIES:
26946    :CUSTOM_ID: org-html-preamble-format
26947    :END:
26949 - *Type:* (repeat (list (string :tag "La...
26950 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
26951 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-preamble-format][Find modifications in git logs]]
26953 : Alist of languages and format strings for the HTML preamble.
26955 : The first element of each list is the language code, as used for
26956 : the LANGUAGE keyword.  See `org-export-default-language'.
26958 : The second element of each list is a format string to format the
26959 : preamble itself.  This format string can contain these elements:
26961 :   %t stands for the title.
26962 :   %s stands for the subtitle.
26963 :   %a stands for the author's name.
26964 :   %e stands for the author's email.
26965 :   %d stands for the date.
26966 :   %c will be replaced by `org-html-creator-string'.
26967 :   %v will be replaced by `org-html-validation-link'.
26968 :   %T will be replaced by the export time.
26969 :   %C will be replaced by the last modification time.
26971 : If you need to use a "%" character, you need to escape it
26972 : like that: "%%".
26974 : See the default value of `org-html-postamble-format' for an
26975 : example.
26977 ** org-insert-mode-line-in-empty-file =(funcall (function (closure (f...=
26978    :PROPERTIES:
26979    :CUSTOM_ID: org-insert-mode-line-in-empty-file
26980    :END:
26982 - *Type:* boolean
26983 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
26984 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-insert-mode-line-in-empty-file][Find modifications in git logs]]
26986 : Non-nil means insert the first line setting Org mode in empty files.
26987 : When the function `org-mode' is called interactively in an empty file, this
26988 : normally means that the file name does not automatically trigger Org mode.
26989 : To ensure that the file will always be in Org mode in the future, a
26990 : line enforcing Org mode will be inserted into the buffer, if this option
26991 : has been set.
26993 ** org-table-formula-constants =(funcall (function (closure (o...=
26994    :PROPERTIES:
26995    :CUSTOM_ID: org-table-formula-constants
26996    :END:
26998 - *Type:* (repeat (cons (string :tag "na...
26999 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-table.el][org-table.el]]
27000 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-table-formula-constants][Find modifications in git logs]]
27002 : Alist with constant names and values, for use in table formulas.
27003 : The car of each element is a name of a constant, without the `$' before it.
27004 : The cdr is the value as a string.  For example, if you'd like to use the
27005 : speed of light in a formula, you would configure
27007 :   (setq org-table-formula-constants \='(("c" . "299792458.")))
27009 : and then use it in an equation like `$1*$c'.
27011 : Constants can also be defined on a per-file basis using a line like
27013 : #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
27015 ** org-texinfo-table-scientific-notation =(funcall (function (closure (t...=
27016    :PROPERTIES:
27017    :CUSTOM_ID: org-texinfo-table-scientific-notation
27018    :END:
27020 - *Type:* (choice (string :tag "Format s...
27021 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-texinfo.el][ox-texinfo.el]]
27022 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-texinfo-table-scientific-notation][Find modifications in git logs]]
27024 : Format string to display numbers in scientific notation.
27026 : The format should have "%s" twice, for mantissa and exponent
27027 : (i.e. "%s\\times10^{%s}").
27029 : When nil, no transformation is made.
27031 ** org-reverse-note-order =(funcall (function (closure (f...=
27032    :PROPERTIES:
27033    :CUSTOM_ID: org-reverse-note-order
27034    :END:
27036 - *Type:* (choice (const :tag "Reverse a...
27037 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27038 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-reverse-note-order][Find modifications in git logs]]
27040 : Non-nil means store new notes at the beginning of a file or entry.
27041 : When nil, new notes will be filed to the end of a file or entry.
27042 : This can also be a list with cons cells of regular expressions that
27043 : are matched against file names, and values.
27045 ** org-cycle-open-archived-trees =(funcall (function (closure (t...=
27046    :PROPERTIES:
27047    :CUSTOM_ID: org-cycle-open-archived-trees
27048    :END:
27050 - *Type:* boolean
27051 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27052 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-cycle-open-archived-trees][Find modifications in git logs]]
27054 : Non-nil means `org-cycle' will open archived trees.
27055 : An archived tree is a tree marked with the tag ARCHIVE.
27056 : When nil, archived trees will stay folded.  You can still open them with
27057 : normal outline commands like `show-all', but not with the cycling commands.
27059 ** org-goto-max-level =(funcall (function (closure (f...=
27060    :PROPERTIES:
27061    :CUSTOM_ID: org-goto-max-level
27062    :END:
27064 - *Type:* integer
27065 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27066 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-goto-max-level][Find modifications in git logs]]
27068 : Maximum target level when running `org-goto' with refile interface.
27070 ** org-agenda-diary-file =(funcall (function (closure (f...=
27071    :PROPERTIES:
27072    :CUSTOM_ID: org-agenda-diary-file
27073    :END:
27075 - *Type:* (choice (const :tag "The stand...
27076 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27077 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-diary-file][Find modifications in git logs]]
27079 : File to which to add new entries with the `i' key in agenda and calendar.
27080 : When this is the symbol `diary-file', the functionality in the Emacs
27081 : calendar will be used to add entries to the `diary-file'.  But when this
27082 : points to a file, `org-agenda-diary-entry' will be used instead.
27084 ** org-babel-js-cmd =(funcall (function (closure (t...=
27085    :PROPERTIES:
27086    :CUSTOM_ID: org-babel-js-cmd
27087    :END:
27089 - *Type:* string
27090 - *Since:* Emacs version 24.1
27091 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-js.el][ob-js.el]]
27092 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-js-cmd][Find modifications in git logs]]
27094 : Name of command used to evaluate js blocks.
27096 ** org-agenda-cmp-user-defined =nil=
27097    :PROPERTIES:
27098    :CUSTOM_ID: org-agenda-cmp-user-defined
27099    :END:
27101 - *Type:* symbol
27102 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27103 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-cmp-user-defined][Find modifications in git logs]]
27105 : A function to define the comparison `user-defined'.
27106 : This function must receive two arguments, agenda entry a and b.
27107 : If a>b, return +1.  If a<b, return -1.  If they are equal as seen by
27108 : the user comparison, return nil.
27109 : When this is defined, you can make `user-defined-up' and `user-defined-down'
27110 : part of an agenda sorting strategy.
27112 ** org-ascii-links-to-notes =(funcall (function (closure (t...=
27113    :PROPERTIES:
27114    :CUSTOM_ID: org-ascii-links-to-notes
27115    :END:
27117 - *Type:* boolean
27118 - *Since:* Emacs version 24.4
27119 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
27120 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-links-to-notes][Find modifications in git logs]]
27122 : Non-nil means convert links to notes before the next headline.
27123 : When nil, the link will be exported in place.  If the line
27124 : becomes long in this way, it will be wrapped.
27126 ** org-html-extension =(funcall (function (closure (h...=
27127    :PROPERTIES:
27128    :CUSTOM_ID: org-html-extension
27129    :END:
27131 - *Type:* string
27132 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
27133 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-extension][Find modifications in git logs]]
27135 : The extension for exported HTML files.
27137 ** org-latex-default-figure-position =(funcall (function (closure (t...=
27138    :PROPERTIES:
27139    :CUSTOM_ID: org-latex-default-figure-position
27140    :END:
27142 - *Type:* string
27143 - *Since:* Emacs version 26.1
27144 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
27145 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-default-figure-position][Find modifications in git logs]]
27147 : Default position for LaTeX figures.
27149 ** org-latex-inline-image-rules =(funcall (function (closure (t...=
27150    :PROPERTIES:
27151    :CUSTOM_ID: org-latex-inline-image-rules
27152    :END:
27154 - *Type:* (alist :key-type (string :tag ...
27155 - *Since:* Emacs version 24.4
27156 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-latex.el][ox-latex.el]]
27157 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-latex-inline-image-rules][Find modifications in git logs]]
27159 : Rules characterizing image files that can be inlined into LaTeX.
27161 : A rule consists in an association whose key is the type of link
27162 : to consider, and value is a regexp that will be matched against
27163 : link's path.
27165 : Note that, by default, the image extension *actually* allowed
27166 : depend on the way the LaTeX file is processed.  When used with
27167 : pdflatex, pdf, jpg and png images are OK.  When processing
27168 : through dvi to Postscript, only ps and eps are allowed.  The
27169 : default we use here encompasses both.
27171 ** org-agenda-insert-diary-strategy =(quote date-tree)=
27172    :PROPERTIES:
27173    :CUSTOM_ID: org-agenda-insert-diary-strategy
27174    :END:
27176 - *Type:* (choice (const :tag "first in ...
27177 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27178 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-insert-diary-strategy][Find modifications in git logs]]
27180 : Where in `org-agenda-diary-file' should new entries be added?
27181 : Valid values:
27183 : date-tree         in the date tree, as first child of the date
27184 : date-tree-last    in the date tree, as last child of the date
27185 : top-level         as top-level entries at the end of the file.
27187 ** org-publish-list-skipped-files =(funcall (function (closure (t...=
27188    :PROPERTIES:
27189    :CUSTOM_ID: org-publish-list-skipped-files
27190    :END:
27192 - *Type:* boolean
27193 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
27194 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-list-skipped-files][Find modifications in git logs]]
27196 : Non-nil means show message about files *not* published.
27198 ** org-link-parameters =(funcall (function (closure (f...=
27199    :PROPERTIES:
27200    :CUSTOM_ID: org-link-parameters
27201    :END:
27203 - *Type:* (alist :tag "Link display para...
27204 - *Since:* Emacs version 26.1
27205 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27206 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-link-parameters][Find modifications in git logs]]
27208 : An alist of properties that defines all the links in Org mode.
27209 : The key in each association is a string of the link type.
27210 : Subsequent optional elements make up a p-list of link properties.
27212 : :follow - A function that takes the link path as an argument.
27214 : :export - A function that takes the link path, description and
27215 : export-backend as arguments.
27217 : :store - A function responsible for storing the link.  See the
27218 : function `org-store-link-functions'.
27220 : :complete - A function that inserts a link with completion.  The
27221 : function takes one optional prefix arg.
27223 : :face - A face for the link, or a function that returns a face.
27224 : The function takes one argument which is the link path.  The
27225 : default face is `org-link'.
27227 : :mouse-face - The mouse-face. The default is `highlight'.
27229 : :display - `full' will not fold the link in descriptive
27230 : display.  Default is `org-link'.
27232 : :help-echo - A string or function that takes (window object position)
27233 : as arguments and returns a string.
27235 : :keymap - A keymap that is active on the link.  The default is
27236 : `org-mouse-map'.
27238 : :htmlize-link - A function for the htmlize-link.  Defaults
27239 : to (list :uri "type:path")
27241 : :activate-func - A function to run at the end of font-lock
27242 : activation.  The function must accept (link-start link-end path bracketp)
27243 : as arguments.
27245 ** org-read-date-force-compatible-dates =(funcall (function (closure (f...=
27246    :PROPERTIES:
27247    :CUSTOM_ID: org-read-date-force-compatible-dates
27248    :END:
27250 - *Type:* boolean
27251 - *Since:* Emacs version 24.1
27252 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27253 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-read-date-force-compatible-dates][Find modifications in git logs]]
27255 : Should date/time prompt force dates that are guaranteed to work in Emacs?
27257 : Depending on the system Emacs is running on, certain dates cannot
27258 : be represented with the type used internally to represent time.
27259 : Dates between 1970-1-1 and 2038-1-1 can always be represented
27260 : correctly.  Some systems allow for earlier dates, some for later,
27261 : some for both.  One way to find out it to insert any date into an
27262 : Org buffer, putting the cursor on the year and hitting S-up and
27263 : S-down to test the range.
27265 : When this variable is set to t, the date/time prompt will not let
27266 : you specify dates outside the 1970-2037 range, so it is certain that
27267 : these dates will work in whatever version of Emacs you are
27268 : running, and also that you can move a file from one Emacs implementation
27269 : to another.  WHenever Org is forcing the year for you, it will display
27270 : a message and beep.
27272 : When this variable is nil, Org will check if the date is
27273 : representable in the specific Emacs implementation you are using.
27274 : If not, it will force a year, usually the current year, and beep
27275 : to remind you.  Currently this setting is not recommended because
27276 : the likelihood that you will open your Org files in an Emacs that
27277 : has limited date range is not negligible.
27279 : A workaround for this problem is to use diary sexp dates for time
27280 : stamps outside of this range.
27282 ** org-agenda-jump-prefer-future =(funcall (function (closure (f...=
27283    :PROPERTIES:
27284    :CUSTOM_ID: org-agenda-jump-prefer-future
27285    :END:
27287 - *Type:* (choice (const :tag "Use org-r...
27288 - *Since:* Emacs version 24.1
27289 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27290 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-jump-prefer-future][Find modifications in git logs]]
27292 : Should the agenda jump command prefer the future for incomplete dates?
27293 : The default is to do the same as configured in `org-read-date-prefer-future'.
27294 : But you can also set a deviating value here.
27295 : This may t or nil, or the symbol `org-read-date-prefer-future'.
27297 ** org-ascii-table-keep-all-vertical-lines =(funcall (function (closure (t...=
27298    :PROPERTIES:
27299    :CUSTOM_ID: org-ascii-table-keep-all-vertical-lines
27300    :END:
27302 - *Type:* boolean
27303 - *Since:* Emacs version 24.4
27304 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
27305 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-table-keep-all-vertical-lines][Find modifications in git logs]]
27307 : Non-nil means keep all vertical lines in ASCII tables.
27308 : When nil, vertical lines will be removed except for those needed
27309 : for column grouping.
27311 ** org-publish-sitemap-sort-files =(funcall (function (closure (t...=
27312    :PROPERTIES:
27313    :CUSTOM_ID: org-publish-sitemap-sort-files
27314    :END:
27316 - *Type:* symbol
27317 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
27318 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-sitemap-sort-files][Find modifications in git logs]]
27320 : Method to sort files in site-maps.
27321 : Possible values are `alphabetically', `chronologically',
27322 : `anti-chronologically' and nil.
27324 : If `alphabetically', files will be sorted alphabetically.  If
27325 : `chronologically', files will be sorted with older modification
27326 : time first.  If `anti-chronologically', files will be sorted with
27327 : newer modification time first.  nil won't sort files.
27329 : You can overwrite this default per project in your
27330 : `org-publish-project-alist', using `:sitemap-sort-files'.
27332 ** org-agenda-start-with-log-mode =nil=
27333    :PROPERTIES:
27334    :CUSTOM_ID: org-agenda-start-with-log-mode
27335    :END:
27337 - *Type:* (choice (const :tag "Don't sho...
27338 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27339 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-start-with-log-mode][Find modifications in git logs]]
27341 : The initial value of log-mode in a newly created agenda window.
27342 : See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
27343 : explanations on the possible values.
27345 ** org-startup-with-latex-preview =(funcall (function (closure (f...=
27346    :PROPERTIES:
27347    :CUSTOM_ID: org-startup-with-latex-preview
27348    :END:
27350 - *Type:* boolean
27351 - *Since:* Emacs version 24.4
27352 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27353 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-startup-with-latex-preview][Find modifications in git logs]]
27355 : Non-nil means preview LaTeX fragments when loading a new Org file.
27357 : This can also be configured on a per-file basis by adding one of
27358 : the following lines anywhere in the buffer:
27359 :    #+STARTUP: latexpreview
27360 :    #+STARTUP: nolatexpreview
27362 ** org-agenda-query-register =111=
27363    :PROPERTIES:
27364    :CUSTOM_ID: org-agenda-query-register
27365    :END:
27367 - *Type:* character
27368 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27369 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-query-register][Find modifications in git logs]]
27371 : The register holding the current query string.
27372 : The purpose of this is that if you construct a query string interactively,
27373 : you can then use it to define a custom command.
27375 ** org-ascii-global-margin =(funcall (function (closure (t...=
27376    :PROPERTIES:
27377    :CUSTOM_ID: org-ascii-global-margin
27378    :END:
27380 - *Type:* integer
27381 - *Since:* Emacs version 24.4
27382 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
27383 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-global-margin][Find modifications in git logs]]
27385 : Width of the left margin, in number of characters.
27387 ** org-agenda-columns-add-appointments-to-effort-sum =nil=
27388    :PROPERTIES:
27389    :CUSTOM_ID: org-agenda-columns-add-appointments-to-effort-sum
27390    :END:
27392 - *Type:* boolean
27393 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27394 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-columns-add-appointments-to-effort-sum][Find modifications in git logs]]
27396 : Non-nil means the duration of an appointment will add to day effort.
27397 : The property to which appointment durations will be added is the one given
27398 : in the option `org-effort-property'.  If an appointment does not have
27399 : an end time, `org-agenda-default-appointment-duration' will be used.  If that
27400 : is not set, an appointment without end time will not contribute to the time
27401 : estimate.
27403 ** org-image-actual-width =(funcall (function (closure (o...=
27404    :PROPERTIES:
27405    :CUSTOM_ID: org-image-actual-width
27406    :END:
27408 - *Type:* (choice (const :tag "Use the i...
27409 - *Since:* Emacs version 24.4
27410 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27411 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-image-actual-width][Find modifications in git logs]]
27413 : Should we use the actual width of images when inlining them?
27415 : When set to t, always use the image width.
27417 : When set to a number, use imagemagick (when available) to set
27418 : the image's width to this value.
27420 : When set to a number in a list, try to get the width from any
27421 : #+ATTR.* keyword if it matches a width specification like
27423 :   #+ATTR_HTML: :width 300px
27425 : and fall back on that number if none is found.
27427 : When set to nil, try to get the width from an #+ATTR.* keyword
27428 : and fall back on the original width if none is found.
27430 : This requires Emacs >= 24.1, build with imagemagick support.
27432 ** org-odt-convert-processes =(funcall (function (closure (h...=
27433    :PROPERTIES:
27434    :CUSTOM_ID: org-odt-convert-processes
27435    :END:
27437 - *Type:* (choice (const :tag "None" nil...
27438 - *Since:* Emacs version 24.1
27439 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-odt.el][ox-odt.el]]
27440 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-odt-convert-processes][Find modifications in git logs]]
27442 : Specify a list of document converters and their usage.
27443 : The converters in this list are offered as choices while
27444 : customizing `org-odt-convert-process'.
27446 : This variable is a list where each element is of the
27447 : form (CONVERTER-NAME CONVERTER-CMD).  CONVERTER-NAME is the name
27448 : of the converter.  CONVERTER-CMD is the shell command for the
27449 : converter and can contain format specifiers.  These format
27450 : specifiers are interpreted as below:
27452 : %i input file name in full
27453 : %I input file name as a URL
27454 : %f format of the output file
27455 : %o output file name in full
27456 : %O output file name as a URL
27457 : %d output dir in full
27458 : %D output dir as a URL.
27459 : %x extra options as set in `org-odt-convert-capabilities'.
27461 ** org-tags-exclude-from-inheritance =(funcall (function (closure (f...=
27462    :PROPERTIES:
27463    :CUSTOM_ID: org-tags-exclude-from-inheritance
27464    :END:
27466 - *Type:* (repeat (string :tag "Tag"))
27467 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27468 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-tags-exclude-from-inheritance][Find modifications in git logs]]
27470 : List of tags that should never be inherited.
27471 : This is a way to exclude a few tags from inheritance.  For way to do
27472 : the opposite, to actively allow inheritance for selected tags,
27473 : see the variable `org-use-tag-inheritance'.
27475 ** org-agenda-todo-ignore-time-comparison-use-seconds =nil=
27476    :PROPERTIES:
27477    :CUSTOM_ID: org-agenda-todo-ignore-time-comparison-use-seconds
27478    :END:
27480 - *Type:* (choice (const :tag "Compare t...
27481 - *Since:* Emacs version 24.4
27482 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27483 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-todo-ignore-time-comparison-use-seconds][Find modifications in git logs]]
27485 : Time unit to use when possibly ignoring an agenda item.
27487 : See the docstring of various `org-agenda-todo-ignore-*' options.
27488 : The default is to compare time stamps using days.  An item is thus
27489 : considered to be in the future if it is at least one day after today.
27490 : Non-nil means to compare time stamps using seconds.  An item is then
27491 : considered future if it has a time value later than current time.
27493 ** org-export-with-date =(funcall (function (closure (t...=
27494    :PROPERTIES:
27495    :CUSTOM_ID: org-export-with-date
27496    :END:
27498 - *Type:* boolean
27499 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
27500 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-date][Find modifications in git logs]]
27502 : Non-nil means insert date in the exported document.
27503 : This option can also be set with the OPTIONS keyword,
27504 : e.g. "date:nil".
27506 ** org-export-backends =(funcall (function (closure (f...=
27507    :PROPERTIES:
27508    :CUSTOM_ID: org-export-backends
27509    :END:
27511 - *Type:* (set :greedy t (const :tag "  ...
27512 - *Since:* Emacs version 26.1
27513 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27514 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-backends][Find modifications in git logs]]
27516 : List of export back-ends that should be always available.
27518 : If a description starts with <C>, the file is not part of Emacs
27519 : and loading it will require that you have downloaded and properly
27520 : installed the Org mode distribution.
27522 : Unlike to `org-modules', libraries in this list will not be
27523 : loaded along with Org, but only once the export framework is
27524 : needed.
27526 : This variable needs to be set before org.el is loaded.  If you
27527 : need to make a change while Emacs is running, use the customize
27528 : interface or run the following code, where VAL stands for the new
27529 : value of the variable, after updating it:
27531 :   (progn
27532 :     (setq org-export-registered-backends
27533 :           (cl-remove-if-not
27534 :            (lambda (backend)
27535 :              (let ((name (org-export-backend-name backend)))
27536 :                (or (memq name val)
27537 :                    (catch \='parentp
27538 :                      (dolist (b val)
27539 :                        (and (org-export-derived-backend-p b name)
27540 :                             (throw \='parentp t)))))))
27541 :            org-export-registered-backends))
27542 :     (let ((new-list (mapcar #\='org-export-backend-name
27543 :                             org-export-registered-backends)))
27544 :       (dolist (backend val)
27545 :         (cond
27546 :          ((not (load (format "ox-%s" backend) t t))
27547 :           (message "Problems while trying to load export back-end \=`%s\='"
27548 :                    backend))
27549 :          ((not (memq backend new-list)) (push backend new-list))))
27550 :       (set-default \='org-export-backends new-list)))
27552 : Adding a back-end to this list will also pull the back-end it
27553 : depends on, if any.
27555 ** org-publish-project-alist =(funcall (function (closure (t...=
27556    :PROPERTIES:
27557    :CUSTOM_ID: org-publish-project-alist
27558    :END:
27560 - *Type:* alist
27561 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-publish.el][ox-publish.el]]
27562 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-publish-project-alist][Find modifications in git logs]]
27564 : Association list to control publishing behavior.
27565 : \<org-mode-map>
27566 : Each element of the alist is a publishing project.  The car of
27567 : each element is a string, uniquely identifying the project.  The
27568 : cdr of each element is in one of the following forms:
27570 : 1. A well-formed property list with an even number of elements,
27571 :    alternating keys and values, specifying parameters for the
27572 :    publishing process.
27574 :      (:property value :property value ... )
27576 : 2. A meta-project definition, specifying of a list of
27577 :    sub-projects:
27579 :      (:components ("project-1" "project-2" ...))
27581 : When the CDR of an element of org-publish-project-alist is in
27582 : this second form, the elements of the list after `:components'
27583 : are taken to be components of the project, which group together
27584 : files requiring different publishing options.  When you publish
27585 : such a project with `\[org-publish]', the components all publish.
27587 : When a property is given a value in `org-publish-project-alist',
27588 : its setting overrides the value of the corresponding user
27589 : variable (if any) during publishing.  However, options set within
27590 : a file override everything.
27592 : Most properties are optional, but some should always be set:
27594 :   `:base-directory'
27596 :     Directory containing publishing source files.
27598 :   `:base-extension'
27600 :     Extension (without the dot!) of source files.  This can be
27601 :     a regular expression.  If not given, "org" will be used as
27602 :     default extension.  If it is `any', include all the files,
27603 :     even without extension.
27605 :   `:publishing-directory'
27607 :     Directory (possibly remote) where output files will be
27608 :     published.
27610 : If `:recursive' is non-nil files in sub-directories of
27611 : `:base-directory' are considered.
27613 : The `:exclude' property may be used to prevent certain files from
27614 : being published.  Its value may be a string or regexp matching
27615 : file names you don't want to be published.
27617 : The `:include' property may be used to include extra files.  Its
27618 : value may be a list of filenames to include.  The filenames are
27619 : considered relative to the base directory.
27621 : When both `:include' and `:exclude' properties are given values,
27622 : the exclusion step happens first.
27624 : One special property controls which back-end function to use for
27625 : publishing files in the project.  This can be used to extend the
27626 : set of file types publishable by `org-publish', as well as the
27627 : set of output formats.
27629 :   `:publishing-function'
27631 :     Function to publish file.  Each back-end may define its
27632 :     own (i.e. `org-latex-publish-to-pdf',
27633 :     `org-html-publish-to-html').  May be a list of functions, in
27634 :     which case each function in the list is invoked in turn.
27636 : Another property allows you to insert code that prepares
27637 : a project for publishing.  For example, you could call GNU Make
27638 : on a certain makefile, to ensure published files are built up to
27639 : date.
27641 :   `:preparation-function'
27643 :     Function to be called before publishing this project.  This
27644 :     may also be a list of functions.  Preparation functions are
27645 :     called with the project properties list as their sole
27646 :     argument.
27648 :   `:completion-function'
27650 :     Function to be called after publishing this project.  This
27651 :     may also be a list of functions.  Completion functions are
27652 :     called with the project properties list as their sole
27653 :     argument.
27655 : Some properties control details of the Org publishing process,
27656 : and are equivalent to the corresponding user variables listed in
27657 : the right column.  Back-end specific properties may also be
27658 : included.  See the back-end documentation for more information.
27660 :   :author                   `user-full-name'
27661 :   :creator                  `org-export-creator-string'
27662 :   :email                    `user-mail-address'
27663 :   :exclude-tags             `org-export-exclude-tags'
27664 :   :headline-levels          `org-export-headline-levels'
27665 :   :language                 `org-export-default-language'
27666 :   :preserve-breaks          `org-export-preserve-breaks'
27667 :   :section-numbers          `org-export-with-section-numbers'
27668 :   :select-tags              `org-export-select-tags'
27669 :   :time-stamp-file          `org-export-time-stamp-file'
27670 :   :with-archived-trees      `org-export-with-archived-trees'
27671 :   :with-author              `org-export-with-author'
27672 :   :with-creator             `org-export-with-creator'
27673 :   :with-date                `org-export-with-date'
27674 :   :with-drawers             `org-export-with-drawers'
27675 :   :with-email               `org-export-with-email'
27676 :   :with-emphasize           `org-export-with-emphasize'
27677 :   :with-entities            `org-export-with-entities'
27678 :   :with-fixed-width         `org-export-with-fixed-width'
27679 :   :with-footnotes           `org-export-with-footnotes'
27680 :   :with-inlinetasks         `org-export-with-inlinetasks'
27681 :   :with-latex               `org-export-with-latex'
27682 :   :with-planning            `org-export-with-planning'
27683 :   :with-priority            `org-export-with-priority'
27684 :   :with-properties          `org-export-with-properties'
27685 :   :with-smart-quotes        `org-export-with-smart-quotes'
27686 :   :with-special-strings     `org-export-with-special-strings'
27687 :   :with-statistics-cookies' `org-export-with-statistics-cookies'
27688 :   :with-sub-superscript     `org-export-with-sub-superscripts'
27689 :   :with-toc                 `org-export-with-toc'
27690 :   :with-tables              `org-export-with-tables'
27691 :   :with-tags                `org-export-with-tags'
27692 :   :with-tasks               `org-export-with-tasks'
27693 :   :with-timestamps          `org-export-with-timestamps'
27694 :   :with-title               `org-export-with-title'
27695 :   :with-todo-keywords       `org-export-with-todo-keywords'
27697 : The following properties may be used to control publishing of
27698 : a site-map of files or summary page for a given project.
27700 :   `:auto-sitemap'
27702 :     Whether to publish a site-map during
27703 :     `org-publish-current-project' or `org-publish-all'.
27705 :   `:sitemap-filename'
27707 :     Filename for output of site-map.  Defaults to "sitemap.org".
27709 :   `:sitemap-title'
27711 :     Title of site-map page.  Defaults to name of file.
27713 :   `:sitemap-style'
27715 :     Can be `list' (site-map is just an itemized list of the
27716 :     titles of the files involved) or `tree' (the directory
27717 :     structure of the source files is reflected in the site-map).
27718 :     Defaults to `tree'.
27720 :   `:sitemap-format-entry'
27722 :     Plugin function used to format entries in the site-map.  It
27723 :     is called with three arguments: the file or directory name
27724 :     relative to base directory, the site map style and the
27725 :     current project.  It has to return a string.
27727 :     Defaults to `org-publish-sitemap-default-entry', which turns
27728 :     file names into links and use document titles as
27729 :     descriptions.  For specific formatting needs, one can use
27730 :     `org-publish-find-date', `org-publish-find-title' and
27731 :     `org-publish-find-property', to retrieve additional
27732 :     information about published documents.
27734 :   `:sitemap-function'
27736 :     Plugin function to use for generation of site-map.  It is
27737 :     called with two arguments: the title of the site-map, as
27738 :     a string, and a representation of the files involved in the
27739 :     project, as returned by `org-list-to-lisp'.  The latter can
27740 :     further be transformed using `org-list-to-generic',
27741 :     `org-list-to-subtree' and alike.  It has to return a string.
27743 :     Defaults to `org-publish-sitemap-default', which generates
27744 :     a plain list of links to all files in the project.
27746 : If you create a site-map file, adjust the sorting like this:
27748 :   `:sitemap-sort-folders'
27750 :     Where folders should appear in the site-map.  Set this to
27751 :     `first' or `last' to display folders first or last,
27752 :     respectively.  When set to `ignore' (default), folders are
27753 :     ignored altogether.  Any other value will mix files and
27754 :     folders.  This variable has no effect when site-map style is
27755 :     `tree'.
27757 :   `:sitemap-sort-files'
27759 :     The site map is normally sorted alphabetically.  You can
27760 :     change this behavior setting this to `anti-chronologically',
27761 :     `chronologically', or nil.
27763 :   `:sitemap-ignore-case'
27765 :     Should sorting be case-sensitive?  Default nil.
27767 : The following property control the creation of a concept index.
27769 :   `:makeindex'
27771 :     Create a concept index.  The file containing the index has to
27772 :     be called "theindex.org".  If it doesn't exist in the
27773 :     project, it will be generated.  Contents of the index are
27774 :     stored in the file "theindex.inc", which can be included in
27775 :     "theindex.org".
27777 : Other properties affecting publication.
27779 :   `:body-only'
27781 :     Set this to t to publish only the body of the documents.
27783 ** org-ascii-charset =(funcall (function (closure (t...=
27784    :PROPERTIES:
27785    :CUSTOM_ID: org-ascii-charset
27786    :END:
27788 - *Type:* (choice (const :tag "ASCII" as...
27789 - *Since:* Emacs version 24.4
27790 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-ascii.el][ox-ascii.el]]
27791 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-ascii-charset][Find modifications in git logs]]
27793 : The charset allowed to represent various elements and objects.
27794 : Possible values are:
27795 : `ascii'    Only use plain ASCII characters
27796 : `latin1'   Include Latin-1 characters
27797 : `utf-8'    Use all UTF-8 characters
27799 ** org-agenda-inactive-leader ="["=
27800    :PROPERTIES:
27801    :CUSTOM_ID: org-agenda-inactive-leader
27802    :END:
27804 - *Type:* string
27805 - *Since:* Emacs version 24.1
27806 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27807 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-inactive-leader][Find modifications in git logs]]
27809 : Text preceding item pulled into the agenda by inactive time stamps.
27810 : These entries are added to the agenda when pressing "[".
27812 ** org-html-head =(funcall (function (closure (h...=
27813    :PROPERTIES:
27814    :CUSTOM_ID: org-html-head
27815    :END:
27817 - *Type:* string
27818 - *Since:* Emacs version 24.4
27819 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
27820 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-head][Find modifications in git logs]]
27822 : Org-wide head definitions for exported HTML files.
27824 : This variable can contain the full HTML structure to provide a
27825 : style, including the surrounding HTML tags.  You can consider
27826 : including definitions for the following classes: title, todo,
27827 : done, timestamp, timestamp-kwd, tag, target.
27829 : For example, a valid value would be:
27831 :    <style type="text/css">
27832 :     <![CDATA[
27833 :        p { font-weight: normal; color: gray; }
27834 :        h1 { color: black; }
27835 :       .title { text-align: center; }
27836 :       .todo, .timestamp-kwd { color: red; }
27837 :       .done { color: green; }
27838 :     ]]>
27839 :    </style>
27841 : If you want to refer to an external style, use something like
27843 :    <link rel="stylesheet" type="text/css" href="mystyles.css" />
27845 : As the value of this option simply gets inserted into the HTML
27846 : <head> header, you can use it to add any arbitrary text to the
27847 : header.
27849 : You can set this on a per-file basis using #+HTML_HEAD:,
27850 : or for publication projects using the :html-head property.
27852 ** org-agenda-custom-commands =(quote (("n" "Agenda and all T...=
27853    :PROPERTIES:
27854    :CUSTOM_ID: org-agenda-custom-commands
27855    :END:
27857 - *Type:* (repeat (choice :value ("x" "D...
27858 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27859 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-custom-commands][Find modifications in git logs]]
27861 : Custom commands for the agenda.
27862 : \<org-mode-map>
27863 : These commands will be offered on the splash screen displayed by the
27864 : agenda dispatcher `\[org-agenda]'.  Each entry is a list like this:
27866 :    (key desc type match settings files)
27868 : key      The key (one or more characters as a string) to be associated
27869 :          with the command.
27870 : desc     A description of the command, when omitted or nil, a default
27871 :          description is built using MATCH.
27872 : type     The command type, any of the following symbols:
27873 :           agenda      The daily/weekly agenda.
27874 :           todo        Entries with a specific TODO keyword, in all agenda files.
27875 :           search      Entries containing search words entry or headline.
27876 :           tags        Tags/Property/TODO match in all agenda files.
27877 :           tags-todo   Tags/P/T match in all agenda files, TODO entries only.
27878 :           todo-tree   Sparse tree of specific TODO keyword in *current* file.
27879 :           tags-tree   Sparse tree with all tags matches in *current* file.
27880 :           occur-tree  Occur sparse tree for *current* file.
27881 :           ...         A user-defined function.
27882 : match    What to search for:
27883 :           - a single keyword for TODO keyword searches
27884 :           - a tags match expression for tags searches
27885 :           - a word search expression for text searches.
27886 :           - a regular expression for occur searches
27887 :           For all other commands, this should be the empty string.
27888 : settings  A list of option settings, similar to that in a let form, so like
27889 :           this: ((opt1 val1) (opt2 val2) ...).   The values will be
27890 :           evaluated at the moment of execution, so quote them when needed.
27891 : files     A list of files to write the produced agenda buffer to with
27892 :           the command `org-store-agenda-views'.
27893 :           If a file name ends in ".html", an HTML version of the buffer
27894 :           is written out.  If it ends in ".ps", a postscript version is
27895 :           produced.  Otherwise, only the plain text is written to the file.
27897 : You can also define a set of commands, to create a composite agenda buffer.
27898 : In this case, an entry looks like this:
27900 :   (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
27902 : where
27904 : desc   A description string to be displayed in the dispatcher menu.
27905 : cmd    An agenda command, similar to the above.  However, tree commands
27906 :        are not allowed, but instead you can get agenda and global todo list.
27907 :        So valid commands for a set are:
27908 :        (agenda "" settings)
27909 :        (alltodo "" settings)
27910 :        (stuck "" settings)
27911 :        (todo "match" settings files)
27912 :        (search "match" settings files)
27913 :        (tags "match" settings files)
27914 :        (tags-todo "match" settings files)
27916 : Each command can carry a list of options, and another set of options can be
27917 : given for the whole set of commands.  Individual command options take
27918 : precedence over the general options.
27920 : When using several characters as key to a command, the first characters
27921 : are prefix commands.  For the dispatcher to display useful information, you
27922 : should provide a description for the prefix, like
27924 :  (setq org-agenda-custom-commands
27925 :    \='(("h" . "HOME + Name tag searches") ; describe prefix "h"
27926 :      ("hl" tags "+HOME+Lisa")
27927 :      ("hp" tags "+HOME+Peter")
27928 :      ("hk" tags "+HOME+Kim")))
27930 ** org-fast-tag-selection-single-key =(funcall (function (closure (f...=
27931    :PROPERTIES:
27932    :CUSTOM_ID: org-fast-tag-selection-single-key
27933    :END:
27935 - *Type:* (choice (const :tag "No" nil) ...
27936 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27937 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fast-tag-selection-single-key][Find modifications in git logs]]
27939 : Non-nil means fast tag selection exits after first change.
27940 : When nil, you have to press RET to exit it.
27941 : During fast tag selection, you can toggle this flag with `C-c'.
27942 : This variable can also have the value `expert'.  In this case, the window
27943 : displaying the tags menu is not even shown, until you press C-c again.
27945 ** org-html-divs =(funcall (function (closure (h...=
27946    :PROPERTIES:
27947    :CUSTOM_ID: org-html-divs
27948    :END:
27950 - *Type:* (list :greedy t (list :tag "Pr...
27951 - *Since:* Emacs version 24.4
27952 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
27953 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-divs][Find modifications in git logs]]
27955 : Alist of the three section elements for HTML export.
27956 : The car of each entry is one of `preamble', `content' or `postamble'.
27957 : The cdrs of each entry are the ELEMENT_TYPE and ID for each
27958 : section of the exported document.
27960 : Note that changing the default will prevent you from using
27961 : org-info.js for your website.
27963 ** org-speed-commands-user =(funcall (function (closure (f...=
27964    :PROPERTIES:
27965    :CUSTOM_ID: org-speed-commands-user
27966    :END:
27968 - *Type:* (repeat :value ("k" . ignore) ...
27969 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
27970 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-speed-commands-user][Find modifications in git logs]]
27972 : Alist of additional speed commands.
27973 : This list will be checked before `org-speed-commands-default'
27974 : when the variable `org-use-speed-commands' is non-nil
27975 : and when the cursor is at the beginning of a headline.
27976 : The car if each entry is a string with a single letter, which must
27977 : be assigned to `self-insert-command' in the global map.
27978 : The cdr is either a command to be called interactively, a function
27979 : to be called, or a form to be evaluated.
27980 : An entry that is just a list with a single string will be interpreted
27981 : as a descriptive headline that will be added when listing the speed
27982 : commands in the Help buffer using the `?' speed command.
27984 ** org-agenda-search-view-always-boolean =nil=
27985    :PROPERTIES:
27986    :CUSTOM_ID: org-agenda-search-view-always-boolean
27987    :END:
27989 - *Type:* boolean
27990 - *Since:* Emacs version 24.1
27991 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
27992 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-search-view-always-boolean][Find modifications in git logs]]
27994 : Non-nil means the search string is interpreted as individual parts.
27996 : The search string for search view can either be interpreted as a phrase,
27997 : or as a list of snippets that define a boolean search for a number of
27998 : strings.
28000 : When this is non-nil, the string will be split on whitespace, and each
28001 : snippet will be searched individually, and all must match in order to
28002 : select an entry.  A snippet is then a single string of non-white
28003 : characters, or a string in double quotes, or a regexp in {} braces.
28004 : If a snippet is preceded by "-", the snippet must *not* match.
28005 : "+" is syntactic sugar for positive selection.  Each snippet may
28006 : be found as a full word or a partial word, but see the variable
28007 : `org-agenda-search-view-force-full-words'.
28009 : When this is nil, search will look for the entire search phrase as one,
28010 : with each space character matching any amount of whitespace, including
28011 : line breaks.
28013 : Even when this is nil, you can still switch to Boolean search dynamically
28014 : by preceding the first snippet with "+" or "-".  If the first snippet
28015 : is a regexp marked with braces like "{abc}", this will also switch to
28016 : boolean search.
28018 ** org-refile-use-cache =(funcall (function (closure (f...=
28019    :PROPERTIES:
28020    :CUSTOM_ID: org-refile-use-cache
28021    :END:
28023 - *Type:* boolean
28024 - *Since:* Emacs version 24.1
28025 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
28026 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-refile-use-cache][Find modifications in git logs]]
28028 : Non-nil means cache refile targets to speed up the process.
28029 : \<org-mode-map>The cache for a particular file will be updated automatically when
28030 : the buffer has been killed, or when any of the marker used for flagging
28031 : refile targets no longer points at a live buffer.
28032 : If you have added new entries to a buffer that might themselves be targets,
28033 : you need to clear the cache manually by pressing `C-0 \[org-refile]' or,
28034 : if you find that easier, `\[universal-argument] \[universal-argument] \[universal-argument] \[org-refile]'.
28036 ** org-hierarchical-todo-statistics =(funcall (function (closure (f...=
28037    :PROPERTIES:
28038    :CUSTOM_ID: org-hierarchical-todo-statistics
28039    :END:
28041 - *Type:* boolean
28042 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
28043 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-hierarchical-todo-statistics][Find modifications in git logs]]
28045 : Non-nil means TODO statistics covers just direct children.
28046 : When nil, all entries in the subtree are considered.
28047 : This has only an effect if `org-provide-todo-statistics' is set.
28048 : To set this to nil for only a single subtree, use a COOKIE_DATA
28049 : property and include the word "recursive" into the value.
28051 ** org-beamer-environments-extra =(funcall (function (closure (t...=
28052    :PROPERTIES:
28053    :CUSTOM_ID: org-beamer-environments-extra
28054    :END:
28056 - *Type:* (repeat (list (string :tag "En...
28057 - *Since:* Emacs version 24.4
28058 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-beamer.el][ox-beamer.el]]
28059 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-beamer-environments-extra][Find modifications in git logs]]
28061 : Environments triggered by tags in Beamer export.
28062 : Each entry has 4 elements:
28064 : name    Name of the environment
28065 : key     Selection key for `org-beamer-select-environment'
28066 : open    The opening template for the environment, with the following escapes
28067 :         %a   the action/overlay specification
28068 :         %A   the default action/overlay specification
28069 :         %R   the raw BEAMER_act value
28070 :         %o   the options argument, with square brackets
28071 :         %O   the raw BEAMER_opt value
28072 :         %h   the headline text
28073 :         %r   the raw headline text (i.e. without any processing)
28074 :         %H   if there is headline text, that raw text in {} braces
28075 :         %U   if there is headline text, that raw text in [] brackets
28076 : close   The closing string of the environment.
28078 ** org-confirm-elisp-link-function =(funcall (function (closure (f...=
28079    :PROPERTIES:
28080    :CUSTOM_ID: org-confirm-elisp-link-function
28081    :END:
28083 - *Type:* (choice (const :tag "with yes-...
28084 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
28085 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-confirm-elisp-link-function][Find modifications in git logs]]
28087 : Non-nil means ask for confirmation before executing Emacs Lisp links.
28088 : Elisp links can be dangerous: just think about a link
28090 :      [[elisp:(shell-command "rm -rf ~/*")][Google Search]]
28092 : This link would show up in your Org document as "Google Search",
28093 : but really it would remove your entire home directory.
28094 : Therefore we advise against setting this variable to nil.
28095 : Just change it to `y-or-n-p' if you want to confirm with a
28096 : single keystroke rather than having to type "yes".
28098 ** org-babel-lilypond-commands =(funcall (function (closure (t...=
28099    :PROPERTIES:
28100    :CUSTOM_ID: org-babel-lilypond-commands
28101    :END:
28103 - *Type:* (list (string :tag "Lilypond  ...
28104 - *Since:* Emacs version 24.3
28105 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-lilypond.el][ob-lilypond.el]]
28106 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-lilypond-commands][Find modifications in git logs]]
28108 : Commands to run lilypond and view or play the results.
28109 : These should be executables that take a filename as an argument.
28110 : On some system it is possible to specify the filename directly
28111 : and the viewer or player will be determined from the file type;
28112 : you can leave the string empty on this case.
28114 ** org-babel-ocaml-command =(funcall (function (closure (t...=
28115    :PROPERTIES:
28116    :CUSTOM_ID: org-babel-ocaml-command
28117    :END:
28119 - *Type:* string
28120 - *Since:* Emacs version 24.4
28121 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ob-ocaml.el][ob-ocaml.el]]
28122 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-babel-ocaml-command][Find modifications in git logs]]
28124 : Name of the command for executing Ocaml code.
28126 ** org-show-context-detail =(funcall (function (closure (f...=
28127    :PROPERTIES:
28128    :CUSTOM_ID: org-show-context-detail
28129    :END:
28131 - *Type:* (choice (const :tag "Canonical...
28132 - *Since:* Emacs version 26.1
28133 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
28134 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-show-context-detail][Find modifications in git logs]]
28136 : Alist between context and visibility span when revealing a location.
28138 : \<org-mode-map>Some actions may move point into invisible
28139 : locations.  As a consequence, Org always expose a neighborhood
28140 : around point.  How much is shown depends on the initial action,
28141 : or context.  Valid contexts are
28143 :   agenda         when exposing an entry from the agenda
28144 :   org-goto       when using the command `org-goto' (`\[org-goto]')
28145 :   occur-tree     when using the command `org-occur' (`\[org-sparse-tree] /')
28146 :   tags-tree      when constructing a sparse tree based on tags matches
28147 :   link-search    when exposing search matches associated with a link
28148 :   mark-goto      when exposing the jump goal of a mark
28149 :   bookmark-jump  when exposing a bookmark location
28150 :   isearch        when exiting from an incremental search
28151 :   default        default for all contexts not set explicitly
28153 : Allowed visibility spans are
28155 :   minimal        show current headline; if point is not on headline,
28156 :                  also show entry
28158 :   local          show current headline, entry and next headline
28160 :   ancestors      show current headline and its direct ancestors; if
28161 :                  point is not on headline, also show entry
28163 :   lineage        show current headline, its direct ancestors and all
28164 :                  their children; if point is not on headline, also show
28165 :                  entry and first child
28167 :   tree           show current headline, its direct ancestors and all
28168 :                  their children; if point is not on headline, also show
28169 :                  entry and all children
28171 :   canonical      show current headline, its direct ancestors along with
28172 :                  their entries and children; if point is not located on
28173 :                  the headline, also show current entry and all children
28175 : As special cases, a nil or t value means show all contexts in
28176 : `minimal' or `canonical' view, respectively.
28178 : Some views can make displayed information very compact, but also
28179 : make it harder to edit the location of the match.  In such
28180 : a case, use the command `org-reveal' (`\[org-reveal]') to show
28181 : more context.
28183 ** org-from-is-user-regexp =(funcall (function (closure (f...=
28184    :PROPERTIES:
28185    :CUSTOM_ID: org-from-is-user-regexp
28186    :END:
28188 - *Type:* regexp
28189 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org.el][org.el]]
28190 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-from-is-user-regexp][Find modifications in git logs]]
28192 : Regexp matched against the "From:" header of an email or usenet message.
28193 : It should match if the message is from the user him/herself.
28195 ** org-timer-display =(funcall (function (closure (t...=
28196    :PROPERTIES:
28197    :CUSTOM_ID: org-timer-display
28198    :END:
28200 - *Type:* (choice (const :tag "Mode line...
28201 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-timer.el][org-timer.el]]
28202 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-timer-display][Find modifications in git logs]]
28204 : Define where running timer is displayed, if at all.
28205 : When a timer is running, Org can display it in the mode line
28206 : and/or frame title.  Allowed values are:
28208 : both         displays in both mode line and frame title
28209 : mode-line    displays only in mode line (default)
28210 : frame-title  displays only in frame title
28211 : nil          current timer is not displayed
28213 ** org-clock-display-default-range =(funcall (function (closure (t...=
28214    :PROPERTIES:
28215    :CUSTOM_ID: org-clock-display-default-range
28216    :END:
28218 - *Type:* (choice (const today) (const y...
28219 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-clock.el][org-clock.el]]
28220 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-clock-display-default-range][Find modifications in git logs]]
28222 : Default range when displaying clocks with `org-clock-display'.
28224 ** org-attach-auto-tag =(funcall (function (closure (t...=
28225    :PROPERTIES:
28226    :CUSTOM_ID: org-attach-auto-tag
28227    :END:
28229 - *Type:* (choice (const :tag "None" nil...
28230 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-attach.el][org-attach.el]]
28231 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-attach-auto-tag][Find modifications in git logs]]
28233 : Tag that will be triggered automatically when an entry has an attachment.
28235 ** org-agenda-clockreport-parameter-plist =(quote (:link t :maxlevel 2))=
28236    :PROPERTIES:
28237    :CUSTOM_ID: org-agenda-clockreport-parameter-plist
28238    :END:
28240 - *Type:* plist
28241 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
28242 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-clockreport-parameter-plist][Find modifications in git logs]]
28244 : Property list with parameters for the clocktable in clockreport mode.
28245 : This is the display mode that shows a clock table in the daily/weekly
28246 : agenda, the properties for this dynamic block can be set here.
28247 : The usual clocktable parameters are allowed here, but you cannot set
28248 : the properties :name, :tstart, :tend, :block, and :scope - these will
28249 : be overwritten to make sure the content accurately reflects the
28250 : current display in the agenda.
28252 ** org-man-pdf-process =(funcall (function (closure (o...=
28253    :PROPERTIES:
28254    :CUSTOM_ID: org-man-pdf-process
28255    :END:
28257 - *Type:* (choice (repeat :tag "Shell co...
28258 - *Since:* Emacs version 24.4
28259 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-man.el][ox-man.el]]
28260 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-man-pdf-process][Find modifications in git logs]]
28262 : Commands to process a Man file to a PDF file.
28264 : This is a list of strings, each of them will be given to the
28265 : shell as a command.  %f in the command will be replaced by the
28266 : relative file name, %F by the absolute file name, %b by the file
28267 : base name (i.e. without directory and extension parts), %o by the
28268 : base directory of the file and %O by the absolute file name of
28269 : the output file.
28271 : By default, Org uses 3 runs of to do the processing.
28273 : Alternatively, this may be a Lisp function that does the
28274 : processing.  This function should accept the file name as
28275 : its single argument.
28277 ** org-export-with-planning =(funcall (function (closure (t...=
28278    :PROPERTIES:
28279    :CUSTOM_ID: org-export-with-planning
28280    :END:
28282 - *Type:* boolean
28283 - *Since:* Emacs version 24.4
28284 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox.el][ox.el]]
28285 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-export-with-planning][Find modifications in git logs]]
28287 : Non-nil means include planning info in export.
28289 : Planning info is the line containing either SCHEDULED:,
28290 : DEADLINE:, CLOSED: time-stamps, or a combination of them.
28292 : This option can also be set with the OPTIONS keyword,
28293 : e.g. "p:t".
28295 ** org-fontify-quote-and-verse-blocks =(funcall (function (closure (t...=
28296    :PROPERTIES:
28297    :CUSTOM_ID: org-fontify-quote-and-verse-blocks
28298    :END:
28300 - *Type:* boolean
28301 - *Since:* Emacs version 24.1
28302 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-faces.el][org-faces.el]]
28303 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-fontify-quote-and-verse-blocks][Find modifications in git logs]]
28305 : Non-nil means, add a special face to #+begin_quote and #+begin_verse block.
28306 : When nil, format these as normal Org.  This is the default, because the
28307 : content of these blocks will still be treated as Org syntax.
28309 ** org-html-footnotes-section =(funcall (function (closure (h...=
28310    :PROPERTIES:
28311    :CUSTOM_ID: org-html-footnotes-section
28312    :END:
28314 - *Type:* string
28315 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/ox-html.el][ox-html.el]]
28316 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-html-footnotes-section][Find modifications in git logs]]
28318 : Format for the footnotes section.
28319 : Should contain a two instances of %s.  The first will be replaced with the
28320 : language-specific word for "Footnotes", the second one will be replaced
28321 : by the footnotes themselves.
28323 ** org-agenda-max-effort =nil=
28324    :PROPERTIES:
28325    :CUSTOM_ID: org-agenda-max-effort
28326    :END:
28328 - *Type:* (choice (symbol :tag "No limit...
28329 - *Since:* Emacs version 24.4
28330 - *In file:* [[https://code.orgmode.org/bzg/org-mode/raw/master/lisp/org-agenda.el][org-agenda.el]]
28331 - [[https://code.orgmode.org/bzg/org-mode/commits/master/search?q=org-agenda-max-effort][Find modifications in git logs]]
28333 : Maximum cumulated effort duration for the agenda.
28334 : This can be nil (no limit) or a number of minutes (as an integer)
28335 : or an alist of agenda types with an associated number of minutes
28336 : to limit entries to in this type.