Merge remote-tracking branch 'srht/master'
[worg.git] / doc.org
blob0773a035cd9568d317ac395295bbf5650e27eeeb
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
6 #+HTML_LINK_UP:    index.html
7 #+HTML_LINK_HOME:  https://orgmode.org/worg/
9 # This file is released by its authors and contributors under the GNU
10 # Free Documentation license v1.3 or later, code examples are released
11 # under the GNU General Public License v3 or later.
13 * Definitions
15 This page lists *all hooks, commands and options* of Org 9.0.9.
17 - *Hooks* :: are options containing functions to be run before or after
18      a function.  For example, =org-mode-hook= can contain a list of
19      functions to be called after org-mode is turned on.
21 - *Commands* :: are interactive functions that the user can run with =M-x
22      command RET=.  Most commands have an associated keybinding,
23      indicated here. Users can bind command to his preferred
24      keybinding.
26 - *Options* :: are variables that the user can set through the =customize=
27      interface. Calling =M-x customize-variable RET= then completing
28      over available options will open the custom interface, which
29      makes it easy to set an option.
31 These are the main "internals" that the user may want to know about,
32 and we list them here for further reference.  E.g. You can safely
33 create links to =https://orgmode.org/worg/doc.html#org-agenda= to refer
34 to the documentation of the =org-agenda= command.
36 On top of these symbols, there are other non-interactive /functions/ and
37 /variables/.  You can get more documentation about them with =C-h f org-
38 TAB= and =C-h v org- TAB= respectively.
40 * Hooks
41   :PROPERTIES:
42   :CUSTOM_ID: hooks
43   :END:
45 ** org-checkbox-statistics-hook =nil=
46    :PROPERTIES:
47    :CUSTOM_ID: org-checkbox-statistics-hook
48    :END:
49 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
50 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-checkbox-statistics-hook][Find modifications in git logs]]
52 : Hook that is run whenever Org thinks checkbox statistics should be updated.
53 : This hook runs even if checkbox rule in
54 : `org-list-automatic-rules' does not apply, so it can be used to
55 : implement alternative ways of collecting statistics
56 : information.
58 ** org-todo-setup-filter-hook =nil=
59    :PROPERTIES:
60    :CUSTOM_ID: org-todo-setup-filter-hook
61    :END:
62 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
63 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-setup-filter-hook][Find modifications in git logs]]
65 : Hook for functions that pre-filter todo specs.
66 : Each function takes a todo spec and returns either nil or the spec
67 : transformed into canonical form.
69 ** org-timer-continue-hook =nil=
70    :PROPERTIES:
71    :CUSTOM_ID: org-timer-continue-hook
72    :END:
73 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
74 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-continue-hook][Find modifications in git logs]]
76 : Hook run after relative or countdown timer is continued.
78 ** org-clock-in-hook =nil=
79    :PROPERTIES:
80    :CUSTOM_ID: org-clock-in-hook
81    :END:
82 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
83 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-hook][Find modifications in git logs]]
85 : Hook run when starting the clock.
87 ** org-clock-before-select-task-hook =nil=
88    :PROPERTIES:
89    :CUSTOM_ID: org-clock-before-select-task-hook
90    :END:
91 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
92 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-before-select-task-hook][Find modifications in git logs]]
94 : Hook called in task selection just before prompting the user.
96 ** org-property-allowed-value-functions =nil=
97    :PROPERTIES:
98    :CUSTOM_ID: org-beamer-mode-off-hook
99    :END:
100 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
101 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-allowed-value-functions][Find modifications in git logs]]
103 : Hook for functions supplying allowed values for a specific property.
104 : The functions must take a single argument, the name of the property, and
105 : return a flat list of allowed values.  If ":ETC" is one of
106 : the values, this means that these values are intended as defaults for
107 : completion, but that other values should be allowed too.
108 : The functions must return nil if they are not responsible for this
109 : property.
111 ** org-after-todo-state-change-hook =(funcall (function (closure (f...=
112    :PROPERTIES:
113    :CUSTOM_ID: org-after-todo-state-change-hook
114    :END:
115 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
116 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-todo-state-change-hook][Find modifications in git logs]]
118 : Hook which is run after the state of a TODO item was changed.
119 : The new state (a string with a TODO keyword, or nil) is available in the
120 : Lisp variable `org-state'.
122 ** org-capture-prepare-finalize-hook =(funcall (function (closure (o...=
123    :PROPERTIES:
124    :CUSTOM_ID: org-capture-prepare-finalize-hook
125    :END:
126 - *Since:* Emacs version 24.1
127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-prepare-finalize-hook][Find modifications in git logs]]
130 : Hook that is run before the finalization starts.
131 : The capture buffer is current and still narrowed.
133 ** org-timer-stop-hook =nil=
134    :PROPERTIES:
135    :CUSTOM_ID: org-timer-stop-hook
136    :END:
137 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
138 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-stop-hook][Find modifications in git logs]]
140 : Hook run before relative or countdown timer is stopped.
142 ** org-metaleft-hook =nil=
143    :PROPERTIES:
144    :CUSTOM_ID: org-metaleft-hook
145    :END:
146 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
147 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaleft-hook][Find modifications in git logs]]
149 : Hook for functions attaching themselves to `M-left'.
150 : See `org-ctrl-c-ctrl-c-hook' for more information.
152 ** org-export-filter-bold-functions =nil=
153    :PROPERTIES:
154    :CUSTOM_ID: orgstruct-mode-off-hook
155    :END:
156 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
157 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-bold-functions][Find modifications in git logs]]
159 : List of functions applied to transcoded bold text.
160 : Each filter is called with three arguments: the transcoded data,
161 : as a string, the back-end, as a symbol, and the communication
162 : channel, as a plist.  It must return a string or nil.
164 ** org-export-before-parsing-hook =nil=
165    :PROPERTIES:
166    :CUSTOM_ID: org-indent-mode-on-hook
167    :END:
168 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
169 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-before-parsing-hook][Find modifications in git logs]]
171 : Hook run before parsing an export buffer.
173 : This is run after include keywords and macros have been expanded
174 : and Babel code blocks executed, on a copy of the original buffer
175 : being exported.  Visibility and narrowing are preserved.  Point
176 : is at the beginning of the buffer.
178 : Every function in this hook will be called with one argument: the
179 : back-end currently used, as a symbol.
181 ** org-feed-before-adding-hook =(funcall (function (closure (t...=
182    :PROPERTIES:
183    :CUSTOM_ID: org-feed-before-adding-hook
184    :END:
185 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
186 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-before-adding-hook][Find modifications in git logs]]
188 : Hook that is run before adding new feed items to a file.
189 : You might want to commit the file in its current state to version control,
190 : for example.
192 ** org-export-filter-diary-sexp-functions =nil=
193    :PROPERTIES:
194    :CUSTOM_ID: org-export-filter-diary-sexp-functions
195    :END:
196 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
197 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-diary-sexp-functions][Find modifications in git logs]]
199 : List of functions applied to a transcoded diary-sexp.
200 : Each filter is called with three arguments: the transcoded data,
201 : as a string, the back-end, as a symbol, and the communication
202 : channel, as a plist.  It must return a string or nil.
204 ** org-after-todo-statistics-hook =nil=
205    :PROPERTIES:
206    :CUSTOM_ID: org-after-todo-statistics-hook
207    :END:
208 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
209 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-todo-statistics-hook][Find modifications in git logs]]
211 : Hook that is called after a TODO statistics cookie has been updated.
212 : Each function is called with two arguments: the number of not-done entries
213 : and the number of done entries.
215 : For example, the following function, when added to this hook, will switch
216 : an entry to DONE when all children are done, and back to TODO when new
217 : entries are set to a TODO status.  Note that this hook is only called
218 : when there is a statistics cookie in the headline!
220 :  (defun org-summary-todo (n-done n-not-done)
221 :    "Switch entry to DONE when all subentries are done, to TODO otherwise."
222 :    (let (org-log-done org-log-states)   ; turn off logging
223 :      (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
226 ** org-export-filter-export-block-functions =nil=
227    :PROPERTIES:
228    :CUSTOM_ID: org-export-filter-export-block-functions
229    :END:
230 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
231 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-export-block-functions][Find modifications in git logs]]
233 : List of functions applied to a transcoded export-block.
234 : Each filter is called with three arguments: the transcoded data,
235 : as a string, the back-end, as a symbol, and the communication
236 : channel, as a plist.  It must return a string or nil.
238 ** org-babel-after-execute-hook =nil=
239    :PROPERTIES:
240    :CUSTOM_ID: org-babel-after-execute-hook
241    :END:
242 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
243 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-after-execute-hook][Find modifications in git logs]]
245 : Hook for functions to be called after `org-babel-execute-src-block'
247 ** org-icalendar-after-save-hook =nil=
248    :PROPERTIES:
249    :CUSTOM_ID: org-icalendar-after-save-hook
250    :END:
251 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
252 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-after-save-hook][Find modifications in git logs]]
254 : Hook run after an iCalendar file has been saved.
255 : This hook is run with the name of the file as argument.  A good
256 : way to use this is to tell a desktop calendar application to
257 : re-read the iCalendar file.
259 ** org-metaright-hook =nil=
260    :PROPERTIES:
261    :CUSTOM_ID: org-metaright-hook
262    :END:
263 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
264 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaright-hook][Find modifications in git logs]]
266 : Hook for functions attaching themselves to `M-right'.
267 : See `org-ctrl-c-ctrl-c-hook' for more information.
269 ** org-cycle-hook =(funcall (function (closure (f...=
270    :PROPERTIES:
271    :CUSTOM_ID: org-cycle-hook
272    :END:
273 - *Since:* Emacs version 26.1
274 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
275 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-hook][Find modifications in git logs]]
277 : Hook that is run after `org-cycle' has changed the buffer visibility.
278 : The function(s) in this hook must accept a single argument which indicates
279 : the new state that was set by the most recent `org-cycle' command.  The
280 : argument is a symbol.  After a global state change, it can have the values
281 : `overview', `contents', or `all'.  After a local state change, it can have
282 : the values `folded', `children', or `subtree'.
284 ** org-export-filter-subscript-functions =nil=
285    :PROPERTIES:
286    :CUSTOM_ID: org-export-filter-subscript-functions
287    :END:
288 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
289 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-subscript-functions][Find modifications in git logs]]
291 : List of functions applied to a transcoded subscript.
292 : Each filter is called with three arguments: the transcoded data,
293 : as a string, the back-end, as a symbol, and the communication
294 : channel, as a plist.  It must return a string or nil.
296 ** org-export-filter-entity-functions =nil=
297    :PROPERTIES:
298    :CUSTOM_ID: org-export-filter-entity-functions
299    :END:
300 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
301 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-entity-functions][Find modifications in git logs]]
303 : List of functions applied to a transcoded entity.
304 : Each filter is called with three arguments: the transcoded data,
305 : as a string, the back-end, as a symbol, and the communication
306 : channel, as a plist.  It must return a string or nil.
308 ** org-after-sorting-entries-or-items-hook =nil=
309    :PROPERTIES:
310    :CUSTOM_ID: org-after-sorting-entries-or-items-hook
311    :END:
312 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
313 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-sorting-entries-or-items-hook][Find modifications in git logs]]
315 : Hook that is run after a bunch of entries or items have been sorted.
316 : When children are sorted, the cursor is in the parent line when this
317 : hook gets called.  When a region or a plain list is sorted, the cursor
318 : will be in the first entry of the sorted region/list.
320 ** org-timer-done-hook =nil=
321    :PROPERTIES:
322    :CUSTOM_ID: org-timer-done-hook
323    :END:
324 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
325 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-done-hook][Find modifications in git logs]]
327 : Hook run after countdown timer reaches zero.
329 ** org-shiftmetaup-hook =nil=
330    :PROPERTIES:
331    :CUSTOM_ID: org-shiftmetaup-hook
332    :END:
333 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
334 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaup-hook][Find modifications in git logs]]
336 : Hook for functions attaching themselves to `M-S-up'.
337 : See `org-ctrl-c-ctrl-c-hook' for more information.
339 ** org-tab-after-check-for-table-hook =nil=
340    :PROPERTIES:
341    :CUSTOM_ID: org-tab-after-check-for-table-hook
342    :END:
343 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
344 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-after-check-for-table-hook][Find modifications in git logs]]
346 : Hook for functions to attach themselves to TAB.
347 : See `org-ctrl-c-ctrl-c-hook' for more information.
348 : This hook runs after it has been established that the cursor is not in a
349 : table, but before checking if the cursor is in a headline or if global cycling
350 : should be done.
351 : If any function in this hook returns t, not other actions like visibility
352 : cycling will be done.
354 ** org-open-at-point-functions =nil=
355    :PROPERTIES:
356    :CUSTOM_ID: org-open-at-point-functions
357    :END:
358 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
359 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point-functions][Find modifications in git logs]]
361 : Hook that is run when following a link at point.
363 : Functions in this hook must return t if they identify and follow
364 : a link at point.  If they don't find anything interesting at point,
365 : they must return nil.
367 ** org-property-changed-functions =nil=
368    :PROPERTIES:
369    :CUSTOM_ID: org-property-changed-functions
370    :END:
371 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
372 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-changed-functions][Find modifications in git logs]]
374 : Hook called when the value of a property has changed.
375 : Each hook function should accept two arguments, the name of the property
376 : and the new value.
378 ** orgstruct-mode-hook =nil=
379    :PROPERTIES:
380    :CUSTOM_ID: orgstruct-mode-hook
381    :END:
382 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
383 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-mode-hook][Find modifications in git logs]]
385 : Hook run after entering or leaving `orgstruct-mode'.
386 : No problems result if this variable is not bound.
387 : `add-hook' automatically binds it.  (This is true for all hook variables.)
389 ** org-mobile-pre-push-hook =nil=
390    :PROPERTIES:
391    :CUSTOM_ID: org-mobile-pre-push-hook
392    :END:
393 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
394 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pre-push-hook][Find modifications in git logs]]
396 : Hook run before running `org-mobile-push'.
397 : This could be used to clean up `org-mobile-directory', for example to
398 : remove files that used to be included in the agenda but no longer are.
399 : The presence of such files would not really be a problem, but after time
400 : they may accumulate.
402 ** org-export-filter-link-functions =nil=
403    :PROPERTIES:
404    :CUSTOM_ID: org-export-filter-link-functions
405    :END:
406 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
407 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-link-functions][Find modifications in git logs]]
409 : List of functions applied to a transcoded link.
410 : Each filter is called with three arguments: the transcoded data,
411 : as a string, the back-end, as a symbol, and the communication
412 : channel, as a plist.  It must return a string or nil.
414 ** org-shiftright-final-hook =nil=
415    :PROPERTIES:
416    :CUSTOM_ID: org-shiftright-final-hook
417    :END:
418 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
419 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftright-final-hook][Find modifications in git logs]]
421 : Hook for functions attaching themselves to `S-right'.
422 : This one runs after all other options except shift-select have been excluded.
423 : See `org-ctrl-c-ctrl-c-hook' for more information.
425 ** org-capture-mode-hook =nil=
426    :PROPERTIES:
427    :CUSTOM_ID: org-capture-mode-hook
428    :END:
429 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
430 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-mode-hook][Find modifications in git logs]]
432 : Hook run after entering or leaving `org-capture-mode'.
433 : No problems result if this variable is not bound.
434 : `add-hook' automatically binds it.  (This is true for all hook variables.)
436 ** org-mobile-post-pull-hook =nil=
437    :PROPERTIES:
438    :CUSTOM_ID: org-src-mode-off-hook
439    :END:
440 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
441 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-post-pull-hook][Find modifications in git logs]]
443 : Hook run after running `org-mobile-pull', only if new items were found.
444 : If Emacs does not have direct write access to the WebDAV directory used
445 : by the mobile device, this hook should be used to copy the emptied
446 : capture file `mobileorg.org' back to the WebDAV directory, for example
447 : using `rsync' or `scp'.
449 ** org-table-follow-field-mode-hook =nil=
450    :PROPERTIES:
451    :CUSTOM_ID: org-table-follow-field-mode-hook
452    :END:
453 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
454 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-follow-field-mode-hook][Find modifications in git logs]]
456 : Hook run after entering or leaving `org-table-follow-field-mode'.
457 : No problems result if this variable is not bound.
458 : `add-hook' automatically binds it.  (This is true for all hook variables.)
460 ** org-export-filter-underline-functions =nil=
461    :PROPERTIES:
462    :CUSTOM_ID: org-export-filter-underline-functions
463    :END:
464 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
465 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-underline-functions][Find modifications in git logs]]
467 : List of functions applied to transcoded underline text.
468 : Each filter is called with three arguments: the transcoded data,
469 : as a string, the back-end, as a symbol, and the communication
470 : channel, as a plist.  It must return a string or nil.
472 ** org-export-filter-target-functions =nil=
473    :PROPERTIES:
474    :CUSTOM_ID: org-capture-mode-off-hook
475    :END:
476 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
477 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-target-functions][Find modifications in git logs]]
479 : List of functions applied to a transcoded target.
480 : Each filter is called with three arguments: the transcoded data,
481 : as a string, the back-end, as a symbol, and the communication
482 : channel, as a plist.  It must return a string or nil.
484 ** org-shiftdown-hook =nil=
485    :PROPERTIES:
486    :CUSTOM_ID: org-shiftdown-hook
487    :END:
488 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
489 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown-hook][Find modifications in git logs]]
491 : Hook for functions attaching themselves to `S-down'.
492 : See `org-ctrl-c-ctrl-c-hook' for more information.
494 ** org-ctrl-c-ctrl-c-final-hook =nil=
495    :PROPERTIES:
496    :CUSTOM_ID: org-ctrl-c-ctrl-c-final-hook
497    :END:
498 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
499 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ctrl-c-final-hook][Find modifications in git logs]]
501 : Hook for functions attaching themselves to `C-c C-c'.
503 : This can be used to add additional functionality to the C-c C-c
504 : key which executes context-dependent commands.  This hook is run
505 : after any other test, while `org-ctrl-c-ctrl-c-hook' is run
506 : before the first test.
508 : Each function will be called with no arguments.  The function
509 : must check if the context is appropriate for it to act.  If yes,
510 : it should do its thing and then return a non-nil value.  If the
511 : context is wrong, just do nothing and return nil.
513 ** org-archive-hook =nil=
514    :PROPERTIES:
515    :CUSTOM_ID: org-archive-hook
516    :END:
517 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
518 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-hook][Find modifications in git logs]]
520 : Hook run after successfully archiving a subtree.
521 : Hook functions are called with point on the subtree in the
522 : original file.  At this stage, the subtree has been added to the
523 : archive location, but not yet deleted from the original file.
525 ** org-shiftleft-hook =nil=
526    :PROPERTIES:
527    :CUSTOM_ID: org-shiftleft-hook
528    :END:
529 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
530 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft-hook][Find modifications in git logs]]
532 : Hook for functions attaching themselves to `S-left'.
533 : See `org-ctrl-c-ctrl-c-hook' for more information.
535 ** org-todo-get-default-hook =nil=
536    :PROPERTIES:
537    :CUSTOM_ID: org-todo-get-default-hook
538    :END:
539 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
540 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-get-default-hook][Find modifications in git logs]]
542 : Hook for functions that get a default item for todo.
543 : Each function takes arguments (NEW-MARK OLD-MARK) and returns either
544 : nil or a string to be used for the todo mark.
546 ** org-export-filter-body-functions =nil=
547    :PROPERTIES:
548    :CUSTOM_ID: org-export-filter-body-functions
549    :END:
550 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
551 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-body-functions][Find modifications in git logs]]
553 : List of functions applied to transcoded body.
554 : Each filter is called with three arguments: a string which
555 : contains no Org syntax, the back-end, as a symbol, and the
556 : communication channel, as a plist.  It must return a string or
557 : nil.
559 ** org-clock-cancel-hook =nil=
560    :PROPERTIES:
561    :CUSTOM_ID: org-clock-cancel-hook
562    :END:
563 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
564 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-cancel-hook][Find modifications in git logs]]
566 : Hook run when canceling the current clock.
568 ** org-open-link-functions =nil=
569    :PROPERTIES:
570    :CUSTOM_ID: org-open-link-functions
571    :END:
572 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
573 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-link-functions][Find modifications in git logs]]
575 : Hook for functions finding a plain text link.
576 : These functions must take a single argument, the link content.
577 : They will be called for links that look like [[link text][description]]
578 : when LINK TEXT does not have a protocol like "http:" and does not look
579 : like a filename (e.g. "./blue.png").
581 : These functions will be called *before* Org attempts to resolve the
582 : link by doing text searches in the current buffer - so if you want a
583 : link "[[target]]" to still find "<<target>>", your function should
584 : handle this as a special case.
586 : When the function does handle the link, it must return a non-nil value.
587 : If it decides that it is not responsible for this link, it must return
588 : nil to indicate that that Org can continue with other options like
589 : exact and fuzzy text search.
591 ** org-export-filter-code-functions =nil=
592    :PROPERTIES:
593    :CUSTOM_ID: org-export-filter-code-functions
594    :END:
595 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
596 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-code-functions][Find modifications in git logs]]
598 : List of functions applied to transcoded code text.
599 : Each filter is called with three arguments: the transcoded data,
600 : as a string, the back-end, as a symbol, and the communication
601 : channel, as a plist.  It must return a string or nil.
603 ** org-shiftmetaright-hook =nil=
604    :PROPERTIES:
605    :CUSTOM_ID: org-shiftmetaright-hook
606    :END:
607 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
608 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaright-hook][Find modifications in git logs]]
610 : Hook for functions attaching themselves to `M-S-right'.
611 : See `org-ctrl-c-ctrl-c-hook' for more information.
613 ** org-export-filter-keyword-functions =nil=
614    :PROPERTIES:
615    :CUSTOM_ID: org-export-filter-keyword-functions
616    :END:
617 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
618 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-keyword-functions][Find modifications in git logs]]
620 : List of functions applied to a transcoded keyword.
621 : Each filter is called with three arguments: the transcoded data,
622 : as a string, the back-end, as a symbol, and the communication
623 : channel, as a plist.  It must return a string or nil.
625 ** org-export-filter-paragraph-functions =nil=
626    :PROPERTIES:
627    :CUSTOM_ID: org-export-filter-paragraph-functions
628    :END:
629 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
630 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-paragraph-functions][Find modifications in git logs]]
632 : List of functions applied to a transcoded paragraph.
633 : Each filter is called with three arguments: the transcoded data,
634 : as a string, the back-end, as a symbol, and the communication
635 : channel, as a plist.  It must return a string or nil.
637 ** org-export-filter-horizontal-rule-functions =nil=
638    :PROPERTIES:
639    :CUSTOM_ID: org-export-filter-horizontal-rule-functions
640    :END:
641 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
642 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-horizontal-rule-functions][Find modifications in git logs]]
644 : List of functions applied to a transcoded horizontal-rule.
645 : Each filter is called with three arguments: the transcoded data,
646 : as a string, the back-end, as a symbol, and the communication
647 : channel, as a plist.  It must return a string or nil.
649 ** org-export-filter-property-drawer-functions =nil=
650    :PROPERTIES:
651    :CUSTOM_ID: org-export-filter-property-drawer-functions
652    :END:
653 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
654 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-property-drawer-functions][Find modifications in git logs]]
656 : List of functions applied to a transcoded property-drawer.
657 : Each filter is called with three arguments: the transcoded data,
658 : as a string, the back-end, as a symbol, and the communication
659 : channel, as a plist.  It must return a string or nil.
661 ** org-shiftup-final-hook =nil=
662    :PROPERTIES:
663    :CUSTOM_ID: org-shiftup-final-hook
664    :END:
665 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
666 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup-final-hook][Find modifications in git logs]]
668 : Hook for functions attaching themselves to `S-up'.
669 : This one runs after all other options except shift-select have been excluded.
670 : See `org-ctrl-c-ctrl-c-hook' for more information.
672 ** org-export-filter-inline-src-block-functions =nil=
673    :PROPERTIES:
674    :CUSTOM_ID: org-export-filter-inline-src-block-functions
675    :END:
676 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
677 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-inline-src-block-functions][Find modifications in git logs]]
679 : List of functions applied to a transcoded inline-src-block.
680 : Each filter is called with three arguments: the transcoded data,
681 : as a string, the back-end, as a symbol, and the communication
682 : channel, as a plist.  It must return a string or nil.
684 ** org-export-stack-mode-hook =nil=
685    :PROPERTIES:
686    :CUSTOM_ID: orgtbl-mode-off-hook
687    :END:
688 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
689 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-mode-hook][Find modifications in git logs]]
691 : Hook run after entering Org-Stack mode.
692 : No problems result if this variable is not bound.
693 : `add-hook' automatically binds it.  (This is true for all hook variables.)
695 ** org-shiftright-hook =nil=
696    :PROPERTIES:
697    :CUSTOM_ID: org-shiftright-hook
698    :END:
699 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
700 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftright-hook][Find modifications in git logs]]
702 : Hook for functions attaching themselves to `S-right'.
703 : See `org-ctrl-c-ctrl-c-hook' for more information.
705 ** org-agenda-before-write-hook =(quote (org-agenda-add-entry-t...=
706    :PROPERTIES:
707    :CUSTOM_ID: org-agenda-before-write-hook
708    :END:
709 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
710 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-before-write-hook][Find modifications in git logs]]
712 : Hook run in a temporary buffer before writing the agenda to an export file.
713 : A useful function for this hook is `org-agenda-add-entry-text'.
715 ** org-export-filter-italic-functions =nil=
716    :PROPERTIES:
717    :CUSTOM_ID: org-export-filter-italic-functions
718    :END:
719 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
720 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-italic-functions][Find modifications in git logs]]
722 : List of functions applied to transcoded italic text.
723 : Each filter is called with three arguments: the transcoded data,
724 : as a string, the back-end, as a symbol, and the communication
725 : channel, as a plist.  It must return a string or nil.
727 ** org-babel-pre-tangle-hook =(funcall (function (closure (t...=
728    :PROPERTIES:
729    :CUSTOM_ID: org-babel-pre-tangle-hook
730    :END:
731 - *Since:* Emacs version 24.1
732 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
733 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-pre-tangle-hook][Find modifications in git logs]]
735 : Hook run at the beginning of `org-babel-tangle'.
737 ** org-export-filter-plain-text-functions =nil=
738    :PROPERTIES:
739    :CUSTOM_ID: org-export-filter-plain-text-functions
740    :END:
741 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
742 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-plain-text-functions][Find modifications in git logs]]
744 : List of functions applied to plain text.
745 : Each filter is called with three arguments: a string which
746 : contains no Org syntax, the back-end, as a symbol, and the
747 : communication channel, as a plist.  It must return a string or
748 : nil.
750 ** org-agenda-after-show-hook =nil=
751    :PROPERTIES:
752    :CUSTOM_ID: org-agenda-after-show-hook
753    :END:
754 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
755 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-after-show-hook][Find modifications in git logs]]
757 : Normal hook run after an item has been shown from the agenda.
758 : Point is in the buffer where the item originated.
760 ** org-timer-start-hook =nil=
761    :PROPERTIES:
762    :CUSTOM_ID: org-timer-start-hook
763    :END:
764 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
765 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-start-hook][Find modifications in git logs]]
767 : Hook run after relative timer is started.
769 ** org-shiftleft-final-hook =nil=
770    :PROPERTIES:
771    :CUSTOM_ID: org-shiftleft-final-hook
772    :END:
773 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
774 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft-final-hook][Find modifications in git logs]]
776 : Hook for functions attaching themselves to `S-left'.
777 : This one runs after all other options except shift-select have been excluded.
778 : See `org-ctrl-c-ctrl-c-hook' for more information.
780 ** org-agenda-mode-hook =nil=
781    :PROPERTIES:
782    :CUSTOM_ID: org-agenda-mode-hook
783    :END:
784 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
785 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-mode-hook][Find modifications in git logs]]
787 : Hook run after `org-agenda-mode' is turned on.
788 : The buffer is still writable when this hook is called.
790 ** org-occur-hook =(funcall (function (closure (f...=
791    :PROPERTIES:
792    :CUSTOM_ID: org-occur-hook
793    :END:
794 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
795 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-hook][Find modifications in git logs]]
797 : Hook that is run after `org-occur' has constructed a sparse tree.
798 : This can be used to recenter the window to show as much of the structure
799 : as possible.
801 ** org-agenda-cleanup-fancy-diary-hook =nil=
802    :PROPERTIES:
803    :CUSTOM_ID: org-agenda-cleanup-fancy-diary-hook
804    :END:
805 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
806 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-cleanup-fancy-diary-hook][Find modifications in git logs]]
808 : Hook run when the fancy diary buffer is cleaned up.
810 ** org-export-filter-item-functions =nil=
811    :PROPERTIES:
812    :CUSTOM_ID: org-export-filter-item-functions
813    :END:
814 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
815 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-item-functions][Find modifications in git logs]]
817 : List of functions applied to a transcoded item.
818 : Each filter is called with three arguments: the transcoded data,
819 : as a string, the back-end, as a symbol, and the communication
820 : channel, as a plist.  It must return a string or nil.
822 ** org-export-filter-inlinetask-functions =nil=
823    :PROPERTIES:
824    :CUSTOM_ID: org-table-follow-field-mode-off-hook
825    :END:
826 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
827 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-inlinetask-functions][Find modifications in git logs]]
829 : List of functions applied to a transcoded inlinetask.
830 : Each filter is called with three arguments: the transcoded data,
831 : as a string, the back-end, as a symbol, and the communication
832 : channel, as a plist.  It must return a string or nil.
834 ** org-mode-hook =(funcall (function (closure (f...=
835    :PROPERTIES:
836    :CUSTOM_ID: org-capture-mode-on-hook
837    :END:
838 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
839 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode-hook][Find modifications in git logs]]
841 : Hook run after entering Org mode.
842 : No problems result if this variable is not bound.
843 : `add-hook' automatically binds it.  (This is true for all hook variables.)
845 ** org-clock-in-prepare-hook =nil=
846    :PROPERTIES:
847    :CUSTOM_ID: org-clock-in-prepare-hook
848    :END:
849 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
850 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-prepare-hook][Find modifications in git logs]]
852 : Hook run when preparing the clock.
853 : This hook is run before anything happens to the task that
854 : you want to clock in.  For example, you can use this hook
855 : to add an effort property.
857 ** org-export-filter-headline-functions =nil=
858    :PROPERTIES:
859    :CUSTOM_ID: org-export-filter-headline-functions
860    :END:
861 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
862 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-headline-functions][Find modifications in git logs]]
864 : List of functions applied to a transcoded headline.
865 : Each filter is called with three arguments: the transcoded data,
866 : as a string, the back-end, as a symbol, and the communication
867 : channel, as a plist.  It must return a string or nil.
869 ** org-timer-set-hook =nil=
870    :PROPERTIES:
871    :CUSTOM_ID: org-timer-set-hook
872    :END:
873 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
874 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-set-hook][Find modifications in git logs]]
876 : Hook run after countdown timer is set.
878 ** org-export-filter-table-cell-functions =nil=
879    :PROPERTIES:
880    :CUSTOM_ID: org-export-filter-table-cell-functions
881    :END:
882 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
883 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-table-cell-functions][Find modifications in git logs]]
885 : List of functions applied to a transcoded table-cell.
886 : Each filter is called with three arguments: the transcoded data,
887 : as a string, the back-end, as a symbol, and the communication
888 : channel, as a plist.  It must return a string or nil.
890 ** org-speed-command-hook =(funcall (function (closure (o...=
891    :PROPERTIES:
892    :CUSTOM_ID: org-speed-command-hook
893    :END:
894 - *Since:* Emacs version 24.1
895 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
896 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-command-hook][Find modifications in git logs]]
898 : Hook for activating speed commands at strategic locations.
899 : Hook functions are called in sequence until a valid handler is
900 : found.
902 : Each hook takes a single argument, a user-pressed command key
903 : which is also a `self-insert-command' from the global map.
905 : Within the hook, examine the cursor position and the command key
906 : and return nil or a valid handler as appropriate.  Handler could
907 : be one of an interactive command, a function, or a form.
909 : Set `org-use-speed-commands' to non-nil value to enable this
910 : hook.  The default setting is `org-speed-command-activate'.
912 ** org-metaup-hook =nil=
913    :PROPERTIES:
914    :CUSTOM_ID: org-metaup-hook
915    :END:
916 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
917 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaup-hook][Find modifications in git logs]]
919 : Hook for functions attaching themselves to `M-up'.
920 : See `org-ctrl-c-ctrl-c-hook' for more information.
922 ** org-ctrl-c-ctrl-c-hook =nil=
923    :PROPERTIES:
924    :CUSTOM_ID: org-ctrl-c-ctrl-c-hook
925    :END:
926 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
927 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ctrl-c-hook][Find modifications in git logs]]
929 : Hook for functions attaching themselves to `C-c C-c'.
931 : This can be used to add additional functionality to the C-c C-c
932 : key which executes context-dependent commands.  This hook is run
933 : before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
934 : run after the last test.
936 : Each function will be called with no arguments.  The function
937 : must check if the context is appropriate for it to act.  If yes,
938 : it should do its thing and then return a non-nil value.  If the
939 : context is wrong, just do nothing and return nil.
941 ** orgtbl-mode-hook =nil=
942    :PROPERTIES:
943    :CUSTOM_ID: orgtbl-mode-hook
944    :END:
945 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
946 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-mode-hook][Find modifications in git logs]]
948 : Hook run after entering or leaving `orgtbl-mode'.
949 : No problems result if this variable is not bound.
950 : `add-hook' automatically binds it.  (This is true for all hook variables.)
952 ** org-load-hook =(funcall (function (closure (f...=
953    :PROPERTIES:
954    :CUSTOM_ID: org-load-hook
955    :END:
956 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
957 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-load-hook][Find modifications in git logs]]
959 : Hook that is run after org.el has been loaded.
961 ** org-todo-statistics-hook =nil=
962    :PROPERTIES:
963    :CUSTOM_ID: org-todo-statistics-hook
964    :END:
965 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
966 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-statistics-hook][Find modifications in git logs]]
968 : Hook that is run whenever Org thinks TODO statistics should be updated.
969 : This hook runs even if there is no statistics cookie present, in which case
970 : `org-after-todo-statistics-hook' would not run.
972 ** org-pre-cycle-hook =(funcall (function (closure (f...=
973    :PROPERTIES:
974    :CUSTOM_ID: org-pre-cycle-hook
975    :END:
976 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
977 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-pre-cycle-hook][Find modifications in git logs]]
979 : Hook that is run before visibility cycling is happening.
980 : The function(s) in this hook must accept a single argument which indicates
981 : the new state that will be set right after running this hook.  The
982 : argument is a symbol.  Before a global state change, it can have the values
983 : `overview', `content', or `all'.  Before a local state change, it can have
984 : the values `folded', `children', or `subtree'.
986 ** org-export-filter-planning-functions =nil=
987    :PROPERTIES:
988    :CUSTOM_ID: org-export-filter-planning-functions
989    :END:
990 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
991 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-planning-functions][Find modifications in git logs]]
993 : List of functions applied to a transcoded planning.
994 : Each filter is called with three arguments: the transcoded data,
995 : as a string, the back-end, as a symbol, and the communication
996 : channel, as a plist.  It must return a string or nil.
998 ** org-export-filter-options-functions =nil=
999    :PROPERTIES:
1000    :CUSTOM_ID: org-export-filter-options-functions
1001    :END:
1002 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1003 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-options-functions][Find modifications in git logs]]
1005 : List of functions applied to the export options.
1006 : Each filter is called with two arguments: the export options, as
1007 : a plist, and the back-end, as a symbol.  It must return
1008 : a property list containing export options.
1010 ** orgstruct-setup-hook =(funcall (function (closure (o...=
1011    :PROPERTIES:
1012    :CUSTOM_ID: org-cdlatex-mode-off-hook
1013    :END:
1014 - *Since:* Emacs version 24.4
1015 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1016 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-setup-hook][Find modifications in git logs]]
1018 : Hook run after orgstruct-mode-map is filled.
1020 ** org-capture-after-finalize-hook =(funcall (function (closure (o...=
1021    :PROPERTIES:
1022    :CUSTOM_ID: org-capture-after-finalize-hook
1023    :END:
1024 - *Since:* Emacs version 24.1
1025 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
1026 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-after-finalize-hook][Find modifications in git logs]]
1028 : Hook that is run right after a capture process is finalized.
1029 : Suitable for window cleanup.
1031 ** org-mobile-before-process-capture-hook =nil=
1032    :PROPERTIES:
1033    :CUSTOM_ID: org-mobile-before-process-capture-hook
1034    :END:
1035 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
1036 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-before-process-capture-hook][Find modifications in git logs]]
1038 : Hook that is run after content was moved to `org-mobile-inbox-for-pull'.
1039 : The inbox file is visited by the current buffer, and the buffer is
1040 : narrowed to the newly captured data.
1042 ** org-export-filter-statistics-cookie-functions =nil=
1043    :PROPERTIES:
1044    :CUSTOM_ID: org-export-filter-statistics-cookie-functions
1045    :END:
1046 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1047 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-statistics-cookie-functions][Find modifications in git logs]]
1049 : List of functions applied to a transcoded statistics-cookie.
1050 : Each filter is called with three arguments: the transcoded data,
1051 : as a string, the back-end, as a symbol, and the communication
1052 : channel, as a plist.  It must return a string or nil.
1054 ** org-export-filter-dynamic-block-functions =nil=
1055    :PROPERTIES:
1056    :CUSTOM_ID: org-export-filter-dynamic-block-functions
1057    :END:
1058 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1059 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-dynamic-block-functions][Find modifications in git logs]]
1061 : List of functions applied to a transcoded dynamic-block.
1062 : Each filter is called with three arguments: the transcoded data,
1063 : as a string, the back-end, as a symbol, and the communication
1064 : channel, as a plist.  It must return a string or nil.
1066 ** org-export-filter-quote-block-functions =nil=
1067    :PROPERTIES:
1068    :CUSTOM_ID: org-export-filter-quote-block-functions
1069    :END:
1070 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1071 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-quote-block-functions][Find modifications in git logs]]
1073 : List of functions applied to a transcoded quote block.
1074 : Each filter is called with three arguments: the transcoded quote
1075 : data, as a string, the back-end, as a symbol, and the
1076 : communication channel, as a plist.  It must return a string or
1077 : nil.
1079 ** org-mobile-post-push-hook =nil=
1080    :PROPERTIES:
1081    :CUSTOM_ID: org-mobile-post-push-hook
1082    :END:
1083 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
1084 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-post-push-hook][Find modifications in git logs]]
1086 : Hook run after running `org-mobile-push'.
1087 : If Emacs does not have direct write access to the WebDAV directory used
1088 : by the mobile device, this hook should be used to copy all files from the
1089 : local staging directory `org-mobile-directory' to the WebDAV directory,
1090 : for example using `rsync' or `scp'.
1092 ** org-export-before-processing-hook =nil=
1093    :PROPERTIES:
1094    :CUSTOM_ID: org-export-before-processing-hook
1095    :END:
1096 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1097 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-before-processing-hook][Find modifications in git logs]]
1099 : Hook run at the beginning of the export process.
1101 : This is run before include keywords and macros are expanded and
1102 : Babel code blocks executed, on a copy of the original buffer
1103 : being exported.  Visibility and narrowing are preserved.  Point
1104 : is at the beginning of the buffer.
1106 : Every function in this hook will be called with one argument: the
1107 : back-end currently used, as a symbol.
1109 ** org-export-filter-clock-functions =nil=
1110    :PROPERTIES:
1111    :CUSTOM_ID: org-export-filter-clock-functions
1112    :END:
1113 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1114 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-clock-functions][Find modifications in git logs]]
1116 : List of functions applied to a transcoded clock.
1117 : Each filter is called with three arguments: the transcoded data,
1118 : as a string, the back-end, as a symbol, and the communication
1119 : channel, as a plist.  It must return a string or nil.
1121 ** org-export-filter-superscript-functions =nil=
1122    :PROPERTIES:
1123    :CUSTOM_ID: org-export-filter-superscript-functions
1124    :END:
1125 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1126 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-superscript-functions][Find modifications in git logs]]
1128 : List of functions applied to a transcoded superscript.
1129 : Each filter is called with three arguments: the transcoded data,
1130 : as a string, the back-end, as a symbol, and the communication
1131 : channel, as a plist.  It must return a string or nil.
1133 ** org-export-filter-verbatim-functions =nil=
1134    :PROPERTIES:
1135    :CUSTOM_ID: org-export-filter-verbatim-functions
1136    :END:
1137 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1138 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-verbatim-functions][Find modifications in git logs]]
1140 : List of functions applied to transcoded verbatim text.
1141 : Each filter is called with three arguments: the transcoded data,
1142 : as a string, the back-end, as a symbol, and the communication
1143 : channel, as a plist.  It must return a string or nil.
1145 ** org-export-filter-radio-target-functions =nil=
1146    :PROPERTIES:
1147    :CUSTOM_ID: org-export-filter-radio-target-functions
1148    :END:
1149 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1150 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-radio-target-functions][Find modifications in git logs]]
1152 : List of functions applied to a transcoded radio-target.
1153 : Each filter is called with three arguments: the transcoded data,
1154 : as a string, the back-end, as a symbol, and the communication
1155 : channel, as a plist.  It must return a string or nil.
1157 ** org-export-filter-footnote-definition-functions =nil=
1158    :PROPERTIES:
1159    :CUSTOM_ID: org-export-filter-footnote-definition-functions
1160    :END:
1161 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1162 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-footnote-definition-functions][Find modifications in git logs]]
1164 : List of functions applied to a transcoded footnote-definition.
1165 : Each filter is called with three arguments: the transcoded data,
1166 : as a string, the back-end, as a symbol, and the communication
1167 : channel, as a plist.  It must return a string or nil.
1169 ** org-cdlatex-mode-hook =nil=
1170    :PROPERTIES:
1171    :CUSTOM_ID: org-cdlatex-mode-hook
1172    :END:
1173 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1174 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-mode-hook][Find modifications in git logs]]
1176 : Hook run after entering or leaving `org-cdlatex-mode'.
1177 : No problems result if this variable is not bound.
1178 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1180 ** org-export-filter-center-block-functions =nil=
1181    :PROPERTIES:
1182    :CUSTOM_ID: org-export-filter-center-block-functions
1183    :END:
1184 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1185 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-center-block-functions][Find modifications in git logs]]
1187 : List of functions applied to a transcoded center block.
1188 : Each filter is called with three arguments: the transcoded data,
1189 : as a string, the back-end, as a symbol, and the communication
1190 : channel, as a plist.  It must return a string or nil.
1192 ** org-export-filter-plain-list-functions =nil=
1193    :PROPERTIES:
1194    :CUSTOM_ID: org-export-filter-plain-list-functions
1195    :END:
1196 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1197 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-plain-list-functions][Find modifications in git logs]]
1199 : List of functions applied to a transcoded plain-list.
1200 : Each filter is called with three arguments: the transcoded data,
1201 : as a string, the back-end, as a symbol, and the communication
1202 : channel, as a plist.  It must return a string or nil.
1204 ** org-export-filter-strike-through-functions =nil=
1205    :PROPERTIES:
1206    :CUSTOM_ID: org-export-filter-strike-through-functions
1207    :END:
1208 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1209 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-strike-through-functions][Find modifications in git logs]]
1211 : List of functions applied to transcoded strike-through text.
1212 : Each filter is called with three arguments: the transcoded data,
1213 : as a string, the back-end, as a symbol, and the communication
1214 : channel, as a plist.  It must return a string or nil.
1216 ** org-export-filter-parse-tree-functions =nil=
1217    :PROPERTIES:
1218    :CUSTOM_ID: org-export-filter-parse-tree-functions
1219    :END:
1220 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1221 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-parse-tree-functions][Find modifications in git logs]]
1223 : List of functions applied to the parsed tree.
1224 : Each filter is called with three arguments: the parse tree, as
1225 : returned by `org-element-parse-buffer', the back-end, as
1226 : a symbol, and the communication channel, as a plist.  It must
1227 : return the modified parse tree to transcode.
1229 ** org-publish-after-publishing-hook =nil=
1230    :PROPERTIES:
1231    :CUSTOM_ID: org-publish-after-publishing-hook
1232    :END:
1233 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
1234 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-after-publishing-hook][Find modifications in git logs]]
1236 : Hook run each time a file is published.
1237 : Every function in this hook will be called with two arguments:
1238 : the name of the original file and the name of the file
1239 : produced.
1241 ** org-clock-out-hook =nil=
1242    :PROPERTIES:
1243    :CUSTOM_ID: org-clock-out-hook
1244    :END:
1245 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
1246 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-hook][Find modifications in git logs]]
1248 : Hook run when stopping the current clock.
1250 ** org-follow-link-hook =(funcall (function (closure (f...=
1251    :PROPERTIES:
1252    :CUSTOM_ID: org-cdlatex-mode-on-hook
1253    :END:
1254 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1255 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-follow-link-hook][Find modifications in git logs]]
1257 : Hook that is run after a link has been followed.
1259 ** org-metareturn-hook =nil=
1260    :PROPERTIES:
1261    :CUSTOM_ID: org-metareturn-hook
1262    :END:
1263 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1264 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metareturn-hook][Find modifications in git logs]]
1266 : Hook for functions attaching themselves to `M-RET'.
1267 : See `org-ctrl-c-ctrl-c-hook' for more information.
1269 ** org-after-demote-entry-hook =nil=
1270    :PROPERTIES:
1271    :CUSTOM_ID: org-after-demote-entry-hook
1272    :END:
1273 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1274 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-demote-entry-hook][Find modifications in git logs]]
1276 : Hook run after an entry has been demoted.
1277 : The cursor will be at the beginning of the entry.
1278 : When a subtree is being demoted, the hook will be called for each node.
1280 ** org-shiftdown-final-hook =nil=
1281    :PROPERTIES:
1282    :CUSTOM_ID: org-shiftdown-final-hook
1283    :END:
1284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown-final-hook][Find modifications in git logs]]
1287 : Hook for functions attaching themselves to `S-down'.
1288 : This one runs after all other options except shift-select have been excluded.
1289 : See `org-ctrl-c-ctrl-c-hook' for more information.
1291 ** org-export-filter-table-row-functions =nil=
1292    :PROPERTIES:
1293    :CUSTOM_ID: org-export-filter-table-row-functions
1294    :END:
1295 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1296 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-table-row-functions][Find modifications in git logs]]
1298 : List of functions applied to a transcoded table-row.
1299 : Each filter is called with three arguments: the transcoded data,
1300 : as a string, the back-end, as a symbol, and the communication
1301 : channel, as a plist.  It must return a string or nil.
1303 ** org-beamer-mode-hook =nil=
1304    :PROPERTIES:
1305    :CUSTOM_ID: org-beamer-mode-hook
1306    :END:
1307 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
1308 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-mode-hook][Find modifications in git logs]]
1310 : Hook run after entering or leaving `org-beamer-mode'.
1311 : No problems result if this variable is not bound.
1312 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1314 ** org-after-promote-entry-hook =nil=
1315    :PROPERTIES:
1316    :CUSTOM_ID: org-store-link-functions
1317    :END:
1318 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1319 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-promote-entry-hook][Find modifications in git logs]]
1321 : Hook run after an entry has been promoted.
1322 : The cursor will be at the beginning of the entry.
1323 : When a subtree is being promoted, the hook will be called for each node.
1325 ** org-after-tags-change-hook =nil=
1326    :PROPERTIES:
1327    :CUSTOM_ID: org-after-tags-change-hook
1328    :END:
1329 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1330 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-tags-change-hook][Find modifications in git logs]]
1332 : Hook that is run after the tags in a line have changed.
1334 ** org-after-refile-insert-hook =nil=
1335    :PROPERTIES:
1336    :CUSTOM_ID: org-after-refile-insert-hook
1337    :END:
1338 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1339 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-refile-insert-hook][Find modifications in git logs]]
1341 : Hook run after `org-refile' has inserted its stuff at the new location.
1342 : Note that this is still *before* the stuff will be removed from
1343 : the *old* location.
1345 ** org-export-filter-drawer-functions =nil=
1346    :PROPERTIES:
1347    :CUSTOM_ID: org-export-filter-drawer-functions
1348    :END:
1349 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1350 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-drawer-functions][Find modifications in git logs]]
1352 : List of functions applied to a transcoded drawer.
1353 : Each filter is called with three arguments: the transcoded data,
1354 : as a string, the back-end, as a symbol, and the communication
1355 : channel, as a plist.  It must return a string or nil.
1357 ** org-export-filter-example-block-functions =nil=
1358    :PROPERTIES:
1359    :CUSTOM_ID: org-indent-mode-off-hook
1360    :END:
1361 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1362 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-example-block-functions][Find modifications in git logs]]
1364 : List of functions applied to a transcoded example-block.
1365 : Each filter is called with three arguments: the transcoded data,
1366 : as a string, the back-end, as a symbol, and the communication
1367 : channel, as a plist.  It must return a string or nil.
1369 ** org-capture-before-finalize-hook =(funcall (function (closure (o...=
1370    :PROPERTIES:
1371    :CUSTOM_ID: org-capture-before-finalize-hook
1372    :END:
1373 - *Since:* Emacs version 24.1
1374 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
1375 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-before-finalize-hook][Find modifications in git logs]]
1377 : Hook that is run right before a capture process is finalized.
1378 : The capture buffer is still current when this hook runs and it is
1379 : widened to the entire buffer.
1381 ** org-execute-file-search-functions =nil=
1382    :PROPERTIES:
1383    :CUSTOM_ID: org-execute-file-search-functions
1384    :END:
1385 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1386 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-execute-file-search-functions][Find modifications in git logs]]
1388 : List of functions to execute a file search triggered by a link.
1390 : Functions added to this hook must accept a single argument, the
1391 : search string that was part of the file link, the part after the
1392 : double colon.  The function must first check if it would like to
1393 : handle this search, for example by checking the `major-mode' or
1394 : the file extension.  If it decides not to handle this search, it
1395 : should just return nil to give other functions a chance.  If it
1396 : does handle the search, it must return a non-nil value to keep
1397 : other functions from trying.
1399 : Each function can access the current prefix argument through the
1400 : variable `current-prefix-arg'.  Note that a single prefix is used
1401 : to force opening a link in Emacs, so it may be good to only use a
1402 : numeric or double prefix to guide the search function.
1404 : In case this is needed, a function in this hook can also restore
1405 : the window configuration before `org-open-at-point' was called using:
1407 :     (set-window-configuration org-window-config-before-follow-link)
1409 ** org-export-filter-export-snippet-functions =nil=
1410    :PROPERTIES:
1411    :CUSTOM_ID: org-export-filter-export-snippet-functions
1412    :END:
1413 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1414 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-export-snippet-functions][Find modifications in git logs]]
1416 : List of functions applied to a transcoded export-snippet.
1417 : Each filter is called with three arguments: the transcoded data,
1418 : as a string, the back-end, as a symbol, and the communication
1419 : channel, as a plist.  It must return a string or nil.
1421 ** org-timer-pause-hook =nil=
1422    :PROPERTIES:
1423    :CUSTOM_ID: org-timer-pause-hook
1424    :END:
1425 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
1426 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-pause-hook][Find modifications in git logs]]
1428 : Hook run before relative or countdown timer is paused.
1430 ** org-agenda-bulk-custom-functions =nil=
1431    :PROPERTIES:
1432    :CUSTOM_ID: org-agenda-bulk-custom-functions
1433    :END:
1434 - *Since:* Emacs version 24.1
1435 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
1436 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-custom-functions][Find modifications in git logs]]
1438 : Alist of characters and custom functions for bulk actions.
1439 : For example, this value makes those two functions available:
1441 :   \='((?R set-category)
1442 :     (?C bulk-cut))
1444 : With selected entries in an agenda buffer, `B R' will call
1445 : the custom function `set-category' on the selected entries.
1446 : Note that functions in this alist don't need to be quoted.
1448 ** org-export-filter-babel-call-functions =nil=
1449    :PROPERTIES:
1450    :CUSTOM_ID: org-export-filter-babel-call-functions
1451    :END:
1452 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1453 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-babel-call-functions][Find modifications in git logs]]
1455 : List of functions applied to a transcoded babel-call.
1456 : Each filter is called with three arguments: the transcoded data,
1457 : as a string, the back-end, as a symbol, and the communication
1458 : channel, as a plist.  It must return a string or nil.
1460 ** org-reveal-start-hook =nil=
1461    :PROPERTIES:
1462    :CUSTOM_ID: org-reveal-start-hook
1463    :END:
1464 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1465 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reveal-start-hook][Find modifications in git logs]]
1467 : Hook run before revealing a location.
1469 ** org-export-filter-latex-fragment-functions =nil=
1470    :PROPERTIES:
1471    :CUSTOM_ID: org-export-filter-latex-fragment-functions
1472    :END:
1473 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1474 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-latex-fragment-functions][Find modifications in git logs]]
1476 : List of functions applied to a transcoded latex-fragment.
1477 : Each filter is called with three arguments: the transcoded data,
1478 : as a string, the back-end, as a symbol, and the communication
1479 : channel, as a plist.  It must return a string or nil.
1481 ** org-export-filter-latex-environment-functions =nil=
1482    :PROPERTIES:
1483    :CUSTOM_ID: org-export-filter-latex-environment-functions
1484    :END:
1485 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1486 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-latex-environment-functions][Find modifications in git logs]]
1488 : List of functions applied to a transcoded latex-environment.
1489 : Each filter is called with three arguments: the transcoded data,
1490 : as a string, the back-end, as a symbol, and the communication
1491 : channel, as a plist.  It must return a string or nil.
1493 ** org-tab-after-check-for-cycling-hook =nil=
1494    :PROPERTIES:
1495    :CUSTOM_ID: org-tab-after-check-for-cycling-hook
1496    :END:
1497 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1498 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-after-check-for-cycling-hook][Find modifications in git logs]]
1500 : Hook for functions to attach themselves to TAB.
1501 : See `org-ctrl-c-ctrl-c-hook' for more information.
1502 : This hook runs after it has been established that not table field motion and
1503 : not visibility should be done because of current context.  This is probably
1504 : the place where a package like yasnippets can hook in.
1506 ** org-log-buffer-setup-hook =(funcall (function (closure (f...=
1507    :PROPERTIES:
1508    :CUSTOM_ID: org-log-buffer-setup-hook
1509    :END:
1510 - *Since:* Emacs version 24.1
1511 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1512 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-buffer-setup-hook][Find modifications in git logs]]
1514 : Hook that is run after an Org log buffer is created.
1516 ** org-babel-tangle-body-hook =(funcall (function (closure (t...=
1517    :PROPERTIES:
1518    :CUSTOM_ID: org-babel-tangle-body-hook
1519    :END:
1520 - *Since:* Emacs version 24.1
1521 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
1522 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-body-hook][Find modifications in git logs]]
1524 : Hook run over the contents of each code block body.
1526 ** org-export-filter-timestamp-functions =nil=
1527    :PROPERTIES:
1528    :CUSTOM_ID: org-export-filter-timestamp-functions
1529    :END:
1530 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1531 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-timestamp-functions][Find modifications in git logs]]
1533 : List of functions applied to a transcoded timestamp.
1534 : Each filter is called with three arguments: the transcoded data,
1535 : as a string, the back-end, as a symbol, and the communication
1536 : channel, as a plist.  It must return a string or nil.
1538 ** org-export-filter-fixed-width-functions =nil=
1539    :PROPERTIES:
1540    :CUSTOM_ID: org-export-filter-fixed-width-functions
1541    :END:
1542 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1543 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-fixed-width-functions][Find modifications in git logs]]
1545 : List of functions applied to a transcoded fixed-width.
1546 : Each filter is called with three arguments: the transcoded data,
1547 : as a string, the back-end, as a symbol, and the communication
1548 : channel, as a plist.  It must return a string or nil.
1550 ** org-insert-heading-hook =(funcall (function (closure (f...=
1551    :PROPERTIES:
1552    :CUSTOM_ID: org-insert-heading-hook
1553    :END:
1554 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1555 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-hook][Find modifications in git logs]]
1557 : Hook being run after inserting a new heading.
1559 ** org-shiftmetadown-hook =nil=
1560    :PROPERTIES:
1561    :CUSTOM_ID: org-shiftmetadown-hook
1562    :END:
1563 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1564 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetadown-hook][Find modifications in git logs]]
1566 : Hook for functions attaching themselves to `M-S-down'.
1567 : See `org-ctrl-c-ctrl-c-hook' for more information.
1569 ** org-shiftup-hook =nil=
1570    :PROPERTIES:
1571    :CUSTOM_ID: org-shiftup-hook
1572    :END:
1573 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1574 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup-hook][Find modifications in git logs]]
1576 : Hook for functions attaching themselves to `S-up'.
1577 : See `org-ctrl-c-ctrl-c-hook' for more information.
1579 ** org-shiftmetaleft-hook =nil=
1580    :PROPERTIES:
1581    :CUSTOM_ID: org-shiftmetaleft-hook
1582    :END:
1583 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1584 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaleft-hook][Find modifications in git logs]]
1586 : Hook for functions attaching themselves to `M-S-left'.
1587 : See `org-ctrl-c-ctrl-c-hook' for more information.
1589 ** org-lint--report-mode-hook =nil=
1590    :PROPERTIES:
1591    :CUSTOM_ID: org-lint--report-mode-hook
1592    :END:
1593 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
1594 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--report-mode-hook][Find modifications in git logs]]
1596 : Hook run after entering OrgLint mode.
1597 : No problems result if this variable is not bound.
1598 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1600 ** org-ctags-open-link-functions =(funcall (function (closure (t...=
1601    :PROPERTIES:
1602    :CUSTOM_ID: org-ctags-open-link-functions
1603    :END:
1604 - *Since:* Emacs version 24.1
1605 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
1606 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-open-link-functions][Find modifications in git logs]]
1608 : List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active.
1610 ** org-babel-post-tangle-hook =(funcall (function (closure (t...=
1611    :PROPERTIES:
1612    :CUSTOM_ID: org-babel-post-tangle-hook
1613    :END:
1614 - *Since:* Emacs version 24.1
1615 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
1616 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-post-tangle-hook][Find modifications in git logs]]
1618 : Hook run in code files tangled by `org-babel-tangle'.
1620 ** org-tab-first-hook =nil=
1621    :PROPERTIES:
1622    :CUSTOM_ID: org-tab-first-hook
1623    :END:
1624 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1625 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-first-hook][Find modifications in git logs]]
1627 : Hook for functions to attach themselves to TAB.
1628 : See `org-ctrl-c-ctrl-c-hook' for more information.
1629 : This hook runs as the first action when TAB is pressed, even before
1630 : `org-cycle' messes around with the `outline-regexp' to cater for
1631 : inline tasks and plain list item folding.
1632 : If any function in this hook returns t, any other actions that
1633 : would have been caused by TAB (such as table field motion or visibility
1634 : cycling) will not occur.
1636 ** org-agenda-finalize-hook =nil=
1637    :PROPERTIES:
1638    :CUSTOM_ID: org-agenda-finalize-hook
1639    :END:
1640 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
1641 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-finalize-hook][Find modifications in git logs]]
1643 : Hook run just before displaying an agenda buffer.
1644 : The buffer is still writable when the hook is called.
1646 : You can modify some of the buffer substrings but you should be
1647 : extra careful not to modify the text properties of the agenda
1648 : headlines as the agenda display heavily relies on them.
1650 ** org-clock-goto-hook =nil=
1651    :PROPERTIES:
1652    :CUSTOM_ID: org-clock-goto-hook
1653    :END:
1654 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
1655 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto-hook][Find modifications in git logs]]
1657 : Hook run when selecting the currently clocked-in entry.
1659 ** orgtbl-after-send-table-hook =nil=
1660    :PROPERTIES:
1661    :CUSTOM_ID: orgtbl-after-send-table-hook
1662    :END:
1663 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
1664 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-after-send-table-hook][Find modifications in git logs]]
1666 : Hook for functions attaching to `C-c C-c', if the table is sent.
1667 : This can be used to add additional functionality after the table is sent
1668 : to the receiver position, otherwise, if table is not sent, the functions
1669 : are not run.
1671 ** org-export-filter-footnote-reference-functions =nil=
1672    :PROPERTIES:
1673    :CUSTOM_ID: org-export-filter-footnote-reference-functions
1674    :END:
1675 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1676 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-footnote-reference-functions][Find modifications in git logs]]
1678 : List of functions applied to a transcoded footnote-reference.
1679 : Each filter is called with three arguments: the transcoded data,
1680 : as a string, the back-end, as a symbol, and the communication
1681 : channel, as a plist.  It must return a string or nil.
1683 ** org-export-filter-line-break-functions =nil=
1684    :PROPERTIES:
1685    :CUSTOM_ID: org-export-filter-line-break-functions
1686    :END:
1687 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1688 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-line-break-functions][Find modifications in git logs]]
1690 : List of functions applied to a transcoded line-break.
1691 : Each filter is called with three arguments: the transcoded data,
1692 : as a string, the back-end, as a symbol, and the communication
1693 : channel, as a plist.  It must return a string or nil.
1695 ** org-export-filter-inline-babel-call-functions =nil=
1696    :PROPERTIES:
1697    :CUSTOM_ID: org-export-filter-inline-babel-call-functions
1698    :END:
1699 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1700 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-inline-babel-call-functions][Find modifications in git logs]]
1702 : List of functions applied to a transcoded inline-babel-call.
1703 : Each filter is called with three arguments: the transcoded data,
1704 : as a string, the back-end, as a symbol, and the communication
1705 : channel, as a plist.  It must return a string or nil.
1707 ** org-font-lock-set-keywords-hook =nil=
1708    :PROPERTIES:
1709    :CUSTOM_ID: org-font-lock-set-keywords-hook
1710    :END:
1711 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1712 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-font-lock-set-keywords-hook][Find modifications in git logs]]
1714 : Functions that can manipulate `org-font-lock-extra-keywords'.
1715 : This is called after `org-font-lock-extra-keywords' is defined, but before
1716 : it is installed to be used by font lock.  This can be useful if something
1717 : needs to be inserted at a specific position in the font-lock sequence.
1719 ** org-mobile-pre-pull-hook =nil=
1720    :PROPERTIES:
1721    :CUSTOM_ID: org-mobile-pre-pull-hook
1722    :END:
1723 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
1724 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pre-pull-hook][Find modifications in git logs]]
1726 : Hook run before executing `org-mobile-pull'.
1727 : If Emacs does not have direct write access to the WebDAV directory used
1728 : by the mobile device, this hook should be used to copy the capture file
1729 : `mobileorg.org' from the WebDAV location to the local staging
1730 : directory `org-mobile-directory'.
1732 ** org-font-lock-hook =nil=
1733    :PROPERTIES:
1734    :CUSTOM_ID: org-font-lock-hook
1735    :END:
1736 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1737 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-font-lock-hook][Find modifications in git logs]]
1739 : Functions to be called for special font lock stuff.
1741 ** org-export-filter-final-output-functions =nil=
1742    :PROPERTIES:
1743    :CUSTOM_ID: orgstruct-mode-on-hook
1744    :END:
1745 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1746 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-final-output-functions][Find modifications in git logs]]
1748 : List of functions applied to the transcoded string.
1749 : Each filter is called with three arguments: the full transcoded
1750 : string, the back-end, as a symbol, and the communication channel,
1751 : as a plist.  It must return a string that will be used as the
1752 : final export output.
1754 ** org-indent-mode-hook =nil=
1755    :PROPERTIES:
1756    :CUSTOM_ID: org-indent-mode-hook
1757    :END:
1758 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
1759 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-mode-hook][Find modifications in git logs]]
1761 : Hook run after entering or leaving `org-indent-mode'.
1762 : No problems result if this variable is not bound.
1763 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1765 ** org-export-filter-special-block-functions =nil=
1766    :PROPERTIES:
1767    :CUSTOM_ID: org-export-filter-special-block-functions
1768    :END:
1769 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1770 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-special-block-functions][Find modifications in git logs]]
1772 : List of functions applied to a transcoded special block.
1773 : Each filter is called with three arguments: the transcoded data,
1774 : as a string, the back-end, as a symbol, and the communication
1775 : channel, as a plist.  It must return a string or nil.
1777 ** org-export-filter-table-functions =nil=
1778    :PROPERTIES:
1779    :CUSTOM_ID: org-export-filter-table-functions
1780    :END:
1781 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1782 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-table-functions][Find modifications in git logs]]
1784 : List of functions applied to a transcoded table.
1785 : Each filter is called with three arguments: the transcoded data,
1786 : as a string, the back-end, as a symbol, and the communication
1787 : channel, as a plist.  It must return a string or nil.
1789 ** org-feed-after-adding-hook =(funcall (function (closure (t...=
1790    :PROPERTIES:
1791    :CUSTOM_ID: org-feed-after-adding-hook
1792    :END:
1793 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
1794 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-after-adding-hook][Find modifications in git logs]]
1796 : Hook that is run after new items have been added to a file.
1797 : Depending on `org-feed-save-after-adding', the buffer will already
1798 : have been saved.
1800 ** org-trigger-hook =nil=
1801    :PROPERTIES:
1802    :CUSTOM_ID: org-trigger-hook
1803    :END:
1804 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1805 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-trigger-hook][Find modifications in git logs]]
1807 : Hook for functions that are triggered by a state change.
1809 : Each function gets as its single argument a property list with at
1810 : least the following elements:
1812 :  (:type type-of-change :position pos-at-entry-start
1813 :   :from old-state :to new-state)
1815 : Depending on the type, more properties may be present.
1817 : This mechanism is currently implemented for:
1819 : TODO state changes
1820 : ------------------
1821 : :type  todo-state-change
1822 : :from  previous state (keyword as a string), or nil, or a symbol
1823 :        `todo' or `done', to indicate the general type of state.
1824 : :to    new state, like in :from
1826 ** org-blocker-hook =nil=
1827    :PROPERTIES:
1828    :CUSTOM_ID: org-export-filter-apply-functions
1829    :END:
1830 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1831 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-blocker-hook][Find modifications in git logs]]
1833 : Hook for functions that are allowed to block a state change.
1835 : Functions in this hook should not modify the buffer.
1836 : Each function gets as its single argument a property list,
1837 : see `org-trigger-hook' for more information about this list.
1839 : If any of the functions in this hook returns nil, the state change
1840 : is blocked.
1842 ** org-export-filter-src-block-functions =nil=
1843    :PROPERTIES:
1844    :CUSTOM_ID: org-export-filter-src-block-functions
1845    :END:
1846 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1847 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-src-block-functions][Find modifications in git logs]]
1849 : List of functions applied to a transcoded src-block.
1850 : Each filter is called with three arguments: the transcoded data,
1851 : as a string, the back-end, as a symbol, and the communication
1852 : channel, as a plist.  It must return a string or nil.
1854 ** org-tab-before-tab-emulation-hook =nil=
1855    :PROPERTIES:
1856    :CUSTOM_ID: org-babel-J-interleave-echos-except-functions
1857    :END:
1858 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1859 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-before-tab-emulation-hook][Find modifications in git logs]]
1861 : Hook for functions to attach themselves to TAB.
1862 : See `org-ctrl-c-ctrl-c-hook' for more information.
1863 : This hook runs after every other options for TAB have been exhausted, but
1864 : before indentation and         insertion takes place.
1866 ** org-export-filter-node-property-functions =nil=
1867    :PROPERTIES:
1868    :CUSTOM_ID: org-export-filter-node-property-functions
1869    :END:
1870 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1871 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-node-property-functions][Find modifications in git logs]]
1873 : List of functions applied to a transcoded node-property.
1874 : Each filter is called with three arguments: the transcoded data,
1875 : as a string, the back-end, as a symbol, and the communication
1876 : channel, as a plist.  It must return a string or nil.
1878 ** org-agenda-entry-text-cleanup-hook =nil=
1879    :PROPERTIES:
1880    :CUSTOM_ID: org-agenda-entry-text-cleanup-hook
1881    :END:
1882 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
1883 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-cleanup-hook][Find modifications in git logs]]
1885 : Hook that is run after basic cleanup of entry text to be shown in agenda.
1886 : This cleanup is done in a temporary buffer, so the function may inspect and
1887 : change the entire buffer.
1888 : Some default stuff like drawers and scheduling/deadline dates will already
1889 : have been removed when this is called, as will any matches for regular
1890 : expressions listed in `org-agenda-entry-text-exclude-regexps'.
1892 ** org-create-file-search-functions =nil=
1893    :PROPERTIES:
1894    :CUSTOM_ID: org-create-file-search-functions
1895    :END:
1896 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1897 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-file-search-functions][Find modifications in git logs]]
1899 : List of functions to construct the right search string for a file link.
1900 : These functions are called in turn with point at the location to
1901 : which the link should point.
1903 : A function in the hook should first test if it would like to
1904 : handle this file type, for example by checking the `major-mode'
1905 : or the file extension.  If it decides not to handle this file, it
1906 : should just return nil to give other functions a chance.  If it
1907 : does handle the file, it must return the search string to be used
1908 : when following the link.  The search string will be part of the
1909 : file link, given after a double colon, and `org-open-at-point'
1910 : will automatically search for it.  If special measures must be
1911 : taken to make the search successful, another function should be
1912 : added to the companion hook `org-execute-file-search-functions',
1913 : which see.
1915 : A function in this hook may also use `setq' to set the variable
1916 : `description' to provide a suggestion for the descriptive text to
1917 : be used for this link when it gets inserted into an Org buffer
1918 : with \[org-insert-link].
1920 ** org-src-mode-hook =nil=
1921    :PROPERTIES:
1922    :CUSTOM_ID: org-src-mode-hook
1923    :END:
1924 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
1925 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-mode-hook][Find modifications in git logs]]
1927 : Hook run after entering or leaving `org-src-mode'.
1928 : No problems result if this variable is not bound.
1929 : `add-hook' automatically binds it.  (This is true for all hook variables.)
1931 ** org-export-filter-section-functions =nil=
1932    :PROPERTIES:
1933    :CUSTOM_ID: org-export-filter-section-functions
1934    :END:
1935 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1936 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-section-functions][Find modifications in git logs]]
1938 : List of functions applied to a transcoded section.
1939 : Each filter is called with three arguments: the transcoded data,
1940 : as a string, the back-end, as a symbol, and the communication
1941 : channel, as a plist.  It must return a string or nil.
1943 ** org-export-filter-verse-block-functions =nil=
1944    :PROPERTIES:
1945    :CUSTOM_ID: org-export-filter-verse-block-functions
1946    :END:
1947 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
1948 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-verse-block-functions][Find modifications in git logs]]
1950 : List of functions applied to a transcoded verse block.
1951 : Each filter is called with three arguments: the transcoded data,
1952 : as a string, the back-end, as a symbol, and the communication
1953 : channel, as a plist.  It must return a string or nil.
1955 ** org-metadown-hook =nil=
1956    :PROPERTIES:
1957    :CUSTOM_ID: org-metadown-hook
1958    :END:
1959 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1960 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metadown-hook][Find modifications in git logs]]
1962 : Hook for functions attaching themselves to `M-down'.
1963 : See `org-ctrl-c-ctrl-c-hook' for more information.
1964 * Commands
1965   :PROPERTIES:
1966   :CUSTOM_ID: commands
1967   :END:
1969 ** org-agenda-previous-date-line =(&optional arg)=
1970    :PROPERTIES:
1971    :CUSTOM_ID: org-agenda-previous-date-line
1972    :END:
1974 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
1975 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-date-line][Find modifications in git logs]]
1977 : Jump to the previous line indicating a date in agenda buffer.
1978 ** org-table-previous-field
1979    :PROPERTIES:
1980    :CUSTOM_ID: org-table-previous-field
1981    :END:
1983 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
1984 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-previous-field][Find modifications in git logs]]
1986 : Go to the previous field in the table.
1987 : Before doing so, re-align the table if necessary.
1988 ** org-time-stamp-inactive =(&optional arg)=
1989    :PROPERTIES:
1990    :CUSTOM_ID: org-time-stamp-inactive
1991    :END:
1993 - *Access:* ~C-c !, <menu-bar> <Org> <Dates and Scheduling> <Timestamp (inactive)>~
1994 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
1995 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp-inactive][Find modifications in git logs]]
1997 : Insert an inactive time stamp.
1998 : An inactive time stamp is enclosed in square brackets instead of angle
1999 : brackets.  It is inactive in the sense that it does not trigger agenda entries,
2000 : does not link to the calendar and cannot be changed with the S-cursor keys.
2001 : So these are more for recording a certain time/date.
2002 ** org-edit-latex-environment
2003    :PROPERTIES:
2004    :CUSTOM_ID: org-edit-latex-environment
2005    :END:
2007 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
2008 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-latex-environment][Find modifications in git logs]]
2010 : Edit LaTeX environment at point.
2012 : The LaTeX environment is copied into a new buffer.  Major mode is
2013 : set to the one associated to "latex" in â€˜org-src-lang-modes’,
2014 : or to â€˜latex-mode’ if there is none.
2016 : When done, exit with â€˜C-c '’.  The edited text will then replace
2017 : the LaTeX environment in the Org mode buffer.
2018 ** org-table-move-column-left
2019    :PROPERTIES:
2020    :CUSTOM_ID: org-table-move-column-left
2021    :END:
2023 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2024 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-column-left][Find modifications in git logs]]
2026 : Move column to the left.
2027 ** org-switchb =(&optional arg)=
2028    :PROPERTIES:
2029    :CUSTOM_ID: org-switchb
2030    :END:
2032 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2033 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-switchb][Find modifications in git logs]]
2035 : Switch between Org buffers.
2037 : With â€˜C-u’ prefix, restrict available buffers to files.
2039 : With â€˜C-u C-u’ prefix, restrict available buffers to agenda files.
2040 ** org-do-demote
2041    :PROPERTIES:
2042    :CUSTOM_ID: org-do-demote
2043    :END:
2045 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2046 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-do-demote][Find modifications in git logs]]
2048 : Demote the current heading lower down the tree.
2049 : If the region is active in â€˜transient-mark-mode’, demote all
2050 : headings in the region.
2051 ** org-attach-reveal =(&optional if-exists)=
2052    :PROPERTIES:
2053    :CUSTOM_ID: org-attach-reveal
2054    :END:
2056 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
2057 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-reveal][Find modifications in git logs]]
2059 : Show the attachment directory of the current task.
2060 : This will attempt to use an external program to show the directory.
2061 ** org-lint--show-source
2062    :PROPERTIES:
2063    :CUSTOM_ID: org-lint--show-source
2064    :END:
2066 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
2067 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--show-source][Find modifications in git logs]]
2069 : Show source line that generated the report at point.
2070 ** org-toggle-archive-tag =(&optional find-done)=
2071    :PROPERTIES:
2072    :CUSTOM_ID: org-toggle-archive-tag
2073    :END:
2075 - *Access:* ~C-c C-x a, <menu-bar> <Org> <Archive> <Toggle ARCHIVE tag>~
2076 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
2077 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-archive-tag][Find modifications in git logs]]
2079 : Toggle the archive tag for the current headline.
2080 : With prefix ARG, check all children of current headline and offer tagging
2081 : the children that do not contain any open TODO items.
2082 ** org-plot/collect-options =(&optional params)=
2083    :PROPERTIES:
2084    :CUSTOM_ID: org-plot/collect-options
2085    :END:
2087 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]]
2088 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/collect-options][Find modifications in git logs]]
2090 : Collect options from an org-plot â€˜#+Plot:’ line.
2091 : Accepts an optional property list PARAMS, to which the options
2092 : will be added.  Returns the resulting property list.
2093 ** org-babel-lob-ingest =(&optional file)=
2094    :PROPERTIES:
2095    :CUSTOM_ID: org-babel-lob-ingest
2096    :END:
2098 - *Access:* ~C-c C-v i~
2099 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lob.el][ob-lob.el]]
2100 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lob-ingest][Find modifications in git logs]]
2102 : Add all named source blocks defined in FILE to â€˜org-babel-library-of-babel’.
2103 ** org-columns-delete
2104    :PROPERTIES:
2105    :CUSTOM_ID: org-columns-delete
2106    :END:
2108 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
2109 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-delete][Find modifications in git logs]]
2111 : Delete the column at point from columns view.
2112 ** org-beginning-of-item
2113    :PROPERTIES:
2114    :CUSTOM_ID: org-beginning-of-item
2115    :END:
2117 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
2118 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-item][Find modifications in git logs]]
2120 : Go to the beginning of the current item.
2121 : Throw an error when not in a list.
2122 ** org-property-action
2123    :PROPERTIES:
2124    :CUSTOM_ID: org-property-action
2125    :END:
2127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-action][Find modifications in git logs]]
2130 : Do an action on properties.
2131 ** org-eww-copy-for-org-mode
2132    :PROPERTIES:
2133    :CUSTOM_ID: org-eww-copy-for-org-mode
2134    :END:
2136 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-eww.el][org-eww.el]]
2137 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-eww-copy-for-org-mode][Find modifications in git logs]]
2139 : Copy current buffer content or active region with â€˜org-mode’ style links.
2140 : This will encode â€˜link-title’ and â€˜link-location’ with
2141 : â€˜org-make-link-string’, and insert the transformed test into the kill ring,
2142 : so that it can be yanked into an Org mode buffer with links working correctly.
2144 : Further lines starting with a star get quoted with a comma to keep
2145 : the structure of the Org file.
2146 ** org-drag-line-backward =(arg)=
2147    :PROPERTIES:
2148    :CUSTOM_ID: org-drag-line-backward
2149    :END:
2151 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2152 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-line-backward][Find modifications in git logs]]
2154 : Drag the line at point ARG lines backward.
2155 ** org-agenda-filter-by-top-headline =(strip)=
2156    :PROPERTIES:
2157    :CUSTOM_ID: org-agenda-filter-by-top-headline
2158    :END:
2160 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2161 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-top-headline][Find modifications in git logs]]
2163 : Keep only those lines that are descendants from the same top headline.
2164 : The top headline is that of the current line.
2165 ** org-cdlatex-mode =(&optional arg)=
2166    :PROPERTIES:
2167    :CUSTOM_ID: org-cdlatex-mode
2168    :END:
2170 - *Access:* ~<menu-bar> <Org> <LaTeX> <Org CDLaTeX mode>~
2171 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2172 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-mode][Find modifications in git logs]]
2174 : Toggle the minor â€˜org-cdlatex-mode’.
2175 : This mode supports entering LaTeX environment and math in LaTeX fragments
2176 : in Org mode.
2177 : key             binding
2178 : ---             -------
2180 : C-c           Prefix Command
2181 : '             org-cdlatex-math-modify
2182 : ^ .. _                org-cdlatex-underscore-caret
2183 : `             cdlatex-math-symbol
2185 : C-c {         org-cdlatex-environment-indent
2188 ** org-babel-examplify-region =(beg end &optional results-switches inline)=
2189    :PROPERTIES:
2190    :CUSTOM_ID: org-babel-examplify-region
2191    :END:
2193 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
2194 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-examplify-region][Find modifications in git logs]]
2196 : Comment out region using the inline â€˜==’ or â€˜: â€™ org example quote.
2197 ** org-agenda-undo
2198    :PROPERTIES:
2199    :CUSTOM_ID: org-agenda-undo
2200    :END:
2202 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2203 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-undo][Find modifications in git logs]]
2205 : Undo a remote editing step in the agenda.
2206 : This undoes changes both in the agenda buffer and in the remote buffer
2207 : that have been changed along.
2208 ** org-end-of-item
2209    :PROPERTIES:
2210    :CUSTOM_ID: org-end-of-item
2211    :END:
2213 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
2214 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-item][Find modifications in git logs]]
2216 : Go to the end of the current item.
2217 : Throw an error when not in a list.
2218 ** org-timer-set-timer =(&optional opt)=
2219    :PROPERTIES:
2220    :CUSTOM_ID: org-timer-set-timer
2221    :END:
2223 - *Access:* ~C-c C-x ;~
2224 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
2225 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-set-timer][Find modifications in git logs]]
2227 : Prompt for a duration in minutes or hh:mm:ss and set a timer.
2229 : If â€˜org-timer-default-timer’ is not "0", suggest this value as
2230 : the default duration for the timer.  If a timer is already set,
2231 : prompt the user if she wants to replace it.
2233 : Called with a numeric prefix argument, use this numeric value as
2234 : the duration of the timer in minutes.
2236 : Called with a â€˜C-u’ prefix arguments, use â€˜org-timer-default-timer’
2237 : without prompting the user for a duration.
2239 : With two â€˜C-u’ prefix arguments, use â€˜org-timer-default-timer’
2240 : without prompting the user for a duration and automatically
2241 : replace any running timer.
2243 : By default, the timer duration will be set to the number of
2244 : minutes in the Effort property, if any.  You can ignore this by
2245 : using three â€˜C-u’ prefix arguments.
2246 ** org-md-export-as-markdown =(&optional async subtreep visible-only)=
2247    :PROPERTIES:
2248    :CUSTOM_ID: org-md-export-as-markdown
2249    :END:
2251 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
2252 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-export-as-markdown][Find modifications in git logs]]
2254 : Export current buffer to a Markdown buffer.
2256 : If narrowing is active in the current buffer, only export its
2257 : narrowed part.
2259 : If a region is active, export that region.
2261 : A non-nil optional argument ASYNC means the process should happen
2262 : asynchronously.  The resulting buffer should be accessible
2263 : through the â€˜org-export-stack’ interface.
2265 : When optional argument SUBTREEP is non-nil, export the sub-tree
2266 : at point, extracting information from the headline properties
2267 : first.
2269 : When optional argument VISIBLE-ONLY is non-nil, don’t export
2270 : contents of hidden elements.
2272 : Export is done in a buffer named "*Org MD Export*", which will
2273 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
2274 : non-nil.
2275 ** org-agenda-clockreport-mode
2276    :PROPERTIES:
2277    :CUSTOM_ID: org-agenda-clockreport-mode
2278    :END:
2280 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2281 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clockreport-mode][Find modifications in git logs]]
2283 : Toggle clocktable mode in an agenda buffer.
2284 ** org-shiftcontrolright
2285    :PROPERTIES:
2286    :CUSTOM_ID: org-shiftcontrolright
2287    :END:
2289 - *Access:* ~<C-S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword set>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword set>~
2290 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2291 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftcontrolright][Find modifications in git logs]]
2293 : Switch to next TODO set.
2294 ** org-schedule =(arg &optional time)=
2295    :PROPERTIES:
2296    :CUSTOM_ID: org-schedule
2297    :END:
2299 - *Access:* ~C-c C-s, <menu-bar> <Org> <Dates and Scheduling> <Schedule Item>~
2300 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2301 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-schedule][Find modifications in git logs]]
2303 : Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
2304 : With one universal prefix argument, remove any scheduling date from the item.
2305 : With two universal prefix arguments, prompt for a delay cookie.
2306 : With argument TIME, scheduled at the corresponding date.  TIME can
2307 : either be an Org date like "2011-07-24" or a delta like "+2d".
2308 ** org-agenda-set-effort
2309    :PROPERTIES:
2310    :CUSTOM_ID: org-agenda-set-effort
2311    :END:
2313 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2314 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-effort][Find modifications in git logs]]
2316 : Set the effort property for the current headline.
2317 ** org-table-fedit-abort
2318    :PROPERTIES:
2319    :CUSTOM_ID: org-table-fedit-abort
2320    :END:
2322 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2323 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-abort][Find modifications in git logs]]
2325 : Abort editing formulas, without installing the changes.
2326 ** org-agenda-toggle-deadlines
2327    :PROPERTIES:
2328    :CUSTOM_ID: org-agenda-toggle-deadlines
2329    :END:
2331 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2332 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-deadlines][Find modifications in git logs]]
2334 : Toggle inclusion of entries with a deadline in an agenda buffer.
2335 ** org-babel-screen-test
2336    :PROPERTIES:
2337    :CUSTOM_ID: org-babel-screen-test
2338    :END:
2340 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-screen.el][ob-screen.el]]
2341 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-screen-test][Find modifications in git logs]]
2343 : Test if the default setup works.
2344 : The terminal should shortly flicker.
2345 ** org-agenda-execute =(arg)=
2346    :PROPERTIES:
2347    :CUSTOM_ID: org-agenda-execute
2348    :END:
2350 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2351 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-execute][Find modifications in git logs]]
2353 : Execute another agenda command, keeping same window.
2354 : So this is just a shortcut for â€˜C-c a’, available
2355 : in the agenda.
2356 ** org-convert-to-odd-levels
2357    :PROPERTIES:
2358    :CUSTOM_ID: org-convert-to-odd-levels
2359    :END:
2361 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd levels>~
2362 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2363 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-convert-to-odd-levels][Find modifications in git logs]]
2365 : Convert an Org file with all levels allowed to one with odd levels.
2366 : This will leave level 1 alone, convert level 2 to level 3, level 3 to
2367 : level 5 etc.
2368 ** org-table-convert
2369    :PROPERTIES:
2370    :CUSTOM_ID: org-table-convert
2371    :END:
2373 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2374 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-convert][Find modifications in git logs]]
2376 : Convert from â€˜org-mode’ table to table.el and back.
2377 : Obviously, this only works within limits.  When an Org table is converted
2378 : to table.el, all horizontal separator lines get lost, because table.el uses
2379 : these as cell boundaries and has no notion of horizontal lines.  A table.el
2380 : table can be converted to an Org table only if it does not do row or column
2381 : spanning.  Multiline cells will become multiple cells.  Beware, Org mode
2382 : does not test if the table can be successfully converted - it blindly
2383 : applies a recipe that works for simple tables.
2384 ** org-table-create-or-convert-from-region =(arg)=
2385    :PROPERTIES:
2386    :CUSTOM_ID: org-table-create-or-convert-from-region
2387    :END:
2389 - *Access:* ~C-c |~
2390 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2391 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-create-or-convert-from-region][Find modifications in git logs]]
2393 : Convert region to table, or create an empty table.
2394 : If there is an active region, convert it to a table, using the function
2395 : â€˜org-table-convert-region’.  See the documentation of that function
2396 : to learn how the prefix argument is interpreted to determine the field
2397 : separator.
2398 : If there is no such region, create an empty table with â€˜org-table-create’.
2399 ** org-plot/gnuplot-to-grid-data =(table data-file params)=
2400    :PROPERTIES:
2401    :CUSTOM_ID: org-plot/gnuplot-to-grid-data
2402    :END:
2404 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]]
2405 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/gnuplot-to-grid-data][Find modifications in git logs]]
2407 : Export the data in TABLE to DATA-FILE for gnuplot.
2408 : This means in a format appropriate for grid plotting by gnuplot.
2409 : PARAMS specifies which columns of TABLE should be plotted as independent
2410 : and dependant variables.
2411 ** org-columns-set-tags-or-toggle =(&optional _arg)=
2412    :PROPERTIES:
2413    :CUSTOM_ID: org-columns-set-tags-or-toggle
2414    :END:
2416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
2417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-set-tags-or-toggle][Find modifications in git logs]]
2419 : Toggle checkbox at point, or set tags for current headline.
2420 ** org-table-delete-column
2421    :PROPERTIES:
2422    :CUSTOM_ID: org-table-delete-column
2423    :END:
2425 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2426 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-delete-column][Find modifications in git logs]]
2428 : Delete a column from the table.
2429 ** org-agenda-show-clocking-issues
2430    :PROPERTIES:
2431    :CUSTOM_ID: org-agenda-show-clocking-issues
2432    :END:
2434 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2435 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-clocking-issues][Find modifications in git logs]]
2437 : Add overlays, showing issues with clocking.
2438 : See also the user option â€˜org-agenda-clock-consistency-checks’.
2439 ** org-babel-tangle =(&optional arg target-file lang)=
2440    :PROPERTIES:
2441    :CUSTOM_ID: org-babel-tangle
2442    :END:
2444 - *Access:* ~C-c C-v t, C-c C-v C-t~
2445 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
2446 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle][Find modifications in git logs]]
2448 : Write code blocks to source-specific files.
2449 : Extract the bodies of all source code blocks from the current
2450 : file into their own source-specific files.
2451 : With one universal prefix argument, only tangle the block at point.
2452 : When two universal prefix arguments, only tangle blocks for the
2453 : tangle file of the block at point.
2454 : Optional argument TARGET-FILE can be used to specify a default
2455 : export file for all source blocks.  Optional argument LANG can be
2456 : used to limit the exported source code blocks by language.
2457 ** org-babel-shell-initialize
2458    :PROPERTIES:
2459    :CUSTOM_ID: org-babel-shell-initialize
2460    :END:
2462 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-shell.el][ob-shell.el]]
2463 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-shell-initialize][Find modifications in git logs]]
2465 : Define execution functions associated to shell names.
2466 : This function has to be called whenever â€˜org-babel-shell-names’
2467 : is modified outside the Customize interface.
2468 ** org-agenda-archive-default-with-confirmation
2469    :PROPERTIES:
2470    :CUSTOM_ID: org-agenda-archive-default-with-confirmation
2471    :END:
2473 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2474 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-default-with-confirmation][Find modifications in git logs]]
2476 : Archive the entry or subtree belonging to the current agenda entry.
2477 ** org-agenda-remove-restriction-lock =(&optional noupdate)=
2478    :PROPERTIES:
2479    :CUSTOM_ID: org-agenda-remove-restriction-lock
2480    :END:
2482 - *Access:* ~C-c C-x >~
2483 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2484 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-restriction-lock][Find modifications in git logs]]
2486 : Remove the agenda restriction lock.
2487 ** org-icalendar-export-to-ics =(&optional async subtreep visible-only body-only)=
2488    :PROPERTIES:
2489    :CUSTOM_ID: org-icalendar-export-to-ics
2490    :END:
2492 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
2493 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-export-to-ics][Find modifications in git logs]]
2495 : Export current buffer to an iCalendar file.
2497 : If narrowing is active in the current buffer, only export its
2498 : narrowed part.
2500 : If a region is active, export that region.
2502 : A non-nil optional argument ASYNC means the process should happen
2503 : asynchronously.  The resulting file should be accessible through
2504 : the â€˜org-export-stack’ interface.
2506 : When optional argument SUBTREEP is non-nil, export the sub-tree
2507 : at point, extracting information from the headline properties
2508 : first.
2510 : When optional argument VISIBLE-ONLY is non-nil, don’t export
2511 : contents of hidden elements.
2513 : When optional argument BODY-ONLY is non-nil, only write code
2514 : between "BEGIN:VCALENDAR" and "END:VCALENDAR".
2516 : Return ICS file name.
2517 ** org-bibtex =(filename)=
2518    :PROPERTIES:
2519    :CUSTOM_ID: org-bibtex
2520    :END:
2522 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
2523 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex][Find modifications in git logs]]
2525 : Export each headline in the current file to a bibtex entry.
2526 : Headlines are exported using â€˜org-bibtex-headline’.
2527 ** org-table-blank-field
2528    :PROPERTIES:
2529    :CUSTOM_ID: org-table-blank-field
2530    :END:
2532 - *Access:* ~C-c SPC, <menu-bar> <Tbl> <Blank Field>~
2533 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2534 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-blank-field][Find modifications in git logs]]
2536 : Blank the current table field or active region.
2537 ** org-src-associate-babel-session =(info)=
2538    :PROPERTIES:
2539    :CUSTOM_ID: org-src-associate-babel-session
2540    :END:
2542 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
2543 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-associate-babel-session][Find modifications in git logs]]
2545 : Associate edit buffer with comint session.
2546 ** org-ctrl-c-minus
2547    :PROPERTIES:
2548    :CUSTOM_ID: org-ctrl-c-minus
2549    :END:
2551 - *Access:* ~C-c -, <menu-bar> <Tbl> <Row> <Insert Hline>~
2552 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2553 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-minus][Find modifications in git logs]]
2555 : Insert separator line in table or modify bullet status of line.
2556 : Also turns a plain line or a region of lines into list items.
2557 : Calls â€˜org-table-insert-hline’, â€˜org-toggle-item’, or
2558 : â€˜org-cycle-list-bullet’, depending on context.
2559 ** org-update-checkbox-count =(&optional all)=
2560    :PROPERTIES:
2561    :CUSTOM_ID: org-update-checkbox-count
2562    :END:
2564 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
2565 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-checkbox-count][Find modifications in git logs]]
2567 : Update the checkbox statistics in the current section.
2569 : This will find all statistic cookies like [57%] and [6/12] and
2570 : update them with the current numbers.
2572 : With optional prefix argument ALL, do this for the whole buffer.
2573 ** org-agenda-redo =(&optional all)=
2574    :PROPERTIES:
2575    :CUSTOM_ID: org-agenda-redo
2576    :END:
2578 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2579 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-redo][Find modifications in git logs]]
2581 : Rebuild possibly ALL agenda view(s) in the current buffer.
2582 ** org-agenda-show-tags
2583    :PROPERTIES:
2584    :CUSTOM_ID: org-agenda-show-tags
2585    :END:
2587 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2588 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-tags][Find modifications in git logs]]
2590 : Show the tags applicable to the current item.
2591 ** org-agenda-manipulate-query-add-re
2592    :PROPERTIES:
2593    :CUSTOM_ID: org-agenda-manipulate-query-add-re
2594    :END:
2596 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2597 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-add-re][Find modifications in git logs]]
2599 : Manipulate the query by adding a search regexp with positive selection.
2600 : Positive selection means the regexp must match for selection of an entry.
2601 ** org-attach-sync
2602    :PROPERTIES:
2603    :CUSTOM_ID: org-attach-sync
2604    :END:
2606 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
2607 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-sync][Find modifications in git logs]]
2609 : Synchronize the current tasks with its attachments.
2610 : This can be used after files have been added externally.
2611 ** org-babel-view-src-block-info
2612    :PROPERTIES:
2613    :CUSTOM_ID: org-babel-view-src-block-info
2614    :END:
2616 - *Access:* ~C-c C-v I, C-c C-v TAB~
2617 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
2618 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-view-src-block-info][Find modifications in git logs]]
2620 : Display information on the current source block.
2621 : This includes header arguments, language and name, and is largely
2622 : a window into the â€˜org-babel-get-src-block-info’ function.
2623 ** org-table-current-column
2624    :PROPERTIES:
2625    :CUSTOM_ID: org-table-current-column
2626    :END:
2628 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Which Column?>~
2629 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2630 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-current-column][Find modifications in git logs]]
2632 : Find out which column we are in.
2633 ** org-toggle-tags-groups
2634    :PROPERTIES:
2635    :CUSTOM_ID: org-toggle-tags-groups
2636    :END:
2638 - *Access:* ~C-c C-x q~
2639 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2640 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-tags-groups][Find modifications in git logs]]
2642 : Toggle support for group tags.
2643 : Support for group tags is controlled by the option
2644 : â€˜org-group-tags’, which is non-nil by default.
2645 ** org-agenda-quit
2646    :PROPERTIES:
2647    :CUSTOM_ID: org-agenda-quit
2648    :END:
2650 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2651 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-quit][Find modifications in git logs]]
2653 : Exit the agenda.
2655 : When â€˜org-agenda-sticky’ is non-nil, bury the agenda buffer
2656 : instead of killing it.
2658 : When â€˜org-agenda-restore-windows-after-quit’ is non-nil, restore
2659 : the pre-agenda window configuration.
2661 : When column view is active, exit column view instead of the
2662 : agenda.
2663 ** org-timer-stop
2664    :PROPERTIES:
2665    :CUSTOM_ID: org-timer-stop
2666    :END:
2668 - *Access:* ~C-c C-x _~
2669 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
2670 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-stop][Find modifications in git logs]]
2672 : Stop the relative or countdown timer.
2673 ** org-babel-insert-header-arg =(&optional header-arg value)=
2674    :PROPERTIES:
2675    :CUSTOM_ID: org-babel-insert-header-arg
2676    :END:
2678 - *Access:* ~C-c C-v j, C-c C-v C-j~
2679 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
2680 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-insert-header-arg][Find modifications in git logs]]
2682 : Insert a header argument selecting from lists of common args and values.
2683 ** org-clock-cancel
2684    :PROPERTIES:
2685    :CUSTOM_ID: org-clock-cancel
2686    :END:
2688 - *Access:* ~C-c C-x C-q, <menu-bar> <Org> <Logging work> <Clock cancel>~
2689 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
2690 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-cancel][Find modifications in git logs]]
2692 : Cancel the running clock by removing the start timestamp.
2693 ** org-agenda-log-mode =(&optional special)=
2694    :PROPERTIES:
2695    :CUSTOM_ID: org-agenda-log-mode
2696    :END:
2698 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2699 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-log-mode][Find modifications in git logs]]
2701 : Toggle log mode in an agenda buffer.
2703 : With argument SPECIAL, show all possible log items, not only the ones
2704 : configured in â€˜org-agenda-log-mode-items’.
2706 : With a â€˜C-u C-u’ prefix, show *only* log items, nothing else.
2707 ** org-reset-checkbox-state-subtree
2708    :PROPERTIES:
2709    :CUSTOM_ID: org-reset-checkbox-state-subtree
2710    :END:
2712 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
2713 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reset-checkbox-state-subtree][Find modifications in git logs]]
2715 : Reset all checkboxes in an entry subtree.
2716 ** org-property-next-allowed-value =(&optional previous)=
2717    :PROPERTIES:
2718    :CUSTOM_ID: org-property-next-allowed-value
2719    :END:
2721 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2722 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-next-allowed-value][Find modifications in git logs]]
2724 : Switch to the next allowed value for this property.
2725 ** orgtbl-insert-radio-table
2726    :PROPERTIES:
2727    :CUSTOM_ID: orgtbl-insert-radio-table
2728    :END:
2730 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2731 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-insert-radio-table][Find modifications in git logs]]
2733 : Insert a radio table template appropriate for this major mode.
2734 ** org-table-insert-hline =(&optional above)=
2735    :PROPERTIES:
2736    :CUSTOM_ID: org-table-insert-hline
2737    :END:
2739 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2740 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-hline][Find modifications in git logs]]
2742 : Insert a horizontal-line below the current line into the table.
2743 : With prefix ABOVE, insert above the current line.
2744 ** org-todo =(&optional arg)=
2745    :PROPERTIES:
2746    :CUSTOM_ID: org-todo
2747    :END:
2749 - *Access:* ~C-c C-t, <menu-bar> <Org> <TODO Lists> <TODO/DONE/->~
2750 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2751 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo][Find modifications in git logs]]
2753 : Change the TODO state of an item.
2755 : The state of an item is given by a keyword at the start of the heading,
2756 : like
2757 :      *** TODO Write paper
2758 :      *** DONE Call mom
2760 : The different keywords are specified in the variable â€˜org-todo-keywords’.
2761 : By default the available states are "TODO" and "DONE".  So, for this
2762 : example: when the item starts with TODO, it is changed to DONE.
2763 : When it starts with DONE, the DONE is removed.  And when neither TODO nor
2764 : DONE are present, add TODO at the beginning of the heading.
2766 : With â€˜C-u’ prefix ARG, use completion to determine the new state.
2767 : With numeric prefix ARG, switch to that state.
2768 : With a â€˜C-u C-u’ prefix, switch to the next set of TODO keywords (nextset).
2769 : With a â€˜C-u C-u C-u’ prefix, circumvent any state blocking.
2770 : With a numeric prefix arg of 0, inhibit note taking for the change.
2771 : With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
2773 : When called through ELisp, arg is also interpreted in the following way:
2774 : â€˜none’        -> empty state
2775 : ""            -> switch to empty state
2776 : â€˜done’        -> switch to DONE
2777 : â€˜nextset’     -> switch to the next set of keywords
2778 : â€˜previousset’ -> switch to the previous set of keywords
2779 : "WAITING"     -> switch to the specified keyword, but only if it
2780 :                  really is a member of â€˜org-todo-keywords’.
2781 ** org-set-tags-to =(data)=
2782    :PROPERTIES:
2783    :CUSTOM_ID: org-set-tags-to
2784    :END:
2786 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2787 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-tags-to][Find modifications in git logs]]
2789 : Set the tags of the current entry to DATA, replacing the current tags.
2790 : DATA may be a tags string like :aa:bb:cc:, or a list of tags.
2791 : If DATA is nil or the empty string, any tags will be removed.
2792 ** org-agenda-goto-date =(span)=
2793    :PROPERTIES:
2794    :CUSTOM_ID: org-agenda-goto-date
2795    :END:
2797 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2798 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-date][Find modifications in git logs]]
2800 : Jump to DATE in agenda.
2801 ** org-preview-latex-fragment =(&optional arg)=
2802    :PROPERTIES:
2803    :CUSTOM_ID: org-preview-latex-fragment
2804    :END:
2806 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
2807 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-fragment][Find modifications in git logs]]
2809 : Preview the LaTeX fragment at point, or all locally or globally.
2811 : If the cursor is on a LaTeX fragment, create the image and overlay
2812 : it over the source code, if there is none.  Remove it otherwise.
2813 : If there is no fragment at point, display all fragments in the
2814 : current section.
2816 : With prefix ARG, preview or clear image for all fragments in the
2817 : current subtree or in the whole buffer when used before the first
2818 : headline.  With a prefix ARG â€˜C-u C-u’ preview or clear images
2819 : for all fragments in the buffer.
2820 ** org-table-fedit-menu =(event)=
2821    :PROPERTIES:
2822    :CUSTOM_ID: org-table-fedit-menu
2823    :END:
2825 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2826 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-menu][Find modifications in git logs]]
2828 : Org Edit Formulas Menu
2829 ** org-table-move-row-down
2830    :PROPERTIES:
2831    :CUSTOM_ID: org-table-move-row-down
2832    :END:
2834 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
2835 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-row-down][Find modifications in git logs]]
2837 : Move table row down.
2838 ** org-archive-set-tag
2839    :PROPERTIES:
2840    :CUSTOM_ID: org-archive-set-tag
2841    :END:
2843 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
2844 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-set-tag][Find modifications in git logs]]
2846 : Set the ARCHIVE tag.
2847 ** org-info =(&optional node)=
2848    :PROPERTIES:
2849    :CUSTOM_ID: org-info
2850    :END:
2852 - *Access:* ~<menu-bar> <Org> <Documentation> <Info Documentation>~
2853 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2854 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-info][Find modifications in git logs]]
2856 : Read documentation for Org in the info system.
2857 : With optional NODE, go directly to that node.
2858 ** org-goto-right
2859    :PROPERTIES:
2860    :CUSTOM_ID: org-goto-right
2861    :END:
2863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-right][Find modifications in git logs]]
2866 : Finish â€˜org-goto’ by going to the new location.
2867 ** org-sort-list =(&optional with-case sorting-type getkey-func compare-func interactive?)=
2868    :PROPERTIES:
2869    :CUSTOM_ID: org-sort-list
2870    :END:
2872 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
2873 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort-list][Find modifications in git logs]]
2875 : Sort list items.
2876 : The cursor may be at any item of the list that should be sorted.
2877 : Sublists are not sorted.  Checkboxes, if any, are ignored.
2879 : Sorting can be alphabetically, numerically, by date/time as given
2880 : by a time stamp, by a property or by priority.
2882 : Comparing entries ignores case by default.  However, with an
2883 : optional argument WITH-CASE, the sorting considers case as well.
2885 : The command prompts for the sorting type unless it has been given
2886 : to the function through the SORTING-TYPE argument, which needs to
2887 : be a character, (?n ?N ?a ?A ?t ?T ?f ?F ?x ?X).  Here is the
2888 : detailed meaning of each character:
2890 : n   Numerically, by converting the beginning of the item to a number.
2891 : a   Alphabetically.  Only the first line of item is checked.
2892 : t   By date/time, either the first active time stamp in the entry, if
2893 :     any, or by the first inactive one.  In a timer list, sort the timers.
2894 : x   By "checked" status of a check list.
2896 : Capital letters will reverse the sort order.
2898 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
2899 : a function to be called with point at the beginning of the
2900 : record.  It must return a value that is compatible with COMPARE-FUNC,
2901 : the function used to compare entries.
2903 : Sorting is done against the visible part of the headlines, it
2904 : ignores hidden links.
2906 : A non-nil value for INTERACTIVE? is used to signal that this
2907 : function is being called interactively.
2908 ** org-agenda-clock-in =(&optional arg)=
2909    :PROPERTIES:
2910    :CUSTOM_ID: org-agenda-clock-in
2911    :END:
2913 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2914 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-in][Find modifications in git logs]]
2916 : Start the clock on the currently selected item.
2917 ** org-metaup =(&optional _arg)=
2918    :PROPERTIES:
2919    :CUSTOM_ID: org-metaup
2920    :END:
2922 - *Access:* ~<M-up>, <menu-bar> <Org> <Edit Structure> <Move Subtree Up>, <menu-bar> <Tbl> <Row> <Move Row Up>~
2923 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2924 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaup][Find modifications in git logs]]
2926 : Move subtree up or move table row up.
2927 : Calls â€˜org-move-subtree-up’ or â€˜org-table-move-row’ or
2928 : â€˜org-move-item-up’, depending on context.  See the individual commands
2929 : for more information.
2930 ** org-indent-line
2931    :PROPERTIES:
2932    :CUSTOM_ID: org-indent-line
2933    :END:
2935 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
2936 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-line][Find modifications in git logs]]
2938 : Indent line depending on context.
2940 : Indentation is done according to the following rules:
2942 :   - Footnote definitions, diary sexps, headlines and inline tasks
2943 :     have to start at column 0.
2945 :   - On the very first line of an element, consider, in order, the
2946 :     next rules until one matches:
2948 :     1. If there’s a sibling element before, ignoring footnote
2949 :        definitions and inline tasks, indent like its first line.
2951 :     2. If element has a parent, indent like its contents.  More
2952 :        precisely, if parent is an item, indent after the
2953 :        description part, if any, or the bullet (see
2954 :        â€˜org-list-description-max-indent’).  Else, indent like
2955 :        parent’s first line.
2957 :     3. Otherwise, indent relatively to current level, if
2958 :        â€˜org-adapt-indentation’ is non-nil, or to left margin.
2960 :   - On a blank line at the end of an element, indent according to
2961 :     the type of the element.  More precisely
2963 :     1. If element is a plain list, an item, or a footnote
2964 :        definition, indent like the very last element within.
2966 :     2. If element is a paragraph, indent like its last non blank
2967 :        line.
2969 :     3. Otherwise, indent like its very first line.
2971 :   - In the code part of a source block, use language major mode
2972 :     to indent current line if â€˜org-src-tab-acts-natively’ is
2973 :     non-nil.  If it is nil, do nothing.
2975 :   - Otherwise, indent like the first non-blank line above.
2977 : The function doesn’t indent an item as it could break the whole
2978 : list structure.  Instead, use â€˜<M-S-left>’ or â€˜<M-S-right>’.
2980 : Also align node properties according to â€˜org-property-format’.
2981 ** org-agenda-show-the-flagging-note
2982    :PROPERTIES:
2983    :CUSTOM_ID: org-agenda-show-the-flagging-note
2984    :END:
2986 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2987 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-the-flagging-note][Find modifications in git logs]]
2989 : Display the flagging note in the other window.
2990 : When called a second time in direct sequence, offer to remove the FLAGGING
2991 : tag and (if present) the flagging note.
2992 ** org-agenda-entry-text-show
2993    :PROPERTIES:
2994    :CUSTOM_ID: org-agenda-entry-text-show
2995    :END:
2997 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
2998 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-show][Find modifications in git logs]]
3000 : Add entry context for all agenda lines.
3001 ** org-date-from-calendar
3002    :PROPERTIES:
3003    :CUSTOM_ID: org-date-from-calendar
3004    :END:
3006 - *Access:* ~C-c <, <menu-bar> <Org> <Dates and Scheduling> <Date from Calendar>~
3007 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3008 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-date-from-calendar][Find modifications in git logs]]
3010 : Insert time stamp corresponding to cursor date in *Calendar* buffer.
3011 : If there is already a time stamp at the cursor position, update it.
3012 ** org-insert-drawer =(&optional arg drawer)=
3013    :PROPERTIES:
3014    :CUSTOM_ID: org-insert-drawer
3015    :END:
3017 - *Access:* ~C-c C-x d~
3018 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3019 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-drawer][Find modifications in git logs]]
3021 : Insert a drawer at point.
3023 : When optional argument ARG is non-nil, insert a property drawer.
3025 : Optional argument DRAWER, when non-nil, is a string representing
3026 : drawer’s name.  Otherwise, the user is prompted for a name.
3028 : If a region is active, insert the drawer around that region
3029 : instead.
3031 : Point is left between drawer’s boundaries.
3032 ** org-ctags-find-tag =(name)=
3033    :PROPERTIES:
3034    :CUSTOM_ID: org-ctags-find-tag
3035    :END:
3037 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
3038 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-find-tag][Find modifications in git logs]]
3040 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
3041 : Look for a tag called â€˜NAME’ in the current TAGS table.  If it is found,
3042 : visit the file and location where the tag is found.
3043 ** org-agenda-year-view =(&optional year)=
3044    :PROPERTIES:
3045    :CUSTOM_ID: org-agenda-year-view
3046    :END:
3048 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3049 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-year-view][Find modifications in git logs]]
3051 : Switch to yearly view for agenda.
3052 : With argument YEAR, switch to that year.  Years ranging from 70
3053 : years ago to 30 years in the future can also be written as
3054 : 2-digit years.
3055 ** org-babel-result-hide-all
3056    :PROPERTIES:
3057    :CUSTOM_ID: org-babel-result-hide-all
3058    :END:
3060 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
3061 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-result-hide-all][Find modifications in git logs]]
3063 : Fold all results in the current buffer.
3064 ** org-columns-open-link =(&optional arg)=
3065    :PROPERTIES:
3066    :CUSTOM_ID: org-columns-open-link
3067    :END:
3069 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
3070 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-open-link][Find modifications in git logs]]
3073 ** org-add-note
3074    :PROPERTIES:
3075    :CUSTOM_ID: org-add-note
3076    :END:
3078 - *Access:* ~C-c C-z~
3079 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3080 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-add-note][Find modifications in git logs]]
3082 : Add a note to the current entry.
3083 : This is done in the same way as adding a state change note.
3084 ** org-table-fedit-lisp-indent
3085    :PROPERTIES:
3086    :CUSTOM_ID: org-table-fedit-lisp-indent
3087    :END:
3089 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
3090 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-lisp-indent][Find modifications in git logs]]
3092 : Pretty-print and re-indent Lisp expressions in the Formula Editor.
3093 ** org-agenda-set-restriction-lock =(&optional type)=
3094    :PROPERTIES:
3095    :CUSTOM_ID: org-agenda-set-restriction-lock
3096    :END:
3098 - *Access:* ~<menu-bar> <Org> <Set Restriction Lock>, C-c C-x <~
3099 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3100 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-restriction-lock][Find modifications in git logs]]
3102 : Set restriction lock for agenda, to current subtree or file.
3103 : Restriction will be the file if TYPE is â€˜file’, or if type is the
3104 : universal prefix '(4), or if the cursor is before the first headline
3105 : in the file.  Otherwise, restriction will be to the current subtree.
3106 ** org-agenda-todo-yesterday =(&optional arg)=
3107    :PROPERTIES:
3108    :CUSTOM_ID: org-agenda-todo-yesterday
3109    :END:
3111 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3112 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-yesterday][Find modifications in git logs]]
3114 : Like â€˜org-agenda-todo’ but the time of change will be 23:59 of yesterday.
3115 ** org-agenda-date-later =(arg &optional what)=
3116    :PROPERTIES:
3117    :CUSTOM_ID: org-agenda-date-later
3118    :END:
3120 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3121 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later][Find modifications in git logs]]
3123 : Change the date of this item to ARG day(s) later.
3124 ** org-cycle-list-bullet =(&optional which)=
3125    :PROPERTIES:
3126    :CUSTOM_ID: org-cycle-list-bullet
3127    :END:
3129 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
3130 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-list-bullet][Find modifications in git logs]]
3132 : Cycle through the different itemize/enumerate bullets.
3133 : This cycle the entire list level through the sequence:
3135 :    â€˜-’  ->  â€˜+’  ->  â€˜*’  ->  â€˜1.’  ->  â€˜1)’
3137 : If WHICH is a valid string, use that as the new bullet.  If WHICH
3138 : is an integer, 0 means â€˜-’, 1 means â€˜+’ etc.  If WHICH is
3139 : â€˜previous’, cycle backwards.
3140 ** org-beamer-select-environment
3141    :PROPERTIES:
3142    :CUSTOM_ID: org-beamer-select-environment
3143    :END:
3145 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
3146 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-select-environment][Find modifications in git logs]]
3148 : Select the environment to be used by beamer for this entry.
3149 : While this uses (for convenience) a tag selection interface, the
3150 : result of this command will be that the BEAMER_env *property* of
3151 : the entry is set.
3153 : In addition to this, the command will also set a tag as a visual
3154 : aid, but the tag does not have any semantic meaning.
3155 ** org-babel-lilypond-toggle-html-generation
3156    :PROPERTIES:
3157    :CUSTOM_ID: org-babel-lilypond-toggle-html-generation
3158    :END:
3160 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
3161 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-html-generation][Find modifications in git logs]]
3163 : Toggle whether html will be generated by compilation.
3164 ** org-bibtex-read-file =(file)=
3165    :PROPERTIES:
3166    :CUSTOM_ID: org-bibtex-read-file
3167    :END:
3169 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
3170 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-read-file][Find modifications in git logs]]
3172 : Read FILE with â€˜org-bibtex-read-buffer’.
3173 ** org-hide-block-toggle =(&optional force)=
3174    :PROPERTIES:
3175    :CUSTOM_ID: org-hide-block-toggle
3176    :END:
3178 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3179 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-toggle][Find modifications in git logs]]
3181 : Toggle the visibility of the current block.
3182 : When optional argument FORCE is â€˜off’, make block visible.  If it
3183 : is non-nil, hide it unconditionally.  Throw an error when not at
3184 : a block.  Return a non-nil value when toggling is successful.
3185 ** orgstruct-mode =(&optional arg)=
3186    :PROPERTIES:
3187    :CUSTOM_ID: orgstruct-mode
3188    :END:
3190 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3191 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-mode][Find modifications in git logs]]
3193 : Toggle the minor mode â€˜orgstruct-mode’.
3194 : This mode is for using Org mode structure commands in other
3195 : modes.  The following keys behave as if Org mode were active, if
3196 : the cursor is on a headline, or on a plain list item (both as
3197 : defined by Org mode).
3198 ** org-timer-show-remaining-time
3199    :PROPERTIES:
3200    :CUSTOM_ID: org-timer-show-remaining-time
3201    :END:
3203 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
3204 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-show-remaining-time][Find modifications in git logs]]
3206 : Display the remaining time before the timer ends.
3207 ** org-bibtex-import-from-file =(file)=
3208    :PROPERTIES:
3209    :CUSTOM_ID: org-bibtex-import-from-file
3210    :END:
3212 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
3213 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-import-from-file][Find modifications in git logs]]
3215 : Read bibtex entries from FILE and insert as Org headlines after point.
3216 ** org-toggle-custom-properties-visibility
3217    :PROPERTIES:
3218    :CUSTOM_ID: org-toggle-custom-properties-visibility
3219    :END:
3221 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3222 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-custom-properties-visibility][Find modifications in git logs]]
3224 : Display or hide properties in â€˜org-custom-properties’.
3225 ** org-overview
3226    :PROPERTIES:
3227    :CUSTOM_ID: org-overview
3228    :END:
3230 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3231 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-overview][Find modifications in git logs]]
3233 : Switch to overview mode, showing only top-level headlines.
3234 : This shows all headlines with a level equal or greater than the level
3235 : of the first headline in the buffer.  This is important, because if the
3236 : first headline is not level one, then (hide-sublevels 1) gives confusing
3237 : results.
3238 ** org-agenda-date-earlier =(arg &optional what)=
3239    :PROPERTIES:
3240    :CUSTOM_ID: org-agenda-date-earlier
3241    :END:
3243 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3244 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier][Find modifications in git logs]]
3246 : Change the date of this item to ARG day(s) earlier.
3247 ** org-show-entry
3248    :PROPERTIES:
3249    :CUSTOM_ID: org-show-entry
3250    :END:
3252 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3253 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-entry][Find modifications in git logs]]
3255 : Show the body directly following this heading.
3256 : Show the heading too, if it is currently invisible.
3257 ** org-babel-execute-src-block-maybe
3258    :PROPERTIES:
3259    :CUSTOM_ID: org-babel-execute-src-block-maybe
3260    :END:
3262 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
3263 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-src-block-maybe][Find modifications in git logs]]
3265 : Conditionally execute a source block.
3266 : Detect if this is context for a Babel src-block and if so
3267 : then run â€˜org-babel-execute-src-block’.
3268 ** org-beamer-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
3269    :PROPERTIES:
3270    :CUSTOM_ID: org-beamer-export-as-latex
3271    :END:
3273 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
3274 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-export-as-latex][Find modifications in git logs]]
3276 : Export current buffer as a Beamer buffer.
3278 : If narrowing is active in the current buffer, only export its
3279 : narrowed part.
3281 : If a region is active, export that region.
3283 : A non-nil optional argument ASYNC means the process should happen
3284 : asynchronously.  The resulting buffer should be accessible
3285 : through the â€˜org-export-stack’ interface.
3287 : When optional argument SUBTREEP is non-nil, export the sub-tree
3288 : at point, extracting information from the headline properties
3289 : first.
3291 : When optional argument VISIBLE-ONLY is non-nil, don’t export
3292 : contents of hidden elements.
3294 : When optional argument BODY-ONLY is non-nil, only write code
3295 : between "\begin{document}" and "\end{document}".
3297 : EXT-PLIST, when provided, is a property list with external
3298 : parameters overriding Org default settings, but still inferior to
3299 : file-local settings.
3301 : Export is done in a buffer named "*Org BEAMER Export*", which
3302 : will be displayed when â€˜org-export-show-temporary-export-buffer’
3303 : is non-nil.
3304 ** orgtbl-send-table =(&optional maybe)=
3305    :PROPERTIES:
3306    :CUSTOM_ID: orgtbl-send-table
3307    :END:
3309 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
3310 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-send-table][Find modifications in git logs]]
3312 : Send a transformed version of table at point to the receiver position.
3313 : With argument MAYBE, fail quietly if no transformation is defined
3314 : for this table.
3315 ** org-toggle-time-stamp-overlays
3316    :PROPERTIES:
3317    :CUSTOM_ID: org-toggle-time-stamp-overlays
3318    :END:
3320 - *Access:* ~C-c C-x C-t, <menu-bar> <Org> <Dates and Scheduling> <Custom time format>~
3321 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3322 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-time-stamp-overlays][Find modifications in git logs]]
3324 : Toggle the use of custom time stamp formats.
3325 ** org-agenda-priority-up
3326    :PROPERTIES:
3327    :CUSTOM_ID: org-agenda-priority-up
3328    :END:
3330 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3331 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority-up][Find modifications in git logs]]
3333 : Increase the priority of line at point, also in Org file.
3334 ** org-edit-src-code =(&optional code edit-buffer-name)=
3335    :PROPERTIES:
3336    :CUSTOM_ID: org-edit-src-code
3337    :END:
3339 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
3340 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-code][Find modifications in git logs]]
3342 : Edit the source or example block at point.
3344 : The code is copied to a separate buffer and the appropriate mode
3345 : is turned on.  When done, exit with â€˜C-c '’.  This will remove the
3346 : original code in the Org buffer, and replace it with the edited
3347 : version.  See â€˜org-src-window-setup’ to configure the display of
3348 : windows containing the Org buffer and the code buffer.
3350 : When optional argument CODE is a string, edit it in a dedicated
3351 : buffer instead.
3353 : When optional argument EDIT-BUFFER-NAME is non-nil, use it as the
3354 : name of the sub-editing buffer.
3355 ** org-org-menu =(event)=
3356    :PROPERTIES:
3357    :CUSTOM_ID: org-org-menu
3358    :END:
3360 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3361 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-menu][Find modifications in git logs]]
3363 : Org menu
3364 ** org-show-children =(&optional level)=
3365    :PROPERTIES:
3366    :CUSTOM_ID: org-show-children
3367    :END:
3369 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3370 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-children][Find modifications in git logs]]
3372 : Show all direct subheadings of this heading.
3373 : Prefix arg LEVEL is how many levels below the current level
3374 : should be shown.  Default is enough to cause the following
3375 : heading to appear.
3376 ** org-ctrl-c-star
3377    :PROPERTIES:
3378    :CUSTOM_ID: org-ctrl-c-star
3379    :END:
3381 - *Access:* ~C-c *~
3382 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3383 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-star][Find modifications in git logs]]
3385 : Compute table, or change heading status of lines.
3386 : Calls â€˜org-table-recalculate’ or â€˜org-toggle-heading’,
3387 : depending on context.
3388 ** org-self-insert-command =(N)=
3389    :PROPERTIES:
3390    :CUSTOM_ID: org-self-insert-command
3391    :END:
3393 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3394 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-self-insert-command][Find modifications in git logs]]
3396 : Like â€˜self-insert-command’, use overwrite-mode for whitespace in tables.
3397 : If the cursor is in a table looking at whitespace, the whitespace is
3398 : overwritten, and the table is not marked as requiring realignment.
3399 ** org-agenda-goto-calendar
3400    :PROPERTIES:
3401    :CUSTOM_ID: org-agenda-goto-calendar
3402    :END:
3404 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3405 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-calendar][Find modifications in git logs]]
3407 : Open the Emacs calendar with the date at the cursor.
3408 ** org-backward-element
3409    :PROPERTIES:
3410    :CUSTOM_ID: org-backward-element
3411    :END:
3413 - *Access:* ~M-{~
3414 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3415 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-element][Find modifications in git logs]]
3417 : Move backward by one element.
3418 : Move to the previous element at the same level, when possible.
3419 ** org-mobile-apply =(&optional beg end)=
3420    :PROPERTIES:
3421    :CUSTOM_ID: org-mobile-apply
3422    :END:
3424 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
3425 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-apply][Find modifications in git logs]]
3427 : Apply all change requests in the current buffer.
3428 : If BEG and END are given, only do this in that region.
3429 ** org-speed-move-safe =(cmd)=
3430    :PROPERTIES:
3431    :CUSTOM_ID: org-speed-move-safe
3432    :END:
3434 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3435 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-move-safe][Find modifications in git logs]]
3437 : Execute CMD, but make sure that the cursor always ends up in a headline.
3438 : If not, return to the original position and throw an error.
3439 ** org-html-export-as-html =(&optional async subtreep visible-only body-only ext-plist)=
3440    :PROPERTIES:
3441    :CUSTOM_ID: org-html-export-as-html
3442    :END:
3444 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
3445 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-export-as-html][Find modifications in git logs]]
3447 : Export current buffer to an HTML buffer.
3449 : If narrowing is active in the current buffer, only export its
3450 : narrowed part.
3452 : If a region is active, export that region.
3454 : A non-nil optional argument ASYNC means the process should happen
3455 : asynchronously.  The resulting buffer should be accessible
3456 : through the â€˜org-export-stack’ interface.
3458 : When optional argument SUBTREEP is non-nil, export the sub-tree
3459 : at point, extracting information from the headline properties
3460 : first.
3462 : When optional argument VISIBLE-ONLY is non-nil, don’t export
3463 : contents of hidden elements.
3465 : When optional argument BODY-ONLY is non-nil, only write code
3466 : between "<body>" and "</body>" tags.
3468 : EXT-PLIST, when provided, is a property list with external
3469 : parameters overriding Org default settings, but still inferior to
3470 : file-local settings.
3472 : Export is done in a buffer named "*Org HTML Export*", which
3473 : will be displayed when â€˜org-export-show-temporary-export-buffer’
3474 : is non-nil.
3475 ** org-agenda-day-view =(&optional day-of-month)=
3476    :PROPERTIES:
3477    :CUSTOM_ID: org-agenda-day-view
3478    :END:
3480 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3481 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-day-view][Find modifications in git logs]]
3483 : Switch to daily view for agenda.
3484 : With argument DAY-OF-MONTH, switch to that day of the month.
3485 ** org-refile =(&optional arg default-buffer rfloc msg)=
3486    :PROPERTIES:
3487    :CUSTOM_ID: org-refile
3488    :END:
3490 - *Access:* ~C-c C-w, <menu-bar> <Org> <Edit Structure> <Refile Subtree>~
3491 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3492 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile][Find modifications in git logs]]
3494 : Move the entry or entries at point to another heading.
3496 : The list of target headings is compiled using the information in
3497 : â€˜org-refile-targets’, which see.
3499 : At the target location, the entry is filed as a subitem of the
3500 : target heading.  Depending on â€˜org-reverse-note-order’, the new
3501 : subitem will either be the first or the last subitem.
3503 : If there is an active region, all entries in that region will be
3504 : refiled.  However, the region must fulfill the requirement that
3505 : the first heading sets the top-level of the moved text.
3507 : With a â€˜C-u’ ARG, the command will only visit the target location
3508 : and not actually move anything.
3510 : With a prefix â€˜C-u C-u’, go to the location where the last
3511 : refiling operation has put the subtree.
3513 : With a numeric prefix argument of â€˜2’, refile to the running clock.
3515 : With a numeric prefix argument of â€˜3’, emulate â€˜org-refile-keep’
3516 : being set to t and copy to the target location, don’t move it.
3517 : Beware that keeping refiled entries may result in duplicated ID
3518 : properties.
3520 : RFLOC can be a refile location obtained in a different way.
3522 : MSG is a string to replace "Refile" in the default prompt with
3523 : another verb.  E.g. â€˜org-copy’ sets this parameter to "Copy".
3525 : See also â€˜org-refile-use-outline-path’.
3527 : If you are using target caching (see â€˜org-refile-use-cache’), you
3528 : have to clear the target cache in order to find new targets.
3529 : This can be done with a â€˜0’ prefix (‘C-0 C-c C-w’) or a triple
3530 : prefix argument (‘C-u C-u C-u C-c C-w’).
3531 ** org-clock-display =(&optional arg)=
3532    :PROPERTIES:
3533    :CUSTOM_ID: org-clock-display
3534    :END:
3536 - *Access:* ~C-c C-x C-d, <menu-bar> <Org> <Logging work> <Display times>~
3537 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
3538 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-display][Find modifications in git logs]]
3540 : Show subtree times in the entire buffer.
3542 : By default, show the total time for the range defined in
3543 : â€˜org-clock-display-default-range’.  With â€˜C-u’ prefix, show
3544 : the total time for today instead.
3546 : With â€˜C-u C-u’ prefix, use a custom range, entered at prompt.
3548 : With â€˜C-u C-u C-u’ prefix, display the total time in the
3549 : echo area.
3551 : Use â€˜M-x org-clock-remove-overlays’ to remove the subtree times.
3552 ** org-return =(&optional indent)=
3553    :PROPERTIES:
3554    :CUSTOM_ID: org-return
3555    :END:
3557 - *Access:* ~RET, <menu-bar> <Tbl> <Next Row>~
3558 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3559 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-return][Find modifications in git logs]]
3561 : Goto next table row or insert a newline.
3563 : Calls â€˜org-table-next-row’ or â€˜newline’, depending on context.
3565 : When optional INDENT argument is non-nil, call
3566 : â€˜newline-and-indent’ instead of â€˜newline’.
3568 : When â€˜org-return-follows-link’ is non-nil and point is on
3569 : a timestamp or a link, call â€˜org-open-at-point’.  However, it
3570 : will not happen if point is in a table or on a "dead"
3571 : object (e.g., within a comment).  In these case, you need to use
3572 : â€˜org-open-at-point’ directly.
3573 ** org-feed-show-raw-feed =(feed)=
3574    :PROPERTIES:
3575    :CUSTOM_ID: org-feed-show-raw-feed
3576    :END:
3578 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
3579 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-show-raw-feed][Find modifications in git logs]]
3581 : Show the raw feed buffer of a feed.
3582 ** org-attach-open-in-emacs
3583    :PROPERTIES:
3584    :CUSTOM_ID: org-attach-open-in-emacs
3585    :END:
3587 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
3588 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-open-in-emacs][Find modifications in git logs]]
3590 : Open attachment, force opening in Emacs.
3591 : See â€˜org-attach-open’.
3592 ** org-agenda-filter-remove-all
3593    :PROPERTIES:
3594    :CUSTOM_ID: org-agenda-filter-remove-all
3595    :END:
3597 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3598 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-remove-all][Find modifications in git logs]]
3600 : Remove all filters from the current agenda buffer.
3601 ** org-babel-expand-src-block =(&optional _arg info params)=
3602    :PROPERTIES:
3603    :CUSTOM_ID: org-babel-expand-src-block
3604    :END:
3606 - *Access:* ~C-c C-v v, C-c C-v C-v~
3607 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
3608 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-expand-src-block][Find modifications in git logs]]
3610 : Expand the current source code block.
3611 : Expand according to the source code block’s header
3612 : arguments and pop open the results in a preview buffer.
3613 ** org-ctags-all-tags-in-current-tags-table
3614    :PROPERTIES:
3615    :CUSTOM_ID: org-ctags-all-tags-in-current-tags-table
3616    :END:
3618 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
3619 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-all-tags-in-current-tags-table][Find modifications in git logs]]
3621 : Read all tags defined in the active TAGS file, into a list of strings.
3622 : Return the list.
3623 ** org-table-fedit-ref-right
3624    :PROPERTIES:
3625    :CUSTOM_ID: org-table-fedit-ref-right
3626    :END:
3628 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
3629 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-right][Find modifications in git logs]]
3631 : Shift the reference at point one field to the right.
3632 ** org-toggle-latex-fragment =(&optional arg)=
3633    :PROPERTIES:
3634    :CUSTOM_ID: org-toggle-latex-fragment
3635    :END:
3637 - *Access:* ~C-c C-x C-l~
3638 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3639 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-latex-fragment][Find modifications in git logs]]
3641 : Preview the LaTeX fragment at point, or all locally or globally.
3643 : If the cursor is on a LaTeX fragment, create the image and overlay
3644 : it over the source code, if there is none.  Remove it otherwise.
3645 : If there is no fragment at point, display all fragments in the
3646 : current section.
3648 : With prefix ARG, preview or clear image for all fragments in the
3649 : current subtree or in the whole buffer when used before the first
3650 : headline.  With a prefix ARG â€˜C-u C-u’ preview or clear images
3651 : for all fragments in the buffer.
3652 ** org-agenda-filter-by-effort =(strip)=
3653    :PROPERTIES:
3654    :CUSTOM_ID: org-agenda-filter-by-effort
3655    :END:
3657 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3658 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-effort][Find modifications in git logs]]
3660 : Filter agenda entries by effort.
3661 : With no prefix argument, keep entries matching the effort condition.
3662 : With one prefix argument, filter out entries matching the condition.
3663 : With two prefix arguments, remove the effort filters.
3664 ** org-emphasize =(&optional char)=
3665    :PROPERTIES:
3666    :CUSTOM_ID: org-emphasize
3667    :END:
3669 - *Access:* ~C-c C-x C-f, <menu-bar> <Org> <Editing> <Emphasis...>~
3670 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3671 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-emphasize][Find modifications in git logs]]
3673 : Insert or change an emphasis, i.e. a font like bold or italic.
3674 : If there is an active region, change that region to a new emphasis.
3675 : If there is no region, just insert the marker characters and position
3676 : the cursor between them.
3677 : CHAR should be the marker character.  If it is a space, it means to
3678 : remove the emphasis of the selected region.
3679 : If CHAR is not given (for example in an interactive call) it will be
3680 : prompted for.
3681 ** org-columns-edit-value =(&optional key)=
3682    :PROPERTIES:
3683    :CUSTOM_ID: org-columns-edit-value
3684    :END:
3686 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
3687 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-value][Find modifications in git logs]]
3689 : Edit the value of the property at point in column view.
3690 : Where possible, use the standard interface for changing this line.
3691 ** org-kill-line =(&optional _arg)=
3692    :PROPERTIES:
3693    :CUSTOM_ID: org-kill-line
3694    :END:
3696 - *Access:* ~C-k~
3697 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3698 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-kill-line][Find modifications in git logs]]
3700 : Kill line, to tags or end of line.
3701 ** org-capture-kill
3702    :PROPERTIES:
3703    :CUSTOM_ID: org-capture-kill
3704    :END:
3706 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
3707 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-kill][Find modifications in git logs]]
3709 : Abort the current capture process.
3710 ** org-drag-line-forward =(arg)=
3711    :PROPERTIES:
3712    :CUSTOM_ID: org-drag-line-forward
3713    :END:
3715 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3716 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-line-forward][Find modifications in git logs]]
3718 : Drag the line at point ARG lines forward.
3719 ** org-mobile-pull
3720    :PROPERTIES:
3721    :CUSTOM_ID: org-mobile-pull
3722    :END:
3724 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Get Captured and Flagged>, C-c C-x RET g~
3725 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
3726 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pull][Find modifications in git logs]]
3728 : Pull the contents of â€˜org-mobile-capture-file’ and integrate them.
3729 : Apply all flagged actions, flag entries to be flagged and then call an
3730 : agenda view showing the flagged items.
3731 ** org-agenda-set-property
3732    :PROPERTIES:
3733    :CUSTOM_ID: org-agenda-set-property
3734    :END:
3736 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3737 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-property][Find modifications in git logs]]
3739 : Set a property for the current headline.
3740 ** org-table-move-column-right
3741    :PROPERTIES:
3742    :CUSTOM_ID: org-table-move-column-right
3743    :END:
3745 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
3746 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-column-right][Find modifications in git logs]]
3748 : Move column to the right.
3749 ** org-agenda-redo-all =(&optional exhaustive)=
3750    :PROPERTIES:
3751    :CUSTOM_ID: org-agenda-redo-all
3752    :END:
3754 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
3755 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-redo-all][Find modifications in git logs]]
3757 : Rebuild all agenda views in the current buffer.
3758 : With a prefix argument, do so in all agenda buffers.
3759 ** org-toggle-checkbox =(&optional toggle-presence)=
3760    :PROPERTIES:
3761    :CUSTOM_ID: org-toggle-checkbox
3762    :END:
3764 - *Access:* ~C-c C-x C-b~
3765 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
3766 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-checkbox][Find modifications in git logs]]
3768 : Toggle the checkbox in the current line.
3769 : With prefix arg TOGGLE-PRESENCE, add or remove checkboxes.  With
3770 : double prefix, set checkbox to [-].
3772 : When there is an active region, toggle status or presence of the
3773 : first checkbox there, and make every item inside have the same
3774 : status or presence, respectively.
3776 : If the cursor is in a headline, apply this to all checkbox items
3777 : in the text below the heading, taking as reference the first item
3778 : in subtree, ignoring drawers.
3779 ** org-mobile-push
3780    :PROPERTIES:
3781    :CUSTOM_ID: org-mobile-push
3782    :END:
3784 - *Access:* ~<menu-bar> <Org> <MobileOrg> <Push Files and Views>, C-c C-x RET p~
3785 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
3786 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-push][Find modifications in git logs]]
3788 : Push the current state of Org affairs to the target directory.
3789 : This will create the index file, copy all agenda files there, and also
3790 : create all custom agenda views, for upload to the mobile phone.
3791 ** org-mark-subtree =(&optional up)=
3792    :PROPERTIES:
3793    :CUSTOM_ID: org-mark-subtree
3794    :END:
3796 - *Access:* ~C-c @~
3797 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3798 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-subtree][Find modifications in git logs]]
3800 : Mark the current subtree.
3801 : This puts point at the start of the current subtree, and mark at
3802 : the end.  If a numeric prefix UP is given, move up into the
3803 : hierarchy of headlines by UP levels before marking the subtree.
3804 ** org-publish-all =(&optional force async)=
3805    :PROPERTIES:
3806    :CUSTOM_ID: org-publish-all
3807    :END:
3809 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
3810 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-all][Find modifications in git logs]]
3812 : Publish all projects.
3813 : With prefix argument FORCE, remove all files in the timestamp
3814 : directory and force publishing all projects.  With a non-nil
3815 : optional argument ASYNC, publishing will be done asynchronously,
3816 : in another process.
3817 ** org-set-property-and-value =(use-last)=
3818    :PROPERTIES:
3819    :CUSTOM_ID: org-set-property-and-value
3820    :END:
3822 - *Access:* ~C-c C-x P~
3823 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3824 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-property-and-value][Find modifications in git logs]]
3826 : Allow to set [PROPERTY]: [value] direction from prompt.
3827 : When use-default, don’t even ask, just use the last
3828 : "[PROPERTY]: [value]" string from the history.
3829 ** org-timer-pause-or-continue =(&optional stop)=
3830    :PROPERTIES:
3831    :CUSTOM_ID: org-timer-pause-or-continue
3832    :END:
3834 - *Access:* ~C-c C-x ,, <menu-bar> <Org> <Dates and Scheduling> <Pause/Continue Timer>, <menu-bar> <Org> <Dates and Scheduling> <Stop Timer>~
3835 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
3836 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-pause-or-continue][Find modifications in git logs]]
3838 : Pause or continue the relative or countdown timer.
3839 : With prefix arg STOP, stop it entirely.
3840 ** org-mode
3841    :PROPERTIES:
3842    :CUSTOM_ID: org-mode
3843    :END:
3845 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
3846 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode][Find modifications in git logs]]
3848 : Outline-based notes management and organizer, alias
3849 : "Carsten’s outline-mode for keeping track of everything."
3851 : Org mode develops organizational tasks around a NOTES file which
3852 : contains information about projects as plain text.  Org mode is
3853 : implemented on top of Outline mode, which is ideal to keep the content
3854 : of large files well structured.  It supports ToDo items, deadlines and
3855 : time stamps, which magically appear in the diary listing of the Emacs
3856 : calendar.  Tables are easily created with a built-in table editor.
3857 : Plain text URL-like links connect to websites, emails (VM), Usenet
3858 : messages (Gnus), BBDB entries, and any files related to the project.
3859 : For printing and sharing of notes, an Org file (or a part of it)
3860 : can be exported as a structured ASCII or HTML file.
3862 : The following commands are available:
3864 : key             binding
3865 : ---             -------
3867 : C-a           org-beginning-of-line
3868 : C-c           Prefix Command
3869 : C-e           org-end-of-line
3870 : TAB           org-cycle
3871 : C-j           org-return-indent
3872 : C-k           org-kill-line
3873 : RET           org-return
3874 : C-y           org-yank
3875 : ESC           Prefix Command
3876 : |             org-force-self-insert
3877 : C-#           org-table-rotate-recalc-marks
3878 : C-'           org-cycle-agenda-files
3879 : C-,           org-cycle-agenda-files
3880 : <C-M-S-left>  org-decrease-number-at-point
3881 : <C-M-S-right> org-increase-number-at-point
3882 : <C-S-down>    org-shiftcontroldown
3883 : <C-S-left>    org-shiftcontrolleft
3884 : <C-S-return>  org-insert-todo-heading-respect-content
3885 : <C-S-right>   org-shiftcontrolright
3886 : <C-S-up>      org-shiftcontrolup
3887 : <C-return>    org-insert-heading-respect-content
3888 : <C-tab>               org-force-cycle-archived
3889 : <M-S-down>    org-shiftmetadown
3890 : <M-S-left>    org-shiftmetaleft
3891 : <M-S-return>  org-insert-todo-heading
3892 : <M-S-right>   org-shiftmetaright
3893 : <M-S-up>      org-shiftmetaup
3894 : <M-down>      org-metadown
3895 : <M-left>      org-metaleft
3896 : <M-return>    org-meta-return
3897 : <M-right>     org-metaright
3898 : <M-up>                org-metaup
3899 : <S-down>      org-shiftdown
3900 : <S-iso-lefttab>                       org-shifttab
3901 : <S-left>      org-shiftleft
3902 : <S-mouse-2>   org-mouse-yank-link
3903 : <S-return>    org-table-copy-down
3904 : <S-right>     org-shiftright
3905 : <S-tab>               org-shifttab
3906 : <S-up>                org-shiftup
3907 : <backtab>     org-shifttab
3908 : <down-mouse-1>        org-mouse-down-mouse
3909 : <drag-mouse-3>        org-mouse-yank-link
3910 : <mouse-3>     org-mouse-show-context-menu
3911 : <remap>               Prefix Command
3912 : <tab>         org-cycle
3914 : C-M-i         pcomplete
3915 : C-M-t         org-transpose-element
3916 : M-^           org-delete-indentation
3917 : M-a           org-backward-sentence
3918 : M-e           org-forward-sentence
3919 : M-h           org-mark-element
3920 : M-{           org-backward-element
3921 : M-}           org-forward-element
3923 : C-c C-a               org-attach
3924 : C-c C-b               org-backward-heading-same-level
3925 : C-c C-c               org-ctrl-c-ctrl-c
3926 : C-c C-d               org-deadline
3927 : C-c C-e               org-export-dispatch
3928 : C-c C-f               org-forward-heading-same-level
3929 : C-c C-j               org-goto
3930 : C-c C-k               org-kill-note-or-show-branches
3931 : C-c C-l               org-insert-link
3932 : C-c RET               org-ctrl-c-ret
3933 : C-c C-o               org-open-at-point
3934 : C-c C-q               org-set-tags-command
3935 : C-c C-r               org-reveal
3936 : C-c C-s               org-schedule
3937 : C-c C-t               org-todo
3938 : C-c C-v               Prefix Command
3939 : C-c C-w               org-refile
3940 : C-c C-x               Prefix Command
3941 : C-c C-y               org-evaluate-time-range
3942 : C-c C-z               org-add-note
3943 : C-c ESC               Prefix Command
3944 : C-c C-^               org-up-element
3945 : C-c C-_               org-down-element
3946 : C-c SPC               org-table-blank-field
3947 : C-c !         org-time-stamp-inactive
3948 : C-c "         Prefix Command
3949 : C-c #         org-update-statistics-cookies
3950 : C-c $         org-archive-subtree
3951 : C-c %         org-mark-ring-push
3952 : C-c &         org-mark-ring-goto
3953 : C-c '         org-edit-special
3954 : C-c *         org-ctrl-c-star
3955 : C-c +         org-table-sum
3956 : C-c ,         org-priority
3957 : C-c -         org-ctrl-c-minus
3958 : C-c .         org-time-stamp
3959 : C-c /         org-sparse-tree
3960 : C-c :         org-toggle-fixed-width
3961 : C-c ;         org-toggle-comment
3962 : C-c <         org-date-from-calendar
3963 : C-c =         org-table-eval-formula
3964 : C-c >         org-goto-calendar
3965 : C-c ?         org-table-field-info
3966 : C-c @         org-mark-subtree
3967 : C-c [         org-agenda-file-to-front
3968 : C-c \         org-match-sparse-tree
3969 : C-c ]         org-remove-file
3970 : C-c ^         org-sort
3971 : C-c `         org-table-edit-field
3972 : C-c {         org-table-toggle-formula-debugger
3973 : C-c |         org-table-create-or-convert-from-region
3974 : C-c }         org-table-toggle-coordinate-overlays
3975 : C-c ~         org-table-create-with-table.el
3976 : C-c C-*               org-list-make-subtree
3978 : <remap> <backward-paragraph>  org-backward-paragraph
3979 : <remap> <comment-dwim>                org-comment-dwim
3980 : <remap> <delete-backward-char>        org-delete-backward-char
3981 : <remap> <delete-char>         org-delete-char
3982 : <remap> <fill-paragraph>      org-fill-paragraph
3983 : <remap> <forward-paragraph>   org-forward-paragraph
3984 : <remap> <open-line>           org-open-line
3985 : <remap> <outline-backward-same-level>
3986 :                               org-backward-heading-same-level
3987 : <remap> <outline-demote>      org-demote-subtree
3988 : <remap> <outline-forward-same-level>
3989 :                               org-forward-heading-same-level
3990 : <remap> <outline-insert-heading>
3991 :                               org-ctrl-c-ret
3992 : <remap> <outline-mark-subtree>        org-mark-subtree
3993 : <remap> <outline-next-visible-heading>
3994 :                               org-next-visible-heading
3995 : <remap> <outline-previous-visible-heading>
3996 :                               org-previous-visible-heading
3997 : <remap> <outline-promote>     org-promote-subtree
3998 : <remap> <outline-show-branches>
3999 :                               org-kill-note-or-show-branches
4000 : <remap> <outline-show-subtree>        org-show-subtree
4001 : <remap> <self-insert-command> org-self-insert-command
4002 : <remap> <show-children>               org-show-children
4003 : <remap> <transpose-words>     org-transpose-words
4005 : C-c C-a               outline-show-all
4006 :   (that binding is currently shadowed by another mode)
4007 : C-c C-b               outline-backward-same-level
4008 :   (that binding is currently shadowed by another mode)
4009 : C-c C-c               outline-hide-entry
4010 :   (that binding is currently shadowed by another mode)
4011 : C-c C-d               outline-hide-subtree
4012 :   (that binding is currently shadowed by another mode)
4013 : C-c C-e               outline-show-entry
4014 :   (that binding is currently shadowed by another mode)
4015 : C-c C-f               outline-forward-same-level
4016 :   (that binding is currently shadowed by another mode)
4017 : C-c TAB               outline-show-children
4018 : C-c C-k               outline-show-branches
4019 :   (that binding is currently shadowed by another mode)
4020 : C-c C-l               outline-hide-leaves
4021 :   (that binding is currently shadowed by another mode)
4022 : C-c RET               outline-insert-heading
4023 :   (that binding is currently shadowed by another mode)
4024 : C-c C-n               outline-next-visible-heading
4025 : C-c C-o               outline-hide-other
4026 :   (that binding is currently shadowed by another mode)
4027 : C-c C-p               outline-previous-visible-heading
4028 : C-c C-q               outline-hide-sublevels
4029 :   (that binding is currently shadowed by another mode)
4030 : C-c C-s               outline-show-subtree
4031 :   (that binding is currently shadowed by another mode)
4032 : C-c C-t               outline-hide-body
4033 :   (that binding is currently shadowed by another mode)
4034 : C-c C-u               outline-up-heading
4035 : C-c C-v               outline-move-subtree-down
4036 :   (that binding is currently shadowed by another mode)
4037 : C-c C-^               outline-move-subtree-up
4038 :   (that binding is currently shadowed by another mode)
4039 : C-c @         outline-mark-subtree
4040 :   (that binding is currently shadowed by another mode)
4041 : C-c C-<               outline-promote
4042 : C-c C->               outline-demote
4044 : C-M-i         ispell-complete-word
4045 :   (that binding is currently shadowed by another mode)
4047 : C-c " a               orgtbl-ascii-plot
4048 : C-c " g               org-plot/gnuplot
4050 : C-c C-M-l     org-insert-all-links
4051 : C-c M-b               org-previous-block
4052 : C-c M-f               org-next-block
4053 : C-c M-l               org-insert-last-stored-link
4054 : C-c M-w               org-copy
4056 : C-c C-v C-a   org-babel-sha1-hash
4057 : C-c C-v C-b   org-babel-execute-buffer
4058 : C-c C-v C-c   org-babel-check-src-block
4059 : C-c C-v C-d   org-babel-demarcate-block
4060 : C-c C-v C-e   org-babel-execute-maybe
4061 : C-c C-v C-f   org-babel-tangle-file
4062 : C-c C-v TAB   org-babel-view-src-block-info
4063 : C-c C-v C-j   org-babel-insert-header-arg
4064 : C-c C-v C-l   org-babel-load-in-session
4065 : C-c C-v C-n   org-babel-next-src-block
4066 : C-c C-v C-o   org-babel-open-src-block-result
4067 : C-c C-v C-p   org-babel-previous-src-block
4068 : C-c C-v C-r   org-babel-goto-named-result
4069 : C-c C-v C-s   org-babel-execute-subtree
4070 : C-c C-v C-t   org-babel-tangle
4071 : C-c C-v C-u   org-babel-goto-src-block-head
4072 : C-c C-v C-v   org-babel-expand-src-block
4073 : C-c C-v C-x   org-babel-do-key-sequence-in-edit-buffer
4074 : C-c C-v C-z   org-babel-switch-to-session
4075 : C-c C-v ESC   Prefix Command
4076 : C-c C-v I     org-babel-view-src-block-info
4077 : C-c C-v a     org-babel-sha1-hash
4078 : C-c C-v b     org-babel-execute-buffer
4079 : C-c C-v c     org-babel-check-src-block
4080 : C-c C-v d     org-babel-demarcate-block
4081 : C-c C-v e     org-babel-execute-maybe
4082 : C-c C-v f     org-babel-tangle-file
4083 : C-c C-v g     org-babel-goto-named-src-block
4084 : C-c C-v h     org-babel-describe-bindings
4085 : C-c C-v i     org-babel-lob-ingest
4086 : C-c C-v j     org-babel-insert-header-arg
4087 : C-c C-v k     org-babel-remove-result-one-or-many
4088 : C-c C-v l     org-babel-load-in-session
4089 : C-c C-v n     org-babel-next-src-block
4090 : C-c C-v o     org-babel-open-src-block-result
4091 : C-c C-v p     org-babel-previous-src-block
4092 : C-c C-v r     org-babel-goto-named-result
4093 : C-c C-v s     org-babel-execute-subtree
4094 : C-c C-v t     org-babel-tangle
4095 : C-c C-v u     org-babel-goto-src-block-head
4096 : C-c C-v v     org-babel-expand-src-block
4097 : C-c C-v x     org-babel-do-key-sequence-in-edit-buffer
4098 : C-c C-v z     org-babel-switch-to-session-with-code
4100 : C-c C-x C-a   org-archive-subtree-default
4101 : C-c C-x C-b   org-toggle-checkbox
4102 : C-c C-x C-c   org-columns
4103 : C-c C-x C-d   org-clock-display
4104 : C-c C-x C-f   org-emphasize
4105 : C-c C-x TAB   org-clock-in
4106 : C-c C-x C-j   org-clock-goto
4107 : C-c C-x C-l   org-toggle-latex-fragment
4108 : C-c C-x RET   Prefix Command
4109 : C-c C-x C-n   org-next-link
4110 : C-c C-x C-o   org-clock-out
4111 : C-c C-x C-p   org-previous-link
4112 : C-c C-x C-q   org-clock-cancel
4113 : C-c C-x C-r   org-clock-report
4114 : C-c C-x C-s   org-archive-subtree
4115 : C-c C-x C-t   org-toggle-time-stamp-overlays
4116 : C-c C-x C-u   org-dblock-update
4117 : C-c C-x C-v   org-toggle-inline-images
4118 : C-c C-x C-w   org-cut-special
4119 : C-c C-x C-x   org-clock-in-last
4120 : C-c C-x C-y   org-paste-special
4121 : C-c C-x C-z   org-resolve-clocks
4122 : C-c C-x ESC   Prefix Command
4123 : C-c C-x !     org-reload
4124 : C-c C-x ,     org-timer-pause-or-continue
4125 : C-c C-x -     org-timer-item
4126 : C-c C-x .     org-timer
4127 : C-c C-x 0     org-timer-start
4128 : C-c C-x ;     org-timer-set-timer
4129 : C-c C-x <     org-agenda-set-restriction-lock
4130 : C-c C-x >     org-agenda-remove-restriction-lock
4131 : C-c C-x A     org-archive-to-archive-sibling
4132 : C-c C-x E     org-inc-effort
4133 : C-c C-x G     org-feed-goto-inbox
4134 : C-c C-x P     org-set-property-and-value
4135 : C-c C-x [     org-reftex-citation
4136 : C-c C-x \     org-toggle-pretty-entities
4137 : C-c C-x _     org-timer-stop
4138 : C-c C-x a     org-toggle-archive-tag
4139 : C-c C-x b     org-tree-to-indirect-buffer
4140 : C-c C-x c     org-clone-subtree-with-time-shift
4141 : C-c C-x d     org-insert-drawer
4142 : C-c C-x e     org-set-effort
4143 : C-c C-x f     org-footnote-action
4144 : C-c C-x g     org-feed-update-all
4145 : C-c C-x i     org-columns-insert-dblock
4146 : C-c C-x o     org-toggle-ordered-property
4147 : C-c C-x p     org-set-property
4148 : C-c C-x q     org-toggle-tags-groups
4149 : C-c C-x v     org-copy-visible
4151 : C-c C-v C-M-h org-babel-mark-block
4153 : C-c C-x C-M-v org-redisplay-inline-images
4154 : C-c C-x M-w   org-copy-special
4156 : C-c C-x RET g org-mobile-pull
4157 : C-c C-x RET p org-mobile-push
4161 : In addition to any hooks its parent mode â€˜outline-mode’ might have run,
4162 : this mode runs the hook â€˜org-mode-hook’, as the final or penultimate step
4163 : during initialization.
4164 ** org-babel-lilypond-tangle
4165    :PROPERTIES:
4166    :CUSTOM_ID: org-babel-lilypond-tangle
4167    :END:
4169 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
4170 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-tangle][Find modifications in git logs]]
4172 : ob-lilypond specific tangle, attempts to invoke
4173 : =ly-execute-tangled-ly= if tangle is successful.  Also passes
4174 : specific arguments to =org-babel-tangle=
4175 ** org-goto-local-auto-isearch
4176    :PROPERTIES:
4177    :CUSTOM_ID: org-goto-local-auto-isearch
4178    :END:
4180 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4181 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-local-auto-isearch][Find modifications in git logs]]
4183 : Start isearch.
4184 ** org-backward-sentence =(&optional _arg)=
4185    :PROPERTIES:
4186    :CUSTOM_ID: org-backward-sentence
4187    :END:
4189 - *Access:* ~M-a~
4190 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4191 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-sentence][Find modifications in git logs]]
4193 : Go to beginning of sentence, or beginning of table field.
4194 : This will call â€˜backward-sentence’ or â€˜org-table-beginning-of-field’,
4195 : depending on context.
4196 ** org-beamer-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
4197    :PROPERTIES:
4198    :CUSTOM_ID: org-beamer-export-to-pdf
4199    :END:
4201 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
4202 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-export-to-pdf][Find modifications in git logs]]
4204 : Export current buffer as a Beamer presentation (PDF).
4206 : If narrowing is active in the current buffer, only export its
4207 : narrowed part.
4209 : If a region is active, export that region.
4211 : A non-nil optional argument ASYNC means the process should happen
4212 : asynchronously.  The resulting file should be accessible through
4213 : the â€˜org-export-stack’ interface.
4215 : When optional argument SUBTREEP is non-nil, export the sub-tree
4216 : at point, extracting information from the headline properties
4217 : first.
4219 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4220 : contents of hidden elements.
4222 : When optional argument BODY-ONLY is non-nil, only write code
4223 : between "\begin{document}" and "\end{document}".
4225 : EXT-PLIST, when provided, is a property list with external
4226 : parameters overriding Org default settings, but still inferior to
4227 : file-local settings.
4229 : Return PDF file’s name.
4230 ** org-store-agenda-views =(&rest parameters)=
4231    :PROPERTIES:
4232    :CUSTOM_ID: org-store-agenda-views
4233    :END:
4235 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4236 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-store-agenda-views][Find modifications in git logs]]
4238 : Store agenda views.
4239 ** org-babel-load-file =(file &optional compile)=
4240    :PROPERTIES:
4241    :CUSTOM_ID: org-babel-load-file
4242    :END:
4244 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4245 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-file][Find modifications in git logs]]
4247 : Load Emacs Lisp source code blocks in the Org FILE.
4248 : This function exports the source code using â€˜org-babel-tangle’
4249 : and then loads the resulting file using â€˜load-file’.  With prefix
4250 : arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
4251 : file to byte-code before it is loaded.
4252 ** org-columns =(&optional global columns-fmt-string)=
4253    :PROPERTIES:
4254    :CUSTOM_ID: org-columns
4255    :END:
4257 - *Access:* ~C-c C-x C-c, <menu-bar> <Org> <TAGS and Properties> <Column view of properties>~
4258 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
4259 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns][Find modifications in git logs]]
4261 : Turn on column view on an Org mode file.
4263 : Column view applies to the whole buffer if point is before the
4264 : first headline.  Otherwise, it applies to the first ancestor
4265 : setting "COLUMNS" property.  If there is none, it defaults to
4266 : the current headline.  With a â€˜C-u’ prefix argument, turn on column
4267 : view for the whole buffer unconditionally.
4269 : When COLUMNS-FMT-STRING is non-nil, use it as the column format.
4270 ** org-check-before-date =(d)=
4271    :PROPERTIES:
4272    :CUSTOM_ID: org-check-before-date
4273    :END:
4275 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4276 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-before-date][Find modifications in git logs]]
4278 : Check if there are deadlines or scheduled entries before date D.
4279 ** org-agenda-drag-line-backward =(arg)=
4280    :PROPERTIES:
4281    :CUSTOM_ID: org-agenda-drag-line-backward
4282    :END:
4284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-drag-line-backward][Find modifications in git logs]]
4287 : Drag an agenda line backward by ARG lines.
4288 ** org-yank =(&optional arg)=
4289    :PROPERTIES:
4290    :CUSTOM_ID: org-yank
4291    :END:
4293 - *Access:* ~C-y~
4294 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4295 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-yank][Find modifications in git logs]]
4297 : Yank.  If the kill is a subtree, treat it specially.
4298 : This command will look at the current kill and check if is a single
4299 : subtree, or a series of subtrees[1].  If it passes the test, and if the
4300 : cursor is at the beginning of a line or after the stars of a currently
4301 : empty headline, then the yank is handled specially.  How exactly depends
4302 : on the value of the following variables.
4304 : â€˜org-yank-folded-subtrees’
4305 :     By default, this variable is non-nil, which results in
4306 :     subtree(s) being folded after insertion, except if doing so
4307 :     would swallow text after the yanked text.
4309 : â€˜org-yank-adjusted-subtrees’
4310 :     When non-nil (the default value is nil), the subtree will be
4311 :     promoted or demoted in order to fit into the local outline tree
4312 :     structure, which means that the level will be adjusted so that it
4313 :     becomes the smaller one of the two *visible* surrounding headings.
4315 : Any prefix to this command will cause â€˜yank’ to be called directly with
4316 : no special treatment.  In particular, a simple â€˜C-u’ prefix will just
4317 : plainly yank the text as it is.
4319 : [1] The test checks if the first non-white line is a heading
4320 :     and if there are no other headings with fewer stars.
4321 ** org-agenda-toggle-time-grid
4322    :PROPERTIES:
4323    :CUSTOM_ID: org-agenda-toggle-time-grid
4324    :END:
4326 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4327 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-time-grid][Find modifications in git logs]]
4329 : Toggle time grid in an agenda buffer.
4330 ** org-agenda-todo-previousset
4331    :PROPERTIES:
4332    :CUSTOM_ID: org-agenda-todo-previousset
4333    :END:
4335 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4336 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-previousset][Find modifications in git logs]]
4338 : Switch TODO entry to previous sequence.
4339 ** org-agenda-priority-down
4340    :PROPERTIES:
4341    :CUSTOM_ID: org-agenda-priority-down
4342    :END:
4344 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4345 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority-down][Find modifications in git logs]]
4347 : Decrease the priority of line at point, also in Org file.
4348 ** org-insert-link =(&optional complete-file link-location default-description)=
4349    :PROPERTIES:
4350    :CUSTOM_ID: org-insert-link
4351    :END:
4353 - *Access:* ~C-c C-l, <menu-bar> <Org> <Hyperlinks> <Insert Link>~
4354 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4355 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-link][Find modifications in git logs]]
4357 : Insert a link.  At the prompt, enter the link.
4359 : Completion can be used to insert any of the link protocol prefixes in use.
4361 : The history can be used to select a link previously stored with
4362 : â€˜org-store-link’.  When the empty string is entered (i.e. if you just
4363 : press â€˜RET’ at the prompt), the link defaults to the most recently
4364 : stored link.  As â€˜SPC’ triggers completion in the minibuffer, you need to
4365 : use â€˜M-SPC’ or â€˜C-q SPC’ to force the insertion of a space character.
4367 : You will also be prompted for a description, and if one is given, it will
4368 : be displayed in the buffer instead of the link.
4370 : If there is already a link at point, this command will allow you to edit
4371 : link and description parts.
4373 : With a â€˜C-u’ prefix, prompts for a file to link to.  The file name can be
4374 : selected using completion.  The path to the file will be relative to the
4375 : current directory if the file is in the current directory or a subdirectory.
4376 : Otherwise, the link will be the absolute path as completed in the minibuffer
4377 : (i.e. normally ~/path/to/file).  You can configure this behavior using the
4378 : option â€˜org-link-file-path-type’.
4380 : With a â€˜C-u C-u’ prefix, enforce an absolute path even if the file is in
4381 : the current directory or below.
4383 : A â€˜C-u C-u C-u’ prefix negates â€˜org-keep-stored-link-after-insertion’.
4385 : If â€˜org-make-link-description-function’ is non-nil, this function will be
4386 : called with the link target, and the result will be the default
4387 : link description.
4389 : If the LINK-LOCATION parameter is non-nil, this value will be used as
4390 : the link location instead of reading one interactively.
4392 : If the DEFAULT-DESCRIPTION parameter is non-nil, this value will be used
4393 : as the default description.
4394 ** org-display-outline-path =(&optional file current separator just-return-string)=
4395    :PROPERTIES:
4396    :CUSTOM_ID: org-display-outline-path
4397    :END:
4399 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4400 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-outline-path][Find modifications in git logs]]
4402 : Display the current outline path in the echo area.
4404 : If FILE is non-nil, prepend the output with the file name.
4405 : If CURRENT is non-nil, append the current heading to the output.
4406 : SEPARATOR is passed through to â€˜org-format-outline-path’.  It separates
4407 : the different parts of the path and defaults to "/".
4408 : If JUST-RETURN-STRING is non-nil, return a string, don’t display a message.
4409 ** org-timer-change-times-in-region =(beg end delta)=
4410    :PROPERTIES:
4411    :CUSTOM_ID: org-timer-change-times-in-region
4412    :END:
4414 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
4415 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-change-times-in-region][Find modifications in git logs]]
4417 : Change all h:mm:ss time in region by a DELTA.
4418 ** org-indent-block
4419    :PROPERTIES:
4420    :CUSTOM_ID: org-indent-block
4421    :END:
4423 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4424 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-block][Find modifications in git logs]]
4426 : Indent the block at point.
4427 ** org-latex-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
4428    :PROPERTIES:
4429    :CUSTOM_ID: org-latex-export-to-pdf
4430    :END:
4432 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
4433 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-export-to-pdf][Find modifications in git logs]]
4435 : Export current buffer to LaTeX then process through to PDF.
4437 : If narrowing is active in the current buffer, only export its
4438 : narrowed part.
4440 : If a region is active, export that region.
4442 : A non-nil optional argument ASYNC means the process should happen
4443 : asynchronously.  The resulting file should be accessible through
4444 : the â€˜org-export-stack’ interface.
4446 : When optional argument SUBTREEP is non-nil, export the sub-tree
4447 : at point, extracting information from the headline properties
4448 : first.
4450 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4451 : contents of hidden elements.
4453 : When optional argument BODY-ONLY is non-nil, only write code
4454 : between "\begin{document}" and "\end{document}".
4456 : EXT-PLIST, when provided, is a property list with external
4457 : parameters overriding Org default settings, but still inferior to
4458 : file-local settings.
4460 : Return PDF file’s name.
4461 ** org-timestamp-up-day =(&optional arg)=
4462    :PROPERTIES:
4463    :CUSTOM_ID: org-timestamp-up-day
4464    :END:
4466 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4467 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-up-day][Find modifications in git logs]]
4469 : Increase the date in the time stamp by one day.
4470 : With prefix ARG, change that many days.
4471 ** org-copy-special
4472    :PROPERTIES:
4473    :CUSTOM_ID: org-copy-special
4474    :END:
4476 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Copy Subtree>, <menu-bar> <Tbl> <Rectangle> <Copy Rectangle>, C-c C-x M-w~
4477 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4478 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-special][Find modifications in git logs]]
4480 : Copy region in table or copy current subtree.
4481 : Calls â€˜org-table-copy-region’ or â€˜org-copy-subtree’, depending on
4482 : context.  See the individual commands for more information.
4483 ** org-paste-subtree =(&optional level tree for-yank remove)=
4484    :PROPERTIES:
4485    :CUSTOM_ID: org-paste-subtree
4486    :END:
4488 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4489 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-paste-subtree][Find modifications in git logs]]
4491 : Paste the clipboard as a subtree, with modification of headline level.
4492 : The entire subtree is promoted or demoted in order to match a new headline
4493 : level.
4495 : If the cursor is at the beginning of a headline, the same level as
4496 : that headline is used to paste the tree.
4498 : If not, the new level is derived from the *visible* headings
4499 : before and after the insertion point, and taken to be the inferior headline
4500 : level of the two.  So if the previous visible heading is level 3 and the
4501 : next is level 4 (or vice versa), level 4 will be used for insertion.
4502 : This makes sure that the subtree remains an independent subtree and does
4503 : not swallow low level entries.
4505 : You can also force a different level, either by using a numeric prefix
4506 : argument, or by inserting the heading marker by hand.  For example, if the
4507 : cursor is after "*****", then the tree will be shifted to level 5.
4509 : If optional TREE is given, use this text instead of the kill ring.
4511 : When FOR-YANK is set, this is called by â€˜org-yank’.  In this case, do not
4512 : move back over whitespace before inserting, and move point to the end of
4513 : the inserted text when done.
4515 : When REMOVE is non-nil, remove the subtree from the clipboard.
4516 ** org-agenda-holidays
4517    :PROPERTIES:
4518    :CUSTOM_ID: org-agenda-holidays
4519    :END:
4521 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4522 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-holidays][Find modifications in git logs]]
4524 : Display the holidays for the 3 months around the cursor date.
4525 ** org-version =(&optional here full message)=
4526    :PROPERTIES:
4527    :CUSTOM_ID: org-version
4528    :END:
4530 - *Access:* ~<menu-bar> <Org> <Documentation> <Show Version>~
4531 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4532 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-version][Find modifications in git logs]]
4534 : Show the Org version.
4535 : Interactively, or when MESSAGE is non-nil, show it in echo area.
4536 : With prefix argument, or when HERE is non-nil, insert it at point.
4537 : In non-interactive uses, a reduced version string is output unless
4538 : FULL is given.
4539 ** org-hide-block-toggle-maybe
4540    :PROPERTIES:
4541    :CUSTOM_ID: org-hide-block-toggle-maybe
4542    :END:
4544 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4545 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-toggle-maybe][Find modifications in git logs]]
4547 : Toggle visibility of block at point.
4548 : Unlike to â€˜org-hide-block-toggle’, this function does not throw
4549 : an error.  Return a non-nil value when toggling is successful.
4550 ** org-publish-current-file =(&optional force async)=
4551    :PROPERTIES:
4552    :CUSTOM_ID: org-publish-current-file
4553    :END:
4555 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
4556 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-current-file][Find modifications in git logs]]
4558 : Publish the current file.
4559 : With prefix argument FORCE, force publish the file.  When
4560 : optional argument ASYNC is non-nil, publishing will be done
4561 : asynchronously, in another process.
4562 ** org-next-link =(&optional search-backward)=
4563    :PROPERTIES:
4564    :CUSTOM_ID: org-next-link
4565    :END:
4567 - *Access:* ~C-c C-x C-n, <menu-bar> <Org> <Hyperlinks> <Next link>~
4568 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4569 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-link][Find modifications in git logs]]
4571 : Move forward to the next link.
4572 : If the link is in hidden text, expose it.
4573 ** org-clock-goto =(&optional select)=
4574    :PROPERTIES:
4575    :CUSTOM_ID: org-clock-goto
4576    :END:
4578 - *Access:* ~C-c C-x C-j, <menu-bar> <Org> <Logging work> <Goto running clock>~
4579 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
4580 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto][Find modifications in git logs]]
4582 : Go to the currently clocked-in entry, or to the most recently clocked one.
4583 : With prefix arg SELECT, offer recently clocked tasks for selection.
4584 ** org-babel-do-key-sequence-in-edit-buffer =(key)=
4585    :PROPERTIES:
4586    :CUSTOM_ID: org-babel-do-key-sequence-in-edit-buffer
4587    :END:
4589 - *Access:* ~C-c C-v x, C-c C-v C-x~
4590 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4591 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-do-key-sequence-in-edit-buffer][Find modifications in git logs]]
4593 : Read key sequence and execute the command in edit buffer.
4594 : Enter a key sequence to be executed in the language major-mode
4595 : edit buffer.  For example, TAB will alter the contents of the
4596 : Org code block according to the effect of TAB in the language
4597 : major mode buffer.  For languages that support interactive
4598 : sessions, this can be used to send code from the Org buffer
4599 : to the session for evaluation using the native major mode
4600 : evaluation mechanisms.
4601 ** org-hide-block-all
4602    :PROPERTIES:
4603    :CUSTOM_ID: org-hide-block-all
4604    :END:
4606 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4607 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-all][Find modifications in git logs]]
4609 : Fold all blocks in the current buffer.
4610 ** org-promote-subtree
4611    :PROPERTIES:
4612    :CUSTOM_ID: org-promote-subtree
4613    :END:
4615 - *Access:* ~C-c C-<~
4616 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4617 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-promote-subtree][Find modifications in git logs]]
4619 : Promote the entire subtree.
4620 : See also â€˜org-promote’.
4621 ** org-babel-execute-maybe
4622    :PROPERTIES:
4623    :CUSTOM_ID: org-babel-execute-maybe
4624    :END:
4626 - *Access:* ~C-c C-v C-e, C-c C-v e~
4627 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4628 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-maybe][Find modifications in git logs]]
4631 ** org-clock-in =(&optional select start-time)=
4632    :PROPERTIES:
4633    :CUSTOM_ID: org-clock-in
4634    :END:
4636 - *Access:* ~C-c C-x TAB, <menu-bar> <Org> <Logging work> <Clock in>~
4637 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
4638 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in][Find modifications in git logs]]
4640 : Start the clock on the current item.
4642 : If necessary, clock-out of the currently active clock.
4644 : With a â€˜C-u’ prefix argument SELECT, offer a list of recently clocked
4645 : tasks to clock into.
4647 : When SELECT is â€˜C-u C-u’, clock into the current task and mark it as
4648 : the default task, a special task that will always be offered in the
4649 : clocking selection, associated with the letter â€˜d’.
4651 : When SELECT is â€˜C-u C-u C-u’, clock in by using the last clock-out
4652 : time as the start time.  See â€˜org-clock-continuously’ to make this
4653 : the default behavior.
4654 ** org-do-promote
4655    :PROPERTIES:
4656    :CUSTOM_ID: org-do-promote
4657    :END:
4659 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4660 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-do-promote][Find modifications in git logs]]
4662 : Promote the current heading higher up the tree.
4663 : If the region is active in â€˜transient-mark-mode’, promote all
4664 : headings in the region.
4665 ** org-agenda-drag-line-forward =(arg &optional backward)=
4666    :PROPERTIES:
4667    :CUSTOM_ID: org-agenda-drag-line-forward
4668    :END:
4670 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4671 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-drag-line-forward][Find modifications in git logs]]
4673 : Drag an agenda line forward by ARG lines.
4674 : When the optional argument â€˜backward’ is non-nil, move backward.
4675 ** org-inc-effort
4676    :PROPERTIES:
4677    :CUSTOM_ID: org-inc-effort
4678    :END:
4680 - *Access:* ~C-c C-x E~
4681 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4682 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inc-effort][Find modifications in git logs]]
4684 : Increment the value of the effort property in the current entry.
4685 ** org-indent-to-column =(column &optional minimum)=
4686    :PROPERTIES:
4687    :CUSTOM_ID: org-indent-to-column
4688    :END:
4690 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
4691 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-to-column][Find modifications in git logs]]
4693 : Indent from point with tabs and spaces until COLUMN is reached.
4694 : Optional second argument MINIMUM says always do at least MINIMUM spaces
4695 : even if that goes past COLUMN; by default, MINIMUM is zero.
4697 : The return value is COLUMN.
4699 : (fn COLUMN &optional MINIMUM)
4700 ** org-agenda-kill
4701    :PROPERTIES:
4702    :CUSTOM_ID: org-agenda-kill
4703    :END:
4705 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4706 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-kill][Find modifications in git logs]]
4708 : Kill the entry or subtree belonging to the current agenda entry.
4709 ** org-protocol-create =(&optional project-plist)=
4710    :PROPERTIES:
4711    :CUSTOM_ID: org-protocol-create
4712    :END:
4714 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
4715 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-create][Find modifications in git logs]]
4717 : Create a new org-protocol project interactively.
4718 : An org-protocol project is an entry in
4719 : â€˜org-protocol-project-alist’ which is used by
4720 : â€˜org-protocol-open-source’.  Optionally use PROJECT-PLIST to
4721 : initialize the defaults for this project.  If PROJECT-PLIST is
4722 : the cdr of an element in â€˜org-publish-project-alist’, reuse
4723 : :base-directory, :html-extension and :base-extension.
4724 ** org-odt-export-as-odf =(latex-frag &optional odf-file)=
4725    :PROPERTIES:
4726    :CUSTOM_ID: org-odt-export-as-odf
4727    :END:
4729 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
4730 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-export-as-odf][Find modifications in git logs]]
4732 : Export LATEX-FRAG as OpenDocument formula file ODF-FILE.
4733 : Use â€˜org-create-math-formula’ to convert LATEX-FRAG first to
4734 : MathML.  When invoked as an interactive command, use
4735 : â€˜org-latex-regexps’ to infer LATEX-FRAG from currently active
4736 : region.  If no LaTeX fragments are found, prompt for it.  Push
4737 : MathML source to kill ring depending on the value of
4738 : â€˜org-export-copy-to-kill-ring’.
4739 ** org-footnote-new
4740    :PROPERTIES:
4741    :CUSTOM_ID: org-footnote-new
4742    :END:
4744 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
4745 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-new][Find modifications in git logs]]
4747 : Insert a new footnote.
4748 : This command prompts for a label.  If this is a label referencing an
4749 : existing label, only insert the label.  If the footnote label is empty
4750 : or new, let the user edit the definition of the footnote.
4751 ** org-edit-src-save
4752    :PROPERTIES:
4753    :CUSTOM_ID: org-edit-src-save
4754    :END:
4756 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
4757 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-save][Find modifications in git logs]]
4759 : Save parent buffer with current state source-code buffer.
4760 ** org-inlinetask-insert-task =(&optional no-state)=
4761    :PROPERTIES:
4762    :CUSTOM_ID: org-inlinetask-insert-task
4763    :END:
4765 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
4766 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-insert-task][Find modifications in git logs]]
4768 : Insert an inline task.
4769 : If prefix arg NO-STATE is set, ignore â€˜org-inlinetask-default-state’.
4770 ** org-lint--ignore-checker
4771    :PROPERTIES:
4772    :CUSTOM_ID: org-lint--ignore-checker
4773    :END:
4775 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
4776 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--ignore-checker][Find modifications in git logs]]
4778 : Ignore all reports from checker that generated the report at point.
4779 : Checker will also be ignored in all subsequent reports.
4780 ** org-table-import =(file arg)=
4781    :PROPERTIES:
4782    :CUSTOM_ID: org-table-import
4783    :END:
4785 - *Access:* ~<menu-bar> <Tbl> <Import from File>~
4786 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
4787 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-import][Find modifications in git logs]]
4789 : Import FILE as a table.
4790 : The file is assumed to be tab-separated.  Such files can be produced by most
4791 : spreadsheet and database applications.  If no tabs (at least one per line)
4792 : are found, lines will be split on whitespace into fields.
4793 ** org-babel-next-src-block =(&optional arg)=
4794    :PROPERTIES:
4795    :CUSTOM_ID: org-babel-next-src-block
4796    :END:
4798 - *Access:* ~C-c C-v C-n, C-c C-v n~
4799 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4800 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-next-src-block][Find modifications in git logs]]
4802 : Jump to the next source block.
4803 : With optional prefix argument ARG, jump forward ARG many source blocks.
4804 ** org-submit-bug-report
4805    :PROPERTIES:
4806    :CUSTOM_ID: org-submit-bug-report
4807    :END:
4809 - *Access:* ~<menu-bar> <Org> <Send bug report>~
4810 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4811 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-submit-bug-report][Find modifications in git logs]]
4813 : Submit a bug report on Org via mail.
4815 : Don’t hesitate to report any problems or inaccurate documentation.
4817 : If you don’t have setup sending mail from (X)Emacs, please copy the
4818 : output buffer into your mail program, as it gives us important
4819 : information about your Org version and configuration.
4820 ** org-agenda-convert-date
4821    :PROPERTIES:
4822    :CUSTOM_ID: org-agenda-convert-date
4823    :END:
4825 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4826 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-convert-date][Find modifications in git logs]]
4829 ** org-shiftmetaup =(&optional _arg)=
4830    :PROPERTIES:
4831    :CUSTOM_ID: org-shiftmetaup
4832    :END:
4834 - *Access:* ~<M-S-up>, <menu-bar> <Tbl> <Row> <Delete Row>~
4835 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
4836 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaup][Find modifications in git logs]]
4838 : Drag the line at point up.
4839 : In a table, kill the current row.
4840 : On a clock timestamp, update the value of the timestamp like â€˜S-<up>’
4841 : but also adjust the previous clocked item in the clock history.
4842 : Everywhere else, drag the line at point up.
4843 ** org-babel-hash-at-point =(&optional point)=
4844    :PROPERTIES:
4845    :CUSTOM_ID: org-babel-hash-at-point
4846    :END:
4848 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4849 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hash-at-point][Find modifications in git logs]]
4851 : Return the value of the hash at POINT.
4852 : The hash is also added as the last element of the kill ring.
4853 : This can be called with â€˜C-c C-c’.
4854 ** org-footnote-renumber-fn:N
4855    :PROPERTIES:
4856    :CUSTOM_ID: org-footnote-renumber-fn:N
4857    :END:
4859 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
4860 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-renumber-fn:N][Find modifications in git logs]]
4862 : Order numbered footnotes into a sequence in the document.
4863 ** org-babel-pop-to-session-maybe
4864    :PROPERTIES:
4865    :CUSTOM_ID: org-babel-pop-to-session-maybe
4866    :END:
4868 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4869 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-pop-to-session-maybe][Find modifications in git logs]]
4871 : Conditionally pop to a session.
4872 : Detect if this is context for a org-babel src-block and if so
4873 : then run â€˜org-babel-switch-to-session’.
4874 ** org-agenda-goto =(&optional highlight)=
4875    :PROPERTIES:
4876    :CUSTOM_ID: org-agenda-goto
4877    :END:
4879 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4880 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto][Find modifications in git logs]]
4882 : Go to the entry at point in the corresponding Org file.
4883 ** org-mouse-show-overview
4884    :PROPERTIES:
4885    :CUSTOM_ID: org-mouse-show-overview
4886    :END:
4888 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
4889 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-show-overview][Find modifications in git logs]]
4891 : Change visibility of current org buffer to first-level headlines only.
4892 ** org-agenda-switch-to =(&optional delete-other-windows)=
4893    :PROPERTIES:
4894    :CUSTOM_ID: org-agenda-switch-to
4895    :END:
4897 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4898 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-switch-to][Find modifications in git logs]]
4900 : Go to the Org mode file which contains the item at point.
4901 : When optional argument DELETE-OTHER-WINDOWS is non-nil, the
4902 : displayed Org file fills the frame.
4903 ** org-babel-goto-named-src-block =(name)=
4904    :PROPERTIES:
4905    :CUSTOM_ID: org-babel-goto-named-src-block
4906    :END:
4908 - *Access:* ~C-c C-v g~
4909 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
4910 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-goto-named-src-block][Find modifications in git logs]]
4912 : Go to a named source-code block.
4913 ** org-org-export-as-org =(&optional async subtreep visible-only body-only ext-plist)=
4914    :PROPERTIES:
4915    :CUSTOM_ID: org-org-export-as-org
4916    :END:
4918 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-org.el][ox-org.el]]
4919 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-export-as-org][Find modifications in git logs]]
4921 : Export current buffer to an Org buffer.
4923 : If narrowing is active in the current buffer, only export its
4924 : narrowed part.
4926 : If a region is active, export that region.
4928 : A non-nil optional argument ASYNC means the process should happen
4929 : asynchronously.  The resulting buffer should be accessible
4930 : through the â€˜org-export-stack’ interface.
4932 : When optional argument SUBTREEP is non-nil, export the sub-tree
4933 : at point, extracting information from the headline properties
4934 : first.
4936 : When optional argument VISIBLE-ONLY is non-nil, don’t export
4937 : contents of hidden elements.
4939 : When optional argument BODY-ONLY is non-nil, strip document
4940 : keywords from output.
4942 : EXT-PLIST, when provided, is a property list with external
4943 : parameters overriding Org default settings, but still inferior to
4944 : file-local settings.
4946 : Export is done in a buffer named "*Org ORG Export*", which will
4947 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
4948 : non-nil.
4949 ** org-export-stack-remove =(&optional source)=
4950    :PROPERTIES:
4951    :CUSTOM_ID: org-export-stack-remove
4952    :END:
4954 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
4955 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-remove][Find modifications in git logs]]
4957 : Remove export results at point from stack.
4958 : If optional argument SOURCE is non-nil, remove it instead.
4959 ** org-table-fedit-ref-left
4960    :PROPERTIES:
4961    :CUSTOM_ID: org-table-fedit-ref-left
4962    :END:
4964 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
4965 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-left][Find modifications in git logs]]
4967 : Shift the reference at point one field to the left.
4968 ** org-timer-start =(&optional offset)=
4969    :PROPERTIES:
4970    :CUSTOM_ID: org-timer-start
4971    :END:
4973 - *Access:* ~C-c C-x 0, <menu-bar> <Org> <Dates and Scheduling> <Start/Restart Timer>~
4974 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
4975 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-start][Find modifications in git logs]]
4977 : Set the starting time for the relative timer to now.
4978 : When called with prefix argument OFFSET, prompt the user for an offset time,
4979 : with the default taken from a timer stamp at point, if any.
4980 : If OFFSET is a string or an integer, it is directly taken to be the offset
4981 : without user interaction.
4982 : When called with a double prefix arg, all timer strings in the active
4983 : region will be shifted by a specific amount.  You will be prompted for
4984 : the amount, with the default to make the first timer string in
4985 : the region 0:00:00.
4986 ** org-agenda-todo-nextset
4987    :PROPERTIES:
4988    :CUSTOM_ID: org-agenda-todo-nextset
4989    :END:
4991 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
4992 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-nextset][Find modifications in git logs]]
4994 : Switch TODO entry to next sequence.
4995 ** org-edit-fixed-width-region
4996    :PROPERTIES:
4997    :CUSTOM_ID: org-edit-fixed-width-region
4998    :END:
5000 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
5001 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-fixed-width-region][Find modifications in git logs]]
5003 : Edit the fixed-width ASCII drawing at point.
5005 : This must be a region where each line starts with a colon
5006 : followed by a space or a newline character.
5008 : A new buffer is created and the fixed-width region is copied into
5009 : it, and the buffer is switched into the major mode defined in
5010 : â€˜org-edit-fixed-width-region-mode’, which see.
5012 : When done, exit with â€˜C-c '’.  The edited text will then replace
5013 : the area in the Org mode buffer.
5014 ** org-dblock-update =(&optional arg)=
5015    :PROPERTIES:
5016    :CUSTOM_ID: org-dblock-update
5017    :END:
5019 - *Access:* ~C-c C-x C-u~
5020 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5021 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-dblock-update][Find modifications in git logs]]
5023 : User command for updating dynamic blocks.
5024 : Update the dynamic block at point.  With prefix ARG, update all dynamic
5025 : blocks in the buffer.
5026 ** org-capture-string =(string &optional keys)=
5027    :PROPERTIES:
5028    :CUSTOM_ID: org-capture-string
5029    :END:
5031 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
5032 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-string][Find modifications in git logs]]
5034 : Capture STRING with the template selected by KEYS.
5035 ** org-clock-select-task =(&optional prompt)=
5036    :PROPERTIES:
5037    :CUSTOM_ID: org-clock-select-task
5038    :END:
5040 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5041 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-select-task][Find modifications in git logs]]
5043 : Select a task that was recently associated with clocking.
5044 ** org-rss-export-as-rss =(&optional async subtreep visible-only)=
5045    :PROPERTIES:
5046    :CUSTOM_ID: org-rss-export-as-rss
5047    :END:
5049 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
5050 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-export-as-rss][Find modifications in git logs]]
5052 : Export current buffer to a RSS buffer.
5054 : If narrowing is active in the current buffer, only export its
5055 : narrowed part.
5057 : If a region is active, export that region.
5059 : A non-nil optional argument ASYNC means the process should happen
5060 : asynchronously.  The resulting buffer should be accessible
5061 : through the â€˜org-export-stack’ interface.
5063 : When optional argument SUBTREEP is non-nil, export the sub-tree
5064 : at point, extracting information from the headline properties
5065 : first.
5067 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5068 : contents of hidden elements.
5070 : Export is done in a buffer named "*Org RSS Export*", which will
5071 : be displayed when â€˜org-export-show-temporary-export-buffer’ is
5072 : non-nil.
5073 ** org-babel-initiate-session =(&optional arg info)=
5074    :PROPERTIES:
5075    :CUSTOM_ID: org-babel-initiate-session
5076    :END:
5078 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
5079 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-initiate-session][Find modifications in git logs]]
5081 : Initiate session for current code block.
5082 : If called with a prefix argument then resolve any variable
5083 : references in the header arguments and assign these variables in
5084 : the session.  Copy the body of the code block to the kill ring.
5085 ** org-table-calc-current-TBLFM =(&optional arg)=
5086    :PROPERTIES:
5087    :CUSTOM_ID: org-table-calc-current-TBLFM
5088    :END:
5090 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5091 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-calc-current-TBLFM][Find modifications in git logs]]
5093 : Apply the #+TBLFM in the line at point to the table.
5094 ** org-table-fedit-ref-down
5095    :PROPERTIES:
5096    :CUSTOM_ID: org-table-fedit-ref-down
5097    :END:
5099 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5100 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-down][Find modifications in git logs]]
5102 : Shift the reference at point one row/hline down.
5103 ** org-clock-modify-effort-estimate =(&optional value)=
5104    :PROPERTIES:
5105    :CUSTOM_ID: org-clock-modify-effort-estimate
5106    :END:
5108 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5109 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-modify-effort-estimate][Find modifications in git logs]]
5111 : Add to or set the effort estimate of the item currently being clocked.
5112 : VALUE can be a number of minutes, or a string with format hh:mm or mm.
5113 : When the string starts with a + or a - sign, the current value of the effort
5114 : property will be changed by that amount.  If the effort value is expressed
5115 : as an â€˜org-effort-durations’ (e.g. "3h"), the modified value will be
5116 : converted to a hh:mm duration.
5118 : This command will update the "Effort" property of the currently
5119 : clocked item, and the value displayed in the mode line.
5120 ** org-agenda-next-line
5121    :PROPERTIES:
5122    :CUSTOM_ID: org-agenda-next-line
5123    :END:
5125 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5126 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-line][Find modifications in git logs]]
5128 : Move cursor to the next line, and show if follow mode is active.
5129 ** org-previous-item
5130    :PROPERTIES:
5131    :CUSTOM_ID: org-previous-item
5132    :END:
5134 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
5135 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-item][Find modifications in git logs]]
5137 : Move to the beginning of the previous item.
5138 : Throw an error when not in a list.  Also throw an error when at
5139 : first item, unless â€˜org-list-use-circular-motion’ is non-nil.
5140 ** org-ascii-export-as-ascii =(&optional async subtreep visible-only body-only ext-plist)=
5141    :PROPERTIES:
5142    :CUSTOM_ID: org-ascii-export-as-ascii
5143    :END:
5145 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
5146 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-export-as-ascii][Find modifications in git logs]]
5148 : Export current buffer to a text buffer.
5150 : If narrowing is active in the current buffer, only export its
5151 : narrowed part.
5153 : If a region is active, export that region.
5155 : A non-nil optional argument ASYNC means the process should happen
5156 : asynchronously.  The resulting buffer should be accessible
5157 : through the â€˜org-export-stack’ interface.
5159 : When optional argument SUBTREEP is non-nil, export the sub-tree
5160 : at point, extracting information from the headline properties
5161 : first.
5163 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5164 : contents of hidden elements.
5166 : When optional argument BODY-ONLY is non-nil, strip title and
5167 : table of contents from output.
5169 : EXT-PLIST, when provided, is a property list with external
5170 : parameters overriding Org default settings, but still inferior to
5171 : file-local settings.
5173 : Export is done in a buffer named "*Org ASCII Export*", which
5174 : will be displayed when â€˜org-export-show-temporary-export-buffer’
5175 : is non-nil.
5176 ** org-redisplay-inline-images
5177    :PROPERTIES:
5178    :CUSTOM_ID: org-redisplay-inline-images
5179    :END:
5181 - *Access:* ~C-c C-x C-M-v~
5182 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5183 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-redisplay-inline-images][Find modifications in git logs]]
5185 : Refresh the display of inline images.
5186 ** org-agenda-toggle-archive-tag
5187    :PROPERTIES:
5188    :CUSTOM_ID: org-agenda-toggle-archive-tag
5189    :END:
5191 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5192 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-archive-tag][Find modifications in git logs]]
5194 : Toggle the archive tag for the current entry.
5195 ** org-agenda-capture =(&optional with-time)=
5196    :PROPERTIES:
5197    :CUSTOM_ID: org-agenda-capture
5198    :END:
5200 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5201 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-capture][Find modifications in git logs]]
5203 : Call â€˜org-capture’ with the date at point.
5204 : With a â€˜C-1’ prefix, use the HH:MM value at point (if any) or the
5205 : current HH:MM time.
5206 ** org-datetree-cleanup
5207    :PROPERTIES:
5208    :CUSTOM_ID: org-datetree-cleanup
5209    :END:
5211 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-datetree.el][org-datetree.el]]
5212 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-datetree-cleanup][Find modifications in git logs]]
5214 : Make sure all entries in the current tree are under the correct date.
5215 : It may be useful to restrict the buffer to the applicable portion
5216 : before running this command, even though the command tries to be smart.
5217 ** org-agenda-date-earlier-hours =(arg)=
5218    :PROPERTIES:
5219    :CUSTOM_ID: org-agenda-date-earlier-hours
5220    :END:
5222 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5223 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier-hours][Find modifications in git logs]]
5225 : Change the time of this item, in hour steps.
5226 ** org-agenda-date-later-minutes =(arg)=
5227    :PROPERTIES:
5228    :CUSTOM_ID: org-agenda-date-later-minutes
5229    :END:
5231 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5232 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later-minutes][Find modifications in git logs]]
5234 : Change the time of this item, in units of â€˜org-time-stamp-rounding-minutes’.
5235 ** org-table-rotate-recalc-marks =(&optional newchar)=
5236    :PROPERTIES:
5237    :CUSTOM_ID: org-table-rotate-recalc-marks
5238    :END:
5240 - *Access:* ~C-#, <menu-bar> <Tbl> <Calculate> <Toggle Recalculate Mark>~
5241 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5242 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-rotate-recalc-marks][Find modifications in git logs]]
5244 : Rotate the recalculation mark in the first column.
5245 : If in any row, the first field is not consistent with a mark,
5246 : insert a new column for the markers.
5247 : When there is an active region, change all the lines in the region,
5248 : after prompting for the marking character.
5249 : After each change, a message will be displayed indicating the meaning
5250 : of the new mark.
5251 ** org-drag-element-backward
5252    :PROPERTIES:
5253    :CUSTOM_ID: org-drag-element-backward
5254    :END:
5256 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5257 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-element-backward][Find modifications in git logs]]
5259 : Move backward element at point.
5260 ** org-transpose-words
5261    :PROPERTIES:
5262    :CUSTOM_ID: org-transpose-words
5263    :END:
5265 - *Access:* ~M-t~
5266 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5267 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-transpose-words][Find modifications in git logs]]
5269 : Transpose words for Org.
5270 : This uses the â€˜org-mode-transpose-word-syntax-table’ syntax
5271 : table, which interprets characters in â€˜org-emphasis-alist’ as
5272 : word constituents.
5273 ** org-next-block =(arg &optional backward block-regexp)=
5274    :PROPERTIES:
5275    :CUSTOM_ID: org-next-block
5276    :END:
5278 - *Access:* ~C-c M-f~
5279 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5280 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-block][Find modifications in git logs]]
5282 : Jump to the next block.
5284 : With a prefix argument ARG, jump forward ARG many blocks.
5286 : When BACKWARD is non-nil, jump to the previous block.
5288 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
5289 : Match data is set according to this regexp when the function
5290 : returns.
5292 : Return point at beginning of the opening line of found block.
5293 : Throw an error if no block is found.
5294 ** org-indent-indent-buffer
5295    :PROPERTIES:
5296    :CUSTOM_ID: org-indent-indent-buffer
5297    :END:
5299 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
5300 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-indent-buffer][Find modifications in git logs]]
5302 : Add indentation properties to the accessible part of the buffer.
5303 ** org-babel-execute-src-block =(&optional arg info params)=
5304    :PROPERTIES:
5305    :CUSTOM_ID: org-babel-execute-src-block
5306    :END:
5308 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
5309 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-src-block][Find modifications in git logs]]
5311 : Execute the current source code block.
5312 : Insert the results of execution into the buffer.  Source code
5313 : execution and the collection and formatting of results can be
5314 : controlled through a variety of header arguments.
5316 : With prefix argument ARG, force re-execution even if an existing
5317 : result cached in the buffer would otherwise have been returned.
5319 : Optionally supply a value for INFO in the form returned by
5320 : â€˜org-babel-get-src-block-info’.
5322 : Optionally supply a value for PARAMS which will be merged with
5323 : the header arguments specified at the front of the source code
5324 : block.
5325 ** org-find-entry-with-id =(ident)=
5326    :PROPERTIES:
5327    :CUSTOM_ID: org-find-entry-with-id
5328    :END:
5330 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5331 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-find-entry-with-id][Find modifications in git logs]]
5333 : Locate the entry that contains the ID property with exact value IDENT.
5334 : IDENT can be a string, a symbol or a number, this function will search for
5335 : the string representation of it.
5336 : Return the position where this entry starts, or nil if there is no such entry.
5337 ** org-table-next-field
5338    :PROPERTIES:
5339    :CUSTOM_ID: org-table-next-field
5340    :END:
5342 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5343 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-next-field][Find modifications in git logs]]
5345 : Go to the next field in the current table, creating new lines as needed.
5346 : Before doing so, re-align the table if necessary.
5347 ** org-table-copy-down =(n)=
5348    :PROPERTIES:
5349    :CUSTOM_ID: org-table-copy-down
5350    :END:
5352 - *Access:* ~<S-return>, <menu-bar> <Tbl> <Copy Field from Above>~
5353 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5354 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-down][Find modifications in git logs]]
5356 : Copy the value of the current field one row below.
5358 : If the field at the cursor is empty, copy the content of the
5359 : nearest non-empty field above.  With argument N, use the Nth
5360 : non-empty field.
5362 : If the current field is not empty, it is copied down to the next
5363 : row, and the cursor is moved with it.  Therefore, repeating this
5364 : command causes the column to be filled row-by-row.
5366 : If the variable â€˜org-table-copy-increment’ is non-nil and the
5367 : field is an integer or a timestamp, it will be incremented while
5368 : copying.  By default, increment by the difference between the
5369 : value in the current field and the one in the field above.  To
5370 : increment using a fixed integer, set â€˜org-table-copy-increment’
5371 : to a number.  In the case of a timestamp, increment by days.
5372 ** org-agenda-cycle-show =(&optional n)=
5373    :PROPERTIES:
5374    :CUSTOM_ID: org-agenda-cycle-show
5375    :END:
5377 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5378 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-cycle-show][Find modifications in git logs]]
5380 : Show the current entry in another window, with default settings.
5382 : Default settings are taken from â€˜org-show-context-detail’.  When
5383 : use repeatedly in immediate succession, the remote entry will
5384 : cycle through visibility
5386 :   children -> subtree -> folded
5388 : When called with a numeric prefix arg, that arg will be passed through to
5389 : â€˜org-agenda-show-1’.  For the interpretation of that argument, see the
5390 : docstring of â€˜org-agenda-show-1’.
5391 ** org-agenda-archive
5392    :PROPERTIES:
5393    :CUSTOM_ID: org-agenda-archive
5394    :END:
5396 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5397 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive][Find modifications in git logs]]
5399 : Archive the entry or subtree belonging to the current agenda entry.
5400 ** org-babel-lob-execute-maybe
5401    :PROPERTIES:
5402    :CUSTOM_ID: org-babel-lob-execute-maybe
5403    :END:
5405 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lob.el][ob-lob.el]]
5406 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lob-execute-maybe][Find modifications in git logs]]
5408 : Execute a Library of Babel source block, if appropriate.
5409 : Detect if this is context for a Library Of Babel source block and
5410 : if so then run the appropriate source block from the Library.
5411 ** org-timestamp-down =(&optional arg)=
5412    :PROPERTIES:
5413    :CUSTOM_ID: org-timestamp-down
5414    :END:
5416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-down][Find modifications in git logs]]
5419 : Decrease the date item at the cursor by one.
5420 : If the cursor is on the year, change the year.  If it is on the month,
5421 : the day or the time, change that.
5422 : With prefix ARG, change by that many units.
5423 ** org-agenda-next-date-line =(&optional arg)=
5424    :PROPERTIES:
5425    :CUSTOM_ID: org-agenda-next-date-line
5426    :END:
5428 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5429 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-date-line][Find modifications in git logs]]
5431 : Jump to the next line indicating a date in agenda buffer.
5432 ** org-agenda-show-and-scroll-up =(&optional arg)=
5433    :PROPERTIES:
5434    :CUSTOM_ID: org-agenda-show-and-scroll-up
5435    :END:
5437 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5438 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-and-scroll-up][Find modifications in git logs]]
5440 : Display the Org file which contains the item at point.
5442 : When called repeatedly, scroll the window that is displaying the buffer.
5444 : With a â€˜C-u’ prefix, use â€˜org-show-entry’ instead of â€˜outline-show-subtree’
5445 : to display the item, so that drawers and logbooks stay folded.
5446 ** org-mouse-move-tree =(event)=
5447    :PROPERTIES:
5448    :CUSTOM_ID: org-mouse-move-tree
5449    :END:
5451 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
5452 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-move-tree][Find modifications in git logs]]
5455 ** org-timestamp-up =(&optional arg)=
5456    :PROPERTIES:
5457    :CUSTOM_ID: org-timestamp-up
5458    :END:
5460 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5461 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-up][Find modifications in git logs]]
5463 : Increase the date item at the cursor by one.
5464 : If the cursor is on the year, change the year.  If it is on the month,
5465 : the day or the time, change that.
5466 : With prefix ARG, change by that many units.
5467 ** org-mouse-show-headlines
5468    :PROPERTIES:
5469    :CUSTOM_ID: org-mouse-show-headlines
5470    :END:
5472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
5473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-show-headlines][Find modifications in git logs]]
5475 : Change the visibility of the current org buffer to only show headlines.
5476 ** org-publish =(project &optional force async)=
5477    :PROPERTIES:
5478    :CUSTOM_ID: org-publish
5479    :END:
5481 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
5482 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish][Find modifications in git logs]]
5484 : Publish PROJECT.
5486 : PROJECT is either a project name, as a string, or a project
5487 : alist (see â€˜org-publish-project-alist’ variable).
5489 : When optional argument FORCE is non-nil, force publishing all
5490 : files in PROJECT.  With a non-nil optional argument ASYNC,
5491 : publishing will be done asynchronously, in another process.
5492 ** org-speedbar-set-agenda-restriction
5493    :PROPERTIES:
5494    :CUSTOM_ID: org-speedbar-set-agenda-restriction
5495    :END:
5497 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5498 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speedbar-set-agenda-restriction][Find modifications in git logs]]
5500 : Restrict future agenda commands to the location at point in speedbar.
5501 : To get rid of the restriction, use â€˜C-c C-x >’.
5502 ** org-mark-ring-push =(&optional pos buffer)=
5503    :PROPERTIES:
5504    :CUSTOM_ID: org-mark-ring-push
5505    :END:
5507 - *Access:* ~C-c %~
5508 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5509 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-ring-push][Find modifications in git logs]]
5511 : Put the current position or POS into the mark ring and rotate it.
5512 ** org-mouse-timestamp-today =(&optional shift units)=
5513    :PROPERTIES:
5514    :CUSTOM_ID: org-mouse-timestamp-today
5515    :END:
5517 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
5518 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-timestamp-today][Find modifications in git logs]]
5520 : Change the timestamp into SHIFT UNITS in the future.
5522 : For the acceptable UNITS, see â€˜org-timestamp-change’.
5523 ** org-shiftup =(&optional arg)=
5524    :PROPERTIES:
5525    :CUSTOM_ID: org-shiftup
5526    :END:
5528 - *Access:* ~<S-up>, <menu-bar> <Org> <TODO Lists> <Priority Up>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Later>~
5529 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5530 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup][Find modifications in git logs]]
5532 : Increase item in timestamp or increase priority of current headline.
5533 : Calls â€˜org-timestamp-up’ or â€˜org-priority-up’, or â€˜org-previous-item’,
5534 : depending on context.  See the individual commands for more information.
5535 ** org-archive-to-archive-sibling
5536    :PROPERTIES:
5537    :CUSTOM_ID: org-archive-to-archive-sibling
5538    :END:
5540 - *Access:* ~C-c C-x A, <menu-bar> <Org> <Archive> <Move subtree to Archive sibling>~
5541 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
5542 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-to-archive-sibling][Find modifications in git logs]]
5544 : Archive the current heading by moving it under the archive sibling.
5546 : The archive sibling is a sibling of the heading with the heading name
5547 : â€˜org-archive-sibling-heading’ and an â€˜org-archive-tag’ tag.  If this
5548 : sibling does not exist, it will be created at the end of the subtree.
5550 : Archiving time is retained in the ARCHIVE_TIME node property.
5551 ** org-publish-project =(project &optional force async)=
5552    :PROPERTIES:
5553    :CUSTOM_ID: org-publish-project
5554    :END:
5556 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
5557 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-project][Find modifications in git logs]]
5559 : Publish PROJECT.
5561 : PROJECT is either a project name, as a string, or a project
5562 : alist (see â€˜org-publish-project-alist’ variable).
5564 : When optional argument FORCE is non-nil, force publishing all
5565 : files in PROJECT.  With a non-nil optional argument ASYNC,
5566 : publishing will be done asynchronously, in another process.
5567 ** org-table-convert-region =(beg0 end0 &optional separator)=
5568    :PROPERTIES:
5569    :CUSTOM_ID: org-table-convert-region
5570    :END:
5572 - *Access:* ~<menu-bar> <Tbl> <Convert Region>~
5573 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5574 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-convert-region][Find modifications in git logs]]
5576 : Convert region to a table.
5578 : The region goes from BEG0 to END0, but these borders will be moved
5579 : slightly, to make sure a beginning of line in the first line is included.
5581 : SEPARATOR specifies the field separator in the lines.  It can have the
5582 : following values:
5584 : (4)     Use the comma as a field separator
5585 : (16)    Use a TAB as field separator
5586 : (64)    Prompt for a regular expression as field separator
5587 : integer  When a number, use that many spaces, or a TAB, as field separator
5588 : regexp   When a regular expression, use it to match the separator
5589 : nil      When nil, the command tries to be smart and figure out the
5590 :          separator in the following way:
5591 :          - when each line contains a TAB, assume TAB-separated material
5592 :          - when each line contains a comma, assume CSV material
5593 :          - else, assume one or more SPACE characters as separator.
5594 ** org-goto-left
5595    :PROPERTIES:
5596    :CUSTOM_ID: org-goto-left
5597    :END:
5599 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5600 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-left][Find modifications in git logs]]
5602 : Finish â€˜org-goto’ by going to the new location.
5603 ** org-babel-goto-src-block-head
5604    :PROPERTIES:
5605    :CUSTOM_ID: org-babel-goto-src-block-head
5606    :END:
5608 - *Access:* ~C-c C-v C-u, C-c C-v u~
5609 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
5610 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-goto-src-block-head][Find modifications in git logs]]
5612 : Go to the beginning of the current code block.
5613 ** org-down-element
5614    :PROPERTIES:
5615    :CUSTOM_ID: org-down-element
5616    :END:
5618 - *Access:* ~C-c C-_~
5619 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5620 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-down-element][Find modifications in git logs]]
5622 : Move to inner element.
5623 ** org-shiftmetaright
5624    :PROPERTIES:
5625    :CUSTOM_ID: org-shiftmetaright
5626    :END:
5628 - *Access:* ~<M-S-right>, <menu-bar> <Org> <Edit Structure> <Demote Subtree>, <menu-bar> <Tbl> <Column> <Insert Column>~
5629 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5630 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaright][Find modifications in git logs]]
5632 : Demote subtree or insert table column.
5633 : Calls â€˜org-demote-subtree’, â€˜org-indent-item-tree’, or
5634 : â€˜org-table-insert-column’, depending on context.  See the
5635 : individual commands for more information.
5636 ** org-edit-export-block
5637    :PROPERTIES:
5638    :CUSTOM_ID: org-edit-export-block
5639    :END:
5641 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
5642 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-export-block][Find modifications in git logs]]
5644 : Edit export block at point.
5646 : A new buffer is created and the block is copied into it, and the
5647 : buffer is switched into an appropriate major mode.  See also
5648 : â€˜org-src-lang-modes’.
5650 : When done, exit with â€˜C-c '’.  The edited text will then replace
5651 : the area in the Org mode buffer.
5653 : Throw an error when not at an export block.
5654 ** org-babel-remove-result =(&optional info keep-keyword)=
5655    :PROPERTIES:
5656    :CUSTOM_ID: org-babel-remove-result
5657    :END:
5659 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
5660 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remove-result][Find modifications in git logs]]
5662 : Remove the result of the current source block.
5663 ** org-md-export-to-markdown =(&optional async subtreep visible-only)=
5664    :PROPERTIES:
5665    :CUSTOM_ID: org-md-export-to-markdown
5666    :END:
5668 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
5669 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-export-to-markdown][Find modifications in git logs]]
5671 : Export current buffer to a Markdown file.
5673 : If narrowing is active in the current buffer, only export its
5674 : narrowed part.
5676 : If a region is active, export that region.
5678 : A non-nil optional argument ASYNC means the process should happen
5679 : asynchronously.  The resulting file should be accessible through
5680 : the â€˜org-export-stack’ interface.
5682 : When optional argument SUBTREEP is non-nil, export the sub-tree
5683 : at point, extracting information from the headline properties
5684 : first.
5686 : When optional argument VISIBLE-ONLY is non-nil, don’t export
5687 : contents of hidden elements.
5689 : Return output file’s name.
5690 ** org-decrypt-entries
5691    :PROPERTIES:
5692    :CUSTOM_ID: org-decrypt-entries
5693    :END:
5695 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
5696 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrypt-entries][Find modifications in git logs]]
5698 : Decrypt all entries in the current buffer.
5699 ** org-timer-item =(&optional arg)=
5700    :PROPERTIES:
5701    :CUSTOM_ID: org-timer-item
5702    :END:
5704 - *Access:* ~C-c C-x -, <menu-bar> <Org> <Dates and Scheduling> <Insert Timer Item>~
5705 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
5706 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-item][Find modifications in git logs]]
5708 : Insert a description-type item with the current timer value.
5709 ** org-clock-update-time-maybe
5710    :PROPERTIES:
5711    :CUSTOM_ID: org-clock-update-time-maybe
5712    :END:
5714 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5715 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-update-time-maybe][Find modifications in git logs]]
5717 : If this is a CLOCK line, update it and return t.
5718 : Otherwise, return nil.
5719 ** org-reftex-citation
5720    :PROPERTIES:
5721    :CUSTOM_ID: org-reftex-citation
5722    :END:
5724 - *Access:* ~C-c C-x [, <menu-bar> <Org> <LaTeX> <Insert citation>~
5725 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5726 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reftex-citation][Find modifications in git logs]]
5728 : Use reftex-citation to insert a citation into the buffer.
5729 : This looks for a line like
5731 : #+BIBLIOGRAPHY: foo plain option:-d
5733 : and derives from it that foo.bib is the bibliography file relevant
5734 : for this document.  It then installs the necessary environment for RefTeX
5735 : to work in this buffer and calls â€˜reftex-citation’  to insert a citation
5736 : into the buffer.
5738 : Export of such citations to both LaTeX and HTML is handled by the contributed
5739 : package ox-bibtex by Taru Karttunen.
5740 ** org-speed-command-help
5741    :PROPERTIES:
5742    :CUSTOM_ID: org-speed-command-help
5743    :END:
5745 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5746 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-command-help][Find modifications in git logs]]
5748 : Show the available speed commands.
5749 ** org-clock-report =(&optional arg)=
5750    :PROPERTIES:
5751    :CUSTOM_ID: org-clock-report
5752    :END:
5754 - *Access:* ~C-c C-x C-r, <menu-bar> <Org> <Logging work> <Create clock table>~
5755 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5756 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-report][Find modifications in git logs]]
5758 : Create a table containing a report about clocked time.
5759 : If the cursor is inside an existing clocktable block, then the table
5760 : will be updated.  If not, a new clocktable will be inserted.  The scope
5761 : of the new clock will be subtree when called from within a subtree, and
5762 : file elsewhere.
5764 : When called with a prefix argument, move to the first clock table in the
5765 : buffer and update it.
5766 ** orgtbl-ret
5767    :PROPERTIES:
5768    :CUSTOM_ID: orgtbl-ret
5769    :END:
5771 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5772 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ret][Find modifications in git logs]]
5774 : Justification and field motion for â€˜orgtbl-mode’.
5775 ** org-activate-plain-links =(&rest ignore)=
5776    :PROPERTIES:
5777    :CUSTOM_ID: org-activate-plain-links
5778    :END:
5780 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
5781 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-activate-plain-links][Find modifications in git logs]]
5783 : Do nothing and return nil.
5784 : This function accepts any number of arguments, but ignores them.
5786 : (fn &rest IGNORE)
5787 ** org-attach-set-inherit
5788    :PROPERTIES:
5789    :CUSTOM_ID: org-attach-set-inherit
5790    :END:
5792 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
5793 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-set-inherit][Find modifications in git logs]]
5795 : Set the ATTACH_DIR_INHERIT property of the current entry.
5796 : The property defines the directory that is used for attachments
5797 : of the entry and any children that do not explicitly define (by setting
5798 : the ATTACH_DIR property) their own attachment directory.
5799 ** org-clock-mark-default-task
5800    :PROPERTIES:
5801    :CUSTOM_ID: org-clock-mark-default-task
5802    :END:
5804 - *Access:* ~<menu-bar> <Org> <Logging work> <Mark as default task>~
5805 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5806 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-mark-default-task][Find modifications in git logs]]
5808 : Mark current task as default task.
5809 ** org-agenda-later =(arg)=
5810    :PROPERTIES:
5811    :CUSTOM_ID: org-agenda-later
5812    :END:
5814 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5815 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-later][Find modifications in git logs]]
5817 : Go forward in time by the current span.
5818 : With prefix ARG, go forward that many times the current span.
5819 ** org-feed-update =(feed &optional retrieve-only)=
5820    :PROPERTIES:
5821    :CUSTOM_ID: org-feed-update
5822    :END:
5824 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
5825 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-update][Find modifications in git logs]]
5827 : Get inbox items from FEED.
5828 : FEED can be a string with an association in â€˜org-feed-alist’, or
5829 : it can be a list structured like an entry in â€˜org-feed-alist’.
5830 ** org-agenda-date-prompt =(arg)=
5831    :PROPERTIES:
5832    :CUSTOM_ID: org-agenda-date-prompt
5833    :END:
5835 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5836 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-prompt][Find modifications in git logs]]
5838 : Change the date of this item.  Date is prompted for, with default today.
5839 : The prefix ARG is passed to the â€˜org-time-stamp’ command and can therefore
5840 : be used to request time specification in the time stamp.
5841 ** org-agenda-view-mode-dispatch
5842    :PROPERTIES:
5843    :CUSTOM_ID: org-agenda-view-mode-dispatch
5844    :END:
5846 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5847 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-view-mode-dispatch][Find modifications in git logs]]
5849 : Call one of the view mode commands.
5850 ** org-agenda-show-mouse =(ev)=
5851    :PROPERTIES:
5852    :CUSTOM_ID: org-agenda-show-mouse
5853    :END:
5855 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5856 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-mouse][Find modifications in git logs]]
5858 : Display the Org file which contains the item at the mouse click.
5859 ** org-agenda-remove-filter =(type)=
5860    :PROPERTIES:
5861    :CUSTOM_ID: org-agenda-remove-filter
5862    :END:
5864 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5865 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-filter][Find modifications in git logs]]
5868 ** org-agenda-set-tags =(&optional tag onoff)=
5869    :PROPERTIES:
5870    :CUSTOM_ID: org-agenda-set-tags
5871    :END:
5873 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5874 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-tags][Find modifications in git logs]]
5876 : Set tags for the current headline.
5877 ** org-clock-remove-overlays =(&optional _beg _end noremove)=
5878    :PROPERTIES:
5879    :CUSTOM_ID: org-clock-remove-overlays
5880    :END:
5882 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
5883 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-remove-overlays][Find modifications in git logs]]
5885 : Remove the occur highlights from the buffer.
5886 : If NOREMOVE is nil, remove this function from the
5887 : â€˜before-change-functions’ in the current buffer.
5888 ** org-set-property =(property value)=
5889    :PROPERTIES:
5890    :CUSTOM_ID: org-set-property
5891    :END:
5893 - *Access:* ~C-c C-x p, <menu-bar> <Org> <TAGS and Properties> <Set property>~
5894 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5895 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-property][Find modifications in git logs]]
5897 : In the current entry, set PROPERTY to VALUE.
5899 : When called interactively, this will prompt for a property name, offering
5900 : completion on existing and default properties.  And then it will prompt
5901 : for a value, offering completion either on allowed values (via an inherited
5902 : xxx_ALL property) or on existing values in other instances of this property
5903 : in the current file.
5905 : Throw an error when trying to set a property with an invalid name.
5906 ** org-store-link =(arg)=
5907    :PROPERTIES:
5908    :CUSTOM_ID: org-store-link
5909    :END:
5911 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Store Link (Global)>, C-c l~
5912 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5913 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-store-link][Find modifications in git logs]]
5915 : Store an org-link to the current location.
5917 : This link is added to â€˜org-stored-links’ and can later be inserted
5918 : into an Org buffer with â€˜org-insert-link’ (‘C-c C-l’).
5920 : For some link types, a â€˜C-u’ prefix ARG is interpreted.  A single
5921 : â€˜C-u’ negates â€˜org-context-in-file-links’ for file links or
5922 : â€˜org-gnus-prefer-web-links’ for links to Usenet articles.
5924 : A â€˜C-u C-u’ prefix ARG forces skipping storing functions that are not
5925 : part of Org core.
5927 : A â€˜C-u C-u C-u’ prefix ARG forces storing a link for each line in the
5928 : active region.
5929 ** org-toggle-item =(arg)=
5930    :PROPERTIES:
5931    :CUSTOM_ID: org-toggle-item
5932    :END:
5934 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
5935 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-item][Find modifications in git logs]]
5937 : Convert headings or normal lines to items, items to normal lines.
5938 : If there is no active region, only the current line is considered.
5940 : If the first non blank line in the region is a headline, convert
5941 : all headlines to items, shifting text accordingly.
5943 : If it is an item, convert all items to normal lines.
5945 : If it is normal text, change region into a list of items.
5946 : With a prefix argument ARG, change the region in a single item.
5947 ** orgtbl-tab =(arg)=
5948    :PROPERTIES:
5949    :CUSTOM_ID: orgtbl-tab
5950    :END:
5952 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5953 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-tab][Find modifications in git logs]]
5955 : Justification and field motion for â€˜orgtbl-mode’.
5956 ** org-table-insert-row =(&optional arg)=
5957    :PROPERTIES:
5958    :CUSTOM_ID: org-table-insert-row
5959    :END:
5961 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
5962 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-row][Find modifications in git logs]]
5964 : Insert a new row above the current line into the table.
5965 : With prefix ARG, insert below the current line.
5966 ** org-agenda-show-1 =(&optional more)=
5967    :PROPERTIES:
5968    :CUSTOM_ID: org-agenda-show-1
5969    :END:
5971 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
5972 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-1][Find modifications in git logs]]
5974 : Display the Org file which contains the item at point.
5975 : The prefix arg selects the amount of information to display:
5977 : 0   hide the subtree
5978 : 1   just show the entry according to defaults.
5979 : 2   show the children view
5980 : 3   show the subtree view
5981 : 4   show the entire subtree and any LOGBOOK drawers
5982 : 5   show the entire subtree and any drawers
5983 : With prefix argument FULL-ENTRY, make the entire entry visible
5984 : if it was hidden in the outline.
5985 ** orgstruct-error
5986    :PROPERTIES:
5987    :CUSTOM_ID: orgstruct-error
5988    :END:
5990 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
5991 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-error][Find modifications in git logs]]
5993 : Error when there is no default binding for a structure key.
5994 ** org-table-edit-formulas
5995    :PROPERTIES:
5996    :CUSTOM_ID: org-table-edit-formulas
5997    :END:
5999 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6000 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-edit-formulas][Find modifications in git logs]]
6002 : Edit the formulas of the current table in a separate buffer.
6003 ** org-escape-code-in-region =(beg end)=
6004    :PROPERTIES:
6005    :CUSTOM_ID: org-escape-code-in-region
6006    :END:
6008 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
6009 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-escape-code-in-region][Find modifications in git logs]]
6011 : Escape lines between BEG and END.
6012 : Escaping happens when a line starts with "*", "#+", ",*" or
6013 : ",#+" by appending a comma to it.
6014 ** org-timer =(&optional restart no-insert)=
6015    :PROPERTIES:
6016    :CUSTOM_ID: org-timer
6017    :END:
6019 - *Access:* ~C-c C-x ., <menu-bar> <Org> <Dates and Scheduling> <Insert Timer String>~
6020 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
6021 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer][Find modifications in git logs]]
6023 : Insert a H:MM:SS string from the timer into the buffer.
6024 : The first time this command is used, the timer is started.
6026 : When used with a â€˜C-u’ prefix, force restarting the timer.
6028 : When used with a â€˜C-u C-u’ prefix, change all the timer strings
6029 : in the region by a fixed amount.  This can be used to re-calibrate
6030 : a timer that was not started at the correct moment.
6032 : If NO-INSERT is non-nil, return the string instead of inserting
6033 : it in the buffer.
6034 ** org-element-cache-reset =(&optional all)=
6035    :PROPERTIES:
6036    :CUSTOM_ID: org-element-cache-reset
6037    :END:
6039 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-element.el][org-element.el]]
6040 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-element-cache-reset][Find modifications in git logs]]
6042 : Reset cache in current buffer.
6043 : When optional argument ALL is non-nil, reset cache in all Org
6044 : buffers.
6045 ** org-backward-paragraph
6046    :PROPERTIES:
6047    :CUSTOM_ID: org-backward-paragraph
6048    :END:
6050 - *Access:* ~<C-up>~
6051 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6052 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-paragraph][Find modifications in git logs]]
6054 : Move backward to start of previous paragraph or equivalent.
6056 : The function moves point to the beginning of the current
6057 : structural element, which can be a paragraph, a table, a list
6058 : item, etc., or to the beginning of the previous visible one if
6059 : point is already there.  It also provides some special moves for
6060 : convenience:
6062 :   - On an affiliated keyword, jump to the first one.
6063 :   - On a table or a property drawer, move to its beginning.
6064 :   - On a verse or source block, stop before blank lines.
6065 ** org-agenda-show =(&optional full-entry)=
6066    :PROPERTIES:
6067    :CUSTOM_ID: org-agenda-show
6068    :END:
6070 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6071 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show][Find modifications in git logs]]
6073 : Display the Org file which contains the item at point.
6074 : With prefix argument FULL-ENTRY, make the entire entry visible
6075 : if it was hidden in the outline.
6076 ** org-table-kill-row
6077    :PROPERTIES:
6078    :CUSTOM_ID: org-table-kill-row
6079    :END:
6081 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6082 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-kill-row][Find modifications in git logs]]
6084 : Delete the current row or horizontal line from the table.
6085 ** org-agenda-Quit
6086    :PROPERTIES:
6087    :CUSTOM_ID: org-agenda-Quit
6088    :END:
6090 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6091 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-Quit][Find modifications in git logs]]
6093 : Exit the agenda, killing the agenda buffer.
6094 : Like â€˜org-agenda-quit’, but kill the buffer even when
6095 : â€˜org-agenda-sticky’ is non-nil.
6096 ** org-icalendar-combine-agenda-files =(&optional async)=
6097    :PROPERTIES:
6098    :CUSTOM_ID: org-icalendar-combine-agenda-files
6099    :END:
6101 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
6102 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combine-agenda-files][Find modifications in git logs]]
6104 : Combine all agenda files into a single iCalendar file.
6106 : A non-nil optional argument ASYNC means the process should happen
6107 : asynchronously.  The resulting file should be accessible through
6108 : the â€˜org-export-stack’ interface.
6110 : The file is stored under the name chosen in
6111 : â€˜org-icalendar-combined-agenda-file’.
6112 ** org-agenda-archive-default
6113    :PROPERTIES:
6114    :CUSTOM_ID: org-agenda-archive-default
6115    :END:
6117 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6118 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-default][Find modifications in git logs]]
6120 : Archive the entry or subtree belonging to the current agenda entry.
6121 ** org-agenda-kill-all-agenda-buffers
6122    :PROPERTIES:
6123    :CUSTOM_ID: org-agenda-kill-all-agenda-buffers
6124    :END:
6126 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6127 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-kill-all-agenda-buffers][Find modifications in git logs]]
6129 : Kill all buffers in â€˜org-agenda-mode’.
6130 : This is used when toggling sticky agendas.
6131 ** org-agenda-bulk-action =(&optional arg)=
6132    :PROPERTIES:
6133    :CUSTOM_ID: org-agenda-bulk-action
6134    :END:
6136 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6137 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-action][Find modifications in git logs]]
6139 : Execute an remote-editing action on all marked entries.
6140 : The prefix arg is passed through to the command if possible.
6141 ** org-resolve-clocks =(&optional only-dangling-p prompt-fn last-valid)=
6142    :PROPERTIES:
6143    :CUSTOM_ID: org-resolve-clocks
6144    :END:
6146 - *Access:* ~C-c C-x C-z~
6147 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
6148 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-resolve-clocks][Find modifications in git logs]]
6150 : Resolve all currently open Org clocks.
6151 : If â€˜only-dangling-p’ is non-nil, only ask to resolve dangling
6152 : (i.e., not currently open and valid) clocks.
6153 ** org-babel-lilypond-toggle-midi-play
6154    :PROPERTIES:
6155    :CUSTOM_ID: org-babel-lilypond-toggle-midi-play
6156    :END:
6158 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
6159 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-midi-play][Find modifications in git logs]]
6161 : Toggle whether midi will be played following a successful compilation.
6162 ** org-move-subtree-up =(&optional arg)=
6163    :PROPERTIES:
6164    :CUSTOM_ID: org-move-subtree-up
6165    :END:
6167 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6168 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-subtree-up][Find modifications in git logs]]
6170 : Move the current subtree up past ARG headlines of the same level.
6171 ** org-reveal =(&optional siblings)=
6172    :PROPERTIES:
6173    :CUSTOM_ID: org-reveal
6174    :END:
6176 - *Access:* ~C-c C-r, <menu-bar> <Org> <Show/Hide> <Reveal Context>~
6177 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6178 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reveal][Find modifications in git logs]]
6180 : Show current entry, hierarchy above it, and the following headline.
6182 : This can be used to show a consistent set of context around
6183 : locations exposed with â€˜org-show-context’.
6185 : With optional argument SIBLINGS, on each level of the hierarchy all
6186 : siblings are shown.  This repairs the tree structure to what it would
6187 : look like when opened with hierarchical calls to â€˜org-cycle’.
6189 : With a C-u C-u prefix, go to the parent and show the entire tree.
6190 ** org-export-dispatch =(&optional arg)=
6191    :PROPERTIES:
6192    :CUSTOM_ID: org-export-dispatch
6193    :END:
6195 - *Access:* ~C-c C-e, <menu-bar> <Org> <Export/Publish...>~
6196 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
6197 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-dispatch][Find modifications in git logs]]
6199 : Export dispatcher for Org mode.
6201 : It provides an access to common export related tasks in a buffer.
6202 : Its interface comes in two flavors: standard and expert.
6204 : While both share the same set of bindings, only the former
6205 : displays the valid keys associations in a dedicated buffer.
6206 : Scrolling (resp. line-wise motion) in this buffer is done with
6207 : SPC and DEL (resp. C-n and C-p) keys.
6209 : Set variable â€˜org-export-dispatch-use-expert-ui’ to switch to one
6210 : flavor or the other.
6212 : When ARG is â€˜C-u’, repeat the last export action, with the same
6213 : set of options used back then, on the current buffer.
6215 : When ARG is â€˜C-u C-u’, display the asynchronous export stack.
6216 ** org-table-overlay-coordinates
6217    :PROPERTIES:
6218    :CUSTOM_ID: org-table-overlay-coordinates
6219    :END:
6221 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6222 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-overlay-coordinates][Find modifications in git logs]]
6224 : Add overlays to the table at point, to show row/column coordinates.
6225 ** org-lint--jump-to-source
6226    :PROPERTIES:
6227    :CUSTOM_ID: org-lint--jump-to-source
6228    :END:
6230 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
6231 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--jump-to-source][Find modifications in git logs]]
6233 : Move to source line that generated the report at point.
6234 ** org-columns-next-allowed-value =(&optional previous nth)=
6235    :PROPERTIES:
6236    :CUSTOM_ID: org-columns-next-allowed-value
6237    :END:
6239 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
6240 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-next-allowed-value][Find modifications in git logs]]
6242 : Switch to the next allowed value for this column.
6243 : When PREVIOUS is set, go to the previous value.  When NTH is
6244 : an integer, select that value.
6245 ** org-smart-reschedule =(quality)=
6246    :PROPERTIES:
6247    :CUSTOM_ID: org-smart-reschedule
6248    :END:
6250 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-learn.el][org-learn.el]]
6251 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-smart-reschedule][Find modifications in git logs]]
6254 ** org-table-end-of-field =(&optional n)=
6255    :PROPERTIES:
6256    :CUSTOM_ID: org-table-end-of-field
6257    :END:
6259 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6260 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-end-of-field][Find modifications in git logs]]
6262 : Move to the end of the current table field.
6263 : If already at or after the end, move to the end of the next table field.
6264 : With numeric argument N, move N-1 fields forward first.
6265 ** org-agenda-recenter =(arg)=
6266    :PROPERTIES:
6267    :CUSTOM_ID: org-agenda-recenter
6268    :END:
6270 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6271 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-recenter][Find modifications in git logs]]
6273 : Display the Org file which contains the item at point and recenter.
6274 ** org-attach-delete-all =(&optional force)=
6275    :PROPERTIES:
6276    :CUSTOM_ID: org-attach-delete-all
6277    :END:
6279 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
6280 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-delete-all][Find modifications in git logs]]
6282 : Delete all attachments from the current task.
6283 : This actually deletes the entire attachment directory.
6284 : A safer way is to open the directory in dired and delete from there.
6285 ** org-toggle-inline-images =(&optional include-linked)=
6286    :PROPERTIES:
6287    :CUSTOM_ID: org-toggle-inline-images
6288    :END:
6290 - *Access:* ~C-c C-x C-v~
6291 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6292 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-inline-images][Find modifications in git logs]]
6294 : Toggle the display of inline images.
6295 : INCLUDE-LINKED is passed to â€˜org-display-inline-images’.
6296 ** org-columns-insert-dblock
6297    :PROPERTIES:
6298    :CUSTOM_ID: org-columns-insert-dblock
6299    :END:
6301 - *Access:* ~C-c C-x i, <menu-bar> <Org> <TAGS and Properties> <Insert Column View DBlock>~
6302 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
6303 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-insert-dblock][Find modifications in git logs]]
6305 : Create a dynamic block capturing a column view table.
6306 ** org-feed-goto-inbox =(feed)=
6307    :PROPERTIES:
6308    :CUSTOM_ID: org-feed-goto-inbox
6309    :END:
6311 - *Access:* ~C-c C-x G, <menu-bar> <Org> <TODO Lists> <Go to the inbox of a feed...>~
6312 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
6313 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-goto-inbox][Find modifications in git logs]]
6315 : Go to the inbox that captures the feed named FEED.
6316 ** org-decrease-number-at-point =(&optional inc)=
6317    :PROPERTIES:
6318    :CUSTOM_ID: org-decrease-number-at-point
6319    :END:
6321 - *Access:* ~<C-M-S-left>~
6322 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6323 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrease-number-at-point][Find modifications in git logs]]
6325 : Decrement the number at point.
6326 : With an optional prefix numeric argument INC, decrement using
6327 : this numeric value.
6328 ** org-edit-src-abort
6329    :PROPERTIES:
6330    :CUSTOM_ID: org-edit-src-abort
6331    :END:
6333 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
6334 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-abort][Find modifications in git logs]]
6336 : Abort editing of the src code and return to the Org buffer.
6337 ** org-id-store-link
6338    :PROPERTIES:
6339    :CUSTOM_ID: org-id-store-link
6340    :END:
6342 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
6343 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-store-link][Find modifications in git logs]]
6345 : Store a link to the current entry, using its ID.
6346 ** org-tags-sparse-tree =(&optional todo-only match)=
6347    :PROPERTIES:
6348    :CUSTOM_ID: org-tags-sparse-tree
6349    :END:
6351 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6352 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-sparse-tree][Find modifications in git logs]]
6354 : Create a sparse tree according to tags string MATCH.
6356 : MATCH is a string with match syntax.  It can contain a selection
6357 : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and
6358 : TODO keywords ("TODO=\"WAITING\"") or a combination of
6359 : those.  See the manual for details.
6361 : If optional argument TODO-ONLY is non-nil, only select lines that
6362 : are also TODO tasks.
6363 ** org-agenda-bulk-toggle
6364    :PROPERTIES:
6365    :CUSTOM_ID: org-agenda-bulk-toggle
6366    :END:
6368 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6369 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-toggle][Find modifications in git logs]]
6371 : Toggle the mark at point for bulk action.
6372 ** org-ctrl-c-ret
6373    :PROPERTIES:
6374    :CUSTOM_ID: org-ctrl-c-ret
6375    :END:
6377 - *Access:* ~C-c RET~
6378 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6379 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ret][Find modifications in git logs]]
6381 : Call â€˜org-table-hline-and-move’ or â€˜org-insert-heading’ dep. on context.
6382 ** org-agenda-date-earlier-minutes =(arg)=
6383    :PROPERTIES:
6384    :CUSTOM_ID: org-agenda-date-earlier-minutes
6385    :END:
6387 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6388 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier-minutes][Find modifications in git logs]]
6390 : Change the time of this item, in units of â€˜org-time-stamp-rounding-minutes’.
6391 ** org-agenda-bulk-mark-all
6392    :PROPERTIES:
6393    :CUSTOM_ID: org-agenda-bulk-mark-all
6394    :END:
6396 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6397 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark-all][Find modifications in git logs]]
6399 : Mark all entries for future agenda bulk action.
6400 ** org-cancel-repeater
6401    :PROPERTIES:
6402    :CUSTOM_ID: org-cancel-repeater
6403    :END:
6405 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6406 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cancel-repeater][Find modifications in git logs]]
6408 : Cancel a repeater by setting its numeric value to zero.
6409 ** org-babel-lilypond-toggle-arrange-mode
6410    :PROPERTIES:
6411    :CUSTOM_ID: org-babel-lilypond-toggle-arrange-mode
6412    :END:
6414 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
6415 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-arrange-mode][Find modifications in git logs]]
6417 : Toggle whether in Arrange mode or Basic mode.
6418 ** org-footnote-goto-definition =(label &optional location)=
6419    :PROPERTIES:
6420    :CUSTOM_ID: org-footnote-goto-definition
6421    :END:
6423 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
6424 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-goto-definition][Find modifications in git logs]]
6426 : Move point to the definition of the footnote LABEL.
6428 : LOCATION, when non-nil specifies the buffer position of the
6429 : definition.
6431 : Throw an error if there is no definition or if it cannot be
6432 : reached from current narrowed part of buffer.  Return a non-nil
6433 : value if point was successfully moved.
6434 ** org-agenda-filter-by-regexp =(strip)=
6435    :PROPERTIES:
6436    :CUSTOM_ID: org-agenda-filter-by-regexp
6437    :END:
6439 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6440 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-regexp][Find modifications in git logs]]
6442 : Filter agenda entries by a regular expression.
6443 : Regexp filters are cumulative.
6444 : With no prefix argument, keep entries matching the regexp.
6445 : With one prefix argument, filter out entries matching the regexp.
6446 : With two prefix arguments, remove the regexp filters.
6447 ** org-agenda-fontify-priorities
6448    :PROPERTIES:
6449    :CUSTOM_ID: org-agenda-fontify-priorities
6450    :END:
6452 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6453 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-fontify-priorities][Find modifications in git logs]]
6455 : Make highest priority lines bold, and lowest italic.
6456 ** org-shiftright =(&optional arg)=
6457    :PROPERTIES:
6458    :CUSTOM_ID: org-shiftright
6459    :END:
6461 - *Access:* ~<S-right>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Next keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Later>~
6462 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6463 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftright][Find modifications in git logs]]
6465 : Cycle the thing at point or in the current line, depending on context.
6466 : Depending on context, this does one of the following:
6468 : - switch a timestamp at point one day into the future
6469 : - on a headline, switch to the next TODO keyword.
6470 : - on an item, switch entire list to the next bullet type
6471 : - on a property line, switch to the next allowed value
6472 : - on a clocktable definition line, move time block into the future
6473 ** org-agenda-refile =(&optional goto rfloc no-update)=
6474    :PROPERTIES:
6475    :CUSTOM_ID: org-agenda-refile
6476    :END:
6478 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6479 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-refile][Find modifications in git logs]]
6481 : Refile the item at point.
6483 : When called with â€˜C-u C-u’, go to the location of the last
6484 : refiled item.
6486 : When called with â€˜C-u C-u C-u’ prefix or when GOTO is 0, clear
6487 : the refile cache.
6489 : RFLOC can be a refile location obtained in a different way.
6491 : When NO-UPDATE is non-nil, don’t redo the agenda buffer.
6492 ** org-caldav-sync
6493    :PROPERTIES:
6494    :CUSTOM_ID: org-caldav-sync
6495    :END:
6497 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-caldav.el][org-caldav.el]]
6498 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-caldav-sync][Find modifications in git logs]]
6500 : Sync Org with calendar.
6501 ** org-shiftmetaleft
6502    :PROPERTIES:
6503    :CUSTOM_ID: org-shiftmetaleft
6504    :END:
6506 - *Access:* ~<M-S-left>, <menu-bar> <Org> <Edit Structure> <Promote Subtree>, <menu-bar> <Tbl> <Column> <Delete Column>~
6507 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6508 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaleft][Find modifications in git logs]]
6510 : Promote subtree or delete table column.
6511 : Calls â€˜org-promote-subtree’, â€˜org-outdent-item-tree’, or
6512 : â€˜org-table-delete-column’, depending on context.  See the
6513 : individual commands for more information.
6514 ** org-habit-toggle-habits
6515    :PROPERTIES:
6516    :CUSTOM_ID: org-habit-toggle-habits
6517    :END:
6519 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
6520 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-toggle-habits][Find modifications in git logs]]
6522 : Toggle display of habits in an agenda buffer.
6523 ** org-columns-move-left
6524    :PROPERTIES:
6525    :CUSTOM_ID: org-columns-move-left
6526    :END:
6528 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
6529 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-move-left][Find modifications in git logs]]
6531 : Swap this column with the one to the left.
6532 ** org-bibtex-read-buffer =(buffer)=
6533    :PROPERTIES:
6534    :CUSTOM_ID: org-bibtex-read-buffer
6535    :END:
6537 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
6538 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-read-buffer][Find modifications in git logs]]
6540 : Read all bibtex entries in BUFFER and save to â€˜org-bibtex-entries’.
6541 : Return the number of saved entries.
6542 ** org-agenda-show-scroll-down
6543    :PROPERTIES:
6544    :CUSTOM_ID: org-agenda-show-scroll-down
6545    :END:
6547 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6548 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-scroll-down][Find modifications in git logs]]
6550 : Scroll down the window showing the agenda.
6551 ** org-clock-timestamps-up =(&optional n)=
6552    :PROPERTIES:
6553    :CUSTOM_ID: org-clock-timestamps-up
6554    :END:
6556 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
6557 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-timestamps-up][Find modifications in git logs]]
6559 : Increase CLOCK timestamps at cursor.
6560 : Optional argument N tells to change by that many units.
6561 ** org-w3m-copy-for-org-mode
6562    :PROPERTIES:
6563    :CUSTOM_ID: org-w3m-copy-for-org-mode
6564    :END:
6566 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-w3m.el][org-w3m.el]]
6567 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-w3m-copy-for-org-mode][Find modifications in git logs]]
6569 : Copy current buffer content or active region with â€˜org-mode’ style links.
6570 : This will encode â€˜link-title’ and â€˜link-location’ with
6571 : â€˜org-make-link-string’, and insert the transformed test into the kill ring,
6572 : so that it can be yanked into an Org  buffer with links working correctly.
6573 ** org-next-visible-heading =(arg)=
6574    :PROPERTIES:
6575    :CUSTOM_ID: org-next-visible-heading
6576    :END:
6578 - *Access:* ~C-c C-n, <menu-bar> <Org> <Navigate Headings> <Next>~
6579 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6580 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-visible-heading][Find modifications in git logs]]
6582 : Move to the next visible heading.
6584 : This function wraps â€˜outline-next-visible-heading’ with
6585 : â€˜org-with-limited-levels’ in order to skip over inline tasks and
6586 : respect customization of â€˜org-odd-levels-only’.
6587 ** org-encrypt-entry
6588    :PROPERTIES:
6589    :CUSTOM_ID: org-encrypt-entry
6590    :END:
6592 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
6593 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-encrypt-entry][Find modifications in git logs]]
6595 : Encrypt the content of the current headline.
6596 ** org-columns-previous-allowed-value
6597    :PROPERTIES:
6598    :CUSTOM_ID: org-columns-previous-allowed-value
6599    :END:
6601 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
6602 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-previous-allowed-value][Find modifications in git logs]]
6604 : Switch to the previous allowed value for this column.
6605 ** org-delete-directory =(directory &optional recursive trash)=
6606    :PROPERTIES:
6607    :CUSTOM_ID: org-delete-directory
6608    :END:
6610 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
6611 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-directory][Find modifications in git logs]]
6613 : Delete the directory named DIRECTORY.  Does not follow symlinks.
6614 : If RECURSIVE is non-nil, delete files in DIRECTORY as well, with
6615 : no error if something else is simultaneously deleting them.
6616 : TRASH non-nil means to trash the directory instead, provided
6617 : â€˜delete-by-moving-to-trash’ is non-nil.
6619 : When called interactively, TRASH is nil if and only if a prefix
6620 : argument is given, and a further prompt asks the user for
6621 : RECURSIVE if DIRECTORY is nonempty.
6623 : (fn DIRECTORY &optional RECURSIVE TRASH)
6624 ** org-table-paste-rectangle
6625    :PROPERTIES:
6626    :CUSTOM_ID: org-table-paste-rectangle
6627    :END:
6629 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6630 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-paste-rectangle][Find modifications in git logs]]
6632 : Paste a rectangular region into a table.
6633 : The upper right corner ends up in the current field.  All involved fields
6634 : will be overwritten.  If the rectangle does not fit into the present table,
6635 : the table is enlarged as needed.  The process ignores horizontal separator
6636 : lines.
6637 ** org-babel-exp-src-block
6638    :PROPERTIES:
6639    :CUSTOM_ID: org-babel-exp-src-block
6640    :END:
6642 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
6643 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-src-block][Find modifications in git logs]]
6645 : Process source block for export.
6646 : Depending on the ":export" header argument, replace the source
6647 : code block like this:
6649 : both ---- display the code and the results
6651 : code ---- the default, display the code inside the block but do
6652 :           not process
6654 : results - just like none only the block is run on export ensuring
6655 :           that its results are present in the Org mode buffer
6657 : none ---- do not display either code or results upon export
6659 : Assume point is at block opening line.
6660 ** org-indent-mode =(&optional arg)=
6661    :PROPERTIES:
6662    :CUSTOM_ID: org-indent-mode
6663    :END:
6665 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
6666 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-mode][Find modifications in git logs]]
6668 : When active, indent text according to outline structure.
6670 : Internally this works by adding â€˜line-prefix’ and â€˜wrap-prefix’
6671 : properties, after each buffer modification, on the modified zone.
6673 : The process is synchronous.  Though, initial indentation of
6674 : buffer, which can take a few seconds on large buffers, is done
6675 : during idle time.
6676 ** org-cdlatex-underscore-caret =(&optional _arg)=
6677    :PROPERTIES:
6678    :CUSTOM_ID: org-cdlatex-underscore-caret
6679    :END:
6681 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6682 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-underscore-caret][Find modifications in git logs]]
6684 : Execute â€˜cdlatex-sub-superscript’ in LaTeX fragments.
6685 : Revert to the normal definition outside of these fragments.
6686 ** org-src-do-key-sequence-at-code-block =(&optional key)=
6687    :PROPERTIES:
6688    :CUSTOM_ID: org-src-do-key-sequence-at-code-block
6689    :END:
6691 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
6692 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-do-key-sequence-at-code-block][Find modifications in git logs]]
6694 : Execute key sequence at code block in the source Org buffer.
6695 : The command bound to KEY in the Org-babel key map is executed
6696 : remotely with point temporarily at the start of the code block in
6697 : the Org buffer.
6699 : This command is not bound to a key by default, to avoid conflicts
6700 : with language major mode bindings.  To bind it to C-c @ in all
6701 : language major modes, you could use
6703 :   (add-hook 'org-src-mode-hook
6704 :             (lambda () (define-key org-src-mode-map "\C-c@"
6705 :                     'org-src-do-key-sequence-at-code-block)))
6707 : In that case, for example, C-c @ t issued in code edit buffers
6708 : would tangle the current Org code block, C-c @ e would execute
6709 : the block and C-c @ h would display the other available
6710 : Org-babel commands.
6711 ** org-texinfo-export-to-texinfo =(&optional async subtreep visible-only body-only ext-plist)=
6712    :PROPERTIES:
6713    :CUSTOM_ID: org-texinfo-export-to-texinfo
6714    :END:
6716 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
6717 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-export-to-texinfo][Find modifications in git logs]]
6719 : Export current buffer to a Texinfo file.
6721 : If narrowing is active in the current buffer, only export its
6722 : narrowed part.
6724 : If a region is active, export that region.
6726 : A non-nil optional argument ASYNC means the process should happen
6727 : asynchronously.  The resulting file should be accessible through
6728 : the â€˜org-export-stack’ interface.
6730 : When optional argument SUBTREEP is non-nil, export the sub-tree
6731 : at point, extracting information from the headline properties
6732 : first.
6734 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6735 : contents of hidden elements.
6737 : When optional argument BODY-ONLY is non-nil, only write code
6738 : between "\begin{document}" and "\end{document}".
6740 : EXT-PLIST, when provided, is a property list with external
6741 : parameters overriding Org default settings, but still inferior to
6742 : file-local settings.
6744 : Return output file’s name.
6745 ** org-indent-item
6746    :PROPERTIES:
6747    :CUSTOM_ID: org-indent-item
6748    :END:
6750 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
6751 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-item][Find modifications in git logs]]
6753 : Indent a local list item, but not its children.
6754 : If a region is active, all items inside will be moved.
6755 ** org-table-recalculate-buffer-tables
6756    :PROPERTIES:
6757    :CUSTOM_ID: org-table-recalculate-buffer-tables
6758    :END:
6760 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
6761 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-recalculate-buffer-tables][Find modifications in git logs]]
6763 : Recalculate all tables in the current buffer.
6764 ** org-toggle-heading =(&optional nstars)=
6765    :PROPERTIES:
6766    :CUSTOM_ID: org-toggle-heading
6767    :END:
6769 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6770 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-heading][Find modifications in git logs]]
6772 : Convert headings to normal text, or items or text to headings.
6773 : If there is no active region, only convert the current line.
6775 : With a â€˜C-u’ prefix, convert the whole list at
6776 : point into heading.
6778 : In a region:
6780 : - If the first non blank line is a headline, remove the stars
6781 :   from all headlines in the region.
6783 : - If it is a normal line, turn each and every normal line (i.e.,
6784 :   not an heading or an item) in the region into headings.  If you
6785 :   want to convert only the first line of this region, use one
6786 :   universal prefix argument.
6788 : - If it is a plain list item, turn all plain list items into headings.
6790 : When converting a line into a heading, the number of stars is chosen
6791 : such that the lines become children of the current entry.  However,
6792 : when a numeric prefix argument is given, its value determines the
6793 : number of stars to add.
6794 ** org-shiftmetadown =(&optional _arg)=
6795    :PROPERTIES:
6796    :CUSTOM_ID: org-shiftmetadown
6797    :END:
6799 - *Access:* ~<M-S-down>, <menu-bar> <Tbl> <Row> <Insert Row>~
6800 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6801 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetadown][Find modifications in git logs]]
6803 : Drag the line at point down.
6804 : In a table, insert an empty row at the current line.
6805 : On a clock timestamp, update the value of the timestamp like â€˜S-<down>’
6806 : but also adjust the previous clocked item in the clock history.
6807 : Everywhere else, drag the line at point down.
6808 ** org-content =(&optional arg)=
6809    :PROPERTIES:
6810    :CUSTOM_ID: org-content
6811    :END:
6813 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6814 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-content][Find modifications in git logs]]
6816 : Show all headlines in the buffer, like a table of contents.
6817 : With numerical argument N, show content up to level N.
6818 ** org-outdent-item
6819    :PROPERTIES:
6820    :CUSTOM_ID: org-outdent-item
6821    :END:
6823 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
6824 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-outdent-item][Find modifications in git logs]]
6826 : Outdent a local list item, but not its children.
6827 : If a region is active, all items inside will be moved.
6828 ** org-latex-convert-region-to-latex
6829    :PROPERTIES:
6830    :CUSTOM_ID: org-latex-convert-region-to-latex
6831    :END:
6833 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
6834 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-convert-region-to-latex][Find modifications in git logs]]
6836 : Assume the current region has Org syntax, and convert it to LaTeX.
6837 : This can be used in any buffer.  For example, you can write an
6838 : itemized list in Org syntax in an LaTeX buffer and use this
6839 : command to convert it.
6840 ** org-bibtex-yank
6841    :PROPERTIES:
6842    :CUSTOM_ID: org-bibtex-yank
6843    :END:
6845 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
6846 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-yank][Find modifications in git logs]]
6848 : If kill ring holds a bibtex entry yank it as an Org headline.
6849 ** org-columns-move-right
6850    :PROPERTIES:
6851    :CUSTOM_ID: org-columns-move-right
6852    :END:
6854 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
6855 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-move-right][Find modifications in git logs]]
6857 : Swap this column with the one to the right.
6858 ** org-latex-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
6859    :PROPERTIES:
6860    :CUSTOM_ID: org-latex-export-as-latex
6861    :END:
6863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
6864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-export-as-latex][Find modifications in git logs]]
6866 : Export current buffer as a LaTeX buffer.
6868 : If narrowing is active in the current buffer, only export its
6869 : narrowed part.
6871 : If a region is active, export that region.
6873 : A non-nil optional argument ASYNC means the process should happen
6874 : asynchronously.  The resulting buffer should be accessible
6875 : through the â€˜org-export-stack’ interface.
6877 : When optional argument SUBTREEP is non-nil, export the sub-tree
6878 : at point, extracting information from the headline properties
6879 : first.
6881 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6882 : contents of hidden elements.
6884 : When optional argument BODY-ONLY is non-nil, only write code
6885 : between "\begin{document}" and "\end{document}".
6887 : EXT-PLIST, when provided, is a property list with external
6888 : parameters overriding Org default settings, but still inferior to
6889 : file-local settings.
6891 : Export is done in a buffer named "*Org LATEX Export*", which
6892 : will be displayed when â€˜org-export-show-temporary-export-buffer’
6893 : is non-nil.
6894 ** org-agenda-write =(file &optional open nosettings agenda-bufname)=
6895    :PROPERTIES:
6896    :CUSTOM_ID: org-agenda-write
6897    :END:
6899 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
6900 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-write][Find modifications in git logs]]
6902 : Write the current buffer (an agenda view) as a file.
6904 : Depending on the extension of the file name, plain text (.txt),
6905 : HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
6906 : If the extension is .ics, translate visible agenda into iCalendar
6907 : format.  If the extension is .org, collect all subtrees
6908 : corresponding to the agenda entries and add them in an .org file.
6910 : With prefix argument OPEN, open the new file immediately.  If
6911 : NOSETTINGS is given, do not scope the settings of
6912 : â€˜org-agenda-exporter-settings’ into the export commands.  This is
6913 : used when the settings have already been scoped and we do not
6914 : wish to overrule other, higher priority settings.  If
6915 : AGENDA-BUFFER-NAME is provided, use this as the buffer name for
6916 : the agenda to write.
6917 ** org-move-item-down
6918    :PROPERTIES:
6919    :CUSTOM_ID: org-move-item-down
6920    :END:
6922 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
6923 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-item-down][Find modifications in git logs]]
6925 : Move the item at point down, i.e. swap with following item.
6926 : Sub-items (items with larger indentation) are considered part of
6927 : the item, so this really moves item trees.
6928 ** org-bibtex-write
6929    :PROPERTIES:
6930    :CUSTOM_ID: org-bibtex-write
6931    :END:
6933 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
6934 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-write][Find modifications in git logs]]
6936 : Insert a heading built from the first element of â€˜org-bibtex-entries’.
6937 ** org-cut-special
6938    :PROPERTIES:
6939    :CUSTOM_ID: org-cut-special
6940    :END:
6942 - *Access:* ~C-c C-x C-w, <menu-bar> <Org> <Edit Structure> <Cut Subtree>, <menu-bar> <Tbl> <Rectangle> <Cut Rectangle>~
6943 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6944 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cut-special][Find modifications in git logs]]
6946 : Cut region in table or cut current subtree.
6947 : Calls â€˜org-table-cut-region’ or â€˜org-cut-subtree’, depending on
6948 : context.  See the individual commands for more information.
6949 ** org-occur-link-in-agenda-files
6950    :PROPERTIES:
6951    :CUSTOM_ID: org-occur-link-in-agenda-files
6952    :END:
6954 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Find existing link to here>, C-c L~
6955 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6956 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-link-in-agenda-files][Find modifications in git logs]]
6958 : Create a link and search for it in the agendas.
6959 : The link is not stored in â€˜org-stored-links’, it is just created
6960 : for the search purpose.
6961 ** org-update-dblock
6962    :PROPERTIES:
6963    :CUSTOM_ID: org-update-dblock
6964    :END:
6966 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
6967 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-dblock][Find modifications in git logs]]
6969 : Update the dynamic block at point.
6970 : This means to empty the block, parse for parameters and then call
6971 : the correct writing function.
6972 ** org-odt-export-to-odt =(&optional async subtreep visible-only ext-plist)=
6973    :PROPERTIES:
6974    :CUSTOM_ID: org-odt-export-to-odt
6975    :END:
6977 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
6978 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-export-to-odt][Find modifications in git logs]]
6980 : Export current buffer to a ODT file.
6982 : If narrowing is active in the current buffer, only export its
6983 : narrowed part.
6985 : If a region is active, export that region.
6987 : A non-nil optional argument ASYNC means the process should happen
6988 : asynchronously.  The resulting file should be accessible through
6989 : the â€˜org-export-stack’ interface.
6991 : When optional argument SUBTREEP is non-nil, export the sub-tree
6992 : at point, extracting information from the headline properties
6993 : first.
6995 : When optional argument VISIBLE-ONLY is non-nil, don’t export
6996 : contents of hidden elements.
6998 : EXT-PLIST, when provided, is a property list with external
6999 : parameters overriding Org default settings, but still inferior to
7000 : file-local settings.
7002 : Return output file’s name.
7003 ** org-table-fedit-line-down
7004    :PROPERTIES:
7005    :CUSTOM_ID: org-table-fedit-line-down
7006    :END:
7008 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7009 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-line-down][Find modifications in git logs]]
7011 : Move cursor one line down in the window showing the table.
7012 ** org-calendar-select
7013    :PROPERTIES:
7014    :CUSTOM_ID: org-calendar-select
7015    :END:
7017 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7018 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-select][Find modifications in git logs]]
7020 : Return to â€˜org-read-date’ with the date currently selected.
7021 : This is used by â€˜org-read-date’ in a temporary keymap for the calendar buffer.
7022 ** org-bibtex-export-to-kill-ring
7023    :PROPERTIES:
7024    :CUSTOM_ID: org-bibtex-export-to-kill-ring
7025    :END:
7027 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
7028 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-export-to-kill-ring][Find modifications in git logs]]
7030 : Export current headline to kill ring as bibtex entry.
7031 ** org-beamer-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
7032    :PROPERTIES:
7033    :CUSTOM_ID: org-beamer-export-to-latex
7034    :END:
7036 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
7037 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-export-to-latex][Find modifications in git logs]]
7039 : Export current buffer as a Beamer presentation (tex).
7041 : If narrowing is active in the current buffer, only export its
7042 : narrowed part.
7044 : If a region is active, export that region.
7046 : A non-nil optional argument ASYNC means the process should happen
7047 : asynchronously.  The resulting file should be accessible through
7048 : the â€˜org-export-stack’ interface.
7050 : When optional argument SUBTREEP is non-nil, export the sub-tree
7051 : at point, extracting information from the headline properties
7052 : first.
7054 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7055 : contents of hidden elements.
7057 : When optional argument BODY-ONLY is non-nil, only write code
7058 : between "\begin{document}" and "\end{document}".
7060 : EXT-PLIST, when provided, is a property list with external
7061 : parameters overriding Org default settings, but still inferior to
7062 : file-local settings.
7064 : Return output file’s name.
7065 ** org-search-view =(&optional todo-only string edit-at)=
7066    :PROPERTIES:
7067    :CUSTOM_ID: org-search-view
7068    :END:
7070 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7071 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-search-view][Find modifications in git logs]]
7073 : Show all entries that contain a phrase or words or regular expressions.
7075 : With optional prefix argument TODO-ONLY, only consider entries that are
7076 : TODO entries.  The argument STRING can be used to pass a default search
7077 : string into this function.  If EDIT-AT is non-nil, it means that the
7078 : user should get a chance to edit this string, with cursor at position
7079 : EDIT-AT.
7081 : The search string can be viewed either as a phrase that should be found as
7082 : is, or it can be broken into a number of snippets, each of which must match
7083 : in a Boolean way to select an entry.  The default depends on the variable
7084 : â€˜org-agenda-search-view-always-boolean’.
7085 : Even if this is turned off (the default) you can always switch to
7086 : Boolean search dynamically by preceding the first word with  "+" or "-".
7088 : The default is a direct search of the whole phrase, where each space in
7089 : the search string can expand to an arbitrary amount of whitespace,
7090 : including newlines.
7092 : If using a Boolean search, the search string is split on whitespace and
7093 : each snippet is searched separately, with logical AND to select an entry.
7094 : Words prefixed with a minus must *not* occur in the entry.  Words without
7095 : a prefix or prefixed with a plus must occur in the entry.  Matching is
7096 : case-insensitive.  Words are enclosed by word delimiters (i.e. they must
7097 : match whole words, not parts of a word) if
7098 : â€˜org-agenda-search-view-force-full-words’ is set (default is nil).
7100 : Boolean search snippets enclosed by curly braces are interpreted as
7101 : regular expressions that must or (when preceded with "-") must not
7102 : match in the entry.  Snippets enclosed into double quotes will be taken
7103 : as a whole, to include whitespace.
7105 : - If the search string starts with an asterisk, search only in headlines.
7106 : - If (possibly after the leading star) the search string starts with an
7107 :   exclamation mark, this also means to look at TODO entries only, an effect
7108 :   that can also be achieved with a prefix argument.
7109 : - If (possibly after star and exclamation mark) the search string starts
7110 :   with a colon, this will mean that the (non-regexp) snippets of the
7111 :   Boolean search must match as full words.
7113 : This command searches the agenda files, and in addition the files listed
7114 : in â€˜org-agenda-text-search-extra-files’.
7115 ** org-table-goto-column =(n &optional on-delim force)=
7116    :PROPERTIES:
7117    :CUSTOM_ID: org-table-goto-column
7118    :END:
7120 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7121 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-goto-column][Find modifications in git logs]]
7123 : Move the cursor to the Nth column in the current table line.
7124 : With optional argument ON-DELIM, stop with point before the left delimiter
7125 : of the field.
7126 : If there are less than N fields, just go to after the last delimiter.
7127 : However, when FORCE is non-nil, create new columns if necessary.
7128 ** org-evaluate-time-range =(&optional to-buffer)=
7129    :PROPERTIES:
7130    :CUSTOM_ID: org-evaluate-time-range
7131    :END:
7133 - *Access:* ~C-c C-y, <menu-bar> <Org> <Dates and Scheduling> <Compute Time Range>~
7134 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7135 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-evaluate-time-range][Find modifications in git logs]]
7137 : Evaluate a time range by computing the difference between start and end.
7138 : Normally the result is just printed in the echo area, but with prefix arg
7139 : TO-BUFFER, the result is inserted just after the date stamp into the buffer.
7140 : If the time range is actually in a table, the result is inserted into the
7141 : next column.
7142 : For time difference computation, a year is assumed to be exactly 365
7143 : days in order to avoid rounding problems.
7144 ** org-shiftcontrolup =(&optional n)=
7145    :PROPERTIES:
7146    :CUSTOM_ID: org-shiftcontrolup
7147    :END:
7149 - *Access:* ~<C-S-up>~
7150 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7151 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftcontrolup][Find modifications in git logs]]
7153 : Change timestamps synchronously up in CLOCK log lines.
7154 : Optional argument N tells to change by that many units.
7155 ** org-copy
7156    :PROPERTIES:
7157    :CUSTOM_ID: org-copy
7158    :END:
7160 - *Access:* ~C-c M-w~
7161 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7162 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy][Find modifications in git logs]]
7164 : Like â€˜org-refile’, but copy.
7165 ** org-agenda-manipulate-query-subtract-re
7166    :PROPERTIES:
7167    :CUSTOM_ID: org-agenda-manipulate-query-subtract-re
7168    :END:
7170 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7171 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-subtract-re][Find modifications in git logs]]
7173 : Manipulate the query by adding a search regexp with negative selection.
7174 : Negative selection means regexp must not match for selection of an entry.
7175 ** org-babel-goto-named-result =(name)=
7176    :PROPERTIES:
7177    :CUSTOM_ID: org-babel-goto-named-result
7178    :END:
7180 - *Access:* ~C-c C-v C-r, C-c C-v r~
7181 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
7182 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-goto-named-result][Find modifications in git logs]]
7184 : Go to a named result.
7185 ** org-check-deadlines =(ndays)=
7186    :PROPERTIES:
7187    :CUSTOM_ID: org-check-deadlines
7188    :END:
7190 - *Access:* ~<menu-bar> <Org> <Special views current file> <Check Deadlines>~
7191 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7192 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-deadlines][Find modifications in git logs]]
7194 : Check if there are any deadlines due or past due.
7195 : A deadline is considered due if it happens within â€˜org-deadline-warning-days’
7196 : days from today’s date.  If the deadline appears in an entry marked DONE,
7197 : it is not shown.  A numeric prefix argument NDAYS can be used to test that
7198 : many days.  If the prefix is a raw â€˜C-u’, all deadlines are shown.
7199 ** org-advertized-archive-subtree =(&optional find-done)=
7200    :PROPERTIES:
7201    :CUSTOM_ID: org-advertized-archive-subtree
7202    :END:
7204 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7205 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-advertized-archive-subtree][Find modifications in git logs]]
7207 : Move the current subtree to the archive.
7208 : The archive can be a certain top-level heading in the current
7209 : file, or in a different file.  The tree will be moved to that
7210 : location, the subtree heading be marked DONE, and the current
7211 : time will be added.
7213 : When called with a single prefix argument FIND-DONE, find whole
7214 : trees without any open TODO items and archive them (after getting
7215 : confirmation from the user).  When called with a double prefix
7216 : argument, find whole trees with timestamps before today and
7217 : archive them (after getting confirmation from the user).  If the
7218 : cursor is not at a headline when these commands are called, try
7219 : all level 1 trees.  If the cursor is on a headline, only try the
7220 : direct children of this heading.
7221 ** org-texinfo-export-to-info =(&optional async subtreep visible-only body-only ext-plist)=
7222    :PROPERTIES:
7223    :CUSTOM_ID: org-texinfo-export-to-info
7224    :END:
7226 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
7227 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-export-to-info][Find modifications in git logs]]
7229 : Export current buffer to Texinfo then process through to INFO.
7231 : If narrowing is active in the current buffer, only export its
7232 : narrowed part.
7234 : If a region is active, export that region.
7236 : A non-nil optional argument ASYNC means the process should happen
7237 : asynchronously.  The resulting file should be accessible through
7238 : the â€˜org-export-stack’ interface.
7240 : When optional argument SUBTREEP is non-nil, export the sub-tree
7241 : at point, extracting information from the headline properties
7242 : first.
7244 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7245 : contents of hidden elements.
7247 : When optional argument BODY-ONLY is non-nil, only write code
7248 : between "\begin{document}" and "\end{document}".
7250 : EXT-PLIST, when provided, is a property list with external
7251 : parameters overriding Org default settings, but still inferior to
7252 : file-local settings.
7254 : When optional argument PUB-DIR is set, use it as the publishing
7255 : directory.
7257 : Return INFO file’s name.
7258 ** org-drag-element-forward
7259    :PROPERTIES:
7260    :CUSTOM_ID: org-drag-element-forward
7261    :END:
7263 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7264 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-element-forward][Find modifications in git logs]]
7266 : Move forward element at point.
7267 ** org-mouse-insert-checkbox
7268    :PROPERTIES:
7269    :CUSTOM_ID: org-mouse-insert-checkbox
7270    :END:
7272 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
7273 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-insert-checkbox][Find modifications in git logs]]
7276 ** org-cycle-level
7277    :PROPERTIES:
7278    :CUSTOM_ID: org-cycle-level
7279    :END:
7281 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7282 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-level][Find modifications in git logs]]
7284 : Cycle the level of an empty headline through possible states.
7285 : This goes first to child, then to parent, level, then up the hierarchy.
7286 : After top level, it switches back to sibling level.
7287 ** org-table-move-row-up
7288    :PROPERTIES:
7289    :CUSTOM_ID: org-table-move-row-up
7290    :END:
7292 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7293 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-row-up][Find modifications in git logs]]
7295 : Move table row up.
7296 ** org-mouse-show-context-menu =(event prefix)=
7297    :PROPERTIES:
7298    :CUSTOM_ID: org-mouse-show-context-menu
7299    :END:
7301 - *Access:* ~<mouse-3>~
7302 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
7303 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-show-context-menu][Find modifications in git logs]]
7305 : Invoke the context menu.
7307 : If the value of â€˜org-mouse-context-menu-function’ is a function, then
7308 : this function is called.  Otherwise, the current major mode menu is used.
7309 ** org-org-export-to-org =(&optional async subtreep visible-only body-only ext-plist)=
7310    :PROPERTIES:
7311    :CUSTOM_ID: org-org-export-to-org
7312    :END:
7314 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-org.el][ox-org.el]]
7315 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-export-to-org][Find modifications in git logs]]
7317 : Export current buffer to an org file.
7319 : If narrowing is active in the current buffer, only export its
7320 : narrowed part.
7322 : If a region is active, export that region.
7324 : A non-nil optional argument ASYNC means the process should happen
7325 : asynchronously.  The resulting file should be accessible through
7326 : the â€˜org-export-stack’ interface.
7328 : When optional argument SUBTREEP is non-nil, export the sub-tree
7329 : at point, extracting information from the headline properties
7330 : first.
7332 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7333 : contents of hidden elements.
7335 : When optional argument BODY-ONLY is non-nil, strip document
7336 : keywords from output.
7338 : EXT-PLIST, when provided, is a property list with external
7339 : parameters overriding Org default settings, but still inferior to
7340 : file-local settings.
7342 : Return output file name.
7343 ** org-delete-indentation =(&optional arg)=
7344    :PROPERTIES:
7345    :CUSTOM_ID: org-delete-indentation
7346    :END:
7348 - *Access:* ~M-^~
7349 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7350 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-indentation][Find modifications in git logs]]
7352 : Join current line to previous and fix whitespace at join.
7354 : If previous line is a headline add to headline title.  Otherwise
7355 : the function calls â€˜delete-indentation’.
7357 : With a non-nil optional argument, join it to the following one.
7358 ** org-table-maybe-recalculate-line
7359    :PROPERTIES:
7360    :CUSTOM_ID: org-table-maybe-recalculate-line
7361    :END:
7363 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7364 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-maybe-recalculate-line][Find modifications in git logs]]
7366 : Recompute the current line if marked for it, and if we haven’t just done it.
7367 ** org-bibtex-check-all =(&optional optional)=
7368    :PROPERTIES:
7369    :CUSTOM_ID: org-bibtex-check-all
7370    :END:
7372 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
7373 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-check-all][Find modifications in git logs]]
7375 : Check all headlines in the current file.
7376 : With prefix argument OPTIONAL also prompt for optional fields.
7377 ** org-columns-compute =(property)=
7378    :PROPERTIES:
7379    :CUSTOM_ID: org-columns-compute
7380    :END:
7382 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
7383 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-compute][Find modifications in git logs]]
7385 : Summarize the values of PROPERTY hierarchically.
7386 : Also update existing values for PROPERTY according to the first
7387 : column specification.
7388 ** org-caldav-goto-uid
7389    :PROPERTIES:
7390    :CUSTOM_ID: org-caldav-goto-uid
7391    :END:
7393 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-caldav.el][org-caldav.el]]
7394 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-caldav-goto-uid][Find modifications in git logs]]
7396 : Jump to UID unter point.
7397 ** org-babel-demarcate-block =(&optional arg)=
7398    :PROPERTIES:
7399    :CUSTOM_ID: org-babel-demarcate-block
7400    :END:
7402 - *Access:* ~C-c C-v d, C-c C-v C-d~
7403 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
7404 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-demarcate-block][Find modifications in git logs]]
7406 : Wrap or split the code in the region or on the point.
7407 : When called from inside of a code block the current block is
7408 : split.  When called from outside of a code block a new code block
7409 : is created.  In both cases if the region is demarcated and if the
7410 : region is not active then the point is demarcated.
7411 ** org-insert-todo-heading =(arg &optional force-heading)=
7412    :PROPERTIES:
7413    :CUSTOM_ID: org-insert-todo-heading
7414    :END:
7416 - *Access:* ~<M-S-return>~
7417 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7418 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-todo-heading][Find modifications in git logs]]
7420 : Insert a new heading with the same level and TODO state as current heading.
7422 : If the heading has no TODO state, or if the state is DONE, use
7423 : the first state (TODO by default).  Also with one prefix arg,
7424 : force first state.  With two prefix args, force inserting at the
7425 : end of the parent subtree.
7427 : When called at a plain list item, insert a new item with an
7428 : unchecked check box.
7429 ** org-sort-entries =(&optional with-case sorting-type getkey-func compare-func property interactive?)=
7430    :PROPERTIES:
7431    :CUSTOM_ID: org-sort-entries
7432    :END:
7434 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7435 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort-entries][Find modifications in git logs]]
7437 : Sort entries on a certain level of an outline tree.
7438 : If there is an active region, the entries in the region are sorted.
7439 : Else, if the cursor is before the first entry, sort the top-level items.
7440 : Else, the children of the entry at point are sorted.
7442 : Sorting can be alphabetically, numerically, by date/time as given by
7443 : a time stamp, by a property, by priority order, or by a custom function.
7445 : The command prompts for the sorting type unless it has been given to the
7446 : function through the SORTING-TYPE argument, which needs to be a character,
7447 : (?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K).  Here is
7448 : the precise meaning of each character:
7450 : a   Alphabetically, ignoring the TODO keyword and the priority, if any.
7451 : c   By creation time, which is assumed to be the first inactive time stamp
7452 :     at the beginning of a line.
7453 : d   By deadline date/time.
7454 : k   By clocking time.
7455 : n   Numerically, by converting the beginning of the entry/item to a number.
7456 : o   By order of TODO keywords.
7457 : p   By priority according to the cookie.
7458 : r   By the value of a property.
7459 : s   By scheduled date/time.
7460 : t   By date/time, either the first active time stamp in the entry, or, if
7461 :     none exist, by the first inactive one.
7463 : Capital letters will reverse the sort order.
7465 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
7466 : called with point at the beginning of the record.  It must return a
7467 : value that is compatible with COMPARE-FUNC, the function used to
7468 : compare entries.
7470 : Comparing entries ignores case by default.  However, with an optional argument
7471 : WITH-CASE, the sorting considers case as well.
7473 : Sorting is done against the visible part of the headlines, it ignores hidden
7474 : links.
7476 : When sorting is done, call â€˜org-after-sorting-entries-or-items-hook’.
7478 : A non-nil value for INTERACTIVE? is used to signal that this
7479 : function is being called interactively.
7480 ** orgtbl-self-insert-command =(N)=
7481    :PROPERTIES:
7482    :CUSTOM_ID: orgtbl-self-insert-command
7483    :END:
7485 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7486 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-self-insert-command][Find modifications in git logs]]
7488 : Like â€˜self-insert-command’, use overwrite-mode for whitespace in tables.
7489 : If the cursor is in a table looking at whitespace, the whitespace is
7490 : overwritten, and the table is not marked as requiring realignment.
7491 ** org-table-sort-lines =(&optional with-case sorting-type getkey-func compare-func interactive?)=
7492    :PROPERTIES:
7493    :CUSTOM_ID: org-table-sort-lines
7494    :END:
7496 - *Access:* ~<menu-bar> <Tbl> <Row> <Sort lines in region>~
7497 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7498 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-sort-lines][Find modifications in git logs]]
7500 : Sort table lines according to the column at point.
7502 : The position of point indicates the column to be used for
7503 : sorting, and the range of lines is the range between the nearest
7504 : horizontal separator lines, or the entire table of no such lines
7505 : exist.  If point is before the first column, you will be prompted
7506 : for the sorting column.  If there is an active region, the mark
7507 : specifies the first line and the sorting column, while point
7508 : should be in the last line to be included into the sorting.
7510 : The command then prompts for the sorting type which can be
7511 : alphabetically, numerically, or by time (as given in a time stamp
7512 : in the field, or as a HH:MM value).  Sorting in reverse order is
7513 : also possible.
7515 : With prefix argument WITH-CASE, alphabetic sorting will be case-sensitive.
7517 : If SORTING-TYPE is specified when this function is called from a Lisp
7518 : program, no prompting will take place.  SORTING-TYPE must be a character,
7519 : any of (?a ?A ?n ?N ?t ?T ?f ?F) where the capital letters indicate that
7520 : sorting should be done in reverse order.
7522 : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
7523 : a function to be called to extract the key.  It must return a value
7524 : that is compatible with COMPARE-FUNC, the function used to compare
7525 : entries.
7527 : A non-nil value for INTERACTIVE? is used to signal that this
7528 : function is being called interactively.
7529 ** org-agenda-clock-goto
7530    :PROPERTIES:
7531    :CUSTOM_ID: org-agenda-clock-goto
7532    :END:
7534 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7535 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-goto][Find modifications in git logs]]
7537 : Jump to the currently clocked in task within the agenda.
7538 : If the currently clocked in task is not listed in the agenda
7539 : buffer, display it in another window.
7540 ** org-agenda-backward-block
7541    :PROPERTIES:
7542    :CUSTOM_ID: org-agenda-backward-block
7543    :END:
7545 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7546 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-backward-block][Find modifications in git logs]]
7548 : Move backward by one agenda block.
7549 ** org-priority-down
7550    :PROPERTIES:
7551    :CUSTOM_ID: org-priority-down
7552    :END:
7554 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7555 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority-down][Find modifications in git logs]]
7557 : Decrease the priority of the current item.
7558 ** org-agenda-list =(&optional arg start-day span with-hour)=
7559    :PROPERTIES:
7560    :CUSTOM_ID: org-agenda-list
7561    :END:
7563 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7564 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-list][Find modifications in git logs]]
7566 : Produce a daily/weekly view from all files in variable â€˜org-agenda-files’.
7567 : The view will be for the current day or week, but from the overview buffer
7568 : you will be able to go to other days/weeks.
7570 : With a numeric prefix argument in an interactive call, the agenda will
7571 : span ARG days.  Lisp programs should instead specify SPAN to change
7572 : the number of days.  SPAN defaults to â€˜org-agenda-span’.
7574 : START-DAY defaults to TODAY, or to the most recent match for the weekday
7575 : given in â€˜org-agenda-start-on-weekday’.
7577 : When WITH-HOUR is non-nil, only include scheduled and deadline
7578 : items if they have an hour specification like [h]h:mm.
7579 ** org-rss-export-to-rss =(&optional async subtreep visible-only)=
7580    :PROPERTIES:
7581    :CUSTOM_ID: org-rss-export-to-rss
7582    :END:
7584 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
7585 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-export-to-rss][Find modifications in git logs]]
7587 : Export current buffer to a RSS file.
7589 : If narrowing is active in the current buffer, only export its
7590 : narrowed part.
7592 : If a region is active, export that region.
7594 : A non-nil optional argument ASYNC means the process should happen
7595 : asynchronously.  The resulting file should be accessible through
7596 : the â€˜org-export-stack’ interface.
7598 : When optional argument SUBTREEP is non-nil, export the sub-tree
7599 : at point, extracting information from the headline properties
7600 : first.
7602 : When optional argument VISIBLE-ONLY is non-nil, don’t export
7603 : contents of hidden elements.
7605 : Return output file’s name.
7606 ** org-agenda-archive-to-archive-sibling
7607    :PROPERTIES:
7608    :CUSTOM_ID: org-agenda-archive-to-archive-sibling
7609    :END:
7611 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7612 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-to-archive-sibling][Find modifications in git logs]]
7614 : Move the entry to the archive sibling.
7615 ** org-icalendar-export-agenda-files =(&optional async)=
7616    :PROPERTIES:
7617    :CUSTOM_ID: org-icalendar-export-agenda-files
7618    :END:
7620 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
7621 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-export-agenda-files][Find modifications in git logs]]
7623 : Export all agenda files to iCalendar files.
7624 : When optional argument ASYNC is non-nil, export happens in an
7625 : external process.
7626 ** org-toggle-pretty-entities
7627    :PROPERTIES:
7628    :CUSTOM_ID: org-toggle-pretty-entities
7629    :END:
7631 - *Access:* ~C-c C-x \~
7632 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7633 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-pretty-entities][Find modifications in git logs]]
7635 : Toggle the composition display of entities as UTF8 characters.
7636 ** org-set-tags =(&optional arg just-align)=
7637    :PROPERTIES:
7638    :CUSTOM_ID: org-set-tags
7639    :END:
7641 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7642 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-tags][Find modifications in git logs]]
7644 : Set the tags for the current headline.
7645 : With prefix ARG, realign all tags in headings in the current buffer.
7646 : When JUST-ALIGN is non-nil, only align tags.
7647 ** org-babel-sha1-hash =(&optional info)=
7648    :PROPERTIES:
7649    :CUSTOM_ID: org-babel-sha1-hash
7650    :END:
7652 - *Access:* ~C-c C-v a, C-c C-v C-a~
7653 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
7654 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-sha1-hash][Find modifications in git logs]]
7656 : Generate an sha1 hash based on the value of info.
7657 ** org-edit-src-continue =(e)=
7658    :PROPERTIES:
7659    :CUSTOM_ID: org-edit-src-continue
7660    :END:
7662 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
7663 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-continue][Find modifications in git logs]]
7665 : Unconditionally return to buffer editing area under point.
7666 : Throw an error if there is no such buffer.
7667 ** org-edit-footnote-reference
7668    :PROPERTIES:
7669    :CUSTOM_ID: org-edit-footnote-reference
7670    :END:
7672 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
7673 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-footnote-reference][Find modifications in git logs]]
7675 : Edit definition of footnote reference at point.
7676 ** org-shiftcontrolleft
7677    :PROPERTIES:
7678    :CUSTOM_ID: org-shiftcontrolleft
7679    :END:
7681 - *Access:* ~<C-S-left>~
7682 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7683 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftcontrolleft][Find modifications in git logs]]
7685 : Switch to previous TODO set.
7686 ** org-delete-char =(N)=
7687    :PROPERTIES:
7688    :CUSTOM_ID: org-delete-char
7689    :END:
7691 - *Access:* ~C-d~
7692 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7693 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-char][Find modifications in git logs]]
7695 : Like â€˜delete-char’, but insert whitespace at field end in tables.
7696 : When deleting characters, in tables this function will insert whitespace in
7697 : front of the next "|" separator, to keep the table aligned.  The table will
7698 : still be marked for re-alignment if the field did fill the entire column,
7699 : because, in this case the deletion might narrow the column.
7700 ** org-babel-lilypond-toggle-png-generation
7701    :PROPERTIES:
7702    :CUSTOM_ID: org-babel-lilypond-toggle-png-generation
7703    :END:
7705 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
7706 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-png-generation][Find modifications in git logs]]
7708 : Toggle whether png image will be generated by compilation.
7709 ** org-mark-element
7710    :PROPERTIES:
7711    :CUSTOM_ID: org-mark-element
7712    :END:
7714 - *Access:* ~M-h~
7715 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7716 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-element][Find modifications in git logs]]
7718 : Put point at beginning of this element, mark at end.
7720 : Interactively, if this command is repeated or (in Transient Mark
7721 : mode) if the mark is active, it marks the next element after the
7722 : ones already marked.
7723 ** org-attach-attach =(file &optional visit-dir method)=
7724    :PROPERTIES:
7725    :CUSTOM_ID: org-attach-attach
7726    :END:
7728 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
7729 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach][Find modifications in git logs]]
7731 : Move/copy/link FILE into the attachment directory of the current task.
7732 : If VISIT-DIR is non-nil, visit the directory with dired.
7733 : METHOD may be â€˜cp’, â€˜mv’, â€˜ln’, â€˜lns’ or â€˜url’ default taken from
7734 : â€˜org-attach-method’.
7735 ** org-table-wrap-region =(arg)=
7736    :PROPERTIES:
7737    :CUSTOM_ID: org-table-wrap-region
7738    :END:
7740 - *Access:* ~<menu-bar> <Tbl> <Rectangle> <Fill Rectangle>~
7741 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7742 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-wrap-region][Find modifications in git logs]]
7744 : Wrap several fields in a column like a paragraph.
7745 : This is useful if you’d like to spread the contents of a field over several
7746 : lines, in order to keep the table compact.
7748 : If there is an active region, and both point and mark are in the same column,
7749 : the text in the column is wrapped to minimum width for the given number of
7750 : lines.  Generally, this makes the table more compact.  A prefix ARG may be
7751 : used to change the number of desired lines.  For example, â€˜C-2 M-x org-table-wrap-region’
7752 : formats the selected text to two lines.  If the region was longer than two
7753 : lines, the remaining lines remain empty.  A negative prefix argument reduces
7754 : the current number of lines by that amount.  The wrapped text is pasted back
7755 : into the table.  If you formatted it to more lines than it was before, fields
7756 : further down in the table get overwritten - so you might need to make space in
7757 : the table first.
7759 : If there is no region, the current field is split at the cursor position and
7760 : the text fragment to the right of the cursor is prepended to the field one
7761 : line down.
7763 : If there is no region, but you specify a prefix ARG, the current field gets
7764 : blank, and the content is appended to the field above.
7765 ** org-demote-subtree
7766    :PROPERTIES:
7767    :CUSTOM_ID: org-demote-subtree
7768    :END:
7770 - *Access:* ~C-c C->~
7771 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7772 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-demote-subtree][Find modifications in git logs]]
7774 : Demote the entire subtree.
7775 : See â€˜org-demote’ and â€˜org-promote’.
7776 ** org-columns-menu =(event)=
7777    :PROPERTIES:
7778    :CUSTOM_ID: org-columns-menu
7779    :END:
7781 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
7782 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-menu][Find modifications in git logs]]
7784 : Org Column Menu
7785 ** org-table-move-column =(&optional left)=
7786    :PROPERTIES:
7787    :CUSTOM_ID: org-table-move-column
7788    :END:
7790 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7791 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-column][Find modifications in git logs]]
7793 : Move the current column to the right.  With arg LEFT, move to the left.
7794 ** org-insert-heading =(&optional arg invisible-ok top)=
7795    :PROPERTIES:
7796    :CUSTOM_ID: org-insert-heading
7797    :END:
7799 - *Access:* ~<menu-bar> <Org> <New Heading>~
7800 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7801 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading][Find modifications in git logs]]
7803 : Insert a new heading or an item with the same depth at point.
7805 : If point is at the beginning of a heading, insert a new heading
7806 : or a new headline above the current one.  When at the beginning
7807 : of a regular line of text, turn it into a heading.
7809 : If point is in the middle of a line, split it and create a new
7810 : headline with the text in the current line after point (see
7811 : â€˜org-M-RET-may-split-line’ on how to modify this behavior).  As
7812 : a special case, on a headline, splitting can only happen on the
7813 : title itself.  E.g., this excludes breaking stars or tags.
7815 : With a â€˜C-u’ prefix, set â€˜org-insert-heading-respect-content’ to
7816 : a non-nil value for the duration of the command.  This forces the
7817 : insertion of a heading after the current subtree, independently
7818 : on the location of point.
7820 : With a â€˜C-u C-u’ prefix, insert the heading at the end of the tree
7821 : above the current heading.  For example, if point is within a
7822 : 2nd-level heading, then it will insert a 2nd-level heading at
7823 : the end of the 1st-level parent subtree.
7825 : When INVISIBLE-OK is set, stop at invisible headlines when going
7826 : back.  This is important for non-interactive uses of the
7827 : command.
7829 : When optional argument TOP is non-nil, insert a level 1 heading,
7830 : unconditionally.
7831 ** org-shiftcontroldown =(&optional n)=
7832    :PROPERTIES:
7833    :CUSTOM_ID: org-shiftcontroldown
7834    :END:
7836 - *Access:* ~<C-S-down>~
7837 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7838 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftcontroldown][Find modifications in git logs]]
7840 : Change timestamps synchronously down in CLOCK log lines.
7841 : Optional argument N tells to change by that many units.
7842 ** org-agenda-to-appt =(&optional refresh filter &rest args)=
7843    :PROPERTIES:
7844    :CUSTOM_ID: org-agenda-to-appt
7845    :END:
7847 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
7848 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-to-appt][Find modifications in git logs]]
7850 : Activate appointments found in â€˜org-agenda-files’.
7852 : With a â€˜C-u’ prefix, refresh the list of appointments.
7854 : If FILTER is t, interactively prompt the user for a regular
7855 : expression, and filter out entries that don’t match it.
7857 : If FILTER is a string, use this string as a regular expression
7858 : for filtering entries out.
7860 : If FILTER is a function, filter out entries against which
7861 : calling the function returns nil.  This function takes one
7862 : argument: an entry from â€˜org-agenda-get-day-entries’.
7864 : FILTER can also be an alist with the car of each cell being
7865 : either â€˜headline’ or â€˜category’.  For example:
7867 :   '((headline "IMPORTANT")
7868 :     (category "Work"))
7870 : will only add headlines containing IMPORTANT or headlines
7871 : belonging to the "Work" category.
7873 : ARGS are symbols indicating what kind of entries to consider.
7874 : By default â€˜org-agenda-to-appt’ will use :deadline*, :scheduled*
7875 : (i.e., deadlines and scheduled items with a hh:mm specification)
7876 : and :timestamp entries.  See the docstring of â€˜org-diary’ for
7877 : details and examples.
7879 : If an entry has a APPT_WARNTIME property, its value will be used
7880 : to override â€˜appt-message-warning-time’.
7881 ** org-plot/gnuplot =(&optional params)=
7882    :PROPERTIES:
7883    :CUSTOM_ID: org-plot/gnuplot
7884    :END:
7886 - *Access:* ~C-c " g, <menu-bar> <Tbl> <Plot> <Gnuplot>~
7887 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]]
7888 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/gnuplot][Find modifications in git logs]]
7890 : Plot table using gnuplot.  Gnuplot options can be specified with PARAMS.
7891 : If not given options will be taken from the +PLOT
7892 : line directly before or after the table.
7893 ** org-goto-calendar =(&optional arg)=
7894    :PROPERTIES:
7895    :CUSTOM_ID: org-goto-calendar
7896    :END:
7898 - *Access:* ~C-c >, <menu-bar> <Org> <Dates and Scheduling> <Goto Calendar>~
7899 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7900 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-calendar][Find modifications in git logs]]
7902 : Go to the Emacs calendar at the current date.
7903 : If there is a time stamp in the current line, go to that date.
7904 : A prefix ARG can be used to force the current date.
7905 ** org-footnote-goto-previous-reference =(label)=
7906    :PROPERTIES:
7907    :CUSTOM_ID: org-footnote-goto-previous-reference
7908    :END:
7910 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
7911 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-goto-previous-reference][Find modifications in git logs]]
7913 : Find the first closest (to point) reference of footnote with label LABEL.
7914 ** org-table-export =(&optional file format)=
7915    :PROPERTIES:
7916    :CUSTOM_ID: org-table-export
7917    :END:
7919 - *Access:* ~<menu-bar> <Tbl> <Export to File>~
7920 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
7921 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-export][Find modifications in git logs]]
7923 : Export table to a file, with configurable format.
7924 : Such a file can be imported into usual spreadsheet programs.
7926 : FILE can be the output file name.  If not given, it will be taken
7927 : from a TABLE_EXPORT_FILE property in the current entry or higher
7928 : up in the hierarchy, or the user will be prompted for a file
7929 : name.  FORMAT can be an export format, of the same kind as it
7930 : used when â€˜orgtbl-mode’ sends a table in a different format.
7932 : The command suggests a format depending on TABLE_EXPORT_FORMAT,
7933 : whether it is set locally or up in the hierarchy, then on the
7934 : extension of the given file name, and finally on the variable
7935 : â€˜org-table-export-default-format’.
7936 ** org-global-cycle =(&optional arg)=
7937    :PROPERTIES:
7938    :CUSTOM_ID: org-global-cycle
7939    :END:
7941 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7942 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-global-cycle][Find modifications in git logs]]
7944 : Cycle the global visibility.  For details see â€˜org-cycle’.
7945 : With â€˜C-u’ prefix ARG, switch to startup visibility.
7946 : With a numeric prefix, show all headlines up to that level.
7947 ** org-shiftleft =(&optional arg)=
7948    :PROPERTIES:
7949    :CUSTOM_ID: org-shiftleft
7950    :END:
7952 - *Access:* ~<S-left>, <menu-bar> <Org> <TODO Lists> <Select keyword> <Previous keyword>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 Day Earlier>~
7953 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7954 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft][Find modifications in git logs]]
7956 : Cycle the thing at point or in the current line, depending on context.
7957 : Depending on context, this does one of the following:
7959 : - switch a timestamp at point one day into the past
7960 : - on a headline, switch to the previous TODO keyword.
7961 : - on an item, switch entire list to the previous bullet type
7962 : - on a property line, switch to the previous allowed value
7963 : - on a clocktable definition line, move time block into the past
7964 ** org-time-stamp =(arg &optional inactive)=
7965    :PROPERTIES:
7966    :CUSTOM_ID: org-time-stamp
7967    :END:
7969 - *Access:* ~C-c ., <menu-bar> <Org> <Dates and Scheduling> <Timestamp>~
7970 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
7971 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp][Find modifications in git logs]]
7973 : Prompt for a date/time and insert a time stamp.
7975 : If the user specifies a time like HH:MM or if this command is
7976 : called with at least one prefix argument, the time stamp contains
7977 : the date and the time.  Otherwise, only the date is included.
7979 : All parts of a date not specified by the user are filled in from
7980 : the timestamp at point, if any, or the current date/time
7981 : otherwise.
7983 : If there is already a timestamp at the cursor, it is replaced.
7985 : With two universal prefix arguments, insert an active timestamp
7986 : with the current time without prompting the user.
7988 : When called from lisp, the timestamp is inactive if INACTIVE is
7989 : non-nil.
7990 ** org-ctags-create-tags =(&optional directory-name)=
7991    :PROPERTIES:
7992    :CUSTOM_ID: org-ctags-create-tags
7993    :END:
7995 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
7996 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-create-tags][Find modifications in git logs]]
7998 : (Re)create tags file in the directory of the active buffer.
7999 : The file will contain tag definitions for all the files in the
8000 : directory and its subdirectories which are recognized by ctags.
8001 : This will include files ending in â€˜.org’ as well as most other
8002 : source files (.C, .H, .EL, .LISP, etc).  All the resulting tags
8003 : end up in one file, called TAGS, located in the directory.  This
8004 : function may take several seconds to finish if the directory or
8005 : its subdirectories contain large numbers of taggable files.
8006 ** org-columns--display-here-title
8007    :PROPERTIES:
8008    :CUSTOM_ID: org-columns--display-here-title
8009    :END:
8011 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
8012 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns--display-here-title][Find modifications in git logs]]
8014 : Overlay the newline before the current line with the table title.
8015 ** org-babel-switch-to-session =(&optional arg info)=
8016    :PROPERTIES:
8017    :CUSTOM_ID: org-babel-switch-to-session
8018    :END:
8020 - *Access:* ~C-c C-v C-z~
8021 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
8022 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-switch-to-session][Find modifications in git logs]]
8024 : Switch to the session of the current code block.
8025 : Uses â€˜org-babel-initiate-session’ to start the session.  If called
8026 : with a prefix argument then this is passed on to
8027 : â€˜org-babel-initiate-session’.
8028 ** org-sparse-tree =(&optional arg type)=
8029    :PROPERTIES:
8030    :CUSTOM_ID: org-sparse-tree
8031    :END:
8033 - *Access:* ~C-c /, <menu-bar> <Org> <Show/Hide> <Sparse Tree...>~
8034 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8035 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sparse-tree][Find modifications in git logs]]
8037 : Create a sparse tree, prompt for the details.
8038 : This command can create sparse trees.  You first need to select the type
8039 : of match used to create the tree:
8041 : t      Show all TODO entries.
8042 : T      Show entries with a specific TODO keyword.
8043 : m      Show entries selected by a tags/property match.
8044 : p      Enter a property name and its value (both with completion on existing
8045 :        names/values) and show entries with that property.
8046 : r      Show entries matching a regular expression (‘/’ can be used as well).
8047 : b      Show deadlines and scheduled items before a date.
8048 : a      Show deadlines and scheduled items after a date.
8049 : d      Show deadlines due within â€˜org-deadline-warning-days’.
8050 : D      Show deadlines and scheduled items between a date range.
8051 ** org-capture =(&optional goto keys)=
8052    :PROPERTIES:
8053    :CUSTOM_ID: org-capture
8054    :END:
8056 - *Access:* ~C-c c~
8057 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
8058 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture][Find modifications in git logs]]
8060 : Capture something.
8062 : This will let you select a template from â€˜org-capture-templates’, and
8063 : then file the newly captured information.  The text is immediately
8064 : inserted at the target location, and an indirect buffer is shown where
8065 : you can edit it.  Pressing â€˜C-c C-c’ brings you back to the previous
8066 : state of Emacs, so that you can continue your work.
8068 : When called interactively with a â€˜C-u’ prefix argument GOTO, don’t
8069 : capture anything, just go to the file/headline where the selected
8070 : template stores its notes.
8072 : With a â€˜C-u C-u’ prefix argument, go to the last note stored.
8074 : When called with a â€˜C-0’ (zero) prefix, insert a template at point.
8076 : When called with a â€˜C-1’ (one) prefix, force prompting for a date when
8077 : a datetree entry is made.
8079 : ELisp programs can set KEYS to a string associated with a template
8080 : in â€˜org-capture-templates’.  In this case, interactive selection
8081 : will be bypassed.
8083 : If â€˜org-capture-use-agenda-date’ is non-nil, capturing from the
8084 : agenda will use the date at point as the default date.  Then, a
8085 : â€˜C-1’ prefix will tell the capture process to use the HH:MM time
8086 : of the day at point (if any) or the current HH:MM time.
8087 ** org-forward-paragraph
8088    :PROPERTIES:
8089    :CUSTOM_ID: org-forward-paragraph
8090    :END:
8092 - *Access:* ~<C-down>~
8093 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8094 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-paragraph][Find modifications in git logs]]
8096 : Move forward to beginning of next paragraph or equivalent.
8098 : The function moves point to the beginning of the next visible
8099 : structural element, which can be a paragraph, a table, a list
8100 : item, etc.  It also provides some special moves for convenience:
8102 :   - On an affiliated keyword, jump to the beginning of the
8103 :     relative element.
8104 :   - On an item or a footnote definition, move to the second
8105 :     element inside, if any.
8106 :   - On a table or a property drawer, jump after it.
8107 :   - On a verse or source block, stop after blank lines.
8108 ** org-protocol-create-for-org
8109    :PROPERTIES:
8110    :CUSTOM_ID: org-protocol-create-for-org
8111    :END:
8113 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
8114 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-create-for-org][Find modifications in git logs]]
8116 : Create a Org protocol project for the current file’s project.
8117 : The visited file needs to be part of a publishing project in
8118 : â€˜org-publish-project-alist’ for this to work.  The function
8119 : delegates most of the work to â€˜org-protocol-create’.
8120 ** org-agenda-open-link =(&optional arg)=
8121    :PROPERTIES:
8122    :CUSTOM_ID: org-agenda-open-link
8123    :END:
8125 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8126 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-open-link][Find modifications in git logs]]
8128 : Open the link(s) in the current entry, if any.
8129 : This looks for a link in the displayed line in the agenda.
8130 : It also looks at the text of the entry itself.
8131 ** org-edit-special =(&optional arg)=
8132    :PROPERTIES:
8133    :CUSTOM_ID: org-edit-special
8134    :END:
8136 - *Access:* ~C-c ', <menu-bar> <Org> <Editing> <Edit Source Example>, <menu-bar> <Tbl> <Calculate> <Edit Formulas>~
8137 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8138 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-special][Find modifications in git logs]]
8140 : Call a special editor for the element at point.
8141 : When at a table, call the formula editor with â€˜org-table-edit-formulas’.
8142 : When in a source code block, call â€˜org-edit-src-code’.
8143 : When in a fixed-width region, call â€˜org-edit-fixed-width-region’.
8144 : When in an export block, call â€˜org-edit-export-block’.
8145 : When in a LaTeX environment, call â€˜org-edit-latex-environment’.
8146 : When at an #+INCLUDE keyword, visit the included file.
8147 : When at a footnote reference, call â€˜org-edit-footnote-reference’
8148 : On a link, call â€˜ffap’ to visit the link at point.
8149 : Otherwise, return a user error.
8150 ** org-display-inline-images =(&optional include-linked refresh beg end)=
8151    :PROPERTIES:
8152    :CUSTOM_ID: org-display-inline-images
8153    :END:
8155 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8156 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-inline-images][Find modifications in git logs]]
8158 : Display inline images.
8160 : An inline image is a link which follows either of these
8161 : conventions:
8163 :   1. Its path is a file with an extension matching return value
8164 :      from â€˜image-file-name-regexp’ and it has no contents.
8166 :   2. Its description consists in a single link of the previous
8167 :      type.
8169 : When optional argument INCLUDE-LINKED is non-nil, also links with
8170 : a text description part will be inlined.  This can be nice for
8171 : a quick look at those images, but it does not reflect what
8172 : exported files will look like.
8174 : When optional argument REFRESH is non-nil, refresh existing
8175 : images between BEG and END.  This will create new image displays
8176 : only if necessary.  BEG and END default to the buffer
8177 : boundaries.
8178 ** org-capture-goto-last-stored
8179    :PROPERTIES:
8180    :CUSTOM_ID: org-capture-goto-last-stored
8181    :END:
8183 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
8184 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-goto-last-stored][Find modifications in git logs]]
8186 : Go to the location where the last capture note was stored.
8187 ** org-show-todo-tree =(arg)=
8188    :PROPERTIES:
8189    :CUSTOM_ID: org-show-todo-tree
8190    :END:
8192 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Show TODO Tree>, <menu-bar> <Org> <Special views current file> <TODO Tree>~
8193 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8194 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-todo-tree][Find modifications in git logs]]
8196 : Make a compact tree which shows all headlines marked with TODO.
8197 : The tree will show the lines where the regexp matches, and all higher
8198 : headlines above the match.
8199 : With a â€˜C-u’ prefix, prompt for a regexp to match.
8200 : With a numeric prefix N, construct a sparse tree for the Nth element
8201 : of â€˜org-todo-keywords-1’.
8202 ** org-shiftdown =(&optional arg)=
8203    :PROPERTIES:
8204    :CUSTOM_ID: org-shiftdown
8205    :END:
8207 - *Access:* ~<S-down>, <menu-bar> <Org> <TODO Lists> <Priority Down>, <menu-bar> <Org> <Dates and Scheduling> <Change Date> <1 ... Earlier>~
8208 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8209 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown][Find modifications in git logs]]
8211 : Decrease item in timestamp or decrease priority of current headline.
8212 : Calls â€˜org-timestamp-down’ or â€˜org-priority-down’, or â€˜org-next-item’
8213 : depending on context.  See the individual commands for more information.
8214 ** org-agenda-entry-text-mode =(&optional arg)=
8215    :PROPERTIES:
8216    :CUSTOM_ID: org-agenda-entry-text-mode
8217    :END:
8219 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8220 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-mode][Find modifications in git logs]]
8222 : Toggle entry text mode in an agenda buffer.
8223 ** org-find-file-at-mouse =(ev)=
8224    :PROPERTIES:
8225    :CUSTOM_ID: org-find-file-at-mouse
8226    :END:
8228 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8229 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-find-file-at-mouse][Find modifications in git logs]]
8231 : Open file link or URL at mouse.
8232 ** org-table-next-row
8233    :PROPERTIES:
8234    :CUSTOM_ID: org-table-next-row
8235    :END:
8237 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8238 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-next-row][Find modifications in git logs]]
8240 : Go to the next row (same column) in the current table.
8241 : Before doing so, re-align the table if necessary.
8242 ** org-goto =(&optional alternative-interface)=
8243    :PROPERTIES:
8244    :CUSTOM_ID: org-goto
8245    :END:
8247 - *Access:* ~C-c C-j, <menu-bar> <Org> <Navigate Headings> <Jump>~
8248 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8249 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto][Find modifications in git logs]]
8251 : Look up a different location in the current file, keeping current visibility.
8253 : When you want look-up or go to a different location in a
8254 : document, the fastest way is often to fold the entire buffer and
8255 : then dive into the tree.  This method has the disadvantage, that
8256 : the previous location will be folded, which may not be what you
8257 : want.
8259 : This command works around this by showing a copy of the current
8260 : buffer in an indirect buffer, in overview mode.  You can dive
8261 : into the tree in that copy, use org-occur and incremental search
8262 : to find a location.  When pressing RET or â€˜Q’, the command
8263 : returns to the original buffer in which the visibility is still
8264 : unchanged.  After RET it will also jump to the location selected
8265 : in the indirect buffer and expose the headline hierarchy above.
8267 : With a prefix argument, use the alternative interface: e.g., if
8268 : â€˜org-goto-interface’ is â€˜outline’ use â€˜outline-path-completion’.
8269 ** org-agenda-goto-mouse =(ev)=
8270    :PROPERTIES:
8271    :CUSTOM_ID: org-agenda-goto-mouse
8272    :END:
8274 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8275 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-mouse][Find modifications in git logs]]
8277 : Go to the Org file which contains the item at the mouse click.
8278 ** org-feed-update-all
8279    :PROPERTIES:
8280    :CUSTOM_ID: org-feed-update-all
8281    :END:
8283 - *Access:* ~C-c C-x g, <menu-bar> <Org> <TODO Lists> <Get news from all feeds>~
8284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
8285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-update-all][Find modifications in git logs]]
8287 : Get inbox items from all feeds in â€˜org-feed-alist’.
8288 ** org-mouse-transform-to-outline
8289    :PROPERTIES:
8290    :CUSTOM_ID: org-mouse-transform-to-outline
8291    :END:
8293 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
8294 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-transform-to-outline][Find modifications in git logs]]
8297 ** org-insert-item =(&optional checkbox)=
8298    :PROPERTIES:
8299    :CUSTOM_ID: org-insert-item
8300    :END:
8302 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
8303 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-item][Find modifications in git logs]]
8305 : Insert a new item at the current level.
8306 : If cursor is before first character after bullet of the item, the
8307 : new item will be created before the current one.
8309 : If CHECKBOX is non-nil, add a checkbox next to the bullet.
8311 : Return t when things worked, nil when we are not in an item, or
8312 : item is invisible.
8313 ** org-id-update-id-locations =(&optional files silent)=
8314    :PROPERTIES:
8315    :CUSTOM_ID: org-id-update-id-locations
8316    :END:
8318 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
8319 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-update-id-locations][Find modifications in git logs]]
8321 : Scan relevant files for IDs.
8322 : Store the relation between files and corresponding IDs.
8323 : This will scan all agenda files, all associated archives, and all
8324 : files currently mentioned in â€˜org-id-locations’.
8325 : When FILES is given, scan these files instead.
8326 ** org-id-get-create =(&optional force)=
8327    :PROPERTIES:
8328    :CUSTOM_ID: org-id-get-create
8329    :END:
8331 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
8332 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-get-create][Find modifications in git logs]]
8334 : Create an ID for the current entry and return it.
8335 : If the entry already has an ID, just return it.
8336 : With optional argument FORCE, force the creation of a new ID.
8337 ** org-tags-view =(&optional todo-only match)=
8338    :PROPERTIES:
8339    :CUSTOM_ID: org-tags-view
8340    :END:
8342 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8343 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-view][Find modifications in git logs]]
8345 : Show all headlines for all â€˜org-agenda-files’ matching a TAGS criterion.
8346 : The prefix arg TODO-ONLY limits the search to TODO entries.
8347 ** org-agenda-diary-entry
8348    :PROPERTIES:
8349    :CUSTOM_ID: org-agenda-diary-entry
8350    :END:
8352 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8353 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-diary-entry][Find modifications in git logs]]
8355 : Make a diary entry, like the â€˜i’ command from the calendar.
8356 : All the standard commands work: block, weekly etc.
8357 : When â€˜org-agenda-diary-file’ points to a file,
8358 : â€˜org-agenda-diary-entry-in-org-file’ is called instead to create
8359 : entries in that Org file.
8360 ** org-insert-link-global
8361    :PROPERTIES:
8362    :CUSTOM_ID: org-insert-link-global
8363    :END:
8365 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8366 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-link-global][Find modifications in git logs]]
8368 : Insert a link like Org mode does.
8369 : This command can be called in any mode to insert a link in Org syntax.
8370 ** org-bibtex-create =(&optional arg nonew)=
8371    :PROPERTIES:
8372    :CUSTOM_ID: org-bibtex-create
8373    :END:
8375 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
8376 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-create][Find modifications in git logs]]
8378 : Create a new entry at the given level.
8379 : With a prefix arg, query for optional fields as well.
8380 : If nonew is t, add data to the headline of the entry at point.
8381 ** org-table-create-with-table.el
8382    :PROPERTIES:
8383    :CUSTOM_ID: org-table-create-with-table.el
8384    :END:
8386 - *Access:* ~C-c ~, <menu-bar> <Tbl> <Create/Convert from/to table.el>~
8387 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8388 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-create-with-table.el][Find modifications in git logs]]
8390 : Use the table.el package to insert a new table.
8391 : If there is already a table at point, convert between Org tables
8392 : and table.el tables.
8393 ** orgtbl-ascii-plot =(&optional ask)=
8394    :PROPERTIES:
8395    :CUSTOM_ID: orgtbl-ascii-plot
8396    :END:
8398 - *Access:* ~C-c " a, <menu-bar> <Tbl> <Plot> <Ascii plot>~
8399 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8400 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ascii-plot][Find modifications in git logs]]
8402 : Draw an ASCII bar plot in a column.
8404 : With cursor in a column containing numerical values, this function
8405 : will draw a plot in a new column.
8407 : ASK, if given, is a numeric prefix to override the default 12
8408 : characters width of the plot.  ASK may also be the â€˜C-u’ prefix,
8409 : which will prompt for the width.
8410 ** org-copy-visible =(beg end)=
8411    :PROPERTIES:
8412    :CUSTOM_ID: org-copy-visible
8413    :END:
8415 - *Access:* ~C-c C-x v, <menu-bar> <Org> <Edit Structure> <Copy visible text>~
8416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-visible][Find modifications in git logs]]
8419 : Copy the visible parts of the region.
8420 ** org-next-item
8421    :PROPERTIES:
8422    :CUSTOM_ID: org-next-item
8423    :END:
8425 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
8426 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-item][Find modifications in git logs]]
8428 : Move to the beginning of the next item.
8429 : Throw an error when not in a list.  Also throw an error when at
8430 : last item, unless â€˜org-list-use-circular-motion’ is non-nil.
8431 ** org-toggle-ordered-property
8432    :PROPERTIES:
8433    :CUSTOM_ID: org-toggle-ordered-property
8434    :END:
8436 - *Access:* ~C-c C-x o, <menu-bar> <Org> <TODO Lists> <Do Children sequentially>, <menu-bar> <Org> <TODO Lists> <Do Children parallel>~
8437 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8438 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-ordered-property][Find modifications in git logs]]
8440 : Toggle the ORDERED property of the current entry.
8441 : For better visibility, you can track the value of this property with a tag.
8442 : See variable â€˜org-track-ordered-property-with-tag’.
8443 ** org-babel-remove-result-one-or-many =(x)=
8444    :PROPERTIES:
8445    :CUSTOM_ID: org-babel-remove-result-one-or-many
8446    :END:
8448 - *Access:* ~C-c C-v k~
8449 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
8450 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remove-result-one-or-many][Find modifications in git logs]]
8452 : Remove the result of the current source block.
8453 : If called with a prefix argument, remove all result blocks
8454 : in the buffer.
8455 ** org-agenda-toggle-diary
8456    :PROPERTIES:
8457    :CUSTOM_ID: org-agenda-toggle-diary
8458    :END:
8460 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8461 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-diary][Find modifications in git logs]]
8463 : Toggle diary inclusion in an agenda buffer.
8464 ** org-compute-property-at-point
8465    :PROPERTIES:
8466    :CUSTOM_ID: org-compute-property-at-point
8467    :END:
8469 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8470 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-compute-property-at-point][Find modifications in git logs]]
8472 : Compute the property at point.
8473 : This looks for an enclosing column format, extracts the operator and
8474 : then applies it to the property in the column format’s scope.
8475 ** org-open-line =(n)=
8476    :PROPERTIES:
8477    :CUSTOM_ID: org-open-line
8478    :END:
8480 - *Access:* ~C-o, <insertline>~
8481 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8482 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-line][Find modifications in git logs]]
8484 : Insert a new row in tables, call â€˜open-line’ elsewhere.
8485 : If â€˜org-special-ctrl-o’ is nil, just call â€˜open-line’ everywhere.
8486 : As a special case, when a document starts with a table, allow to
8487 : call â€˜open-line’ on the very first character.
8488 ** org-insert-todo-heading-respect-content =(&optional force-state)=
8489    :PROPERTIES:
8490    :CUSTOM_ID: org-insert-todo-heading-respect-content
8491    :END:
8493 - *Access:* ~<C-S-return>~
8494 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8495 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-todo-heading-respect-content][Find modifications in git logs]]
8497 : Insert TODO heading with â€˜org-insert-heading-respect-content’ set to t.
8498 ** org-columns-todo =(&optional _arg)=
8499    :PROPERTIES:
8500    :CUSTOM_ID: org-columns-todo
8501    :END:
8503 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
8504 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-todo][Find modifications in git logs]]
8506 : Change the TODO state during column view.
8507 ** org-plot/goto-nearest-table
8508    :PROPERTIES:
8509    :CUSTOM_ID: org-plot/goto-nearest-table
8510    :END:
8512 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]]
8513 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/goto-nearest-table][Find modifications in git logs]]
8515 : Move the point forward to the beginning of nearest table.
8516 : Return value is the point at the beginning of the table.
8517 ** org-clock-jump-to-current-clock =(&optional effective-clock)=
8518    :PROPERTIES:
8519    :CUSTOM_ID: org-clock-jump-to-current-clock
8520    :END:
8522 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
8523 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-jump-to-current-clock][Find modifications in git logs]]
8526 ** org-open-at-point =(&rest rest)=
8527    :PROPERTIES:
8528    :CUSTOM_ID: org-open-at-point
8529    :END:
8531 - *Access:* ~C-c C-o, <menu-bar> <Org> <Hyperlinks> <Follow Link>~
8532 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8533 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point][Find modifications in git logs]]
8535 : :around advice: â€˜ad-Advice-org-open-at-point’
8537 : Open link, timestamp, footnote or tags at point.
8539 : When point is on a link, follow it.  Normally, files will be
8540 : opened by an appropriate application.  If the optional prefix
8541 : argument ARG is non-nil, Emacs will visit the file.  With
8542 : a double prefix argument, try to open outside of Emacs, in the
8543 : application the system uses for this file type.
8545 : When point is on a timestamp, open the agenda at the day
8546 : specified.
8548 : When point is a footnote definition, move to the first reference
8549 : found.  If it is on a reference, move to the associated
8550 : definition.
8552 : When point is on a headline, display a list of every link in the
8553 : entry, so it is possible to pick one, or all, of them.  If point
8554 : is on a tag, call â€˜org-tags-view’ instead.
8556 : When optional argument REFERENCE-BUFFER is non-nil, it should
8557 : specify a buffer from where the link search should happen.  This
8558 : is used internally by â€˜org-open-link-from-string’.
8560 : On top of syntactically correct links, this function will also
8561 : try to open links and time-stamps in comments, example
8562 : blocks... i.e., whenever point is on something looking like
8563 : a timestamp or a link.
8565 : (fn &optional ARG REFERENCE-BUFFER)
8566 ** org-agenda-sunrise-sunset =(arg)=
8567    :PROPERTIES:
8568    :CUSTOM_ID: org-agenda-sunrise-sunset
8569    :END:
8571 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8572 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-sunrise-sunset][Find modifications in git logs]]
8574 : Display sunrise and sunset for the cursor date.
8575 : Latitude and longitude can be specified with the variables
8576 : â€˜calendar-latitude’ and â€˜calendar-longitude’.  When called with prefix
8577 : argument, latitude and longitude will be prompted for.
8578 ** org-remove-file =(&optional file)=
8579    :PROPERTIES:
8580    :CUSTOM_ID: org-remove-file
8581    :END:
8583 - *Access:* ~C-c ], <menu-bar> <Org> <File List for Agenda> <Remove Current File from List>~
8584 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8585 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-file][Find modifications in git logs]]
8587 : Remove current file from the list of files in variable â€˜org-agenda-files’.
8588 : These are the files which are being checked for agenda entries.
8589 : Optional argument FILE means use this file instead of the current.
8590 ** org-table-fedit-line-up
8591    :PROPERTIES:
8592    :CUSTOM_ID: org-table-fedit-line-up
8593    :END:
8595 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8596 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-line-up][Find modifications in git logs]]
8598 : Move cursor one line up in the window showing the table.
8599 ** org-agenda-bulk-mark-regexp =(regexp)=
8600    :PROPERTIES:
8601    :CUSTOM_ID: org-agenda-bulk-mark-regexp
8602    :END:
8604 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8605 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark-regexp][Find modifications in git logs]]
8607 : Mark entries matching REGEXP for future agenda bulk action.
8608 ** org-mouse-move-tree-start =(_event)=
8609    :PROPERTIES:
8610    :CUSTOM_ID: org-mouse-move-tree-start
8611    :END:
8613 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
8614 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-move-tree-start][Find modifications in git logs]]
8617 ** org-agenda-goto-today
8618    :PROPERTIES:
8619    :CUSTOM_ID: org-agenda-goto-today
8620    :END:
8622 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8623 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-today][Find modifications in git logs]]
8625 : Go to today.
8626 ** org-table-fedit-ref-up
8627    :PROPERTIES:
8628    :CUSTOM_ID: org-table-fedit-ref-up
8629    :END:
8631 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8632 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-up][Find modifications in git logs]]
8634 : Shift the reference at point one row/hline up.
8635 ** org-transpose-element
8636    :PROPERTIES:
8637    :CUSTOM_ID: org-transpose-element
8638    :END:
8640 - *Access:* ~C-M-t~
8641 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8642 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-transpose-element][Find modifications in git logs]]
8644 : Transpose current and previous elements, keeping blank lines between.
8645 : Point is moved after both elements.
8646 ** org-babel-tangle-jump-to-org
8647    :PROPERTIES:
8648    :CUSTOM_ID: org-babel-tangle-jump-to-org
8649    :END:
8651 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
8652 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-jump-to-org][Find modifications in git logs]]
8654 : Jump from a tangled code file to the related Org mode file.
8655 ** org-narrow-to-subtree
8656    :PROPERTIES:
8657    :CUSTOM_ID: org-narrow-to-subtree
8658    :END:
8660 - *Access:* ~C-x n s~
8661 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8662 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-subtree][Find modifications in git logs]]
8664 : Narrow buffer to the current subtree.
8665 ** org-agenda-prepare-buffers =(files)=
8666    :PROPERTIES:
8667    :CUSTOM_ID: org-agenda-prepare-buffers
8668    :END:
8670 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8671 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-prepare-buffers][Find modifications in git logs]]
8673 : Create buffers for all agenda files, protect archived trees and comments.
8674 ** org-toggle-link-display
8675    :PROPERTIES:
8676    :CUSTOM_ID: org-toggle-link-display
8677    :END:
8679 - *Access:* ~<menu-bar> <Org> <Hyperlinks> <Descriptive Links>, <menu-bar> <Org> <Hyperlinks> <Literal Links>~
8680 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8681 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-link-display][Find modifications in git logs]]
8683 : Toggle the literal or descriptive display of links.
8684 ** org-babel-haskell-export-to-lhs =(&optional arg)=
8685    :PROPERTIES:
8686    :CUSTOM_ID: org-babel-haskell-export-to-lhs
8687    :END:
8689 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-haskell.el][ob-haskell.el]]
8690 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-haskell-export-to-lhs][Find modifications in git logs]]
8692 : Export to a .lhs file with all haskell code blocks escaped.
8693 : When called with a prefix argument the resulting
8694 : .lhs file will be exported to a .tex file.  This function will
8695 : create two new files, base-name.lhs and base-name.tex where
8696 : base-name is the name of the current Org file.
8698 : Note that all standard Babel literate programming
8699 : constructs (header arguments, no-web syntax etc...) are ignored.
8700 ** org-agenda-do-date-earlier =(arg)=
8701    :PROPERTIES:
8702    :CUSTOM_ID: org-agenda-do-date-earlier
8703    :END:
8705 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8706 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-do-date-earlier][Find modifications in git logs]]
8709 ** org-toggle-timestamp-type
8710    :PROPERTIES:
8711    :CUSTOM_ID: org-toggle-timestamp-type
8712    :END:
8714 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8715 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-timestamp-type][Find modifications in git logs]]
8717 : Toggle the type (<active> or [inactive]) of a time stamp.
8718 ** org-table-toggle-formula-debugger
8719    :PROPERTIES:
8720    :CUSTOM_ID: org-table-toggle-formula-debugger
8721    :END:
8723 - *Access:* ~C-c {, <menu-bar> <Tbl> <Debug Formulas>~
8724 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8725 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-toggle-formula-debugger][Find modifications in git logs]]
8727 : Toggle the formula debugger in tables.
8728 ** org-bibtex-read
8729    :PROPERTIES:
8730    :CUSTOM_ID: org-bibtex-read
8731    :END:
8733 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
8734 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-read][Find modifications in git logs]]
8736 : Read a bibtex entry and save to â€˜org-bibtex-entries’.
8737 : This uses â€˜bibtex-parse-entry’.
8738 ** org-match-sparse-tree =(&optional todo-only match)=
8739    :PROPERTIES:
8740    :CUSTOM_ID: org-match-sparse-tree
8741    :END:
8743 - *Access:* ~C-c \, <menu-bar> <Org> <Special views current file> <Tags/Property tree>~
8744 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8745 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-match-sparse-tree][Find modifications in git logs]]
8747 : Create a sparse tree according to tags string MATCH.
8749 : MATCH is a string with match syntax.  It can contain a selection
8750 : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and
8751 : TODO keywords ("TODO=\"WAITING\"") or a combination of
8752 : those.  See the manual for details.
8754 : If optional argument TODO-ONLY is non-nil, only select lines that
8755 : are also TODO tasks.
8756 ** org-show-priority
8757    :PROPERTIES:
8758    :CUSTOM_ID: org-show-priority
8759    :END:
8761 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8762 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-priority][Find modifications in git logs]]
8764 : Show the priority of the current item.
8765 : This priority is composed of the main priority given with the [#A] cookies,
8766 : and by additional input from the age of a schedules or deadline entry.
8767 ** org-agenda-previous-line
8768    :PROPERTIES:
8769    :CUSTOM_ID: org-agenda-previous-line
8770    :END:
8772 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8773 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-line][Find modifications in git logs]]
8775 : Move cursor to the previous line, and show if follow-mode is active.
8776 ** org-agenda-reset-view
8777    :PROPERTIES:
8778    :CUSTOM_ID: org-agenda-reset-view
8779    :END:
8781 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8782 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-reset-view][Find modifications in git logs]]
8784 : Switch to default view for agenda.
8785 ** org-table-sum =(&optional beg end nlast)=
8786    :PROPERTIES:
8787    :CUSTOM_ID: org-table-sum
8788    :END:
8790 - *Access:* ~C-c +, <menu-bar> <Tbl> <Calculate> <Sum Column/Rectangle>~
8791 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8792 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-sum][Find modifications in git logs]]
8794 : Sum numbers in region of current table column.
8795 : The result will be displayed in the echo area, and will be available
8796 : as kill to be inserted with <S-insertchar>.
8798 : If there is an active region, it is interpreted as a rectangle and all
8799 : numbers in that rectangle will be summed.  If there is no active
8800 : region and point is located in a table column, sum all numbers in that
8801 : column.
8803 : If at least one number looks like a time HH:MM or HH:MM:SS, all other
8804 : numbers are assumed to be times as well (in decimal hours) and the
8805 : numbers are added as such.
8807 : If NLAST is a number, only the NLAST fields will actually be summed.
8808 ** org-koma-letter-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)=
8809    :PROPERTIES:
8810    :CUSTOM_ID: org-koma-letter-export-as-latex
8811    :END:
8813 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
8814 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-export-as-latex][Find modifications in git logs]]
8816 : Export current buffer as a KOMA Scrlttr2 letter.
8818 : If narrowing is active in the current buffer, only export its
8819 : narrowed part.
8821 : If a region is active, export that region.
8823 : A non-nil optional argument ASYNC means the process should happen
8824 : asynchronously.  The resulting buffer should be accessible
8825 : through the â€˜org-export-stack’ interface.
8827 : When optional argument SUBTREEP is non-nil, export the sub-tree
8828 : at point, extracting information from the headline properties
8829 : first.
8831 : When optional argument VISIBLE-ONLY is non-nil, don’t export
8832 : contents of hidden elements.
8834 : When optional argument BODY-ONLY is non-nil, only write code
8835 : between "\begin{letter}" and "\end{letter}".
8837 : EXT-PLIST, when provided, is a proeprty list with external
8838 : parameters overriding Org default settings, but still inferior to
8839 : file-local settings.
8841 : Export is done in a buffer named "*Org KOMA-LETTER Export*".  It
8842 : will be displayed if â€˜org-export-show-temporary-export-buffer’ is
8843 : non-nil.
8844 ** org-babel-lilypond-toggle-pdf-display
8845    :PROPERTIES:
8846    :CUSTOM_ID: org-babel-lilypond-toggle-pdf-display
8847    :END:
8849 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
8850 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-pdf-display][Find modifications in git logs]]
8852 : Toggle whether pdf will be displayed following a successful compilation.
8853 ** org-babel-execute-subtree =(&optional arg)=
8854    :PROPERTIES:
8855    :CUSTOM_ID: org-babel-execute-subtree
8856    :END:
8858 - *Access:* ~C-c C-v s, C-c C-v C-s~
8859 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
8860 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-subtree][Find modifications in git logs]]
8862 : Execute source code blocks in a subtree.
8863 : Call â€˜org-babel-execute-src-block’ on every source block in
8864 : the current subtree.
8865 ** org-attach-attach-cp
8866    :PROPERTIES:
8867    :CUSTOM_ID: org-attach-attach-cp
8868    :END:
8870 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
8871 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-cp][Find modifications in git logs]]
8873 : Attach a file by copying it.
8874 ** org-export-stack-mode
8875    :PROPERTIES:
8876    :CUSTOM_ID: org-export-stack-mode
8877    :END:
8879 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
8880 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-mode][Find modifications in git logs]]
8882 : Mode for displaying asynchronous export stack.
8884 : Type â€˜M-x org-export-stack’ to visualize the asynchronous export
8885 : stack.
8887 : In an Org Export Stack buffer, use â€˜RET’ to view export output
8888 : on current line, â€˜d’ to remove it from the stack and â€˜C’ to clear
8889 : stack completely.
8891 : Removing entries in a stack buffer does not affect files
8892 : or buffers, only display.
8894 : key             binding
8895 : ---             -------
8897 : TAB           forward-button
8898 : RET           org-export-stack-view
8899 : C-n           next-line
8900 : C-p           previous-line
8901 : ESC           Prefix Command
8902 : SPC           next-line
8903 : -             negative-argument
8904 : 0 .. 9                digit-argument
8905 : <             beginning-of-buffer
8906 : >             end-of-buffer
8907 : ?             describe-mode
8908 : C             org-export-stack-clear
8909 : S             tabulated-list-sort
8910 : d             org-export-stack-remove
8911 : g             revert-buffer
8912 : h             describe-mode
8913 : n             next-line
8914 : p             previous-line
8915 : q             quit-window
8916 : v             org-export-stack-view
8917 : DEL           previous-line
8918 : S-SPC         scroll-down-command
8919 : <backtab>     backward-button
8920 : <down>                next-line
8921 : <follow-link> mouse-face
8922 : <mouse-2>     mouse-select-window
8923 : <remap>               Prefix Command
8924 : <up>          previous-line
8926 : C-M-i         backward-button
8930 : In addition to any hooks its parent mode â€˜tabulated-list-mode’ might have run,
8931 : this mode runs the hook â€˜org-export-stack-mode-hook’, as the final or penultimate step
8932 : during initialization.
8933 ** org-insert-heading-respect-content =(&optional invisible-ok)=
8934    :PROPERTIES:
8935    :CUSTOM_ID: org-insert-heading-respect-content
8936    :END:
8938 - *Access:* ~<C-return>~
8939 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8940 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-respect-content][Find modifications in git logs]]
8942 : Insert heading with â€˜org-insert-heading-respect-content’ set to t.
8943 ** org-agenda-list-stuck-projects =(&rest ignore)=
8944    :PROPERTIES:
8945    :CUSTOM_ID: org-agenda-list-stuck-projects
8946    :END:
8948 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
8949 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-list-stuck-projects][Find modifications in git logs]]
8951 : Create agenda view for projects that are stuck.
8952 : Stuck projects are project that have no next actions.  For the definitions
8953 : of what a project is and how to check if it stuck, customize the variable
8954 : â€˜org-stuck-projects’.
8955 ** org-cdlatex-math-modify =(&optional _arg)=
8956    :PROPERTIES:
8957    :CUSTOM_ID: org-cdlatex-math-modify
8958    :END:
8960 - *Access:* ~<menu-bar> <Org> <LaTeX> <Modify math symbol>~
8961 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8962 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-math-modify][Find modifications in git logs]]
8964 : Execute â€˜cdlatex-math-modify’ in LaTeX fragments.
8965 : Revert to the normal definition outside of these fragments.
8966 ** org-create-customize-menu
8967    :PROPERTIES:
8968    :CUSTOM_ID: org-create-customize-menu
8969    :END:
8971 - *Access:* ~<menu-bar> <Org> <Customize> <Expand This Menu>~
8972 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
8973 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-customize-menu][Find modifications in git logs]]
8975 : Create a full customization menu for Org mode, insert it into the menu.
8976 ** org-table-create =(&optional size)=
8977    :PROPERTIES:
8978    :CUSTOM_ID: org-table-create
8979    :END:
8981 - *Access:* ~<menu-bar> <Tbl> <Create>~
8982 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
8983 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-create][Find modifications in git logs]]
8985 : Query for a size and insert a table skeleton.
8986 : SIZE is a string Columns x Rows like for example "3x2".
8987 ** org-html-convert-region-to-html
8988    :PROPERTIES:
8989    :CUSTOM_ID: org-html-convert-region-to-html
8990    :END:
8992 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
8993 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-convert-region-to-html][Find modifications in git logs]]
8995 : Assume the current region has Org syntax, and convert it to HTML.
8996 : This can be used in any buffer.  For example, you can write an
8997 : itemized list in Org syntax in an HTML buffer and use this command
8998 : to convert it.
8999 ** org-attach-attach-ln
9000    :PROPERTIES:
9001    :CUSTOM_ID: org-attach-attach-ln
9002    :END:
9004 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
9005 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-ln][Find modifications in git logs]]
9007 : Attach a file by creating a hard link to it.
9008 : Beware that this does not work on systems that do not support hard links.
9009 : On some systems, this apparently does copy the file instead.
9010 ** org-html-htmlize-generate-css
9011    :PROPERTIES:
9012    :CUSTOM_ID: org-html-htmlize-generate-css
9013    :END:
9015 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
9016 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-generate-css][Find modifications in git logs]]
9018 : Create the CSS for all font definitions in the current Emacs session.
9019 : Use this to create face definitions in your CSS style file that can then
9020 : be used by code snippets transformed by htmlize.
9021 : This command just produces a buffer that contains class definitions for all
9022 : faces used in the current Emacs session.  You can copy and paste the ones you
9023 : need into your CSS file.
9025 : If you then set â€˜org-html-htmlize-output-type’ to â€˜css’, calls
9026 : to the function â€˜org-html-htmlize-region-for-paste’ will
9027 : produce code that uses these same face definitions.
9028 ** org-check-after-date =(d)=
9029    :PROPERTIES:
9030    :CUSTOM_ID: org-check-after-date
9031    :END:
9033 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9034 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-after-date][Find modifications in git logs]]
9036 : Check if there are deadlines or scheduled entries after date D.
9037 ** org-toggle-comment
9038    :PROPERTIES:
9039    :CUSTOM_ID: org-toggle-comment
9040    :END:
9042 - *Access:* ~C-c ;~
9043 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9044 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-comment][Find modifications in git logs]]
9046 : Change the COMMENT state of an entry.
9047 ** org-attach-attach-mv
9048    :PROPERTIES:
9049    :CUSTOM_ID: org-attach-attach-mv
9050    :END:
9052 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
9053 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-mv][Find modifications in git logs]]
9055 : Attach a file by moving (renaming) it.
9056 ** org-remove-inline-images
9057    :PROPERTIES:
9058    :CUSTOM_ID: org-remove-inline-images
9059    :END:
9061 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9062 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-inline-images][Find modifications in git logs]]
9064 : Remove inline display of images.
9065 ** org-return-indent
9066    :PROPERTIES:
9067    :CUSTOM_ID: org-return-indent
9068    :END:
9070 - *Access:* ~C-j~
9071 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9072 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-return-indent][Find modifications in git logs]]
9074 : Goto next table row or insert a newline and indent.
9075 : Calls â€˜org-table-next-row’ or â€˜newline-and-indent’, depending on
9076 : context.  See the individual commands for more information.
9077 ** org-delete-property-globally =(property)=
9078    :PROPERTIES:
9079    :CUSTOM_ID: org-delete-property-globally
9080    :END:
9082 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9083 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-property-globally][Find modifications in git logs]]
9085 : Remove PROPERTY globally, from all entries.
9086 : This function ignores narrowing, if any.
9087 ** org-table-fedit-scroll =(N)=
9088    :PROPERTIES:
9089    :CUSTOM_ID: org-table-fedit-scroll
9090    :END:
9092 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9093 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-scroll][Find modifications in git logs]]
9096 ** org-unindent-buffer
9097    :PROPERTIES:
9098    :CUSTOM_ID: org-unindent-buffer
9099    :END:
9101 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9102 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-unindent-buffer][Find modifications in git logs]]
9104 : Un-indent the visible part of the buffer.
9105 : Relative indentation (between items, inside blocks, etc.) isn’t
9106 : modified.
9107 ** orgtbl-ctrl-c-ctrl-c =(arg)=
9108    :PROPERTIES:
9109    :CUSTOM_ID: orgtbl-ctrl-c-ctrl-c
9110    :END:
9112 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9113 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ctrl-c-ctrl-c][Find modifications in git logs]]
9115 : If the cursor is inside a table, realign the table.
9116 : If it is a table to be sent away to a receiver, do it.
9117 : With prefix arg, also recompute table.
9118 ** org-insert-subheading =(arg)=
9119    :PROPERTIES:
9120    :CUSTOM_ID: org-insert-subheading
9121    :END:
9123 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9124 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-subheading][Find modifications in git logs]]
9126 : Insert a new subheading and demote it.
9127 : Works for outline headings and for plain lists alike.
9128 ** org-agenda-earlier =(arg)=
9129    :PROPERTIES:
9130    :CUSTOM_ID: org-agenda-earlier
9131    :END:
9133 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9134 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-earlier][Find modifications in git logs]]
9136 : Go backward in time by the current span.
9137 : With prefix ARG, go backward that many times the current span.
9138 ** org-attach-delete-one =(&optional file)=
9139    :PROPERTIES:
9140    :CUSTOM_ID: org-attach-delete-one
9141    :END:
9143 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
9144 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-delete-one][Find modifications in git logs]]
9146 : Delete a single attachment.
9147 ** org-columns-content
9148    :PROPERTIES:
9149    :CUSTOM_ID: org-columns-content
9150    :END:
9152 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
9153 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-content][Find modifications in git logs]]
9155 : Switch to contents view while in columns view.
9156 ** org-attach-attach-lns
9157    :PROPERTIES:
9158    :CUSTOM_ID: org-attach-attach-lns
9159    :END:
9161 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
9162 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-lns][Find modifications in git logs]]
9164 : Attach a file by creating a symbolic link to it.
9166 : Beware that this does not work on systems that do not support symbolic links.
9167 : On some systems, this apparently does copy the file instead.
9168 ** org-agenda-manipulate-query-add
9169    :PROPERTIES:
9170    :CUSTOM_ID: org-agenda-manipulate-query-add
9171    :END:
9173 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9174 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-add][Find modifications in git logs]]
9176 : Manipulate the query by adding a search term with positive selection.
9177 : Positive selection means the term must be matched for selection of an entry.
9178 ** org-beginning-of-line =(&optional n)=
9179    :PROPERTIES:
9180    :CUSTOM_ID: org-beginning-of-line
9181    :END:
9183 - *Access:* ~C-a~
9184 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9185 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-line][Find modifications in git logs]]
9187 : Go to the beginning of the current visible line.
9189 : If this is a headline, and â€˜org-special-ctrl-a/e’ is set, ignore
9190 : tags on the first attempt, and only move to after the tags when
9191 : the cursor is already beyond the end of the headline.
9193 : With argument N not nil or 1, move forward N - 1 lines first.
9194 ** org-agenda-deadline =(arg &optional time)=
9195    :PROPERTIES:
9196    :CUSTOM_ID: org-agenda-deadline
9197    :END:
9199 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9200 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-deadline][Find modifications in git logs]]
9202 : Schedule the item at point.
9203 : ARG is passed through to â€˜org-deadline’.
9204 ** org-agenda-priority =(&optional force-direction)=
9205    :PROPERTIES:
9206    :CUSTOM_ID: org-agenda-priority
9207    :END:
9209 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9210 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority][Find modifications in git logs]]
9212 : Set the priority of line at point, also in Org file.
9213 : This changes the line at point, all other lines in the agenda referring to
9214 : the same tree node, and the headline of the tree node in the Org file.
9215 : Called with a universal prefix arg, show the priority instead of setting it.
9216 ** org-ascii-export-to-ascii =(&optional async subtreep visible-only body-only ext-plist)=
9217    :PROPERTIES:
9218    :CUSTOM_ID: org-ascii-export-to-ascii
9219    :END:
9221 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
9222 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-export-to-ascii][Find modifications in git logs]]
9224 : Export current buffer to a text file.
9226 : If narrowing is active in the current buffer, only export its
9227 : narrowed part.
9229 : If a region is active, export that region.
9231 : A non-nil optional argument ASYNC means the process should happen
9232 : asynchronously.  The resulting file should be accessible through
9233 : the â€˜org-export-stack’ interface.
9235 : When optional argument SUBTREEP is non-nil, export the sub-tree
9236 : at point, extracting information from the headline properties
9237 : first.
9239 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9240 : contents of hidden elements.
9242 : When optional argument BODY-ONLY is non-nil, strip title and
9243 : table of contents from output.
9245 : EXT-PLIST, when provided, is a property list with external
9246 : parameters overriding Org default settings, but still inferior to
9247 : file-local settings.
9249 : Return output file’s name.
9250 ** org-fill-paragraph =(&optional justify region)=
9251    :PROPERTIES:
9252    :CUSTOM_ID: org-fill-paragraph
9253    :END:
9255 - *Access:* ~M-q~
9256 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9257 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fill-paragraph][Find modifications in git logs]]
9259 : Fill element at point, when applicable.
9261 : This function only applies to comment blocks, comments, example
9262 : blocks and paragraphs.  Also, as a special case, re-align table
9263 : when point is at one.
9265 : For convenience, when point is at a plain list, an item or
9266 : a footnote definition, try to fill the first paragraph within.
9268 : If JUSTIFY is non-nil (interactively, with prefix argument),
9269 : justify as well.  If â€˜sentence-end-double-space’ is non-nil, then
9270 : period followed by one space does not end a sentence, so don’t
9271 : break a line there.  The variable â€˜fill-column’ controls the
9272 : width for filling.
9274 : The REGION argument is non-nil if called interactively; in that
9275 : case, if Transient Mark mode is enabled and the mark is active,
9276 : fill each of the elements in the active region, instead of just
9277 : filling the current element.
9278 ** org-publish-current-project =(&optional force async)=
9279    :PROPERTIES:
9280    :CUSTOM_ID: org-publish-current-project
9281    :END:
9283 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
9284 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-current-project][Find modifications in git logs]]
9286 : Publish the project associated with the current file.
9287 : With a prefix argument, force publishing of all files in
9288 : the project.
9289 ** org-remove-occur-highlights =(&optional _beg _end noremove)=
9290    :PROPERTIES:
9291    :CUSTOM_ID: org-remove-occur-highlights
9292    :END:
9294 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9295 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-occur-highlights][Find modifications in git logs]]
9297 : Remove the occur highlights from the buffer.
9298 : BEG and END are ignored.  If NOREMOVE is nil, remove this function
9299 : from the â€˜before-change-functions’ in the current buffer.
9300 ** org-agenda-next-item =(n)=
9301    :PROPERTIES:
9302    :CUSTOM_ID: org-agenda-next-item
9303    :END:
9305 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9306 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-item][Find modifications in git logs]]
9308 : Move cursor to next agenda item.
9309 ** org-previous-visible-heading =(arg)=
9310    :PROPERTIES:
9311    :CUSTOM_ID: org-previous-visible-heading
9312    :END:
9314 - *Access:* ~C-c C-p, <menu-bar> <Org> <Navigate Headings> <Previous>~
9315 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9316 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-visible-heading][Find modifications in git logs]]
9318 : Move to the previous visible heading.
9320 : This function wraps â€˜outline-previous-visible-heading’ with
9321 : â€˜org-with-limited-levels’ in order to skip over inline tasks and
9322 : respect customization of â€˜org-odd-levels-only’.
9323 ** org-babel-check-src-block
9324    :PROPERTIES:
9325    :CUSTOM_ID: org-babel-check-src-block
9326    :END:
9328 - *Access:* ~C-c C-v c, C-c C-v C-c~
9329 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
9330 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-check-src-block][Find modifications in git logs]]
9332 : Check for misspelled header arguments in the current code block.
9333 ** org-increase-number-at-point =(&optional inc)=
9334    :PROPERTIES:
9335    :CUSTOM_ID: org-increase-number-at-point
9336    :END:
9338 - *Access:* ~<C-M-S-right>~
9339 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9340 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-increase-number-at-point][Find modifications in git logs]]
9342 : Increment the number at point.
9343 : With an optional prefix numeric argument INC, increment using
9344 : this numeric value.
9345 ** org-end-of-line =(&optional n)=
9346    :PROPERTIES:
9347    :CUSTOM_ID: org-end-of-line
9348    :END:
9350 - *Access:* ~C-e~
9351 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9352 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-line][Find modifications in git logs]]
9354 : Go to the end of the line, but before ellipsis, if any.
9356 : If this is a headline, and â€˜org-special-ctrl-a/e’ is set, ignore
9357 : tags on the first attempt, and only move to after the tags when
9358 : the cursor is already beyond the end of the headline.
9360 : With argument N not nil or 1, move forward N - 1 lines first.
9361 ** org-attach-set-directory
9362    :PROPERTIES:
9363    :CUSTOM_ID: org-attach-set-directory
9364    :END:
9366 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
9367 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-set-directory][Find modifications in git logs]]
9369 : Set the ATTACH_DIR property of the current entry.
9370 : The property defines the directory that is used for attachments
9371 : of the entry.
9372 ** org-table-fedit-scroll-down =(N)=
9373    :PROPERTIES:
9374    :CUSTOM_ID: org-table-fedit-scroll-down
9375    :END:
9377 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9378 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-scroll-down][Find modifications in git logs]]
9381 ** orgtbl-error
9382    :PROPERTIES:
9383    :CUSTOM_ID: orgtbl-error
9384    :END:
9386 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9387 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-error][Find modifications in git logs]]
9389 : Error when there is no default binding for a table key.
9390 ** org-shifttab =(&optional arg)=
9391    :PROPERTIES:
9392    :CUSTOM_ID: org-shifttab
9393    :END:
9395 - *Access:* ~<backtab>, <S-tab>, <S-iso-lefttab>, <menu-bar> <Tbl> <Previous Field>, <menu-bar> <Org> <Show/Hide> <Cycle Global Visibility>~
9396 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9397 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shifttab][Find modifications in git logs]]
9399 : Global visibility cycling or move to previous table field.
9400 : Call â€˜org-table-previous-field’ within a table.
9401 : When ARG is nil, cycle globally through visibility states.
9402 : When ARG is a numeric prefix, show contents of this level.
9403 ** org-man-export-to-man =(&optional async subtreep visible-only body-only ext-plist)=
9404    :PROPERTIES:
9405    :CUSTOM_ID: org-man-export-to-man
9406    :END:
9408 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
9409 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-export-to-man][Find modifications in git logs]]
9411 : Export current buffer to a Man file.
9413 : If narrowing is active in the current buffer, only export its
9414 : narrowed part.
9416 : If a region is active, export that region.
9418 : A non-nil optional argument ASYNC means the process should happen
9419 : asynchronously.  The resulting file should be accessible through
9420 : the â€˜org-export-stack’ interface.
9422 : When optional argument SUBTREEP is non-nil, export the sub-tree
9423 : at point, extracting information from the headline properties
9424 : first.
9426 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9427 : contents of hidden elements.
9429 : When optional argument BODY-ONLY is non-nil, only the body
9430 : without any markers.
9432 : EXT-PLIST, when provided, is a property list with external
9433 : parameters overriding Org default settings, but still inferior to
9434 : file-local settings.
9436 : Return output file’s name.
9437 ** org-capture-refile
9438    :PROPERTIES:
9439    :CUSTOM_ID: org-capture-refile
9440    :END:
9442 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
9443 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-refile][Find modifications in git logs]]
9445 : Finalize the current capture and then refile the entry.
9446 : Refiling is done from the base buffer, because the indirect buffer is then
9447 : already gone.  Any prefix argument will be passed to the refile command.
9448 ** org-decrypt-entry
9449    :PROPERTIES:
9450    :CUSTOM_ID: org-decrypt-entry
9451    :END:
9453 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
9454 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrypt-entry][Find modifications in git logs]]
9456 : Decrypt the content of the current headline.
9457 ** org-set-tags-command =(&optional arg just-align)=
9458    :PROPERTIES:
9459    :CUSTOM_ID: org-set-tags-command
9460    :END:
9462 - *Access:* ~C-c C-q, <menu-bar> <Org> <TAGS and Properties> <Set Tags>~
9463 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9464 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-tags-command][Find modifications in git logs]]
9466 : Call the set-tags command for the current entry.
9467 ** org-edit-agenda-file-list
9468    :PROPERTIES:
9469    :CUSTOM_ID: org-edit-agenda-file-list
9470    :END:
9472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-agenda-file-list][Find modifications in git logs]]
9475 : Edit the list of agenda files.
9476 : Depending on setup, this either uses customize to edit the variable
9477 : â€˜org-agenda-files’, or it visits the file that is holding the list.  In the
9478 : latter case, the buffer is set up in a way that saving it automatically kills
9479 : the buffer and restores the previous window configuration.
9480 ** org-babel-load-in-session =(&optional _arg info)=
9481    :PROPERTIES:
9482    :CUSTOM_ID: org-babel-load-in-session
9483    :END:
9485 - *Access:* ~C-c C-v l, C-c C-v C-l~
9486 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
9487 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-in-session][Find modifications in git logs]]
9489 : Load the body of the current source-code block.
9490 : Evaluate the header arguments for the source block before
9491 : entering the session.  After loading the body this pops open the
9492 : session.
9493 ** org-clock-menu
9494    :PROPERTIES:
9495    :CUSTOM_ID: org-clock-menu
9496    :END:
9498 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
9499 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-menu][Find modifications in git logs]]
9502 ** org-columns-edit-attributes
9503    :PROPERTIES:
9504    :CUSTOM_ID: org-columns-edit-attributes
9505    :END:
9507 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
9508 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-attributes][Find modifications in git logs]]
9510 : Edit the attributes of the current column.
9511 ** org-export-stack-clear
9512    :PROPERTIES:
9513    :CUSTOM_ID: org-export-stack-clear
9514    :END:
9516 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
9517 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-clear][Find modifications in git logs]]
9519 : Remove all entries from export stack.
9520 ** org-revert-all-org-buffers
9521    :PROPERTIES:
9522    :CUSTOM_ID: org-revert-all-org-buffers
9523    :END:
9525 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9526 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-revert-all-org-buffers][Find modifications in git logs]]
9528 : Revert all Org buffers.
9529 : Prompt for confirmation when there are unsaved changes.
9530 : Be sure you know what you are doing before letting this function
9531 : overwrite your changes.
9533 : This function is useful in a setup where one tracks org files
9534 : with a version control system, to revert on one machine after pulling
9535 : changes from another.  I believe the procedure must be like this:
9537 : 1. M-x org-save-all-org-buffers
9538 : 2. Pull changes from the other machine, resolve conflicts
9539 : 3. M-x org-revert-all-org-buffers
9540 ** org-table-move-row =(&optional up)=
9541    :PROPERTIES:
9542    :CUSTOM_ID: org-table-move-row
9543    :END:
9545 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9546 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-row][Find modifications in git logs]]
9548 : Move the current table line down.  With arg UP, move it up.
9549 ** org-id-copy
9550    :PROPERTIES:
9551    :CUSTOM_ID: org-id-copy
9552    :END:
9554 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
9555 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-copy][Find modifications in git logs]]
9557 : Copy the ID of the entry at point to the kill ring.
9558 : Create an ID if necessary.
9559 ** org-table-cut-region =(beg end)=
9560    :PROPERTIES:
9561    :CUSTOM_ID: org-table-cut-region
9562    :END:
9564 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9565 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-cut-region][Find modifications in git logs]]
9567 : Copy region in table to the clipboard and blank all relevant fields.
9568 : If there is no active region, use just the field at point.
9569 ** org-calendar-goto-agenda
9570    :PROPERTIES:
9571    :CUSTOM_ID: org-calendar-goto-agenda
9572    :END:
9574 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9575 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-goto-agenda][Find modifications in git logs]]
9577 : Compute the Org agenda for the calendar date displayed at the cursor.
9578 : This is a command that has to be installed in â€˜calendar-mode-map’.
9579 ** org-capture-finalize =(&optional stay-with-capture)=
9580    :PROPERTIES:
9581    :CUSTOM_ID: org-capture-finalize
9582    :END:
9584 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
9585 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-finalize][Find modifications in git logs]]
9587 : Finalize the capture process.
9588 : With prefix argument STAY-WITH-CAPTURE, jump to the location of the
9589 : captured item after finalizing.
9590 ** org-ctags-open-file =(name &optional title)=
9591    :PROPERTIES:
9592    :CUSTOM_ID: org-ctags-open-file
9593    :END:
9595 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
9596 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-open-file][Find modifications in git logs]]
9598 : Visit or create a file called â€˜NAME.org’, and insert a new topic.
9599 : The new topic will be titled NAME (or TITLE if supplied).
9600 ** org-refile-goto-last-stored
9601    :PROPERTIES:
9602    :CUSTOM_ID: org-refile-goto-last-stored
9603    :END:
9605 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9606 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-goto-last-stored][Find modifications in git logs]]
9608 : Go to the location where the last refile was stored.
9609 ** org-force-cycle-archived
9610    :PROPERTIES:
9611    :CUSTOM_ID: org-force-cycle-archived
9612    :END:
9614 - *Access:* ~<C-tab>~
9615 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9616 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-force-cycle-archived][Find modifications in git logs]]
9618 : Cycle subtree even if it is archived.
9619 ** org-table-field-info =(_arg)=
9620    :PROPERTIES:
9621    :CUSTOM_ID: org-table-field-info
9622    :END:
9624 - *Access:* ~C-c ?~
9625 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9626 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-field-info][Find modifications in git logs]]
9628 : Show info about the current field, and highlight any reference at point.
9629 ** org-setup-comments-handling
9630    :PROPERTIES:
9631    :CUSTOM_ID: org-setup-comments-handling
9632    :END:
9634 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9635 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-setup-comments-handling][Find modifications in git logs]]
9638 ** org-priority-up
9639    :PROPERTIES:
9640    :CUSTOM_ID: org-priority-up
9641    :END:
9643 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9644 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority-up][Find modifications in git logs]]
9646 : Increase the priority of the current item.
9647 ** org-copy-subtree =(&optional n cut force-store-markers nosubtrees)=
9648    :PROPERTIES:
9649    :CUSTOM_ID: org-copy-subtree
9650    :END:
9652 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9653 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-subtree][Find modifications in git logs]]
9655 : Copy the current subtree it in the clipboard.
9656 : With prefix arg N, copy this many sequential subtrees.
9657 : This is a short-hand for marking the subtree and then copying it.
9658 : If CUT is non-nil, actually cut the subtree.
9659 : If FORCE-STORE-MARKERS is non-nil, store the relative locations
9660 : of some markers in the region, even if CUT is non-nil.  This is
9661 : useful if the caller implements cut-and-paste as copy-then-paste-then-cut.
9662 ** org-caldav-delete-everything =(prefix)=
9663    :PROPERTIES:
9664    :CUSTOM_ID: org-caldav-delete-everything
9665    :END:
9667 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-caldav.el][org-caldav.el]]
9668 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-caldav-delete-everything][Find modifications in git logs]]
9670 : Delete all events from Calendar and removes state file.
9671 : Again: This deletes all events in your calendar.  So only do this
9672 : if you’re really sure.  This has to be called with a prefix, just
9673 : so you don’t do it by accident.
9674 ** org-forward-element
9675    :PROPERTIES:
9676    :CUSTOM_ID: org-forward-element
9677    :END:
9679 - *Access:* ~M-}~
9680 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9681 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-element][Find modifications in git logs]]
9683 : Move forward by one element.
9684 : Move to the next element at the same level, when possible.
9685 ** org-open-at-point-global
9686    :PROPERTIES:
9687    :CUSTOM_ID: org-open-at-point-global
9688    :END:
9690 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9691 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point-global][Find modifications in git logs]]
9693 : Follow a link or time-stamp like Org mode does.
9694 : This command can be called in any mode to follow an external link
9695 : or a time-stamp that has Org mode syntax.  Its behavior is
9696 : undefined when called on internal links (e.g., fuzzy links).
9697 : Raise an error when there is nothing to follow.
9698 ** org-unescape-code-in-region =(beg end)=
9699    :PROPERTIES:
9700    :CUSTOM_ID: org-unescape-code-in-region
9701    :END:
9703 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
9704 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-unescape-code-in-region][Find modifications in git logs]]
9706 : Un-escape lines between BEG and END.
9707 : Un-escaping happens by removing the first comma on lines starting
9708 : with ",*", ",#+", ",,*" and ",,#+".
9709 ** org-agenda-menu =(event)=
9710    :PROPERTIES:
9711    :CUSTOM_ID: org-agenda-menu
9712    :END:
9714 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9715 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-menu][Find modifications in git logs]]
9717 : Agenda menu
9718 ** org-cycle-agenda-files
9719    :PROPERTIES:
9720    :CUSTOM_ID: org-cycle-agenda-files
9721    :END:
9723 - *Access:* ~C-', C-,, <menu-bar> <Org> <File List for Agenda> <Cycle through agenda files>~
9724 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9725 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-agenda-files][Find modifications in git logs]]
9727 : Cycle through the files in â€˜org-agenda-files’.
9728 : If the current buffer visits an agenda file, find the next one in the list.
9729 : If the current buffer does not, find the first agenda file.
9730 ** org-move-item-up
9731    :PROPERTIES:
9732    :CUSTOM_ID: org-move-item-up
9733    :END:
9735 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
9736 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-item-up][Find modifications in git logs]]
9738 : Move the item at point up, i.e. swap with previous item.
9739 : Sub-items (items with larger indentation) are considered part of
9740 : the item, so this really moves item trees.
9741 ** org-babel-load-in-session-maybe
9742    :PROPERTIES:
9743    :CUSTOM_ID: org-babel-load-in-session-maybe
9744    :END:
9746 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
9747 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-in-session-maybe][Find modifications in git logs]]
9749 : Conditionally load a source block in a session.
9750 : Detect if this is context for a org-babel src-block and if so
9751 : then run â€˜org-babel-load-in-session’.
9752 ** org-entities-create-table
9753    :PROPERTIES:
9754    :CUSTOM_ID: org-entities-create-table
9755    :END:
9757 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-entities.el][org-entities.el]]
9758 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-entities-create-table][Find modifications in git logs]]
9760 : Create an Org mode table with all entities.
9761 ** org-toggle-sticky-agenda =(&optional arg)=
9762    :PROPERTIES:
9763    :CUSTOM_ID: org-toggle-sticky-agenda
9764    :END:
9766 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
9767 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-sticky-agenda][Find modifications in git logs]]
9769 : Toggle â€˜org-agenda-sticky’.
9770 ** org-insert-columns-dblock
9771    :PROPERTIES:
9772    :CUSTOM_ID: org-insert-columns-dblock
9773    :END:
9775 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
9776 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-columns-dblock][Find modifications in git logs]]
9778 : Create a dynamic block capturing a column view table.
9779 ** org-man-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
9780    :PROPERTIES:
9781    :CUSTOM_ID: org-man-export-to-pdf
9782    :END:
9784 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
9785 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-export-to-pdf][Find modifications in git logs]]
9787 : Export current buffer to Groff then process through to PDF.
9789 : If narrowing is active in the current buffer, only export its
9790 : narrowed part.
9792 : If a region is active, export that region.
9794 : A non-nil optional argument ASYNC means the process should happen
9795 : asynchronously.  The resulting file should be accessible through
9796 : the â€˜org-export-stack’ interface.
9798 : When optional argument SUBTREEP is non-nil, export the sub-tree
9799 : at point, extracting information from the headline properties
9800 : first.
9802 : When optional argument VISIBLE-ONLY is non-nil, don’t export
9803 : contents of hidden elements.
9805 : When optional argument BODY-ONLY is non-nil, only write between
9806 : markers.
9808 : EXT-PLIST, when provided, is a property list with external
9809 : parameters overriding Org default settings, but still inferior to
9810 : file-local settings.
9812 : Return PDF file’s name.
9813 ** org-calendar-select-mouse =(ev)=
9814    :PROPERTIES:
9815    :CUSTOM_ID: org-calendar-select-mouse
9816    :END:
9818 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9819 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-select-mouse][Find modifications in git logs]]
9821 : Return to â€˜org-read-date’ with the date currently selected.
9822 : This is used by â€˜org-read-date’ in a temporary keymap for the calendar buffer.
9823 ** org-babel-previous-src-block =(&optional arg)=
9824    :PROPERTIES:
9825    :CUSTOM_ID: org-babel-previous-src-block
9826    :END:
9828 - *Access:* ~C-c C-v C-p, C-c C-v p~
9829 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
9830 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-previous-src-block][Find modifications in git logs]]
9832 : Jump to the previous source block.
9833 : With optional prefix argument ARG, jump backward ARG many source blocks.
9834 ** org-edit-headline =(&optional heading)=
9835    :PROPERTIES:
9836    :CUSTOM_ID: org-edit-headline
9837    :END:
9839 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9840 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-headline][Find modifications in git logs]]
9842 : Edit the current headline.
9843 : Set it to HEADING when provided.
9844 ** org-indent-region =(start end)=
9845    :PROPERTIES:
9846    :CUSTOM_ID: org-indent-region
9847    :END:
9849 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9850 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-region][Find modifications in git logs]]
9852 : Indent each non-blank line in the region.
9853 : Called from a program, START and END specify the region to
9854 : indent.  The function will not indent contents of example blocks,
9855 : verse blocks and export blocks as leading white spaces are
9856 : assumed to be significant there.
9857 ** org-paste-special =(arg)=
9858    :PROPERTIES:
9859    :CUSTOM_ID: org-paste-special
9860    :END:
9862 - *Access:* ~C-c C-x C-y, <menu-bar> <Org> <Edit Structure> <Paste Subtree>, <menu-bar> <Tbl> <Rectangle> <Paste Rectangle>~
9863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-paste-special][Find modifications in git logs]]
9866 : Paste rectangular region into table, or past subtree relative to level.
9867 : Calls â€˜org-table-paste-rectangle’ or â€˜org-paste-subtree’, depending on context.
9868 : See the individual commands for more information.
9869 ** org-toggle-fixed-width
9870    :PROPERTIES:
9871    :CUSTOM_ID: org-toggle-fixed-width
9872    :END:
9874 - *Access:* ~C-c :~
9875 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9876 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-fixed-width][Find modifications in git logs]]
9878 : Toggle fixed-width markup.
9880 : Add or remove fixed-width markup on current line, whenever it
9881 : makes sense.  Return an error otherwise.
9883 : If a region is active and if it contains only fixed-width areas
9884 : or blank lines, remove all fixed-width markup in it.  If the
9885 : region contains anything else, convert all non-fixed-width lines
9886 : to fixed-width ones.
9888 : Blank lines at the end of the region are ignored unless the
9889 : region only contains such lines.
9890 ** org-columns-show-value
9891    :PROPERTIES:
9892    :CUSTOM_ID: org-columns-show-value
9893    :END:
9895 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
9896 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-show-value][Find modifications in git logs]]
9898 : Show the full value of the property.
9899 ** org-metaright =(&optional _arg)=
9900    :PROPERTIES:
9901    :CUSTOM_ID: org-metaright
9902    :END:
9904 - *Access:* ~<M-right>, <menu-bar> <Org> <Edit Structure> <Demote Heading>, <menu-bar> <Tbl> <Column> <Move Column Right>~
9905 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
9906 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaright][Find modifications in git logs]]
9908 : Demote heading, list item at point or move table column right.
9910 : In front of a drawer or a block keyword, indent it correctly.
9912 : Calls â€˜org-do-demote’, â€˜org-indent-item’, â€˜org-table-move-column’,
9913 : â€˜org-indent-drawer’ or â€˜org-indent-block’ depending on context.
9914 : With no specific context, calls the Emacs default â€˜forward-word’.
9915 : See the individual commands for more information.
9917 : This function runs the hook â€˜org-metaright-hook’ as a first step,
9918 : and returns at first non-nil value.
9919 ** org-mouse-insert-heading
9920    :PROPERTIES:
9921    :CUSTOM_ID: org-mouse-insert-heading
9922    :END:
9924 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
9925 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-insert-heading][Find modifications in git logs]]
9927 : Insert a new heading, as â€˜org-insert-heading’.
9929 : If the point is at the :beginning (‘org-mouse-line-position’) of the line,
9930 : insert the new heading before the current line.  Otherwise, insert it
9931 : after the current heading.
9932 ** org-table-eval-formula =(&optional arg equation suppress-align suppress-const suppress-store suppress-analysis)=
9933    :PROPERTIES:
9934    :CUSTOM_ID: org-table-eval-formula
9935    :END:
9937 - *Access:* ~C-c =, <menu-bar> <Tbl> <Calculate> <Set Column Formula>~
9938 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
9939 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-eval-formula][Find modifications in git logs]]
9941 : Replace the table field value at the cursor by the result of a calculation.
9943 : In a table, this command replaces the value in the current field with the
9944 : result of a formula.  It also installs the formula as the "current" column
9945 : formula, by storing it in a special line below the table.  When called
9946 : with a â€˜C-u’ prefix the formula is installed as a field formula.
9948 : When called with a â€˜C-u C-u’ prefix, insert the active equation for the field
9949 : back into the current field, so that it can be edited there.  This is useful
9950 : in order to use â€˜C-c ?’ to check the referenced fields.
9952 : When called, the command first prompts for a formula, which is read in
9953 : the minibuffer.  Previously entered formulas are available through the
9954 : history list, and the last used formula is offered as a default.
9955 : These stored formulas are adapted correctly when moving, inserting, or
9956 : deleting columns with the corresponding commands.
9958 : The formula can be any algebraic expression understood by the Calc package.
9959 : For details, see the Org mode manual.
9961 : This function can also be called from Lisp programs and offers
9962 : additional arguments: EQUATION can be the formula to apply.  If this
9963 : argument is given, the user will not be prompted.
9965 : SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing
9966 : unnecessary aligns.
9968 : SUPPRESS-CONST suppresses the interpretation of constants in the
9969 : formula, assuming that this has been done already outside the
9970 : function.
9972 : SUPPRESS-STORE means the formula should not be stored, either
9973 : because it is already stored, or because it is a modified
9974 : equation that should not overwrite the stored one.
9976 : SUPPRESS-ANALYSIS prevents analyzing the table and checking
9977 : location of point.
9978 ** org-babel-remove-inline-result =(&optional datum)=
9979    :PROPERTIES:
9980    :CUSTOM_ID: org-babel-remove-inline-result
9981    :END:
9983 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
9984 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remove-inline-result][Find modifications in git logs]]
9986 : Remove the result of the current inline-src-block or babel call.
9987 : The result must be wrapped in a â€˜results’ macro to be removed.
9988 : Leading white space is trimmed.
9989 ** org-babel-tangle-clean
9990    :PROPERTIES:
9991    :CUSTOM_ID: org-babel-tangle-clean
9992    :END:
9994 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
9995 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-clean][Find modifications in git logs]]
9997 : Remove comments inserted by â€˜org-babel-tangle’.
9998 : Call this function inside of a source-code file generated by
9999 : â€˜org-babel-tangle’ to remove all comments inserted automatically
10000 : by â€˜org-babel-tangle’.  Warning, this comment removes any lines
10001 : containing constructs which resemble Org file links or noweb
10002 : references.
10003 ** org-table-copy-region =(beg end &optional cut)=
10004    :PROPERTIES:
10005    :CUSTOM_ID: org-table-copy-region
10006    :END:
10008 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10009 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-region][Find modifications in git logs]]
10011 : Copy rectangular region in table to clipboard.
10012 : A special clipboard is used which can only be accessed
10013 : with â€˜org-table-paste-rectangle’.
10014 ** org-set-effort =(&optional value increment)=
10015    :PROPERTIES:
10016    :CUSTOM_ID: org-set-effort
10017    :END:
10019 - *Access:* ~C-c C-x e~
10020 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10021 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-effort][Find modifications in git logs]]
10023 : Set the effort property of the current entry.
10024 : With numerical prefix arg, use the nth allowed value, 0 stands for the
10025 : 10th allowed value.
10027 : When INCREMENT is non-nil, set the property to the next allowed value.
10028 ** org-edit-table.el
10029    :PROPERTIES:
10030    :CUSTOM_ID: org-edit-table.el
10031    :END:
10033 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
10034 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-table.el][Find modifications in git logs]]
10036 : Edit "table.el" table at point.
10038 : A new buffer is created and the table is copied into it.  Then
10039 : the table is recognized with â€˜table-recognize’.  When done
10040 : editing, exit with â€˜C-c '’.  The edited text will then replace
10041 : the area in the Org mode buffer.
10043 : Throw an error when not at such a table.
10044 ** org-forward-heading-same-level =(arg &optional invisible-ok)=
10045    :PROPERTIES:
10046    :CUSTOM_ID: org-forward-heading-same-level
10047    :END:
10049 - *Access:* ~C-c C-f, <menu-bar> <Org> <Navigate Headings> <Next Same Level>~
10050 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10051 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-heading-same-level][Find modifications in git logs]]
10053 : Move forward to the ARG’th subheading at same level as this one.
10054 : Stop at the first and last subheadings of a superior heading.
10055 : Normally this only looks at visible headings, but when INVISIBLE-OK is
10056 : non-nil it will also look at invisible ones.
10057 ** org-lint--report-mode
10058    :PROPERTIES:
10059    :CUSTOM_ID: org-lint--report-mode
10060    :END:
10062 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
10063 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--report-mode][Find modifications in git logs]]
10065 : Major mode used to display reports emitted during linting.
10066 : key             binding
10067 : ---             -------
10069 : TAB .. C-j    org-lint--show-source
10070 : RET           org-lint--jump-to-source
10071 : ESC           Prefix Command
10072 : SPC           scroll-up-command
10073 : -             negative-argument
10074 : 0 .. 9                digit-argument
10075 : <             beginning-of-buffer
10076 : >             end-of-buffer
10077 : ?             describe-mode
10078 : S             tabulated-list-sort
10079 : g             revert-buffer
10080 : h             org-lint--hide-checker
10081 : i             org-lint--ignore-checker
10082 : n             next-line
10083 : p             previous-line
10084 : q             quit-window
10085 : DEL           scroll-down-command
10086 : S-SPC         scroll-down-command
10087 : <backtab>     backward-button
10088 : <follow-link> mouse-face
10089 : <mouse-2>     mouse-select-window
10090 : <remap>               Prefix Command
10092 : C-M-i         backward-button
10096 : In addition to any hooks its parent mode â€˜tabulated-list-mode’ might have run,
10097 : this mode runs the hook â€˜org-lint--report-mode-hook’, as the final or penultimate step
10098 : during initialization.
10099 ** org-mode-restart
10100    :PROPERTIES:
10101    :CUSTOM_ID: org-mode-restart
10102    :END:
10104 - *Access:* ~<menu-bar> <Org> <Refresh/Reload> <Refresh setup current buffer>~
10105 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10106 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode-restart][Find modifications in git logs]]
10109 ** org-agenda =(&optional arg org-keys restriction)=
10110    :PROPERTIES:
10111    :CUSTOM_ID: org-agenda
10112    :END:
10114 - *Access:* ~<menu-bar> <Org> <Agenda Command...>, C-c a~
10115 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10116 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda][Find modifications in git logs]]
10118 : Dispatch agenda commands to collect entries to the agenda buffer.
10119 : Prompts for a command to execute.  Any prefix arg will be passed
10120 : on to the selected command.  The default selections are:
10122 : a     Call â€˜org-agenda-list’ to display the agenda for current day or week.
10123 : t     Call â€˜org-todo-list’ to display the global todo list.
10124 : T     Call â€˜org-todo-list’ to display the global todo list, select only
10125 :       entries with a specific TODO keyword (the user gets a prompt).
10126 : m     Call â€˜org-tags-view’ to display headlines with tags matching
10127 :       a condition  (the user is prompted for the condition).
10128 : M     Like â€˜m’, but select only TODO entries, no ordinary headlines.
10129 : e     Export views to associated files.
10130 : s     Search entries for keywords.
10131 : S     Search entries for keywords, only with TODO keywords.
10132 : /     Multi occur across all agenda files and also files listed
10133 :       in â€˜org-agenda-text-search-extra-files’.
10134 : <     Restrict agenda commands to buffer, subtree, or region.
10135 :       Press several times to get the desired effect.
10136 : >     Remove a previous restriction.
10137 : #     List "stuck" projects.
10138 : !     Configure what "stuck" means.
10139 : C     Configure custom agenda commands.
10141 : More commands can be added by configuring the variable
10142 : â€˜org-agenda-custom-commands’.  In particular, specific tags and TODO keyword
10143 : searches can be pre-defined in this way.
10145 : If the current buffer is in Org mode and visiting a file, you can also
10146 : first press â€˜<’ once to indicate that the agenda should be temporarily
10147 : (until the next use of â€˜C-c a’) restricted to the current file.
10148 : Pressing â€˜<’ twice means to restrict to the current subtree or region
10149 : (if active).
10150 ** org-save-all-org-buffers
10151    :PROPERTIES:
10152    :CUSTOM_ID: org-save-all-org-buffers
10153    :END:
10155 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10156 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-save-all-org-buffers][Find modifications in git logs]]
10158 : Save all Org buffers without user confirmation.
10159 ** org-agenda-forward-block =(&optional backward)=
10160    :PROPERTIES:
10161    :CUSTOM_ID: org-agenda-forward-block
10162    :END:
10164 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10165 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-forward-block][Find modifications in git logs]]
10167 : Move forward by one agenda block.
10168 : When optional argument BACKWARD is set, go backward
10169 ** org-export-stack-refresh
10170    :PROPERTIES:
10171    :CUSTOM_ID: org-export-stack-refresh
10172    :END:
10174 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
10175 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-refresh][Find modifications in git logs]]
10177 : Refresh the export stack.
10178 ** orgstruct++-mode =(&optional arg)=
10179    :PROPERTIES:
10180    :CUSTOM_ID: orgstruct++-mode
10181    :END:
10183 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10184 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct++-mode][Find modifications in git logs]]
10186 : Toggle â€˜orgstruct-mode’, the enhanced version of it.
10187 : In addition to setting orgstruct-mode, this also exports all
10188 : indentation and autofilling variables from Org mode into the
10189 : buffer.  It will also recognize item context in multiline items.
10190 ** org-mobile-create-sumo-agenda
10191    :PROPERTIES:
10192    :CUSTOM_ID: org-mobile-create-sumo-agenda
10193    :END:
10195 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
10196 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-create-sumo-agenda][Find modifications in git logs]]
10198 : Create a file that contains all custom agenda views.
10199 ** org-mouse-down-mouse =(event)=
10200    :PROPERTIES:
10201    :CUSTOM_ID: org-mouse-down-mouse
10202    :END:
10204 - *Access:* ~<down-mouse-1>~
10205 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
10206 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-down-mouse][Find modifications in git logs]]
10209 ** org-move-subtree-down =(&optional arg)=
10210    :PROPERTIES:
10211    :CUSTOM_ID: org-move-subtree-down
10212    :END:
10214 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10215 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-subtree-down][Find modifications in git logs]]
10217 : Move the current subtree down past ARG headlines of the same level.
10218 ** org-update-radio-target-regexp
10219    :PROPERTIES:
10220    :CUSTOM_ID: org-update-radio-target-regexp
10221    :END:
10223 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10224 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-radio-target-regexp][Find modifications in git logs]]
10226 : Find all radio targets in this file and update the regular expression.
10227 : Also refresh fontification if needed.
10228 ** org-backward-heading-same-level =(arg &optional invisible-ok)=
10229    :PROPERTIES:
10230    :CUSTOM_ID: org-backward-heading-same-level
10231    :END:
10233 - *Access:* ~C-c C-b, <menu-bar> <Org> <Navigate Headings> <Previous Same Level>~
10234 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10235 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-heading-same-level][Find modifications in git logs]]
10237 : Move backward to the ARG’th subheading at same level as this one.
10238 : Stop at the first and last subheadings of a superior heading.
10239 ** org-capture-goto-target =(&optional template-key)=
10240    :PROPERTIES:
10241    :CUSTOM_ID: org-capture-goto-target
10242    :END:
10244 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
10245 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-goto-target][Find modifications in git logs]]
10247 : Go to the target location of a capture template.
10248 : The user is queried for the template.
10249 ** org-table-recalculate =(&optional all noalign)=
10250    :PROPERTIES:
10251    :CUSTOM_ID: org-table-recalculate
10252    :END:
10254 - *Access:* ~<menu-bar> <Tbl> <Calculate> <Recalculate line>~
10255 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10256 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-recalculate][Find modifications in git logs]]
10258 : Recalculate the current table line by applying all stored formulas.
10260 : With prefix arg ALL, do this for all lines in the table.
10262 : When called with a â€˜C-u C-u’ prefix, or if ALL is the symbol â€˜iterate’,
10263 : recompute the table until it no longer changes.
10265 : If NOALIGN is not nil, do not re-align the table after the computations
10266 : are done.  This is typically used internally to save time, if it is
10267 : known that the table will be realigned a little later anyway.
10268 ** org-ctags-get-filename-for-tag =(tag)=
10269    :PROPERTIES:
10270    :CUSTOM_ID: org-ctags-get-filename-for-tag
10271    :END:
10273 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
10274 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-get-filename-for-tag][Find modifications in git logs]]
10276 : TAG is a string.  Search the active TAGS file for a matching tag.
10277 : If the tag is found, return a list containing the filename, line number, and
10278 : buffer position where the tag is found.
10279 ** org-table-align
10280    :PROPERTIES:
10281    :CUSTOM_ID: org-table-align
10282    :END:
10284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-align][Find modifications in git logs]]
10287 : Align the table at point by aligning all vertical bars.
10288 ** org-clock-timestamps-down =(&optional n)=
10289    :PROPERTIES:
10290    :CUSTOM_ID: org-clock-timestamps-down
10291    :END:
10293 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
10294 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-timestamps-down][Find modifications in git logs]]
10296 : Increase CLOCK timestamps at cursor.
10297 : Optional argument N tells to change by that many units.
10298 ** org-agenda-clock-cancel =(&optional arg)=
10299    :PROPERTIES:
10300    :CUSTOM_ID: org-agenda-clock-cancel
10301    :END:
10303 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10304 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-cancel][Find modifications in git logs]]
10306 : Cancel the currently running clock.
10307 ** org-open-link-from-string =(s &optional arg reference-buffer)=
10308    :PROPERTIES:
10309    :CUSTOM_ID: org-open-link-from-string
10310    :END:
10312 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10313 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-link-from-string][Find modifications in git logs]]
10315 : Open a link in the string S, as if it was in Org mode.
10316 ** org-change-tag-in-region =(beg end tag off)=
10317    :PROPERTIES:
10318    :CUSTOM_ID: org-change-tag-in-region
10319    :END:
10321 - *Access:* ~<menu-bar> <Org> <TAGS and Properties> <Change tag in region>~
10322 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10323 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-change-tag-in-region][Find modifications in git logs]]
10325 : Add or remove TAG for each entry in the region.
10326 : This works in the agenda, and also in an Org buffer.
10327 ** org-export-insert-default-template =(&optional backend subtreep)=
10328    :PROPERTIES:
10329    :CUSTOM_ID: org-export-insert-default-template
10330    :END:
10332 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
10333 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-insert-default-template][Find modifications in git logs]]
10335 : Insert all export keywords with default values at beginning of line.
10337 : BACKEND is a symbol referring to the name of a registered export
10338 : back-end, for which specific export options should be added to
10339 : the template, or â€˜default’ for default template.  When it is nil,
10340 : the user will be prompted for a category.
10342 : If SUBTREEP is non-nil, export configuration will be set up
10343 : locally for the subtree through node properties.
10344 ** org-delete-property =(property)=
10345    :PROPERTIES:
10346    :CUSTOM_ID: org-delete-property
10347    :END:
10349 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10350 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-property][Find modifications in git logs]]
10352 : In the current entry, delete PROPERTY.
10353 ** org-require-autoloaded-modules
10354    :PROPERTIES:
10355    :CUSTOM_ID: org-require-autoloaded-modules
10356    :END:
10358 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10359 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-require-autoloaded-modules][Find modifications in git logs]]
10362 ** org-table-fedit-toggle-ref-type
10363    :PROPERTIES:
10364    :CUSTOM_ID: org-table-fedit-toggle-ref-type
10365    :END:
10367 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10368 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-toggle-ref-type][Find modifications in git logs]]
10370 : Convert all references in the buffer from B3 to @3$2 and back.
10371 ** org-agenda-todo =(&optional arg)=
10372    :PROPERTIES:
10373    :CUSTOM_ID: org-agenda-todo
10374    :END:
10376 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10377 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo][Find modifications in git logs]]
10379 : Cycle TODO state of line at point, also in Org file.
10380 : This changes the line at point, all other lines in the agenda referring to
10381 : the same tree node, and the headline of the tree node in the Org file.
10382 ** org-table-hline-and-move =(&optional same-column)=
10383    :PROPERTIES:
10384    :CUSTOM_ID: org-table-hline-and-move
10385    :END:
10387 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10388 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-hline-and-move][Find modifications in git logs]]
10390 : Insert a hline and move to the row below that line.
10391 ** org-babel-switch-to-session-with-code =(&optional arg _info)=
10392    :PROPERTIES:
10393    :CUSTOM_ID: org-babel-switch-to-session-with-code
10394    :END:
10396 - *Access:* ~C-c C-v z~
10397 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
10398 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-switch-to-session-with-code][Find modifications in git logs]]
10400 : Switch to code buffer and display session.
10401 ** org-table-insert-column
10402    :PROPERTIES:
10403    :CUSTOM_ID: org-table-insert-column
10404    :END:
10406 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10407 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-column][Find modifications in git logs]]
10409 : Insert a new column into the table.
10410 ** org-archive-subtree-default
10411    :PROPERTIES:
10412    :CUSTOM_ID: org-archive-subtree-default
10413    :END:
10415 - *Access:* ~C-c C-x C-a, <menu-bar> <Org> <Archive> <Archive (default method)>~
10416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
10417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree-default][Find modifications in git logs]]
10419 : Archive the current subtree with the default command.
10420 : This command is set with the variable â€˜org-archive-default-command’.
10421 ** org-id-goto =(id)=
10422    :PROPERTIES:
10423    :CUSTOM_ID: org-id-goto
10424    :END:
10426 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
10427 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-goto][Find modifications in git logs]]
10429 : Switch to the buffer containing the entry with id ID.
10430 : Move the cursor to that entry in that buffer.
10431 ** org-capture-import-remember-templates
10432    :PROPERTIES:
10433    :CUSTOM_ID: org-capture-import-remember-templates
10434    :END:
10436 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
10437 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-import-remember-templates][Find modifications in git logs]]
10439 : Set â€˜org-capture-templates’ to be similar to â€˜org-remember-templates’.
10440 ** org-columns-new =(&optional spec &rest attributes)=
10441    :PROPERTIES:
10442    :CUSTOM_ID: org-columns-new
10443    :END:
10445 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
10446 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-new][Find modifications in git logs]]
10448 : Insert a new column, to the left of the current column.
10449 : Interactively fill attributes for new column.  When column format
10450 : specification SPEC is provided, edit it instead.
10452 : When optional argument attributes can be a list of columns
10453 : specifications attributes to create the new column
10454 : non-interactively.  See â€˜org-columns-compile-format’ for
10455 : details.
10456 ** org-edit-inline-src-code
10457    :PROPERTIES:
10458    :CUSTOM_ID: org-edit-inline-src-code
10459    :END:
10461 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
10462 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-inline-src-code][Find modifications in git logs]]
10464 : Edit inline source code at point.
10465 ** org-list-send-list =(&optional maybe)=
10466    :PROPERTIES:
10467    :CUSTOM_ID: org-list-send-list
10468    :END:
10470 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
10471 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-send-list][Find modifications in git logs]]
10473 : Send a transformed version of this list to the receiver position.
10474 : With argument MAYBE, fail quietly if no transformation is defined
10475 : for this list.
10476 ** org-insert-last-stored-link =(arg)=
10477    :PROPERTIES:
10478    :CUSTOM_ID: org-insert-last-stored-link
10479    :END:
10481 - *Access:* ~C-c M-l~
10482 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10483 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-last-stored-link][Find modifications in git logs]]
10485 : Insert the last link stored in â€˜org-stored-links’.
10486 ** org-babel-mark-block
10487    :PROPERTIES:
10488    :CUSTOM_ID: org-babel-mark-block
10489    :END:
10491 - *Access:* ~C-c C-v C-M-h~
10492 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
10493 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-mark-block][Find modifications in git logs]]
10495 : Mark current src block.
10496 ** org-babel-describe-bindings
10497    :PROPERTIES:
10498    :CUSTOM_ID: org-babel-describe-bindings
10499    :END:
10501 - *Access:* ~C-c C-v h~
10502 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-keys.el][ob-keys.el]]
10503 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-describe-bindings][Find modifications in git logs]]
10505 : Describe all keybindings behind â€˜org-babel-key-prefix’.
10506 ** org-forward-sentence =(&optional _arg)=
10507    :PROPERTIES:
10508    :CUSTOM_ID: org-forward-sentence
10509    :END:
10511 - *Access:* ~M-e~
10512 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10513 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-sentence][Find modifications in git logs]]
10515 : Go to end of sentence, or end of table field.
10516 : This will call â€˜forward-sentence’ or â€˜org-table-end-of-field’,
10517 : depending on context.
10518 ** org-table-follow-field-mode =(&optional arg)=
10519    :PROPERTIES:
10520    :CUSTOM_ID: org-table-follow-field-mode
10521    :END:
10523 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10524 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-follow-field-mode][Find modifications in git logs]]
10526 : Minor mode to make the table field editor window follow the cursor.
10527 : When this mode is active, the field editor window will always show the
10528 : current field.  The mode exits automatically when the cursor leaves the
10529 : table (but see â€˜org-table-exit-follow-field-mode-when-leaving-table’).
10530 ** org-mark-ring-goto =(&optional n)=
10531    :PROPERTIES:
10532    :CUSTOM_ID: org-mark-ring-goto
10533    :END:
10535 - *Access:* ~C-c &~
10536 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10537 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-ring-goto][Find modifications in git logs]]
10539 : Jump to the previous position in the mark ring.
10540 : With prefix arg N, jump back that many stored positions.  When
10541 : called several times in succession, walk through the entire ring.
10542 : Org mode commands jumping to a different position in the current file,
10543 : or to another Org file, automatically push the old position onto the ring.
10544 ** org-table-iterate =(&optional arg)=
10545    :PROPERTIES:
10546    :CUSTOM_ID: org-table-iterate
10547    :END:
10549 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10550 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-iterate][Find modifications in git logs]]
10552 : Recalculate the table until it does not change anymore.
10553 : The maximum number of iterations is 10, but you can choose a different value
10554 : with the prefix ARG.
10555 ** org-agenda-week-view =(&optional iso-week)=
10556    :PROPERTIES:
10557    :CUSTOM_ID: org-agenda-week-view
10558    :END:
10560 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10561 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-week-view][Find modifications in git logs]]
10563 : Switch to weekly view for agenda.
10564 : With argument ISO-WEEK, switch to the corresponding ISO week.
10565 : If ISO-WEEK has more then 2 digits, only the last two encode
10566 : the week.  Any digits before this encode a year.  So 200712
10567 : means week 12 of year 2007.  Years ranging from 70 years ago
10568 : to 30 years in the future can also be written as 2-digit years.
10569 ** org-deadline =(arg &optional time)=
10570    :PROPERTIES:
10571    :CUSTOM_ID: org-deadline
10572    :END:
10574 - *Access:* ~C-c C-d, <menu-bar> <Org> <Dates and Scheduling> <Deadline>~
10575 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10576 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-deadline][Find modifications in git logs]]
10578 : Insert the "DEADLINE:" string with a timestamp to make a deadline.
10579 : With one universal prefix argument, remove any deadline from the item.
10580 : With two universal prefix arguments, prompt for a warning delay.
10581 : With argument TIME, set the deadline at the corresponding date.  TIME
10582 : can either be an Org date like "2011-07-24" or a delta like "+2d".
10583 ** org-priority =(&optional action _show)=
10584    :PROPERTIES:
10585    :CUSTOM_ID: org-priority
10586    :END:
10588 - *Access:* ~C-c ,, <menu-bar> <Org> <TODO Lists> <Set Priority>~
10589 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10590 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority][Find modifications in git logs]]
10592 : Change the priority of an item.
10593 : ACTION can be â€˜set’, â€˜up’, â€˜down’, or a character.
10594 ** org-agenda-file-to-front =(&optional to-end)=
10595    :PROPERTIES:
10596    :CUSTOM_ID: org-agenda-file-to-front
10597    :END:
10599 - *Access:* ~C-c [, <menu-bar> <Org> <File List for Agenda> <Add/Move Current File to Front of List>~
10600 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10601 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-file-to-front][Find modifications in git logs]]
10603 : Move/add the current file to the top of the agenda file list.
10604 : If the file is not present in the list, it is added to the front.  If it is
10605 : present, it is moved there.  With optional argument TO-END, add/move to the
10606 : end of the list.
10607 ** org-babel-expand-src-block-maybe
10608    :PROPERTIES:
10609    :CUSTOM_ID: org-babel-expand-src-block-maybe
10610    :END:
10612 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
10613 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-expand-src-block-maybe][Find modifications in git logs]]
10615 : Conditionally expand a source block.
10616 : Detect if this is context for a org-babel src-block and if so
10617 : then run â€˜org-babel-expand-src-block’.
10618 ** org-mouse-remove-match-and-spaces
10619    :PROPERTIES:
10620    :CUSTOM_ID: org-mouse-remove-match-and-spaces
10621    :END:
10623 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
10624 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-remove-match-and-spaces][Find modifications in git logs]]
10626 : Remove the match, make just one space around the point.
10627 ** org-comment-dwim =(_arg)=
10628    :PROPERTIES:
10629    :CUSTOM_ID: org-comment-dwim
10630    :END:
10632 - *Access:* ~M-;~
10633 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10634 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-comment-dwim][Find modifications in git logs]]
10636 : Call â€˜comment-dwim’ within a source edit buffer if needed.
10637 ** org-beamer-mode =(&optional arg)=
10638    :PROPERTIES:
10639    :CUSTOM_ID: org-beamer-mode
10640    :END:
10642 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
10643 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-mode][Find modifications in git logs]]
10645 : Support for editing Beamer oriented Org mode files.
10646 ** org-odt-export-as-odf-and-open
10647    :PROPERTIES:
10648    :CUSTOM_ID: org-odt-export-as-odf-and-open
10649    :END:
10651 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
10652 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-export-as-odf-and-open][Find modifications in git logs]]
10654 : Export LaTeX fragment as OpenDocument formula and immediately open it.
10655 : Use â€˜org-odt-export-as-odf’ to read LaTeX fragment and OpenDocument
10656 : formula file.
10657 ** org-archive-subtree =(&optional find-done)=
10658    :PROPERTIES:
10659    :CUSTOM_ID: org-archive-subtree
10660    :END:
10662 - *Access:* ~C-c $, C-c C-x C-s, <menu-bar> <Org> <Archive> <Move Subtree to Archive file>~
10663 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
10664 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree][Find modifications in git logs]]
10666 : Move the current subtree to the archive.
10667 : The archive can be a certain top-level heading in the current
10668 : file, or in a different file.  The tree will be moved to that
10669 : location, the subtree heading be marked DONE, and the current
10670 : time will be added.
10672 : When called with a single prefix argument FIND-DONE, find whole
10673 : trees without any open TODO items and archive them (after getting
10674 : confirmation from the user).  When called with a double prefix
10675 : argument, find whole trees with timestamps before today and
10676 : archive them (after getting confirmation from the user).  If the
10677 : cursor is not at a headline when these commands are called, try
10678 : all level 1 trees.  If the cursor is on a headline, only try the
10679 : direct children of this heading.
10680 ** org-capture-mode =(&optional arg)=
10681    :PROPERTIES:
10682    :CUSTOM_ID: org-capture-mode
10683    :END:
10685 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
10686 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-mode][Find modifications in git logs]]
10688 : Minor mode for special key bindings in a capture buffer.
10690 : Turning on this mode runs the normal hook â€˜org-capture-mode-hook’.
10691 ** org-table-edit-field =(arg)=
10692    :PROPERTIES:
10693    :CUSTOM_ID: org-table-edit-field
10694    :END:
10696 - *Access:* ~C-c `, <menu-bar> <Tbl> <Edit Field>~
10697 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10698 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-edit-field][Find modifications in git logs]]
10700 : Edit table field in a different window.
10701 : This is mainly useful for fields that contain hidden parts.
10703 : When called with a â€˜C-u’ prefix, just make the full field
10704 : visible so that it can be edited in place.
10706 : When called with a â€˜C-u C-u’ prefix, toggle â€˜org-table-follow-field-mode’.
10707 ** org-mouse-end-headline
10708    :PROPERTIES:
10709    :CUSTOM_ID: org-mouse-end-headline
10710    :END:
10712 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
10713 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-end-headline][Find modifications in git logs]]
10715 : Go to the end of current headline (ignoring tags).
10716 ** org-babel-exp-process-buffer
10717    :PROPERTIES:
10718    :CUSTOM_ID: org-babel-exp-process-buffer
10719    :END:
10721 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
10722 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-process-buffer][Find modifications in git logs]]
10724 : Execute all Babel blocks in current buffer.
10725 ** org-entities-help
10726    :PROPERTIES:
10727    :CUSTOM_ID: org-entities-help
10728    :END:
10730 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-entities.el][org-entities.el]]
10731 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-entities-help][Find modifications in git logs]]
10733 : Create a Help buffer with all available entities.
10734 ** org-first-sibling-p
10735    :PROPERTIES:
10736    :CUSTOM_ID: org-first-sibling-p
10737    :END:
10739 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10740 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-first-sibling-p][Find modifications in git logs]]
10742 : Is this heading the first child of its parents?
10743 ** org-activate-angle-links =(&rest ignore)=
10744    :PROPERTIES:
10745    :CUSTOM_ID: org-activate-angle-links
10746    :END:
10748 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
10749 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-activate-angle-links][Find modifications in git logs]]
10751 : Do nothing and return nil.
10752 : This function accepts any number of arguments, but ignores them.
10754 : (fn &rest IGNORE)
10755 ** org-open-at-mouse =(ev)=
10756    :PROPERTIES:
10757    :CUSTOM_ID: org-open-at-mouse
10758    :END:
10760 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10761 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-mouse][Find modifications in git logs]]
10763 : Open file link or URL at mouse.
10764 : See the docstring of â€˜org-open-file’ for details.
10765 ** org-check-dates-range =(start-date end-date)=
10766    :PROPERTIES:
10767    :CUSTOM_ID: org-check-dates-range
10768    :END:
10770 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10771 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-dates-range][Find modifications in git logs]]
10773 : Check for deadlines/scheduled entries between START-DATE and END-DATE.
10774 ** org-list-insert-radio-list
10775    :PROPERTIES:
10776    :CUSTOM_ID: org-list-insert-radio-list
10777    :END:
10779 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
10780 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-insert-radio-list][Find modifications in git logs]]
10782 : Insert a radio list template appropriate for this major mode.
10783 ** org-kill-note-or-show-branches
10784    :PROPERTIES:
10785    :CUSTOM_ID: org-kill-note-or-show-branches
10786    :END:
10788 - *Access:* ~C-c C-k~
10789 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10790 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-kill-note-or-show-branches][Find modifications in git logs]]
10792 : Abort storing current note, or call â€˜outline-show-branches’.
10793 ** org-outdent-item-tree
10794    :PROPERTIES:
10795    :CUSTOM_ID: org-outdent-item-tree
10796    :END:
10798 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
10799 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-outdent-item-tree][Find modifications in git logs]]
10801 : Outdent a local list item including its children.
10802 : If a region is active, all items inside will be moved.
10803 ** org-agenda-set-restriction-lock-from-agenda =(arg)=
10804    :PROPERTIES:
10805    :CUSTOM_ID: org-agenda-set-restriction-lock-from-agenda
10806    :END:
10808 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10809 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-restriction-lock-from-agenda][Find modifications in git logs]]
10811 : Set the restriction lock to the agenda item at point from within the agenda.
10812 : When called with a â€˜C-u’ prefix, restrict to
10813 : the file which contains the item.
10814 : Argument ARG is the prefix argument.
10815 ** org-attach-open =(&optional in-emacs)=
10816    :PROPERTIES:
10817    :CUSTOM_ID: org-attach-open
10818    :END:
10820 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
10821 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-open][Find modifications in git logs]]
10823 : Open an attachment of the current task.
10824 : If there are more than one attachment, you will be prompted for the file name.
10825 : This command will open the file using the settings in â€˜org-file-apps’
10826 : and in the system-specific variants of this variable.
10827 : If IN-EMACS is non-nil, force opening in Emacs.
10828 ** org-agenda-append-agenda
10829    :PROPERTIES:
10830    :CUSTOM_ID: org-agenda-append-agenda
10831    :END:
10833 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10834 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-append-agenda][Find modifications in git logs]]
10836 : Append another agenda view to the current one.
10837 : This function allows interactive building of block agendas.
10838 : Agenda views are separated by â€˜org-agenda-block-separator’.
10839 ** org-table-beginning-of-field =(&optional n)=
10840    :PROPERTIES:
10841    :CUSTOM_ID: org-table-beginning-of-field
10842    :END:
10844 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10845 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-beginning-of-field][Find modifications in git logs]]
10847 : Move to the beginning of the current table field.
10848 : If already at or before the beginning, move to the beginning of the
10849 : previous field.
10850 : With numeric argument N, move N-1 fields backward first.
10851 ** org-mobile-move-capture
10852    :PROPERTIES:
10853    :CUSTOM_ID: org-mobile-move-capture
10854    :END:
10856 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
10857 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-move-capture][Find modifications in git logs]]
10859 : Move the contents of the capture file to the inbox file.
10860 : Return a marker to the location where the new content has been added.
10861 : If nothing new has been added, return nil.
10862 ** org-lint =(&optional arg)=
10863    :PROPERTIES:
10864    :CUSTOM_ID: org-lint
10865    :END:
10867 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
10868 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint][Find modifications in git logs]]
10870 : Check current Org buffer for syntax mistakes.
10872 : By default, run all checkers.  With a â€˜C-u’ prefix ARG, select one
10873 : category of checkers only.  With a â€˜C-u C-u’ prefix, run one precise
10874 : checker by its name.
10876 : ARG can also be a list of checker names, as symbols, to run.
10877 ** org-latex-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
10878    :PROPERTIES:
10879    :CUSTOM_ID: org-latex-export-to-latex
10880    :END:
10882 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
10883 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-export-to-latex][Find modifications in git logs]]
10885 : Export current buffer to a LaTeX file.
10887 : If narrowing is active in the current buffer, only export its
10888 : narrowed part.
10890 : If a region is active, export that region.
10892 : A non-nil optional argument ASYNC means the process should happen
10893 : asynchronously.  The resulting file should be accessible through
10894 : the â€˜org-export-stack’ interface.
10896 : When optional argument SUBTREEP is non-nil, export the sub-tree
10897 : at point, extracting information from the headline properties
10898 : first.
10900 : When optional argument VISIBLE-ONLY is non-nil, don’t export
10901 : contents of hidden elements.
10903 : When optional argument BODY-ONLY is non-nil, only write code
10904 : between "\begin{document}" and "\end{document}".
10906 : EXT-PLIST, when provided, is a property list with external
10907 : parameters overriding Org default settings, but still inferior to
10908 : file-local settings.
10909 ** org-agenda-fortnight-view =(&optional iso-week)=
10910    :PROPERTIES:
10911    :CUSTOM_ID: org-agenda-fortnight-view
10912    :END:
10914 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
10915 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-fortnight-view][Find modifications in git logs]]
10917 : Switch to fortnightly view for agenda.
10918 : With argument ISO-WEEK, switch to the corresponding ISO week.
10919 : If ISO-WEEK has more then 2 digits, only the last two encode
10920 : the week.  Any digits before this encode a year.  So 200712
10921 : means week 12 of year 2007.  Years ranging from 70 years ago
10922 : to 30 years in the future can also be written as 2-digit years.
10923 ** org-todo-yesterday =(&optional arg)=
10924    :PROPERTIES:
10925    :CUSTOM_ID: org-todo-yesterday
10926    :END:
10928 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10929 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-yesterday][Find modifications in git logs]]
10931 : Like â€˜org-todo’ but the time of change will be 23:59 of yesterday.
10932 ** org-sort =(&optional with-case)=
10933    :PROPERTIES:
10934    :CUSTOM_ID: org-sort
10935    :END:
10937 - *Access:* ~C-c ^, <menu-bar> <Org> <Edit Structure> <Sort Region/Children>~
10938 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10939 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort][Find modifications in git logs]]
10941 : Call â€˜org-sort-entries’, â€˜org-table-sort-lines’ or â€˜org-sort-list’.
10942 : Optional argument WITH-CASE means sort case-sensitively.
10943 ** orgtbl-create-or-convert-from-region =(_arg)=
10944    :PROPERTIES:
10945    :CUSTOM_ID: orgtbl-create-or-convert-from-region
10946    :END:
10948 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
10949 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-create-or-convert-from-region][Find modifications in git logs]]
10951 : Create table or convert region to table, if no conflicting binding.
10952 : This installs the table binding â€˜C-c |’, but only if there is no
10953 : conflicting binding to this key outside orgtbl-mode.
10954 ** org-up-element
10955    :PROPERTIES:
10956    :CUSTOM_ID: org-up-element
10957    :END:
10959 - *Access:* ~C-c C-^~
10960 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
10961 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-up-element][Find modifications in git logs]]
10963 : Move to upper element.
10964 ** org-footnote-action =(&optional special)=
10965    :PROPERTIES:
10966    :CUSTOM_ID: org-footnote-action
10967    :END:
10969 - *Access:* ~C-c C-x f, <menu-bar> <Org> <Editing> <Footnote new/jump>~
10970 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
10971 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-action][Find modifications in git logs]]
10973 : Do the right thing for footnotes.
10975 : When at a footnote reference, jump to the definition.
10977 : When at a definition, jump to the references if they exist, offer
10978 : to create them otherwise.
10980 : When neither at definition or reference, create a new footnote,
10981 : interactively if possible.
10983 : With prefix arg SPECIAL, or when no footnote can be created,
10984 : offer additional commands in a menu.
10985 ** org-texinfo-convert-region-to-texinfo
10986    :PROPERTIES:
10987    :CUSTOM_ID: org-texinfo-convert-region-to-texinfo
10988    :END:
10990 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
10991 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-convert-region-to-texinfo][Find modifications in git logs]]
10993 : Assume the current region has Org syntax, and convert it to Texinfo.
10994 : This can be used in any buffer.  For example, you can write an
10995 : itemized list in Org syntax in an Texinfo buffer and use this
10996 : command to convert it.
10997 ** org-agenda-tree-to-indirect-buffer =(arg)=
10998    :PROPERTIES:
10999    :CUSTOM_ID: org-agenda-tree-to-indirect-buffer
11000    :END:
11002 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11003 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-tree-to-indirect-buffer][Find modifications in git logs]]
11005 : Show the subtree corresponding to the current entry in an indirect buffer.
11006 : This calls the command â€˜org-tree-to-indirect-buffer’ from the original buffer.
11008 : With a numerical prefix ARG, go up to this level and then take that tree.
11009 : With a negative numeric ARG, go up by this number of levels.
11011 : With a â€˜C-u’ prefix, make a separate frame for this tree, i.e. don’t use
11012 : the dedicated frame.
11013 ** org-edit-src-exit
11014    :PROPERTIES:
11015    :CUSTOM_ID: org-edit-src-exit
11016    :END:
11018 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
11019 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-exit][Find modifications in git logs]]
11021 : Kill current sub-editing buffer and return to source buffer.
11022 ** org-bibtex-create-in-current-entry =(&optional arg)=
11023    :PROPERTIES:
11024    :CUSTOM_ID: org-bibtex-create-in-current-entry
11025    :END:
11027 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
11028 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-create-in-current-entry][Find modifications in git logs]]
11030 : Add bibliographical data to the current entry.
11031 : With a prefix arg, query for optional fields.
11032 ** org-agenda-bulk-remove-overlays =(&optional beg end)=
11033    :PROPERTIES:
11034    :CUSTOM_ID: org-agenda-bulk-remove-overlays
11035    :END:
11037 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11038 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-remove-overlays][Find modifications in git logs]]
11040 : Remove the mark overlays between BEG and END in the agenda buffer.
11041 : BEG and END default to the buffer limits.
11043 : This only removes the overlays, it does not remove the markers
11044 : from the list in â€˜org-agenda-bulk-marked-entries’.
11045 ** org-mouse-yank-link =(click)=
11046    :PROPERTIES:
11047    :CUSTOM_ID: org-mouse-yank-link
11048    :END:
11050 - *Access:* ~<drag-mouse-3>, <S-mouse-2>~
11051 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
11052 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-yank-link][Find modifications in git logs]]
11055 ** org-metaleft =(&optional _arg)=
11056    :PROPERTIES:
11057    :CUSTOM_ID: org-metaleft
11058    :END:
11060 - *Access:* ~<M-left>, <menu-bar> <Org> <Edit Structure> <Promote Heading>, <menu-bar> <Tbl> <Column> <Move Column Left>~
11061 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11062 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaleft][Find modifications in git logs]]
11064 : Promote heading, list item at point or move table column left.
11066 : Calls â€˜org-do-promote’, â€˜org-outdent-item’ or â€˜org-table-move-column’,
11067 : depending on context.  With no specific context, calls the Emacs
11068 : default â€˜backward-word’.  See the individual commands for more
11069 : information.
11071 : This function runs the hook â€˜org-metaleft-hook’ as a first step,
11072 : and returns at first non-nil value.
11073 ** org-attach-new =(file)=
11074    :PROPERTIES:
11075    :CUSTOM_ID: org-attach-new
11076    :END:
11078 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
11079 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-new][Find modifications in git logs]]
11081 : Create a new attachment FILE for the current task.
11082 : The attachment is created as an Emacs buffer.
11083 ** org-tbl-menu =(event)=
11084    :PROPERTIES:
11085    :CUSTOM_ID: org-tbl-menu
11086    :END:
11088 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11089 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tbl-menu][Find modifications in git logs]]
11091 : Tbl menu
11092 ** org-agenda-filter-by-category =(strip)=
11093    :PROPERTIES:
11094    :CUSTOM_ID: org-agenda-filter-by-category
11095    :END:
11097 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11098 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-category][Find modifications in git logs]]
11100 : Filter lines in the agenda buffer that have a specific category.
11101 : The category is that of the current line.
11102 : Without prefix argument, keep only the lines of that category.
11103 : With a prefix argument, exclude the lines of that category.
11105 ** org-indent-drawer
11106    :PROPERTIES:
11107    :CUSTOM_ID: org-indent-drawer
11108    :END:
11110 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11111 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-drawer][Find modifications in git logs]]
11113 : Indent the drawer at point.
11114 ** org-agenda-filter-by-tag =(arg &optional char exclude)=
11115    :PROPERTIES:
11116    :CUSTOM_ID: org-agenda-filter-by-tag
11117    :END:
11119 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11120 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-tag][Find modifications in git logs]]
11122 : Keep only those lines in the agenda buffer that have a specific tag.
11124 : The tag is selected with its fast selection letter, as configured.
11126 : With a â€˜C-u’ prefix, exclude the agenda search.
11128 : With a â€˜C-u C-u’ prefix, filter the literal tag, i.e. don’t
11129 : filter on all its group members.
11131 : A lisp caller can specify CHAR.  EXCLUDE means that the new tag
11132 : should be used to exclude the search - the interactive user can
11133 : also press â€˜-’ or â€˜+’ to switch between filtering and excluding.
11134 ** org-babel-execute-buffer =(&optional arg)=
11135    :PROPERTIES:
11136    :CUSTOM_ID: org-babel-execute-buffer
11137    :END:
11139 - *Access:* ~C-c C-v b, C-c C-v C-b~
11140 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
11141 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-buffer][Find modifications in git logs]]
11143 : Execute source code blocks in a buffer.
11144 : Call â€˜org-babel-execute-src-block’ on every source block in
11145 : the current buffer.
11146 ** org-table-toggle-coordinate-overlays
11147    :PROPERTIES:
11148    :CUSTOM_ID: org-table-toggle-coordinate-overlays
11149    :END:
11151 - *Access:* ~C-c }, <menu-bar> <Tbl> <Show Col/Row Numbers>~
11152 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
11153 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-toggle-coordinate-overlays][Find modifications in git logs]]
11155 : Toggle the display of Row/Column numbers in tables.
11156 ** org-agenda-follow-mode
11157    :PROPERTIES:
11158    :CUSTOM_ID: org-agenda-follow-mode
11159    :END:
11161 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11162 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-follow-mode][Find modifications in git logs]]
11164 : Toggle follow mode in an agenda buffer.
11165 ** org-html-export-to-html =(&optional async subtreep visible-only body-only ext-plist)=
11166    :PROPERTIES:
11167    :CUSTOM_ID: org-html-export-to-html
11168    :END:
11170 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
11171 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-export-to-html][Find modifications in git logs]]
11173 : Export current buffer to a HTML file.
11175 : If narrowing is active in the current buffer, only export its
11176 : narrowed part.
11178 : If a region is active, export that region.
11180 : A non-nil optional argument ASYNC means the process should happen
11181 : asynchronously.  The resulting file should be accessible through
11182 : the â€˜org-export-stack’ interface.
11184 : When optional argument SUBTREEP is non-nil, export the sub-tree
11185 : at point, extracting information from the headline properties
11186 : first.
11188 : When optional argument VISIBLE-ONLY is non-nil, don’t export
11189 : contents of hidden elements.
11191 : When optional argument BODY-ONLY is non-nil, only write code
11192 : between "<body>" and "</body>" tags.
11194 : EXT-PLIST, when provided, is a property list with external
11195 : parameters overriding Org default settings, but still inferior to
11196 : file-local settings.
11198 : Return output file’s name.
11199 ** org-metadown =(&optional _arg)=
11200    :PROPERTIES:
11201    :CUSTOM_ID: org-metadown
11202    :END:
11204 - *Access:* ~<M-down>, <menu-bar> <Org> <Edit Structure> <Move Subtree Down>, <menu-bar> <Tbl> <Row> <Move Row Down>~
11205 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11206 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metadown][Find modifications in git logs]]
11208 : Move subtree down or move table row down.
11209 : Calls â€˜org-move-subtree-down’ or â€˜org-table-move-row’ or
11210 : â€˜org-move-item-down’, depending on context.  See the individual
11211 : commands for more information.
11212 ** org-agenda-clock-out
11213    :PROPERTIES:
11214    :CUSTOM_ID: org-agenda-clock-out
11215    :END:
11217 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11218 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-out][Find modifications in git logs]]
11220 : Stop the currently running clock.
11221 ** org-get-tags-at =(&optional pos local)=
11222    :PROPERTIES:
11223    :CUSTOM_ID: org-get-tags-at
11224    :END:
11226 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11227 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-get-tags-at][Find modifications in git logs]]
11229 : Get a list of all headline tags applicable at POS.
11230 : POS defaults to point.  If tags are inherited, the list contains
11231 : the targets in the same sequence as the headlines appear, i.e.
11232 : the tags of the current headline come last.
11233 : When LOCAL is non-nil, only return tags from the current headline,
11234 : ignore inherited ones.
11235 ** org-agenda-do-date-later =(arg)=
11236    :PROPERTIES:
11237    :CUSTOM_ID: org-agenda-do-date-later
11238    :END:
11240 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11241 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-do-date-later][Find modifications in git logs]]
11244 ** org-inlinetask-demote
11245    :PROPERTIES:
11246    :CUSTOM_ID: org-inlinetask-demote
11247    :END:
11249 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
11250 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-demote][Find modifications in git logs]]
11252 : Demote the inline task at point.
11253 : If the task has an end part, also demote it.
11254 ** org-cdlatex-environment-indent =(&optional environment item)=
11255    :PROPERTIES:
11256    :CUSTOM_ID: org-cdlatex-environment-indent
11257    :END:
11259 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11260 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-environment-indent][Find modifications in git logs]]
11262 : Execute â€˜cdlatex-environment’ and indent the inserted environment.
11264 : ENVIRONMENT and ITEM are passed to â€˜cdlatex-environment’.
11266 : The inserted environment is indented to current indentation
11267 : unless point is at the beginning of the line, in which the
11268 : environment remains unintended.
11269 ** org-reload =(&optional uncompiled)=
11270    :PROPERTIES:
11271    :CUSTOM_ID: org-reload
11272    :END:
11274 - *Access:* ~C-c C-x !, <menu-bar> <Org> <Refresh/Reload> <Reload Org (after update)>~
11275 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11276 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reload][Find modifications in git logs]]
11278 : Reload all org lisp files.
11279 : With prefix arg UNCOMPILED, load the uncompiled versions.
11280 ** org-insert-heading-after-current
11281    :PROPERTIES:
11282    :CUSTOM_ID: org-insert-heading-after-current
11283    :END:
11285 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11286 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-after-current][Find modifications in git logs]]
11288 : Insert a new heading with same level as current, after current subtree.
11289 ** org-agenda-exit
11290    :PROPERTIES:
11291    :CUSTOM_ID: org-agenda-exit
11292    :END:
11294 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11295 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-exit][Find modifications in git logs]]
11297 : Exit the agenda, killing Org buffers loaded by the agenda.
11298 : Like â€˜org-agenda-Quit’, but kill any buffers that were created by
11299 : the agenda.  Org buffers visited directly by the user will not be
11300 : touched.  Also, exit the agenda even if it is in column view.
11301 ** org-babel-pop-to-session =(&optional arg info)=
11302    :PROPERTIES:
11303    :CUSTOM_ID: org-babel-pop-to-session
11304    :END:
11306 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
11307 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-pop-to-session][Find modifications in git logs]]
11309 : Switch to the session of the current code block.
11310 : Uses â€˜org-babel-initiate-session’ to start the session.  If called
11311 : with a prefix argument then this is passed on to
11312 : â€˜org-babel-initiate-session’.
11313 ** org-align-all-tags
11314    :PROPERTIES:
11315    :CUSTOM_ID: org-align-all-tags
11316    :END:
11318 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11319 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-align-all-tags][Find modifications in git logs]]
11321 : Align the tags in all headings.
11322 ** org-insert-all-links =(arg &optional pre post)=
11323    :PROPERTIES:
11324    :CUSTOM_ID: org-insert-all-links
11325    :END:
11327 - *Access:* ~C-c C-M-l~
11328 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11329 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-all-links][Find modifications in git logs]]
11331 : Insert all links in â€˜org-stored-links’.
11332 : When a universal prefix, do not delete the links from â€˜org-stored-links’.
11333 : When â€˜ARG’ is a number, insert the last N link(s).
11334 : â€˜PRE’ and â€˜POST’ are optional arguments to define a string to
11335 : prepend or to append.
11336 ** org-clone-subtree-with-time-shift =(n &optional shift)=
11337    :PROPERTIES:
11338    :CUSTOM_ID: org-clone-subtree-with-time-shift
11339    :END:
11341 - *Access:* ~C-c C-x c, <menu-bar> <Org> <Edit Structure> <Clone subtree, shift time>~
11342 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11343 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clone-subtree-with-time-shift][Find modifications in git logs]]
11345 : Clone the task (subtree) at point N times.
11346 : The clones will be inserted as siblings.
11348 : In interactive use, the user will be prompted for the number of
11349 : clones to be produced.  If the entry has a timestamp, the user
11350 : will also be prompted for a time shift, which may be a repeater
11351 : as used in time stamps, for example â€˜+3d’.  To disable this,
11352 : you can call the function with a universal prefix argument.
11354 : When a valid repeater is given and the entry contains any time
11355 : stamps, the clones will become a sequence in time, with time
11356 : stamps in the subtree shifted for each clone produced.  If SHIFT
11357 : is nil or the empty string, time stamps will be left alone.  The
11358 : ID property of the original subtree is removed.
11360 : In each clone, all the CLOCK entries will be removed.  This
11361 : prevents Org from considering that the clocked times overlap.
11363 : If the original subtree did contain time stamps with a repeater,
11364 : the following will happen:
11365 : - the repeater will be removed in each clone
11366 : - an additional clone will be produced, with the current, unshifted
11367 :   date(s) in the entry.
11368 : - the original entry will be placed *after* all the clones, with
11369 :   repeater intact.
11370 : - the start days in the repeater in the original entry will be shifted
11371 :   to past the last clone.
11372 : In this way you can spell out a number of instances of a repeating task,
11373 : and still retain the repeater to cover future instances of the task.
11375 : As described above, N+1 clones are produced when the original
11376 : subtree has a repeater.  Setting N to 0, then, can be used to
11377 : remove the repeater from a subtree and create a shifted clone
11378 : with the original repeater.
11379 ** org-narrow-to-block
11380    :PROPERTIES:
11381    :CUSTOM_ID: org-narrow-to-block
11382    :END:
11384 - *Access:* ~C-x n b~
11385 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11386 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-block][Find modifications in git logs]]
11388 : Narrow buffer to the current block.
11389 ** org-columns-get-format =(&optional fmt-string)=
11390    :PROPERTIES:
11391    :CUSTOM_ID: org-columns-get-format
11392    :END:
11394 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
11395 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-get-format][Find modifications in git logs]]
11397 : Return columns format specifications.
11398 : When optional argument FMT-STRING is non-nil, use it as the
11399 : current specifications.  This function also sets
11400 : â€˜org-columns-current-fmt-compiled’ and
11401 : â€˜org-columns-current-fmt’.
11402 ** org-agenda-mode
11403    :PROPERTIES:
11404    :CUSTOM_ID: org-agenda-mode
11405    :END:
11407 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11408 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-mode][Find modifications in git logs]]
11410 : Mode for time-sorted view on action items in Org files.
11412 : The following commands are available:
11414 : key             binding
11415 : ---             -------
11417 : C-c           Prefix Command
11418 : TAB           org-agenda-goto
11419 : C-k           org-agenda-kill
11420 : RET           org-agenda-switch-to
11421 : C-n           org-agenda-next-line
11422 : C-p           org-agenda-previous-line
11423 : C-x           Prefix Command
11424 : ESC           Prefix Command
11425 : C-_           org-agenda-undo
11426 : SPC           org-agenda-show-and-scroll-up
11427 : !             org-agenda-toggle-deadlines
11428 : #             org-agenda-dim-blocked-tasks
11429 : $             org-agenda-archive
11430 : %             org-agenda-bulk-mark-regexp
11431 : *             org-agenda-bulk-mark-all
11432 : +             org-agenda-priority-up
11433 : ,             org-agenda-priority
11434 : -             org-agenda-priority-down
11435 : .             org-agenda-goto-today
11436 : /             org-agenda-filter-by-tag
11437 : 0 .. 9                digit-argument
11438 : :             org-agenda-set-tags
11439 : ;             org-timer-set-timer
11440 : <             org-agenda-filter-by-category
11441 : =             org-agenda-filter-by-regexp
11442 : >             org-agenda-date-prompt
11443 : ?             org-agenda-show-the-flagging-note
11444 : A             org-agenda-append-agenda
11445 : B             org-agenda-bulk-action
11446 : C             org-agenda-convert-date
11447 : D             org-agenda-toggle-diary
11448 : E             org-agenda-entry-text-mode
11449 : F             org-agenda-follow-mode
11450 : G             org-agenda-toggle-time-grid
11451 : H             org-agenda-holidays
11452 : I             org-agenda-clock-in
11453 : J             org-agenda-clock-goto
11454 : K             org-habit-toggle-habits
11455 : L             org-agenda-recenter
11456 : M             org-agenda-phases-of-moon
11457 : N             org-agenda-next-item
11458 : O             org-agenda-clock-out
11459 : P             org-agenda-previous-item
11460 : Q             org-agenda-Quit
11461 : R             org-agenda-clockreport-mode
11462 : S             org-agenda-sunrise-sunset
11463 : T             org-agenda-show-tags
11464 : U             org-agenda-bulk-unmark-all
11465 : X             org-agenda-clock-cancel
11466 : [             org-agenda-manipulate-query-add
11467 : ]             org-agenda-manipulate-query-subtract
11468 : ^             org-agenda-filter-by-top-headline
11469 : _             org-agenda-filter-by-effort
11470 : a             org-agenda-archive-default-with-confirmation
11471 : b             org-agenda-earlier
11472 : c             org-agenda-goto-calendar
11473 : d             org-agenda-day-view
11474 : e             org-agenda-set-effort
11475 : f             org-agenda-later
11476 : g             org-agenda-redo-all
11477 : h             org-agenda-holidays
11478 : i             org-agenda-diary-entry
11479 : j             org-agenda-goto-date
11480 : k             org-agenda-capture
11481 : l             org-agenda-log-mode
11482 : m             org-agenda-bulk-mark
11483 : n             org-agenda-next-line
11484 : o             delete-other-windows
11485 : p             org-agenda-previous-line
11486 : q             org-agenda-quit
11487 : r             org-agenda-redo
11488 : s             org-save-all-org-buffers
11489 : t             org-agenda-todo
11490 : u             org-agenda-bulk-unmark
11491 : v             org-agenda-view-mode-dispatch
11492 : w             org-agenda-week-view
11493 : x             org-agenda-exit
11494 : y             org-agenda-year-view
11495 : z             org-agenda-add-note
11496 : {             org-agenda-manipulate-query-add-re
11497 : |             org-agenda-filter-remove-all
11498 : }             org-agenda-manipulate-query-subtract-re
11499 : ~             org-agenda-limit-interactively
11500 : DEL           org-agenda-show-scroll-down
11501 : C-/           org-agenda-undo
11502 : <C-S-left>    org-agenda-todo-previousset
11503 : <C-S-right>   org-agenda-todo-nextset
11504 : <M-down>      org-agenda-drag-line-forward
11505 : <M-up>                org-agenda-drag-line-backward
11506 : <S-down>      org-agenda-priority-down
11507 : <S-left>      org-agenda-do-date-earlier
11508 : <S-right>     org-agenda-do-date-later
11509 : <S-up>                org-agenda-priority-up
11510 : <backspace>   org-agenda-show-scroll-down
11511 : <down>                org-agenda-next-line
11512 : <mouse-2>     org-agenda-goto-mouse
11513 : <mouse-3>     org-agenda-show-mouse
11514 : <remap>               Prefix Command
11515 : <tab>         org-agenda-goto
11516 : <undo>                org-agenda-undo
11517 : <up>          org-agenda-previous-line
11519 : <remap> <backward-paragraph>  org-agenda-backward-block
11520 : <remap> <forward-paragraph>   org-agenda-forward-block
11522 : M-*           org-agenda-bulk-toggle-all
11523 : M-m           org-agenda-bulk-toggle
11525 : C-c C-a               org-attach
11526 : C-c C-d               org-agenda-deadline
11527 : C-c C-n               org-agenda-next-date-line
11528 : C-c C-o               org-agenda-open-link
11529 : C-c C-p               org-agenda-previous-date-line
11530 : C-c C-q               org-agenda-set-tags
11531 : C-c C-s               org-agenda-schedule
11532 : C-c C-t               org-agenda-todo
11533 : C-c C-w               org-agenda-refile
11534 : C-c C-x               Prefix Command
11535 : C-c C-z               org-agenda-add-note
11536 : C-c $         org-agenda-archive
11537 : C-c ,         org-agenda-priority
11539 : C-x C-s               org-save-all-org-buffers
11540 : C-x C-w               org-agenda-write
11541 : C-x u         org-agenda-undo
11543 : C-c C-x C-a   org-agenda-archive-default
11544 : C-c C-x C-c   org-agenda-columns
11545 : C-c C-x C-e   org-clock-modify-effort-estimate
11546 : C-c C-x TAB   org-agenda-clock-in
11547 : C-c C-x C-j   org-clock-goto
11548 : C-c C-x RET   Prefix Command
11549 : C-c C-x C-o   org-agenda-clock-out
11550 : C-c C-x C-s   org-agenda-archive
11551 : C-c C-x C-x   org-agenda-clock-cancel
11552 : C-c C-x !     org-reload
11553 : C-c C-x <     org-agenda-set-restriction-lock-from-agenda
11554 : C-c C-x >     org-agenda-remove-restriction-lock
11555 : C-c C-x A     org-agenda-archive-to-archive-sibling
11556 : C-c C-x a     org-agenda-toggle-archive-tag
11557 : C-c C-x b     org-agenda-tree-to-indirect-buffer
11558 : C-c C-x e     org-agenda-set-effort
11559 : C-c C-x p     org-agenda-set-property
11560 : C-c C-x <down>        org-agenda-priority-down
11561 : C-c C-x <left>        org-agenda-do-date-earlier
11562 : C-c C-x <right>                       org-agenda-do-date-later
11563 : C-c C-x <up>                  org-agenda-priority-up
11565 : C-c C-x RET g org-mobile-pull
11566 : C-c C-x RET p org-mobile-push
11569 ** org-cycle =(&optional arg)=
11570    :PROPERTIES:
11571    :CUSTOM_ID: org-cycle
11572    :END:
11574 - *Access:* ~<tab>, TAB, <menu-bar> <Tbl> <Next Field>, <menu-bar> <Org> <Show/Hide> <Cycle Visibility>~
11575 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11576 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle][Find modifications in git logs]]
11578 : TAB-action and visibility cycling for Org mode.
11580 : This is the command invoked in Org mode by the â€˜TAB’ key.  Its main
11581 : purpose is outline visibility cycling, but it also invokes other actions
11582 : in special contexts.
11584 : When this function is called with a â€˜C-u’ prefix, rotate the entire
11585 : buffer through 3 states (global cycling)
11586 :   1. OVERVIEW: Show only top-level headlines.
11587 :   2. CONTENTS: Show all headlines of all levels, but no body text.
11588 :   3. SHOW ALL: Show everything.
11590 : With a â€˜C-u C-u’ prefix argument, switch to the startup visibility,
11591 : determined by the variable â€˜org-startup-folded’, and by any VISIBILITY
11592 : properties in the buffer.
11594 : With a â€˜C-u C-u C-u’ prefix argument, show the entire buffer, including
11595 : any drawers.
11597 : When inside a table, re-align the table and move to the next field.
11599 : When point is at the beginning of a headline, rotate the subtree started
11600 : by this line through 3 different states (local cycling)
11601 :   1. FOLDED:   Only the main headline is shown.
11602 :   2. CHILDREN: The main headline and the direct children are shown.
11603 :                From this state, you can move to one of the children
11604 :                and zoom in further.
11605 :   3. SUBTREE:  Show the entire subtree, including body text.
11606 : If there is no subtree, switch directly from CHILDREN to FOLDED.
11608 : When point is at the beginning of an empty headline and the variable
11609 : â€˜org-cycle-level-after-item/entry-creation’ is set, cycle the level
11610 : of the headline by demoting and promoting it to likely levels.  This
11611 : speeds up creation document structure by pressing â€˜TAB’ once or several
11612 : times right after creating a new headline.
11614 : When there is a numeric prefix, go up to a heading with level ARG, do
11615 : a â€˜show-subtree’ and return to the previous cursor position.  If ARG
11616 : is negative, go up that many levels.
11618 : When point is not at the beginning of a headline, execute the global
11619 : binding for â€˜TAB’, which is re-indenting the line.  See the option
11620 : â€˜org-cycle-emulate-tab’ for details.
11622 : As a special case, if point is at the beginning of the buffer and there is
11623 : no headline in line 1, this function will act as if called with prefix arg
11624 : (‘C-u TAB’, same as â€˜S-TAB’) also when called without prefix arg, but only
11625 : if the variable â€˜org-cycle-global-at-bob’ is t.
11626 ** org-dblock-write:amazon =(params)=
11627    :PROPERTIES:
11628    :CUSTOM_ID: org-dblock-write:amazon
11629    :END:
11631 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/emacs.el][emacs.el]]
11632 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-dblock-write:amazon][Find modifications in git logs]]
11634 : Dynamic block for inserting the cover of a book.
11635 ** org-set-visibility-according-to-property =(&optional no-cleanup)=
11636    :PROPERTIES:
11637    :CUSTOM_ID: org-set-visibility-according-to-property
11638    :END:
11640 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11641 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-visibility-according-to-property][Find modifications in git logs]]
11643 : Switch subtree visibilities according to :VISIBILITY: property.
11644 ** org-ctags-visit-buffer-or-file =(name &optional create)=
11645    :PROPERTIES:
11646    :CUSTOM_ID: org-ctags-visit-buffer-or-file
11647    :END:
11649 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
11650 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-visit-buffer-or-file][Find modifications in git logs]]
11652 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
11653 : Visit buffer named â€˜NAME.org’.  If there is no such buffer, visit the file
11654 : with the same name if it exists.  If the file does not exist, then behavior
11655 : depends on the value of CREATE.
11657 : If CREATE is nil (default), then return nil.  Do not create a new file.
11658 : If CREATE is t, create the new file and visit it.
11659 : If CREATE is the symbol â€˜ask’, then ask the user if they wish to create
11660 : the new file.
11661 ** org-table-fedit-toggle-coordinates
11662    :PROPERTIES:
11663    :CUSTOM_ID: org-table-fedit-toggle-coordinates
11664    :END:
11666 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
11667 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-toggle-coordinates][Find modifications in git logs]]
11669 : Toggle the display of coordinates in the referenced table.
11670 ** org-ctags-find-tag-interactive
11671    :PROPERTIES:
11672    :CUSTOM_ID: org-ctags-find-tag-interactive
11673    :END:
11675 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
11676 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-find-tag-interactive][Find modifications in git logs]]
11678 : Prompt for the name of a tag, with autocompletion, then visit the named tag.
11679 : Uses â€˜ido-mode’ if available.
11680 : If the user enters a string that does not match an existing tag, create
11681 : a new topic.
11682 ** org-src-mode =(&optional arg)=
11683    :PROPERTIES:
11684    :CUSTOM_ID: org-src-mode
11685    :END:
11687 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
11688 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-mode][Find modifications in git logs]]
11690 : Minor mode for language major mode buffers generated by Org.
11692 : This minor mode is turned on in two situations:
11693 :   - when editing a source code snippet with â€˜C-c '’
11694 :   - when formatting a source code snippet for export with htmlize.
11696 : key             binding
11697 : ---             -------
11699 : C-c           Prefix Command
11700 : C-x           Prefix Command
11702 : C-x C-s               org-edit-src-save
11704 : C-c C-k               org-edit-src-abort
11705 : C-c '         org-edit-src-exit
11709 : See also â€˜org-src-mode-hook’.
11710 ** org-agenda-schedule =(arg &optional time)=
11711    :PROPERTIES:
11712    :CUSTOM_ID: org-agenda-schedule
11713    :END:
11715 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11716 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-schedule][Find modifications in git logs]]
11718 : Schedule the item at point.
11719 : ARG is passed through to â€˜org-schedule’.
11720 ** org-table-show-reference =(&optional local)=
11721    :PROPERTIES:
11722    :CUSTOM_ID: org-table-show-reference
11723    :END:
11725 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
11726 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-show-reference][Find modifications in git logs]]
11728 : Show the location/value of the $ expression at point.
11729 : When LOCAL is non-nil, show references for the table at point.
11730 ** org-ctrl-c-ctrl-c =(&optional arg)=
11731    :PROPERTIES:
11732    :CUSTOM_ID: org-ctrl-c-ctrl-c
11733    :END:
11735 - *Access:* ~C-c C-c, <menu-bar> <Tbl> <Align>~
11736 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11737 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ctrl-c][Find modifications in git logs]]
11739 : Set tags in headline, or update according to changed information at point.
11741 : This command does many different things, depending on context:
11743 : - If a function in â€˜org-ctrl-c-ctrl-c-hook’ recognizes this location,
11744 :   this is what we do.
11746 : - If the cursor is on a statistics cookie, update it.
11748 : - If the cursor is in a headline, prompt for tags and insert them
11749 :   into the current line, aligned to â€˜org-tags-column’.  When called
11750 :   with prefix arg, realign all tags in the current buffer.
11752 : - If the cursor is in one of the special #+KEYWORD lines, this
11753 :   triggers scanning the buffer for these lines and updating the
11754 :   information.
11756 : - If the cursor is inside a table, realign the table.  This command
11757 :   works even if the automatic table editor has been turned off.
11759 : - If the cursor is on a #+TBLFM line, re-apply the formulas to
11760 :   the entire table.
11762 : - If the cursor is at a footnote reference or definition, jump to
11763 :   the corresponding definition or references, respectively.
11765 : - If the cursor is a the beginning of a dynamic block, update it.
11767 : - If the current buffer is a capture buffer, close note and file it.
11769 : - If the cursor is on a <<<target>>>, update radio targets and
11770 :   corresponding links in this buffer.
11772 : - If the cursor is on a numbered item in a plain list, renumber the
11773 :   ordered list.
11775 : - If the cursor is on a checkbox, toggle it.
11777 : - If the cursor is on a code block, evaluate it.  The variable
11778 :   â€˜org-confirm-babel-evaluate’ can be used to control prompting
11779 :   before code block evaluation, by default every code block
11780 :   evaluation requires confirmation.  Code block evaluation can be
11781 :   inhibited by setting â€˜org-babel-no-eval-on-ctrl-c-ctrl-c’.
11782 ** org-babel-processing-view-sketch
11783    :PROPERTIES:
11784    :CUSTOM_ID: org-babel-processing-view-sketch
11785    :END:
11787 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-processing.el][ob-processing.el]]
11788 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-processing-view-sketch][Find modifications in git logs]]
11790 : Show the sketch of the Processing block under point in an external viewer.
11791 ** org-clock-out =(&optional switch-to-state fail-quietly at-time)=
11792    :PROPERTIES:
11793    :CUSTOM_ID: org-clock-out
11794    :END:
11796 - *Access:* ~C-c C-x C-o, <menu-bar> <Org> <Logging work> <Clock out>~
11797 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
11798 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out][Find modifications in git logs]]
11800 : Stop the currently running clock.
11801 : Throw an error if there is no running clock and FAIL-QUIETLY is nil.
11802 : With a universal prefix, prompt for a state to switch the clocked out task
11803 : to, overriding the existing value of â€˜org-clock-out-switch-to-state’.
11804 ** org-columns-redo
11805    :PROPERTIES:
11806    :CUSTOM_ID: org-columns-redo
11807    :END:
11809 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
11810 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-redo][Find modifications in git logs]]
11812 : Construct the column display again.
11813 ** org-agenda-archives-mode =(&optional with-files)=
11814    :PROPERTIES:
11815    :CUSTOM_ID: org-agenda-archives-mode
11816    :END:
11818 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11819 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archives-mode][Find modifications in git logs]]
11821 : Toggle inclusion of items in trees marked with :ARCHIVE:.
11822 : When called with a prefix argument, include all archive files as well.
11823 ** org-beginning-of-item-list
11824    :PROPERTIES:
11825    :CUSTOM_ID: org-beginning-of-item-list
11826    :END:
11828 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
11829 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-item-list][Find modifications in git logs]]
11831 : Go to the beginning item of the current list or sublist.
11832 : Throw an error when not in a list.
11833 ** orgtbl-mode =(&optional arg)=
11834    :PROPERTIES:
11835    :CUSTOM_ID: orgtbl-mode
11836    :END:
11838 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
11839 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-mode][Find modifications in git logs]]
11841 : The â€˜org-mode’ table editor as a minor mode for use in other modes.
11842 ** org-columns-quit
11843    :PROPERTIES:
11844    :CUSTOM_ID: org-columns-quit
11845    :END:
11847 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
11848 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-quit][Find modifications in git logs]]
11850 : Remove the column overlays and in this way exit column editing.
11851 ** org-force-self-insert =(N)=
11852    :PROPERTIES:
11853    :CUSTOM_ID: org-force-self-insert
11854    :END:
11856 - *Access:* ~|~
11857 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11858 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-force-self-insert][Find modifications in git logs]]
11860 : Needed to enforce self-insert under remapping.
11861 ** org-clock-in-last =(&optional arg)=
11862    :PROPERTIES:
11863    :CUSTOM_ID: org-clock-in-last
11864    :END:
11866 - *Access:* ~C-c C-x C-x~
11867 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
11868 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-last][Find modifications in git logs]]
11870 : Clock in the last closed clocked item.
11871 : When already clocking in, send an warning.
11872 : With a universal prefix argument, select the task you want to
11873 : clock in from the last clocked in tasks.
11874 : With two universal prefix arguments, start clocking using the
11875 : last clock-out time, if any.
11876 : With three universal prefix arguments, interactively prompt
11877 : for a todo state to switch to, overriding the existing value
11878 : â€˜org-clock-in-switch-to-state’.
11879 ** org-footnote-normalize
11880    :PROPERTIES:
11881    :CUSTOM_ID: org-footnote-normalize
11882    :END:
11884 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
11885 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-normalize][Find modifications in git logs]]
11887 : Turn every footnote in buffer into a numbered one.
11888 ** org-export-stack
11889    :PROPERTIES:
11890    :CUSTOM_ID: org-export-stack
11891    :END:
11893 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
11894 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack][Find modifications in git logs]]
11896 : Menu for asynchronous export results and running processes.
11897 ** org-md-convert-region-to-md
11898    :PROPERTIES:
11899    :CUSTOM_ID: org-md-convert-region-to-md
11900    :END:
11902 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
11903 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-convert-region-to-md][Find modifications in git logs]]
11905 : Assume the current region has Org syntax, and convert it to Markdown.
11906 : This can be used in any buffer.  For example, you can write an
11907 : itemized list in Org syntax in a Markdown buffer and use
11908 : this command to convert it.
11909 ** org-customize
11910    :PROPERTIES:
11911    :CUSTOM_ID: org-customize
11912    :END:
11914 - *Access:* ~<menu-bar> <Org> <Customize> <Browse Org Group>~
11915 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11916 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-customize][Find modifications in git logs]]
11918 : Call the customize function with org as argument.
11919 ** org-babel-tangle-file =(file &optional target-file lang)=
11920    :PROPERTIES:
11921    :CUSTOM_ID: org-babel-tangle-file
11922    :END:
11924 - *Access:* ~C-c C-v f, C-c C-v C-f~
11925 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
11926 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-file][Find modifications in git logs]]
11928 : Extract the bodies of source code blocks in FILE.
11929 : Source code blocks are extracted with â€˜org-babel-tangle’.
11930 : Optional argument TARGET-FILE can be used to specify a default
11931 : export file for all source blocks.  Optional argument LANG can be
11932 : used to limit the exported source code blocks by language.
11933 : Return a list whose CAR is the tangled file name.
11934 ** org-goto-ret =(&optional _arg)=
11935    :PROPERTIES:
11936    :CUSTOM_ID: org-goto-ret
11937    :END:
11939 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11940 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-ret][Find modifications in git logs]]
11942 : Finish â€˜org-goto’ by going to the new location.
11943 ** org-create-math-formula =(latex-frag &optional mathml-file)=
11944    :PROPERTIES:
11945    :CUSTOM_ID: org-create-math-formula
11946    :END:
11948 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11949 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-math-formula][Find modifications in git logs]]
11951 : Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
11952 : Use â€˜org-latex-to-mathml-convert-command’.  If the conversion is
11953 : sucessful, return the portion between "<math...> </math>"
11954 : elements otherwise return nil.  When MATHML-FILE is specified,
11955 : write the results in to that file.  When invoked as an
11956 : interactive command, prompt for LATEX-FRAG, with initial value
11957 : set to the current active region and echo the results for user
11958 : inspection.
11959 ** org-previous-block =(arg &optional block-regexp)=
11960    :PROPERTIES:
11961    :CUSTOM_ID: org-previous-block
11962    :END:
11964 - *Access:* ~C-c M-b~
11965 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11966 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-block][Find modifications in git logs]]
11968 : Jump to the previous block.
11969 : With a prefix argument ARG, jump backward ARG many source blocks.
11970 : When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
11971 ** org-timestamp-down-day =(&optional arg)=
11972    :PROPERTIES:
11973    :CUSTOM_ID: org-timestamp-down-day
11974    :END:
11976 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11977 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-down-day][Find modifications in git logs]]
11979 : Decrease the date in the time stamp by one day.
11980 : With prefix ARG, change that many days.
11981 ** org-agenda-bulk-unmark-all
11982    :PROPERTIES:
11983    :CUSTOM_ID: org-agenda-bulk-unmark-all
11984    :END:
11986 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
11987 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-unmark-all][Find modifications in git logs]]
11989 : Remove all marks in the agenda buffer.
11990 : This will remove the markers and the overlays.
11991 ** org-show-subtree
11992    :PROPERTIES:
11993    :CUSTOM_ID: org-show-subtree
11994    :END:
11996 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
11997 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-subtree][Find modifications in git logs]]
11999 : Show everything after this heading at deeper levels.
12000 ** org-babel-lilypond-toggle-pdf-generation
12001    :PROPERTIES:
12002    :CUSTOM_ID: org-babel-lilypond-toggle-pdf-generation
12003    :END:
12005 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
12006 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-toggle-pdf-generation][Find modifications in git logs]]
12008 : Toggle whether pdf will be generated by compilation.
12009 ** org-columns-remove-overlays
12010    :PROPERTIES:
12011    :CUSTOM_ID: org-columns-remove-overlays
12012    :END:
12014 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
12015 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-remove-overlays][Find modifications in git logs]]
12017 : Remove all currently active column overlays.
12018 ** org-agenda-phases-of-moon
12019    :PROPERTIES:
12020    :CUSTOM_ID: org-agenda-phases-of-moon
12021    :END:
12023 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12024 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-phases-of-moon][Find modifications in git logs]]
12026 : Display the phases of the moon for the 3 months around the cursor date.
12027 ** org-property-previous-allowed-value =(&optional _previous)=
12028    :PROPERTIES:
12029    :CUSTOM_ID: org-property-previous-allowed-value
12030    :END:
12032 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12033 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-previous-allowed-value][Find modifications in git logs]]
12035 : Switch to the next allowed value for this property.
12036 ** org-todo-list =(&optional arg)=
12037    :PROPERTIES:
12038    :CUSTOM_ID: org-todo-list
12039    :END:
12041 - *Access:* ~<menu-bar> <Org> <TODO Lists> <Global TODO list>~
12042 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12043 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-list][Find modifications in git logs]]
12045 : Show all (not done) TODO entries from all agenda file in a single list.
12046 : The prefix arg can be used to select a specific TODO keyword and limit
12047 : the list to these.  When using â€˜C-u’, you will be prompted
12048 : for a keyword.  A numeric prefix directly selects the Nth keyword in
12049 : â€˜org-todo-keywords-1’.
12050 ** org-odt-convert =(&optional in-file out-fmt open)=
12051    :PROPERTIES:
12052    :CUSTOM_ID: org-odt-convert
12053    :END:
12055 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
12056 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert][Find modifications in git logs]]
12058 : Convert IN-FILE to format OUT-FMT using a command line converter.
12059 : IN-FILE is the file to be converted.  If unspecified, it defaults
12060 : to variable â€˜buffer-file-name’.  OUT-FMT is the desired output
12061 : format.  Use â€˜org-odt-convert-process’ as the converter.  If OPEN
12062 : is non-nil then the newly converted file is opened using
12063 : â€˜org-open-file’.
12064 ** orgtbl-toggle-comment
12065    :PROPERTIES:
12066    :CUSTOM_ID: orgtbl-toggle-comment
12067    :END:
12069 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
12070 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-toggle-comment][Find modifications in git logs]]
12072 : Comment or uncomment the orgtbl at point.
12073 ** org-duration-set-regexps
12074    :PROPERTIES:
12075    :CUSTOM_ID: org-duration-set-regexps
12076    :END:
12078 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-duration.el][org-duration.el]]
12079 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-duration-set-regexps][Find modifications in git logs]]
12081 : Set duration related regexps.
12082 ** org-previous-link
12083    :PROPERTIES:
12084    :CUSTOM_ID: org-previous-link
12085    :END:
12087 - *Access:* ~C-c C-x C-p, <menu-bar> <Org> <Hyperlinks> <Previous link>~
12088 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12089 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-link][Find modifications in git logs]]
12091 : Move backward to the previous link.
12092 : If the link is in hidden text, expose it.
12093 ** org-babel-hide-result-toggle =(&optional force)=
12094    :PROPERTIES:
12095    :CUSTOM_ID: org-babel-hide-result-toggle
12096    :END:
12098 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
12099 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hide-result-toggle][Find modifications in git logs]]
12101 : Toggle the visibility of the current result.
12102 ** org-attach
12103    :PROPERTIES:
12104    :CUSTOM_ID: org-attach
12105    :END:
12107 - *Access:* ~C-c C-a~
12108 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
12109 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach][Find modifications in git logs]]
12111 : The dispatcher for attachment commands.
12112 : Shows a list of commands and prompts for another key to execute a command.
12113 ** org-agenda-columns
12114    :PROPERTIES:
12115    :CUSTOM_ID: org-agenda-columns
12116    :END:
12118 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
12119 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-columns][Find modifications in git logs]]
12121 : Turn on or update column view in the agenda.
12122 ** org-occur =(regexp &optional keep-previous callback)=
12123    :PROPERTIES:
12124    :CUSTOM_ID: org-occur
12125    :END:
12127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur][Find modifications in git logs]]
12130 : Make a compact tree which shows all matches of REGEXP.
12132 : The tree will show the lines where the regexp matches, and any other context
12133 : defined in â€˜org-show-context-detail’, which see.
12135 : When optional argument KEEP-PREVIOUS is non-nil, highlighting and exposing
12136 : done by a previous call to â€˜org-occur’ will be kept, to allow stacking of
12137 : calls to this command.
12139 : Optional argument CALLBACK can be a function of no argument.  In this case,
12140 : it is called with point at the end of the match, match data being set
12141 : accordingly.  Current match is shown only if the return value is non-nil.
12142 : The function must neither move point nor alter narrowing.
12143 ** org-table-iterate-buffer-tables
12144    :PROPERTIES:
12145    :CUSTOM_ID: org-table-iterate-buffer-tables
12146    :END:
12148 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
12149 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-iterate-buffer-tables][Find modifications in git logs]]
12151 : Iterate all tables in the buffer, to converge inter-table dependencies.
12152 ** org-attach-reveal-in-emacs
12153    :PROPERTIES:
12154    :CUSTOM_ID: org-attach-reveal-in-emacs
12155    :END:
12157 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
12158 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-reveal-in-emacs][Find modifications in git logs]]
12160 : Show the attachment directory of the current task in dired.
12161 ** org-update-all-dblocks
12162    :PROPERTIES:
12163    :CUSTOM_ID: org-update-all-dblocks
12164    :END:
12166 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12167 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-all-dblocks][Find modifications in git logs]]
12169 : Update all dynamic blocks in the buffer.
12170 : This function can be used in a hook.
12171 ** org-babel-examplize-region =(beg end &optional results-switches inline)=
12172    :PROPERTIES:
12173    :CUSTOM_ID: org-babel-examplize-region
12174    :END:
12176 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
12177 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-examplize-region][Find modifications in git logs]]
12179 : Comment out region using the inline â€˜==’ or â€˜: â€™ org example quote.
12180 ** org-indent-item-tree
12181    :PROPERTIES:
12182    :CUSTOM_ID: org-indent-item-tree
12183    :END:
12185 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
12186 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-item-tree][Find modifications in git logs]]
12188 : Indent a local list item including its children.
12189 : If a region is active, all items inside will be moved.
12190 ** org-delete-backward-char =(N)=
12191    :PROPERTIES:
12192    :CUSTOM_ID: org-delete-backward-char
12193    :END:
12195 - *Access:* ~DEL~
12196 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12197 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-backward-char][Find modifications in git logs]]
12199 : Like â€˜delete-backward-char’, insert whitespace at field end in tables.
12200 : When deleting backwards, in tables this function will insert whitespace in
12201 : front of the next "|" separator, to keep the table aligned.  The table will
12202 : still be marked for re-alignment if the field did fill the entire column,
12203 : because, in this case the deletion might narrow the column.
12204 ** org-agenda-archive-with =(cmd &optional confirm)=
12205    :PROPERTIES:
12206    :CUSTOM_ID: org-agenda-archive-with
12207    :END:
12209 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12210 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-with][Find modifications in git logs]]
12212 : Move the entry to the archive sibling.
12213 ** org-element-update-syntax
12214    :PROPERTIES:
12215    :CUSTOM_ID: org-element-update-syntax
12216    :END:
12218 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-element.el][org-element.el]]
12219 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-element-update-syntax][Find modifications in git logs]]
12221 : Update parser internals.
12222 ** org-agenda-add-note =(&optional arg)=
12223    :PROPERTIES:
12224    :CUSTOM_ID: org-agenda-add-note
12225    :END:
12227 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12228 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-add-note][Find modifications in git logs]]
12230 : Add a time-stamped note to the entry at point.
12231 ** org-agenda-bulk-mark =(&optional arg)=
12232    :PROPERTIES:
12233    :CUSTOM_ID: org-agenda-bulk-mark
12234    :END:
12236 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12237 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark][Find modifications in git logs]]
12239 : Mark the entry at point for future bulk action.
12240 ** org-insert-todo-subheading =(arg)=
12241    :PROPERTIES:
12242    :CUSTOM_ID: org-insert-todo-subheading
12243    :END:
12245 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12246 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-todo-subheading][Find modifications in git logs]]
12248 : Insert a new subheading with TODO keyword or checkbox and demote it.
12249 : Works for outline headings and for plain lists alike.
12250 ** org-koma-letter-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)=
12251    :PROPERTIES:
12252    :CUSTOM_ID: org-koma-letter-export-to-pdf
12253    :END:
12255 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
12256 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-export-to-pdf][Find modifications in git logs]]
12258 : Export current buffer as a KOMA Scrlttr2 letter (pdf).
12260 : If narrowing is active in the current buffer, only export its
12261 : narrowed part.
12263 : If a region is active, export that region.
12265 : A non-nil optional argument ASYNC means the process should happen
12266 : asynchronously.  The resulting file should be accessible through
12267 : the â€˜org-export-stack’ interface.
12269 : When optional argument SUBTREEP is non-nil, export the sub-tree
12270 : at point, extracting information from the headline properties
12271 : first.
12273 : When optional argument VISIBLE-ONLY is non-nil, don’t export
12274 : contents of hidden elements.
12276 : When optional argument BODY-ONLY is non-nil, only write code
12277 : between "\begin{letter}" and "\end{letter}".
12279 : EXT-PLIST, when provided, is a property list with external
12280 : parameters overriding Org default settings, but still inferior to
12281 : file-local settings.
12283 : Return PDF file’s name.
12284 ** org-bibtex-search =(string)=
12285    :PROPERTIES:
12286    :CUSTOM_ID: org-bibtex-search
12287    :END:
12289 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
12290 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-search][Find modifications in git logs]]
12292 : Search for bibliographical entries in agenda files.
12293 : This function relies â€˜org-search-view’ to locate results.
12294 ** org-columns-widen =(arg)=
12295    :PROPERTIES:
12296    :CUSTOM_ID: org-columns-widen
12297    :END:
12299 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
12300 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-widen][Find modifications in git logs]]
12302 : Make the column wider by ARG characters.
12303 ** org-agenda-manipulate-query-subtract
12304    :PROPERTIES:
12305    :CUSTOM_ID: org-agenda-manipulate-query-subtract
12306    :END:
12308 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12309 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-subtract][Find modifications in git logs]]
12311 : Manipulate the query by adding a search term with negative selection.
12312 : Negative selection means term must not be matched for selection of an entry.
12313 ** org-meta-return =(&optional arg)=
12314    :PROPERTIES:
12315    :CUSTOM_ID: org-meta-return
12316    :END:
12318 - *Access:* ~<M-return>~
12319 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12320 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-meta-return][Find modifications in git logs]]
12322 : Insert a new heading or wrap a region in a table.
12323 : Calls â€˜org-insert-heading’, â€˜org-insert-item’ or
12324 : â€˜org-table-wrap-region’, depending on context.  When called with
12325 : an argument, unconditionally call â€˜org-insert-heading’.
12326 ** org-agenda-bulk-toggle-all
12327    :PROPERTIES:
12328    :CUSTOM_ID: org-agenda-bulk-toggle-all
12329    :END:
12331 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12332 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-toggle-all][Find modifications in git logs]]
12334 : Toggle all marks for bulk action.
12335 ** org-agenda-bulk-unmark =(&optional arg)=
12336    :PROPERTIES:
12337    :CUSTOM_ID: org-agenda-bulk-unmark
12338    :END:
12340 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12341 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-unmark][Find modifications in git logs]]
12343 : Unmark the entry at point for future bulk action.
12344 ** org-cut-subtree =(&optional n)=
12345    :PROPERTIES:
12346    :CUSTOM_ID: org-cut-subtree
12347    :END:
12349 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12350 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cut-subtree][Find modifications in git logs]]
12352 : Cut the current subtree into the clipboard.
12353 : With prefix arg N, cut this many sequential subtrees.
12354 : This is a short-hand for marking the subtree and then cutting it.
12355 ** org-goto-quit
12356    :PROPERTIES:
12357    :CUSTOM_ID: org-goto-quit
12358    :END:
12360 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12361 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-quit][Find modifications in git logs]]
12363 : Finish â€˜org-goto’ without cursor motion.
12364 ** org-attach-url =(url)=
12365    :PROPERTIES:
12366    :CUSTOM_ID: org-attach-url
12367    :END:
12369 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
12370 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-url][Find modifications in git logs]]
12373 ** org-agenda-month-view =(&optional month)=
12374    :PROPERTIES:
12375    :CUSTOM_ID: org-agenda-month-view
12376    :END:
12378 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12379 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-month-view][Find modifications in git logs]]
12381 : Switch to monthly view for agenda.
12382 : With argument MONTH, switch to that month.  If MONTH has more
12383 : then 2 digits, only the last two encode the month.  Any digits
12384 : before this encode a year.  So 200712 means December year 2007.
12385 : Years ranging from 70 years ago to 30 years in the future can
12386 : also be written as 2-digit years.
12387 ** org-agenda-limit-interactively =(remove)=
12388    :PROPERTIES:
12389    :CUSTOM_ID: org-agenda-limit-interactively
12390    :END:
12392 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12393 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-limit-interactively][Find modifications in git logs]]
12395 : In agenda, interactively limit entries to various maximums.
12396 ** org-babel-hide-result-toggle-maybe
12397    :PROPERTIES:
12398    :CUSTOM_ID: org-babel-hide-result-toggle-maybe
12399    :END:
12401 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
12402 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hide-result-toggle-maybe][Find modifications in git logs]]
12404 : Toggle visibility of result at point.
12405 ** org-narrow-to-element
12406    :PROPERTIES:
12407    :CUSTOM_ID: org-narrow-to-element
12408    :END:
12410 - *Access:* ~C-x n e~
12411 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12412 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-element][Find modifications in git logs]]
12414 : Narrow buffer to current element.
12415 ** org-inlinetask-promote
12416    :PROPERTIES:
12417    :CUSTOM_ID: org-inlinetask-promote
12418    :END:
12420 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
12421 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-promote][Find modifications in git logs]]
12423 : Promote the inline task at point.
12424 : If the task has an end part, promote it.  Also, prevents level from
12425 : going below â€˜org-inlinetask-min-level’.
12426 ** org-agenda-date-later-hours =(arg)=
12427    :PROPERTIES:
12428    :CUSTOM_ID: org-agenda-date-later-hours
12429    :END:
12431 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12432 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later-hours][Find modifications in git logs]]
12434 : Change the time of this item, in hour steps.
12435 ** org-decompose-region =(start end)=
12436    :PROPERTIES:
12437    :CUSTOM_ID: org-decompose-region
12438    :END:
12440 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
12441 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decompose-region][Find modifications in git logs]]
12443 : Decompose text in the current region.
12445 : When called from a program, expects two arguments,
12446 : positions (integers or markers) specifying the region.
12447 ** org-export-stack-view =(&optional in-emacs)=
12448    :PROPERTIES:
12449    :CUSTOM_ID: org-export-stack-view
12450    :END:
12452 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
12453 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-view][Find modifications in git logs]]
12455 : View export results at point in stack.
12456 : With an optional prefix argument IN-EMACS, force viewing files
12457 : within Emacs.
12458 ** org-columns-narrow =(arg)=
12459    :PROPERTIES:
12460    :CUSTOM_ID: org-columns-narrow
12461    :END:
12463 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
12464 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-narrow][Find modifications in git logs]]
12466 : Make the column narrower by ARG characters.
12467 ** org-table-transpose-table-at-point
12468    :PROPERTIES:
12469    :CUSTOM_ID: org-table-transpose-table-at-point
12470    :END:
12472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
12473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-transpose-table-at-point][Find modifications in git logs]]
12475 : Transpose Org table at point and eliminate hlines.
12476 : So a table like
12478 : | 1 | 2 | 4 | 5 |
12479 : |---+---+---+---|
12480 : | a | b | c | d |
12481 : | e | f | g | h |
12483 : will be transposed as
12485 : | 1 | a | e |
12486 : | 2 | b | f |
12487 : | 4 | c | g |
12488 : | 5 | d | h |
12490 : Note that horizontal lines disappear.
12491 ** org-columns-edit-allowed
12492    :PROPERTIES:
12493    :CUSTOM_ID: org-columns-edit-allowed
12494    :END:
12496 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
12497 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-allowed][Find modifications in git logs]]
12499 : Edit the list of allowed values for the current property.
12500 ** org-table-fedit-finish =(&optional arg)=
12501    :PROPERTIES:
12502    :CUSTOM_ID: org-table-fedit-finish
12503    :END:
12505 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
12506 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-finish][Find modifications in git logs]]
12508 : Parse the buffer for formula definitions and install them.
12509 : With prefix ARG, apply the new formulas to the table.
12510 ** org-occur-in-agenda-files =(regexp &optional _nlines)=
12511    :PROPERTIES:
12512    :CUSTOM_ID: org-occur-in-agenda-files
12513    :END:
12515 - *Access:* ~<menu-bar> <Org> <File List for Agenda> <Occur in all agenda files>~
12516 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12517 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-in-agenda-files][Find modifications in git logs]]
12519 : Call â€˜multi-occur’ with buffers for all agenda files.
12520 ** org-convert-to-oddeven-levels
12521    :PROPERTIES:
12522    :CUSTOM_ID: org-convert-to-oddeven-levels
12523    :END:
12525 - *Access:* ~<menu-bar> <Org> <Edit Structure> <Convert to odd/even levels>~
12526 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12527 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-convert-to-oddeven-levels][Find modifications in git logs]]
12529 : Convert an Org file with only odd levels to one with odd/even levels.
12530 : This promotes level 3 to level 2, level 5 to level 3 etc.  If the
12531 : file contains a section with an even level, conversion would
12532 : destroy the structure of the file.  An error is signaled in this
12533 : case.
12534 ** org-show-block-all
12535    :PROPERTIES:
12536    :CUSTOM_ID: org-show-block-all
12537    :END:
12539 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12540 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-block-all][Find modifications in git logs]]
12542 : Unfold all blocks in the current buffer.
12543 ** org-ctags-append-topic =(name &optional narrowp)=
12544    :PROPERTIES:
12545    :CUSTOM_ID: org-ctags-append-topic
12546    :END:
12548 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
12549 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-append-topic][Find modifications in git logs]]
12551 : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
12552 : Append a new toplevel heading to the end of the current buffer.  The
12553 : heading contains NAME surrounded by <<angular brackets>>, thus making
12554 : the heading a destination for the tag â€˜NAME’.
12555 ** org-koma-letter-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)=
12556    :PROPERTIES:
12557    :CUSTOM_ID: org-koma-letter-export-to-latex
12558    :END:
12560 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
12561 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-export-to-latex][Find modifications in git logs]]
12563 : Export current buffer as a KOMA Scrlttr2 letter (tex).
12565 : If narrowing is active in the current buffer, only export its
12566 : narrowed part.
12568 : If a region is active, export that region.
12570 : A non-nil optional argument ASYNC means the process should happen
12571 : asynchronously.  The resulting file should be accessible through
12572 : the â€˜org-export-stack’ interface.
12574 : When optional argument SUBTREEP is non-nil, export the sub-tree
12575 : at point, extracting information from the headline properties
12576 : first.
12578 : When optional argument VISIBLE-ONLY is non-nil, don’t export
12579 : contents of hidden elements.
12581 : When optional argument BODY-ONLY is non-nil, only write code
12582 : between "\begin{letter}" and "\end{letter}".
12584 : EXT-PLIST, when provided, is a property list with external
12585 : parameters overriding Org default settings, but still inferior to
12586 : file-local settings.
12588 : When optional argument PUB-DIR is set, use it as the publishing
12589 : directory.
12591 : Return output file’s name.
12592 ** org-archive-subtree-default-with-confirmation
12593    :PROPERTIES:
12594    :CUSTOM_ID: org-archive-subtree-default-with-confirmation
12595    :END:
12597 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
12598 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree-default-with-confirmation][Find modifications in git logs]]
12600 : Archive the current subtree with the default command.
12601 : This command is set with the variable â€˜org-archive-default-command’.
12602 ** org-encrypt-entries
12603    :PROPERTIES:
12604    :CUSTOM_ID: org-encrypt-entries
12605    :END:
12607 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
12608 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-encrypt-entries][Find modifications in git logs]]
12610 : Encrypt all top-level entries in the current buffer.
12611 ** org-tree-to-indirect-buffer =(&optional arg)=
12612    :PROPERTIES:
12613    :CUSTOM_ID: org-tree-to-indirect-buffer
12614    :END:
12616 - *Access:* ~C-c C-x b, <menu-bar> <Org> <Show/Hide> <Subtree to indirect buffer>~
12617 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12618 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tree-to-indirect-buffer][Find modifications in git logs]]
12620 : Create indirect buffer and narrow it to current subtree.
12622 : With a numerical prefix ARG, go up to this level and then take that tree.
12623 : If ARG is negative, go up that many levels.
12625 : If â€˜org-indirect-buffer-display’ is not â€˜new-frame’, the command removes the
12626 : indirect buffer previously made with this command, to avoid proliferation of
12627 : indirect buffers.  However, when you call the command with a â€˜C-u’ prefix, or
12628 : when â€˜org-indirect-buffer-display’ is â€˜new-frame’, the last buffer is kept
12629 : so that you can work with several indirect buffers at the same time.  If
12630 : â€˜org-indirect-buffer-display’ is â€˜dedicated-frame’, the â€˜C-u’ prefix also
12631 : requests that a new frame be made for the new buffer, so that the dedicated
12632 : frame is not changed.
12633 ** org-agenda-previous-item =(n)=
12634    :PROPERTIES:
12635    :CUSTOM_ID: org-agenda-previous-item
12636    :END:
12638 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12639 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-item][Find modifications in git logs]]
12641 : Move cursor to next agenda item.
12642 ** org-babel-detangle =(&optional source-code-file)=
12643    :PROPERTIES:
12644    :CUSTOM_ID: org-babel-detangle
12645    :END:
12647 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
12648 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-detangle][Find modifications in git logs]]
12650 : Propagate changes in source file back original to Org file.
12651 : This requires that code blocks were tangled with link comments
12652 : which enable the original code blocks to be found.
12653 ** org-end-of-item-list
12654    :PROPERTIES:
12655    :CUSTOM_ID: org-end-of-item-list
12656    :END:
12658 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
12659 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-item-list][Find modifications in git logs]]
12661 : Go to the end of the current list or sublist.
12662 : Throw an error when not in a list.
12663 ** org-agenda-dim-blocked-tasks =(&optional invisible)=
12664    :PROPERTIES:
12665    :CUSTOM_ID: org-agenda-dim-blocked-tasks
12666    :END:
12668 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12669 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-dim-blocked-tasks][Find modifications in git logs]]
12671 : Dim currently blocked TODOs in the agenda display.
12672 : When INVISIBLE is non-nil, hide currently blocked TODO instead of
12673 : dimming them.
12674 ** org-babel-open-src-block-result =(&optional re-run)=
12675    :PROPERTIES:
12676    :CUSTOM_ID: org-babel-open-src-block-result
12677    :END:
12679 - *Access:* ~C-c C-v C-o, C-c C-v o~
12680 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
12681 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-open-src-block-result][Find modifications in git logs]]
12683 : If â€˜point’ is on a src block then open the results of the
12684 : source code block, otherwise return nil.  With optional prefix
12685 : argument RE-RUN the source-code block is evaluated even if
12686 : results already exist.
12687 ** org-list-repair
12688    :PROPERTIES:
12689    :CUSTOM_ID: org-list-repair
12690    :END:
12692 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
12693 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-repair][Find modifications in git logs]]
12695 : Fix indentation, bullets and checkboxes in the list at point.
12696 ** org-at-date-range-p =(&optional inactive-ok)=
12697    :PROPERTIES:
12698    :CUSTOM_ID: org-at-date-range-p
12699    :END:
12701 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12702 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-at-date-range-p][Find modifications in git logs]]
12704 : Non-nil if point is inside a date range.
12706 : When optional argument INACTIVE-OK is non-nil, also consider
12707 : inactive time ranges.
12709 : When this function returns a non-nil value, match data is set
12710 : according to â€˜org-tr-regexp-both’ or â€˜org-tr-regexp’, depending
12711 : on INACTIVE-OK.
12712 ** org-bibtex-check =(&optional optional)=
12713    :PROPERTIES:
12714    :CUSTOM_ID: org-bibtex-check
12715    :END:
12717 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
12718 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-check][Find modifications in git logs]]
12720 : Check the current headline for required fields.
12721 : With prefix argument OPTIONAL also prompt for optional fields.
12722 ** org-lint--hide-checker
12723    :PROPERTIES:
12724    :CUSTOM_ID: org-lint--hide-checker
12725    :END:
12727 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]]
12728 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--hide-checker][Find modifications in git logs]]
12730 : Hide all reports from checker that generated the report at point.
12731 ** org-list-make-subtree
12732    :PROPERTIES:
12733    :CUSTOM_ID: org-list-make-subtree
12734    :END:
12736 - *Access:* ~C-c C-*~
12737 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
12738 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-make-subtree][Find modifications in git logs]]
12740 : Convert the plain list at point into a subtree.
12741 ** org-update-statistics-cookies =(all)=
12742    :PROPERTIES:
12743    :CUSTOM_ID: org-update-statistics-cookies
12744    :END:
12746 - *Access:* ~C-c #~
12747 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12748 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-statistics-cookies][Find modifications in git logs]]
12750 : Update the statistics cookie, either from TODO or from checkboxes.
12751 : This should be called with the cursor in a line with a statistics
12752 : cookie.  When called with a C-u prefix, update
12753 : all statistics cookies in the buffer.
12754 * Options
12755   :PROPERTIES:
12756   :CUSTOM_ID: options
12757   :END:
12760 ** org-odt-styles-file =(funcall (function (closure (h...=
12761    :PROPERTIES:
12762    :CUSTOM_ID: org-odt-styles-file
12763    :END:
12765 - *Type:* (choice (const :tag "Factory s...
12766 - *Since:* Emacs version 24.1
12767 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
12768 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-styles-file][Find modifications in git logs]]
12770 : Default styles file for use with ODT export.
12771 : Valid values are one of:
12772 : 1. nil
12773 : 2. path to a styles.xml file
12774 : 3. path to a *.odt or a *.ott file
12775 : 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2
12776 : ...))
12778 : In case of option 1, an in-built styles.xml is used. See
12779 : `org-odt-styles-dir' for more information.
12781 : In case of option 3, the specified file is unzipped and the
12782 : styles.xml embedded therein is used.
12784 : In case of option 4, the specified ODT-OR-OTT-FILE is unzipped
12785 : and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the
12786 : generated odt file.  Use relative path for specifying the
12787 : FILE-MEMBERS.  styles.xml must be specified as one of the
12788 : FILE-MEMBERS.
12790 : Use options 1, 2 or 3 only if styles.xml alone suffices for
12791 : achieving the desired formatting.  Use option 4, if the styles.xml
12792 : references additional files like header and footer images for
12793 : achieving the desired formatting.
12795 : Use "#+ODT_STYLES_FILE: ..." directive to set this variable on
12796 : a per-file basis.  For example,
12798 : #+ODT_STYLES_FILE: "/path/to/styles.xml" or
12799 : #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png")).
12801 ** org-read-date-popup-calendar =(funcall (function (closure (f...=
12802    :PROPERTIES:
12803    :CUSTOM_ID: org-read-date-popup-calendar
12804    :END:
12806 - *Type:* boolean
12807 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12808 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-popup-calendar][Find modifications in git logs]]
12810 : Non-nil means pop up a calendar when prompting for a date.
12811 : In the calendar, the date can be selected with mouse-1.  However, the
12812 : minibuffer will also be active, and you can simply enter the date as well.
12813 : When nil, only the minibuffer will be available.
12815 ** org-export-with-properties =(funcall (function (closure (t...=
12816    :PROPERTIES:
12817    :CUSTOM_ID: org-export-with-properties
12818    :END:
12820 - *Type:* (choice (const :tag "All prope...
12821 - *Since:* Emacs version 24.4
12822 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
12823 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-properties][Find modifications in git logs]]
12825 : Non-nil means export contents of properties drawers.
12827 : When t, all properties are exported.  This may also be a list of
12828 : properties to export, as strings.
12830 : This option can also be set with the OPTIONS keyword,
12831 : e.g. "prop:t".
12833 ** org-agenda-max-entries =nil=
12834    :PROPERTIES:
12835    :CUSTOM_ID: org-agenda-max-entries
12836    :END:
12838 - *Type:* (choice (symbol :tag "No limit...
12839 - *Since:* Emacs version 24.4
12840 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
12841 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-entries][Find modifications in git logs]]
12843 : Maximum number of entries to display in an agenda.
12844 : This can be nil (no limit) or an integer or an alist of agenda
12845 : types with an associated number of entries to display in this
12846 : type.
12848 ** org-log-note-clock-out =(funcall (function (closure (f...=
12849    :PROPERTIES:
12850    :CUSTOM_ID: org-log-note-clock-out
12851    :END:
12853 - *Type:* boolean
12854 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12855 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-note-clock-out][Find modifications in git logs]]
12857 : Non-nil means record a note when clocking out of an item.
12858 : This can also be configured on a per-file basis by adding one of
12859 : the following lines anywhere in the buffer:
12861 :    #+STARTUP: lognoteclock-out
12862 :    #+STARTUP: nolognoteclock-out
12864 ** org-link-abbrev-alist =(funcall (function (closure (f...=
12865    :PROPERTIES:
12866    :CUSTOM_ID: org-link-abbrev-alist
12867    :END:
12869 - *Type:* (repeat (cons (string :tag "Pr...
12870 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12871 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-abbrev-alist][Find modifications in git logs]]
12873 : Alist of link abbreviations.
12874 : The car of each element is a string, to be replaced at the start of a link.
12875 : The cdrs are replacement values, like ("linkkey" . REPLACE).  Abbreviated
12876 : links in Org buffers can have an optional tag after a double colon, e.g.,
12878 :      [[linkkey:tag][description]]
12880 : The `linkkey' must be a single word, starting with a letter, followed
12881 : by letters, numbers, `-' or `_'.
12883 : If REPLACE is a string, the tag will simply be appended to create the link.
12884 : If the string contains "%s", the tag will be inserted there.  If the string
12885 : contains "%h", it will cause a url-encoded version of the tag to be inserted
12886 : at that point (see the function `url-hexify-string').  If the string contains
12887 : the specifier "%(my-function)", then the custom function `my-function' will
12888 : be invoked: this function takes the tag as its only argument and must return
12889 : a string.
12891 : REPLACE may also be a function that will be called with the tag as the
12892 : only argument to create the link, which should be returned as a string.
12894 : See the manual for examples.
12896 ** org-html-format-drawer-function =(funcall (function (closure (h...=
12897    :PROPERTIES:
12898    :CUSTOM_ID: org-html-format-drawer-function
12899    :END:
12901 - *Type:* function
12902 - *Since:* Emacs version 24.4
12903 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
12904 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-drawer-function][Find modifications in git logs]]
12906 : Function called to format a drawer in HTML code.
12908 : The function must accept two parameters:
12909 :   NAME      the drawer name, like "LOGBOOK"
12910 :   CONTENTS  the contents of the drawer.
12912 : The function should return the string to be exported.
12914 : For example, the variable could be set to the following function
12915 : in order to mimic default behavior:
12917 : The default value simply returns the value of CONTENTS.
12919 ** org-latex-hyperref-template =(funcall (function (closure (t...=
12920    :PROPERTIES:
12921    :CUSTOM_ID: org-latex-hyperref-template
12922    :END:
12924 - *Type:* (choice (const :tag "No templa...
12925 - *Since:* Emacs version 26.1
12926 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
12927 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-hyperref-template][Find modifications in git logs]]
12929 : Template for hyperref package options.
12931 : This format string may contain these elements:
12933 :   %a for AUTHOR keyword
12934 :   %t for TITLE keyword
12935 :   %s for SUBTITLE keyword
12936 :   %k for KEYWORDS line
12937 :   %d for DESCRIPTION line
12938 :   %c for CREATOR line
12939 :   %l for Language keyword
12940 :   %L for capitalized language keyword
12941 :   %D for DATE keyword
12943 : If you need to use a "%" character, you need to escape it
12944 : like that: "%%".
12946 : As a special case, a nil value prevents template from being
12947 : inserted.
12949 : Setting :latex-hyperref-template in publishing projects will take
12950 : precedence over this variable.
12952 ** org-src-block-faces =(funcall (function (closure (t...=
12953    :PROPERTIES:
12954    :CUSTOM_ID: org-src-block-faces
12955    :END:
12957 - *Type:* (repeat (list (string :tag "la...
12958 - *Since:* Emacs version 26.1
12959 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
12960 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-block-faces][Find modifications in git logs]]
12962 : Alist of faces to be used for source-block.
12963 : Each element is a cell of the format
12965 :      ("language" FACE)
12967 : Where FACE is either a defined face or an anonymous face.
12969 : For instance, the following value would color the background of
12970 : emacs-lisp source blocks and python source blocks in purple and
12971 : green, respectability.
12973 :     \='(("emacs-lisp" (:background "#EEE2FF"))
12974 :       ("python" (:background "#e5ffb8")))
12976 ** org-context-in-file-links =(funcall (function (closure (f...=
12977    :PROPERTIES:
12978    :CUSTOM_ID: org-context-in-file-links
12979    :END:
12981 - *Type:* (choice boolean integer)
12982 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
12983 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-context-in-file-links][Find modifications in git logs]]
12985 : Non-nil means file links from `org-store-link' contain context.
12986 : \<org-mode-map>
12987 : A search string will be added to the file name with :: as separator
12988 : and used to find the context when the link is activated by the command
12989 : `org-open-at-point'.  When this option is t, the entire active region
12990 : will be placed in the search string of the file link.  If set to a
12991 : positive integer, only the first n lines of context will be stored.
12993 : Using a prefix arg to the command `org-store-link' (`\[universal-argument] \[org-store-link]')
12994 : negates this setting for the duration of the command.
12996 ** org-indent-mode-turns-on-hiding-stars =(funcall (function (closure (t...=
12997    :PROPERTIES:
12998    :CUSTOM_ID: org-indent-mode-turns-on-hiding-stars
12999    :END:
13001 - *Type:* boolean
13002 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
13003 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-mode-turns-on-hiding-stars][Find modifications in git logs]]
13005 : Non-nil means setting the variable `org-indent-mode' will turn on `org-hide-leading-stars'.
13007 ** org-mobile-directory =(funcall (function (closure (t...=
13008    :PROPERTIES:
13009    :CUSTOM_ID: org-mobile-directory
13010    :END:
13012 - *Type:* directory
13013 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
13014 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-directory][Find modifications in git logs]]
13016 : The WebDAV directory where the interaction with the mobile takes place.
13018 ** org-export-select-tags =(funcall (function (closure (t...=
13019    :PROPERTIES:
13020    :CUSTOM_ID: org-export-select-tags
13021    :END:
13023 - *Type:* (repeat (string :tag "Tag"))
13024 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
13025 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-select-tags][Find modifications in git logs]]
13027 : Tags that select a tree for export.
13029 : If any such tag is found in a buffer, all trees that do not carry
13030 : one of these tags will be ignored during export.  Inside trees
13031 : that are selected like this, you can still deselect a subtree by
13032 : tagging it with one of the `org-export-exclude-tags'.
13034 : This option can also be set with the SELECT_TAGS keyword.
13036 ** org-clocktable-defaults =(funcall (function (closure (t...=
13037    :PROPERTIES:
13038    :CUSTOM_ID: org-clocktable-defaults
13039    :END:
13041 - *Type:* plist
13042 - *Since:* Emacs version 24.1
13043 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
13044 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clocktable-defaults][Find modifications in git logs]]
13046 : Default properties for clock tables.
13048 ** org-koma-letter-use-place =t=
13049    :PROPERTIES:
13050    :CUSTOM_ID: org-koma-letter-use-place
13051    :END:
13053 - *Type:* boolean
13054 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
13055 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-place][Find modifications in git logs]]
13057 : Non-nil prints the letter's place next to the date.
13058 : This option can also be set with the OPTIONS keyword, e.g.:
13059 : "place:nil".
13061 ** org-koma-letter-signature =""=
13062    :PROPERTIES:
13063    :CUSTOM_ID: org-koma-letter-signature
13064    :END:
13066 - *Type:* string
13067 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
13068 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-signature][Find modifications in git logs]]
13070 : Signature, as a string.
13071 : This option can also be set with the SIGNATURE keyword.
13072 : Moreover, when:
13073 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
13074 :       or there is no CLOSING keyword or the CLOSING keyword is empty;
13075 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
13076 :   (3) the letter contains a headline with the special
13077 :       tag "closing";
13078 : then the signature will be  set as the content of the
13079 : closing special heading.
13081 : Note if the content is empty the signature will not be set.
13083 ** org-icalendar-store-UID =(funcall (function (closure (t...=
13084    :PROPERTIES:
13085    :CUSTOM_ID: org-icalendar-store-UID
13086    :END:
13088 - *Type:* boolean
13089 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
13090 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-store-UID][Find modifications in git logs]]
13092 : Non-nil means store any created UIDs in properties.
13094 : The iCalendar standard requires that all entries have a unique identifier.
13095 : Org will create these identifiers as needed.  When this variable is non-nil,
13096 : the created UIDs will be stored in the ID property of the entry.  Then the
13097 : next time this entry is exported, it will be exported with the same UID,
13098 : superseding the previous form of it.  This is essential for
13099 : synchronization services.
13101 : This variable is not turned on by default because we want to avoid creating
13102 : a property drawer in every entry if people are only playing with this feature,
13103 : or if they are only using it locally.
13105 ** org-bbdb-anniversary-format-alist =(funcall (function (closure (d...=
13106    :PROPERTIES:
13107    :CUSTOM_ID: org-bbdb-anniversary-format-alist
13108    :END:
13110 - *Type:* (alist :key-type (string :tag ...
13111 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
13112 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-anniversary-format-alist][Find modifications in git logs]]
13114 : How different types of anniversaries should be formatted.
13115 : An alist of elements (STRING . FORMAT) where STRING is the name of an
13116 : anniversary class and format is either:
13117 : 1) A format string with the following substitutions (in order):
13118 :     - the name of the record containing this anniversary
13119 :     - the number of years
13120 :     - an ordinal suffix (st, nd, rd, th) for the year
13122 : 2) A function to be called with three arguments: NAME YEARS SUFFIX
13123 :    (string int string) returning a string for the diary or nil.
13125 : 3) An Emacs Lisp form that should evaluate to a string (or nil) in the
13126 :    scope of variables NAME, YEARS and SUFFIX (among others).
13128 ** org-list-use-circular-motion =(funcall (function (closure (o...=
13129    :PROPERTIES:
13130    :CUSTOM_ID: org-list-use-circular-motion
13131    :END:
13133 - *Type:* boolean
13134 - *Since:* Emacs version 24.1
13135 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
13136 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-use-circular-motion][Find modifications in git logs]]
13138 : Non-nil means commands implying motion in lists should be cyclic.
13139 : \<org-mode-map>
13140 : In that case, the item following the last item is the first one,
13141 : and the item preceding the first item is the last one.
13143 : This affects the behavior of
13144 :   `\[org-move-item-up]',
13145 :   `\[org-move-item-down]',
13146 :   `\[org-next-item]',
13147 :   `\[org-previous-item]'.
13149 ** org-html-mathjax-options =(funcall (function (closure (h...=
13150    :PROPERTIES:
13151    :CUSTOM_ID: org-html-mathjax-options
13152    :END:
13154 - *Type:* (list :greedy t (list :tag "pa...
13155 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
13156 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-mathjax-options][Find modifications in git logs]]
13158 : Options for MathJax setup.
13160 : Alist of the following elements.  All values are strings.
13162 : path          The path to MathJax.
13163 : scale         Scaling with HTML-CSS, MathML and SVG output engines.
13164 : align         How to align display math: left, center, or right.
13165 : font          The font to use with HTML-CSS and SVG output.  As of MathJax 2.5
13166 :               the following values are understood: "TeX", "STIX-Web",
13167 :               "Asana-Math", "Neo-Euler", "Gyre-Pagella",
13168 :               "Gyre-Termes", and "Latin-Modern".
13169 : linebreaks    Let MathJax perform automatic linebreaks.  Valid values
13170 :               are "true" and "false".
13171 : indent        If align is not center, how far from the left/right side?
13172 :               Valid values are "left" and "right"
13173 : multlinewidth The width of the multline environment.
13174 : autonumber    How to number equations.  Valid values are "None",
13175 :               "all" and "AMS Math".
13176 : tagindent     The amount tags are indented.
13177 : tagside       Which side to show tags/labels on.  Valid values are
13178 :               "left" and "right"
13180 : You can also customize this for each buffer, using something like
13182 : #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
13184 : For further information about MathJax options, see the MathJax documentation:
13186 :   http://docs.mathjax.org/
13188 ** org-stuck-projects =(quote ("+LEVEL=2/-DONE" ("TOD...=
13189    :PROPERTIES:
13190    :CUSTOM_ID: org-stuck-projects
13191    :END:
13193 - *Type:* (list (string :tag "Tags/TODO ...
13194 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13195 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-stuck-projects][Find modifications in git logs]]
13197 : How to identify stuck projects.
13198 : This is a list of four items:
13199 : 1. A tags/todo/property matcher string that is used to identify a project.
13200 :    See the manual for a description of tag and property searches.
13201 :    The entire tree below a headline matched by this is considered one project.
13202 : 2. A list of TODO keywords identifying non-stuck projects.
13203 :    If the project subtree contains any headline with one of these todo
13204 :    keywords, the project is considered to be not stuck.  If you specify
13205 :    "*" as a keyword, any TODO keyword will mark the project unstuck.
13206 : 3. A list of tags identifying non-stuck projects.
13207 :    If the project subtree contains any headline with one of these tags,
13208 :    the project is considered to be not stuck.  If you specify "*" as
13209 :    a tag, any tag will mark the project unstuck.  Note that this is about
13210 :    the explicit presence of a tag somewhere in the subtree, inherited
13211 :    tags do not count here.  If inherited tags make a project not stuck,
13212 :    use "-TAG" in the tags part of the matcher under (1.) above.
13213 : 4. An arbitrary regular expression matching non-stuck projects.
13215 : If the project turns out to be not stuck, search continues also in the
13216 : subtree to see if any of the subtasks have project status.
13218 : See also the variable `org-tags-match-list-sublevels' which applies
13219 : to projects matched by this search as well.
13221 : After defining this variable, you may use `\[org-agenda-list-stuck-projects]'
13222 : (bound to `C-c a #') to produce the list.
13224 ** org-latex-default-table-mode =(funcall (function (closure (t...=
13225    :PROPERTIES:
13226    :CUSTOM_ID: org-latex-default-table-mode
13227    :END:
13229 - *Type:* (choice (const :tag "Table" ta...
13230 - *Since:* Emacs version 24.4
13231 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
13232 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-table-mode][Find modifications in git logs]]
13234 : Default mode for tables.
13236 : Value can be a symbol among:
13238 :   `table' Regular LaTeX table.
13240 :   `math' In this mode, every cell is considered as being in math
13241 :      mode and the complete table will be wrapped within a math
13242 :      environment.  It is particularly useful to write matrices.
13244 :   `inline-math' This mode is almost the same as `math', but the
13245 :      math environment will be inlined.
13247 :   `verbatim' The table is exported as it appears in the Org
13248 :      buffer, within a verbatim environment.
13250 : This value can be overridden locally with, i.e. ":mode math" in
13251 : LaTeX attributes.
13253 : When modifying this variable, it may be useful to change
13254 : `org-latex-default-table-environment' accordingly.
13256 ** org-clock-rounding-minutes =(funcall (function (closure (t...=
13257    :PROPERTIES:
13258    :CUSTOM_ID: org-clock-rounding-minutes
13259    :END:
13261 - *Type:* (choice (integer :tag "Minutes...
13262 - *Since:* Emacs version 24.4
13263 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
13264 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-rounding-minutes][Find modifications in git logs]]
13266 : Rounding minutes when clocking in or out.
13267 : The default value is 0 so that no rounding is done.
13268 : When set to a non-integer value, use the car of
13269 : `org-time-stamp-rounding-minutes', like for setting a time-stamp.
13271 : E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47
13272 : and you clock in: then the clock starts at 14:45.  If you clock
13273 : out within the next 5 minutes, the clock line will be removed;
13274 : if you clock out 8 minutes after your clocked in, the clock
13275 : out time will be 14:50.
13277 ** org-babel-load-languages =(funcall (function (closure (f...=
13278    :PROPERTIES:
13279    :CUSTOM_ID: org-babel-load-languages
13280    :END:
13282 - *Type:* (alist :tag "Babel Languages" ...
13283 - *Since:* Emacs version 24.1
13284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-languages][Find modifications in git logs]]
13287 : Languages which can be evaluated in Org buffers.
13288 : This list can be used to load support for any of the languages
13289 : below, note that each language will depend on a different set of
13290 : system executables and/or Emacs modes.  When a language is
13291 : "loaded", then code blocks in that language can be evaluated
13292 : with `org-babel-execute-src-block' bound by default to C-c
13293 : C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
13294 : be set to remove code block evaluation from the C-c C-c
13295 : keybinding.  By default only Emacs Lisp (which has no
13296 : requirements) is loaded.
13298 ** org-agenda-time-grid =(quote ((daily today require-t...=
13299    :PROPERTIES:
13300    :CUSTOM_ID: org-agenda-time-grid
13301    :END:
13303 - *Type:* (list (set :greedy t :tag "Gri...
13304 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13305 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-time-grid][Find modifications in git logs]]
13307 : The settings for time grid for agenda display.
13308 : This is a list of three items.  The first item is again a list.  It contains
13309 : symbols specifying conditions when the grid should be displayed:
13311 :  daily         if the agenda shows a single day
13312 :  weekly        if the agenda shows an entire week
13313 :  today         show grid on current date, independent of daily/weekly display
13314 :  require-timed show grid only if at least one item has a time specification
13315 :  remove-match  skip grid times already present in an entry
13317 : The second item is a string which will be placed behind the grid time.
13319 : The third item is a list of integers, indicating the times that should have
13320 : a grid line.
13322 ** org-export-with-entities =(funcall (function (closure (t...=
13323    :PROPERTIES:
13324    :CUSTOM_ID: org-export-with-entities
13325    :END:
13327 - *Type:* boolean
13328 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
13329 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-entities][Find modifications in git logs]]
13331 : Non-nil means interpret entities when exporting.
13333 : For example, HTML export converts \alpha to &alpha; and \AA to
13334 : &Aring;.
13336 : For a list of supported names, see the constant `org-entities'
13337 : and the user option `org-entities-user'.
13339 : This option can also be set with the OPTIONS keyword,
13340 : e.g. "e:nil".
13342 ** org-texinfo-info-process =(funcall (function (closure (t...=
13343    :PROPERTIES:
13344    :CUSTOM_ID: org-texinfo-info-process
13345    :END:
13347 - *Type:* (repeat :tag "Shell command se...
13348 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
13349 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-info-process][Find modifications in git logs]]
13351 : Commands to process a Texinfo file to an INFO file.
13353 : This is a list of strings, each of them will be given to the
13354 : shell as a command.  %f in the command will be replaced by the
13355 : relative file name, %F by the absolute file name, %b by the file
13356 : base name (i.e. without directory and extension parts), %o by the
13357 : base directory of the file and %O by the absolute file name of
13358 : the output file.
13360 ** org-bibtex-type-property-name =(funcall (function (closure (t...=
13361    :PROPERTIES:
13362    :CUSTOM_ID: org-bibtex-type-property-name
13363    :END:
13365 - *Type:* string
13366 - *Since:* Emacs version 24.1
13367 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
13368 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-type-property-name][Find modifications in git logs]]
13370 : Property in which to store bibtex entry type (e.g., article).
13372 ** org-table-auto-blank-field =(funcall (function (closure (o...=
13373    :PROPERTIES:
13374    :CUSTOM_ID: org-table-auto-blank-field
13375    :END:
13377 - *Type:* boolean
13378 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
13379 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-auto-blank-field][Find modifications in git logs]]
13381 : Non-nil means automatically blank table field when starting to type into it.
13382 : This only happens when typing immediately after a field motion
13383 : command (TAB, S-TAB or RET).
13384 : Only relevant when `org-enable-table-editor' is equal to `optimized'.
13386 ** org-timer-format =(funcall (function (closure (t...=
13387    :PROPERTIES:
13388    :CUSTOM_ID: org-timer-format
13389    :END:
13391 - *Type:* string
13392 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
13393 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-format][Find modifications in git logs]]
13395 : The format to insert the time of the timer.
13396 : This format must contain one instance of "%s" which will be replaced by
13397 : the value of the timer.
13399 ** org-agenda-skip-scheduled-if-done =nil=
13400    :PROPERTIES:
13401    :CUSTOM_ID: org-agenda-skip-scheduled-if-done
13402    :END:
13404 - *Type:* boolean
13405 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13406 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-scheduled-if-done][Find modifications in git logs]]
13408 : Non-nil means don't show scheduled items in agenda when they are done.
13409 : This is relevant for the daily/weekly agenda, not for the TODO list.  It
13410 : applies only to the actual date of the scheduling.  Warnings about an item
13411 : with a past scheduling dates are always turned off when the item is DONE.
13413 ** org-tags-column =(funcall (function (closure (f...=
13414    :PROPERTIES:
13415    :CUSTOM_ID: org-tags-column
13416    :END:
13418 - *Type:* integer
13419 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13420 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-column][Find modifications in git logs]]
13422 : The column to which tags should be indented in a headline.
13423 : If this number is positive, it specifies the column.  If it is negative,
13424 : it means that the tags should be flushright to that column.  For example,
13425 : -80 works well for a normal 80 character screen.
13426 : When 0, place tags directly after headline text, with only one space in
13427 : between.
13429 ** org-agenda-timegrid-use-ampm =nil=
13430    :PROPERTIES:
13431    :CUSTOM_ID: org-agenda-timegrid-use-ampm
13432    :END:
13434 - *Type:* boolean
13435 - *Since:* Emacs version 24.1
13436 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13437 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-timegrid-use-ampm][Find modifications in git logs]]
13439 : When set, show AM/PM style timestamps on the timegrid.
13441 ** org-babel-results-keyword =(funcall (function (closure (t...=
13442    :PROPERTIES:
13443    :CUSTOM_ID: org-babel-results-keyword
13444    :END:
13446 - *Type:* string
13447 - *Since:* Emacs version 24.4
13448 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
13449 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-results-keyword][Find modifications in git logs]]
13451 : Keyword used to name results generated by code blocks.
13452 : It should be "RESULTS".  However any capitalization may be
13453 : used.
13455 ** org-odt-convert-process =(funcall (function (closure (h...=
13456    :PROPERTIES:
13457    :CUSTOM_ID: org-odt-convert-process
13458    :END:
13460 - *Type:* (choice :convert-widget (lambd...
13461 - *Since:* Emacs version 24.1
13462 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
13463 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert-process][Find modifications in git logs]]
13465 : Use this converter to convert from "odt" format to other formats.
13466 : During customization, the list of converter names are populated
13467 : from `org-odt-convert-processes'.
13469 ** org-beamer-subtitle-format =(funcall (function (closure (t...=
13470    :PROPERTIES:
13471    :CUSTOM_ID: org-beamer-subtitle-format
13472    :END:
13474 - *Type:* (string :tag "Format string")
13475 - *Since:* Emacs version 26.1
13476 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
13477 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-subtitle-format][Find modifications in git logs]]
13479 : Format string used for transcoded subtitle.
13480 : The format string should have at most one "%s"-expression,
13481 : which is replaced with the subtitle.
13483 ** org-ascii-format-inlinetask-function =(funcall (function (closure (t...=
13484    :PROPERTIES:
13485    :CUSTOM_ID: org-ascii-format-inlinetask-function
13486    :END:
13488 - *Type:* function
13489 - *Since:* Emacs version 24.4
13490 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
13491 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-format-inlinetask-function][Find modifications in git logs]]
13493 : Function called to format an inlinetask in ASCII.
13495 : The function must accept nine parameters:
13496 :   TODO       the todo keyword, as a string
13497 :   TODO-TYPE  the todo type, a symbol among `todo', `done' and nil.
13498 :   PRIORITY   the inlinetask priority, as a string
13499 :   NAME       the inlinetask name, as a string.
13500 :   TAGS       the inlinetask tags, as a list of strings.
13501 :   CONTENTS   the contents of the inlinetask, as a string.
13502 :   WIDTH      the width of the inlinetask, as a number.
13503 :   INLINETASK the inlinetask itself.
13504 :   INFO       the info channel.
13506 : The function should return either the string to be exported or
13507 : nil to ignore the inline task.
13509 ** org-display-custom-times =(funcall (function (closure (f...=
13510    :PROPERTIES:
13511    :CUSTOM_ID: org-display-custom-times
13512    :END:
13514 - *Type:* sexp
13515 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13516 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-custom-times][Find modifications in git logs]]
13518 : Non-nil means overlay custom formats over all time stamps.
13519 : The formats are defined through the variable `org-time-stamp-custom-formats'.
13520 : To turn this on on a per-file basis, insert anywhere in the file:
13521 :    #+STARTUP: customtime
13523 ** org-table-tab-jumps-over-hlines =(funcall (function (closure (o...=
13524    :PROPERTIES:
13525    :CUSTOM_ID: org-table-tab-jumps-over-hlines
13526    :END:
13528 - *Type:* boolean
13529 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
13530 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-tab-jumps-over-hlines][Find modifications in git logs]]
13532 : Non-nil means tab in the last column of a table with jump over a hline.
13533 : If a horizontal separator line is following the current line,
13534 : `org-table-next-field' can either create a new row before that line, or jump
13535 : over the line.  When this option is nil, a new line will be created before
13536 : this line.
13538 ** org-log-states-order-reversed =(funcall (function (closure (f...=
13539    :PROPERTIES:
13540    :CUSTOM_ID: org-log-states-order-reversed
13541    :END:
13543 - *Type:* boolean
13544 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13545 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-states-order-reversed][Find modifications in git logs]]
13547 : Non-nil means the latest state note will be directly after heading.
13548 : When nil, the state change notes will be ordered according to time.
13550 : This option can also be set with on a per-file-basis with
13552 :    #+STARTUP: logstatesreversed
13553 :    #+STARTUP: nologstatesreversed
13555 ** org-babel-python-mode =(funcall (function (closure (t...=
13556    :PROPERTIES:
13557    :CUSTOM_ID: org-babel-python-mode
13558    :END:
13560 - *Type:* symbol
13561 - *Since:* Emacs version 24.4
13562 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-python.el][ob-python.el]]
13563 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-python-mode][Find modifications in git logs]]
13565 : Preferred python mode for use in running python interactively.
13566 : This will typically be either `python' or `python-mode'.
13568 ** org-clock-out-switch-to-state =(funcall (function (closure (t...=
13569    :PROPERTIES:
13570    :CUSTOM_ID: org-clock-out-switch-to-state
13571    :END:
13573 - *Type:* (choice (const :tag "Don't for...
13574 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
13575 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-switch-to-state][Find modifications in git logs]]
13577 : Set task to a special todo state after clocking out.
13578 : The value should be the state to which the entry should be
13579 : switched.  If the value is a function, it must take one
13580 : parameter (the current TODO state of the item) and return the
13581 : state to switch it to.
13583 ** org-agenda-show-outline-path =t=
13584    :PROPERTIES:
13585    :CUSTOM_ID: org-agenda-show-outline-path
13586    :END:
13588 - *Type:* boolean
13589 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13590 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-outline-path][Find modifications in git logs]]
13592 : Non-nil means show outline path in echo area after line motion.
13594 ** org-html-postamble =(funcall (function (closure (h...=
13595    :PROPERTIES:
13596    :CUSTOM_ID: org-html-postamble
13597    :END:
13599 - *Type:* (choice (const :tag "No postam...
13600 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
13601 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-postamble][Find modifications in git logs]]
13603 : Non-nil means insert a postamble in HTML export.
13605 : When set to `auto', check against the
13606 : `org-export-with-author/email/creator/date' variables to set the
13607 : content of the postamble.  When set to a string, use this string
13608 : as the postamble.  When t, insert a string as defined by the
13609 : formatting string in `org-html-postamble-format'.
13611 : When set to a function, apply this function and insert the
13612 : returned string.  The function takes the property list of export
13613 : options as its only argument.
13615 : Setting :html-postamble in publishing projects will take
13616 : precedence over this variable.
13618 ** org-gnus-prefer-web-links =(funcall (function (closure (t...=
13619    :PROPERTIES:
13620    :CUSTOM_ID: org-gnus-prefer-web-links
13621    :END:
13623 - *Type:* boolean
13624 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-gnus.el][org-gnus.el]]
13625 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-gnus-prefer-web-links][Find modifications in git logs]]
13627 : If non-nil, `org-store-link' creates web links to Google groups or Gmane.
13628 : \<org-mode-map>When nil, Gnus will be used for such links.
13629 : Using a prefix argument to the command `\[org-store-link]' (`org-store-link')
13630 : negates this setting for the duration of the command.
13632 ** org-export-async-init-file =(funcall (function (closure (t...=
13633    :PROPERTIES:
13634    :CUSTOM_ID: org-export-async-init-file
13635    :END:
13637 - *Type:* (choice (const :tag "Regular s...
13638 - *Since:* Emacs version 24.4
13639 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
13640 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-async-init-file][Find modifications in git logs]]
13642 : File used to initialize external export process.
13644 : Value must be either nil or an absolute file name.  When nil, the
13645 : external process is launched like a regular Emacs session,
13646 : loading user's initialization file and any site specific
13647 : configuration.  If a file is provided, it, and only it, is loaded
13648 : at start-up.
13650 : Therefore, using a specific configuration makes the process to
13651 : load faster and the export more portable.
13653 ** org-use-property-inheritance =(funcall (function (closure (f...=
13654    :PROPERTIES:
13655    :CUSTOM_ID: org-use-property-inheritance
13656    :END:
13658 - *Type:* (choice (const :tag "Not" nil)...
13659 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13660 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-property-inheritance][Find modifications in git logs]]
13662 : Non-nil means properties apply also for sublevels.
13664 : This setting is chiefly used during property searches.  Turning it on can
13665 : cause significant overhead when doing a search, which is why it is not
13666 : on by default.
13668 : When nil, only the properties directly given in the current entry count.
13669 : When t, every property is inherited.  The value may also be a list of
13670 : properties that should have inheritance, or a regular expression matching
13671 : properties that should be inherited.
13673 : However, note that some special properties use inheritance under special
13674 : circumstances (not in searches).  Examples are CATEGORY, ARCHIVE, COLUMNS,
13675 : and the properties ending in "_ALL" when they are used as descriptor
13676 : for valid values of a property.
13678 : Note for programmers:
13679 : When querying an entry with `org-entry-get',  you can control if inheritance
13680 : should be used.  By default, `org-entry-get' looks only at the local
13681 : properties.  You can request inheritance by setting the inherit argument
13682 : to t (to force inheritance) or to `selective' (to respect the setting
13683 : in this variable).
13685 ** org-tag-alist =(funcall (function (closure (f...=
13686    :PROPERTIES:
13687    :CUSTOM_ID: org-tag-alist
13688    :END:
13690 - *Type:* (repeat (choice (cons (string ...
13691 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13692 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tag-alist][Find modifications in git logs]]
13694 : Default tags available in Org files.
13696 : The value of this variable is an alist.  Associations either:
13698 :   (TAG)
13699 :   (TAG . SELECT)
13700 :   (SPECIAL)
13702 : where TAG is a tag as a string, SELECT is character, used to
13703 : select that tag through the fast tag selection interface, and
13704 : SPECIAL is one of the following keywords: `:startgroup',
13705 : `:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
13706 : `:newline'.  These keywords are used to define a hierarchy of
13707 : tags.  See manual for details.
13709 : When this variable is nil, Org mode bases tag input on what is
13710 : already in the buffer.  The value can be overridden locally by
13711 : using a TAGS keyword, e.g.,
13713 :   #+TAGS: tag1 tag2
13715 : See also `org-tag-persistent-alist' to sidestep this behavior.
13717 ** org-odt-prettify-xml =(funcall (function (closure (h...=
13718    :PROPERTIES:
13719    :CUSTOM_ID: org-odt-prettify-xml
13720    :END:
13722 - *Type:* boolean
13723 - *Since:* Emacs version 24.1
13724 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
13725 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-prettify-xml][Find modifications in git logs]]
13727 : Specify whether or not the xml output should be prettified.
13728 : When this option is turned on, `indent-region' is run on all
13729 : component xml buffers before they are saved.  Turn this off for
13730 : regular use.  Turn this on if you need to examine the xml
13731 : visually.
13733 ** org-agenda-prefix-format =(quote ((agenda . " %i %-12:c%...=
13734    :PROPERTIES:
13735    :CUSTOM_ID: org-agenda-prefix-format
13736    :END:
13738 - *Type:* (choice (string :tag "General ...
13739 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13740 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-prefix-format][Find modifications in git logs]]
13742 : Format specifications for the prefix of items in the agenda views.
13743 : An alist with five entries, each for the different agenda types.  The
13744 : keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
13745 : The values are format strings.
13747 : This format works similar to a printf format, with the following meaning:
13749 :   %c   the category of the item, "Diary" for entries from the diary,
13750 :        or as given by the CATEGORY keyword or derived from the file name
13751 :   %e   the effort required by the item
13752 :   %l   the level of the item (insert X space(s) if item is of level X)
13753 :   %i   the icon category of the item, see `org-agenda-category-icon-alist'
13754 :   %T   the last tag of the item (ignore inherited tags, which come first)
13755 :   %t   the HH:MM time-of-day specification if one applies to the entry
13756 :   %s   Scheduling/Deadline information, a short string
13757 :   %b   show breadcrumbs, i.e., the names of the higher levels
13758 :   %(expression) Eval EXPRESSION and replace the control string
13759 :                 by the result
13761 : All specifiers work basically like the standard `%s' of printf, but may
13762 : contain two additional characters: a question mark just after the `%'
13763 : and a whitespace/punctuation character just before the final letter.
13765 : If the first character after `%' is a question mark, the entire field
13766 : will only be included if the corresponding value applies to the current
13767 : entry.  This is useful for fields which should have fixed width when
13768 : present, but zero width when absent.  For example, "%?-12t" will
13769 : result in a 12 character time field if a time of the day is specified,
13770 : but will completely disappear in entries which do not contain a time.
13772 : If there is punctuation or whitespace character just before the
13773 : final format letter, this character will be appended to the field
13774 : value if the value is not empty.  For example, the format
13775 : "%-12:c" leads to "Diary: " if the category is "Diary".  If
13776 : the category is empty, no additional colon is inserted.
13778 : The default value for the agenda sublist is "  %-12:c%?-12t% s",
13779 : which means:
13781 : - Indent the line with two space characters
13782 : - Give the category a 12 chars wide field, padded with whitespace on
13783 :   the right (because of `-').  Append a colon if there is a category
13784 :   (because of `:').
13785 : - If there is a time-of-day, put it into a 12 chars wide field.  If no
13786 :   time, don't put in an empty field, just skip it (because of '?').
13787 : - Finally, put the scheduling information.
13789 : See also the variables `org-agenda-remove-times-when-in-prefix' and
13790 : `org-agenda-remove-tags'.
13792 : Custom commands can set this variable in the options section.
13794 ** org-agenda-search-view-max-outline-level =0=
13795    :PROPERTIES:
13796    :CUSTOM_ID: org-agenda-search-view-max-outline-level
13797    :END:
13799 - *Type:* integer
13800 - *Since:* Emacs version 24.4
13801 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13802 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-search-view-max-outline-level][Find modifications in git logs]]
13804 : Maximum outline level to display in search view.
13805 : E.g. when this is set to 1, the search view will only
13806 : show headlines of level 1.  When set to 0, the default
13807 : value, don't limit agenda view by outline level.
13809 ** org-agenda-show-all-dates =t=
13810    :PROPERTIES:
13811    :CUSTOM_ID: org-agenda-show-all-dates
13812    :END:
13814 - *Type:* boolean
13815 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13816 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-all-dates][Find modifications in git logs]]
13818 : Non-nil means `org-agenda' shows every day in the selected range.
13819 : When nil, only the days which actually have entries are shown.
13821 ** org-id-uuid-program =(funcall (function (closure (t...=
13822    :PROPERTIES:
13823    :CUSTOM_ID: org-id-uuid-program
13824    :END:
13826 - *Type:* string
13827 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
13828 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-uuid-program][Find modifications in git logs]]
13830 : The uuidgen program.
13832 ** org-refile-active-region-within-subtree =(funcall (function (closure (f...=
13833    :PROPERTIES:
13834    :CUSTOM_ID: org-refile-active-region-within-subtree
13835    :END:
13837 - *Type:* boolean
13838 - *Since:* Emacs version 24.1
13839 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13840 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-active-region-within-subtree][Find modifications in git logs]]
13842 : Non-nil means also refile active region within a subtree.
13844 : By default `org-refile' doesn't allow refiling regions if they
13845 : don't contain a set of subtrees, but it might be convenient to
13846 : do so sometimes: in that case, the first line of the region is
13847 : converted to a headline before refiling.
13849 ** org-export-with-title =(funcall (function (closure (t...=
13850    :PROPERTIES:
13851    :CUSTOM_ID: org-export-with-title
13852    :END:
13854 - *Type:* boolean
13855 - *Since:* Emacs version 26.1
13856 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
13857 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-title][Find modifications in git logs]]
13859 : Non-nil means print title into the exported file.
13860 : This option can also be set with the OPTIONS keyword,
13861 : e.g. "title:nil".
13863 ** org-export-creator-string =(funcall (function (closure (t...=
13864    :PROPERTIES:
13865    :CUSTOM_ID: org-export-creator-string
13866    :END:
13868 - *Type:* (string :tag "Creator string")
13869 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
13870 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-creator-string][Find modifications in git logs]]
13872 : Information about the creator of the document.
13873 : This option can also be set on with the CREATOR keyword.
13875 ** org-texinfo-node-description-column =(funcall (function (closure (t...=
13876    :PROPERTIES:
13877    :CUSTOM_ID: org-texinfo-node-description-column
13878    :END:
13880 - *Type:* integer
13881 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
13882 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-node-description-column][Find modifications in git logs]]
13884 : Column at which to start the description in the node listings.
13885 : If a node title is greater than this length, the description will
13886 : be placed after the end of the title.
13888 ** org-agenda-skip-timestamp-if-deadline-is-shown =nil=
13889    :PROPERTIES:
13890    :CUSTOM_ID: org-agenda-skip-timestamp-if-deadline-is-shown
13891    :END:
13893 - *Type:* (choice (const :tag "Never" ni...
13894 - *Since:* Emacs version 24.1
13895 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
13896 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-timestamp-if-deadline-is-shown][Find modifications in git logs]]
13898 : Non-nil means skip timestamp line if same entry shows because of deadline.
13899 : In the agenda of today, an entry can show up multiple times
13900 : because it has both a plain timestamp and has a nearby deadline.
13901 : When this variable is t, then only the deadline is shown and the
13902 : fact that the entry has a timestamp for or including today is not
13903 : shown.  When this variable is nil, the entry will be shown
13904 : several times.
13906 ** org-allow-promoting-top-level-subtree =(funcall (function (closure (b...=
13907    :PROPERTIES:
13908    :CUSTOM_ID: org-allow-promoting-top-level-subtree
13909    :END:
13911 - *Type:* boolean
13912 - *Since:* Emacs version 24.1
13913 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13914 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-allow-promoting-top-level-subtree][Find modifications in git logs]]
13916 : When non-nil, allow promoting a top level subtree.
13917 : The leading star of the top level headline will be replaced
13918 : by a #.
13920 ** org-archive-reversed-order =(funcall (function (closure (t...=
13921    :PROPERTIES:
13922    :CUSTOM_ID: org-archive-reversed-order
13923    :END:
13925 - *Type:* boolean
13926 - *Since:* Emacs version 24.1
13927 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
13928 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-reversed-order][Find modifications in git logs]]
13930 : Non-nil means make the tree first child under the archive heading, not last.
13932 ** org-keep-stored-link-after-insertion =(funcall (function (closure (f...=
13933    :PROPERTIES:
13934    :CUSTOM_ID: org-keep-stored-link-after-insertion
13935    :END:
13937 - *Type:* boolean
13938 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13939 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-keep-stored-link-after-insertion][Find modifications in git logs]]
13941 : Non-nil means keep link in list for entire session.
13942 : \<org-mode-map>
13943 : The command `org-store-link' adds a link pointing to the current
13944 : location to an internal list.  These links accumulate during a session.
13945 : The command `org-insert-link' can be used to insert links into any
13946 : Org file (offering completion for all stored links).
13948 : When this option is nil, every link which has been inserted once using
13949 : `\[org-insert-link]' will be removed from the list, to make completing the unused
13950 : links more efficient.
13952 ** org-scheduled-delay-days =(funcall (function (closure (f...=
13953    :PROPERTIES:
13954    :CUSTOM_ID: org-scheduled-delay-days
13955    :END:
13957 - *Type:* integer
13958 - *Since:* Emacs version 24.4
13959 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13960 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-scheduled-delay-days][Find modifications in git logs]]
13962 : Number of days before a scheduled item becomes active.
13963 : This variable governs the display in sparse trees and in the agenda.
13964 : The default value (i.e. 0) means: don't delay scheduled item.
13965 : When negative, it means use this number (the absolute value of it)
13966 : even if a scheduled item has a different individual delay time
13967 : specified.
13969 : Custom commands can set this variable in the options section.
13971 ** org-crypt-tag-matcher =(funcall (function (closure (t...=
13972    :PROPERTIES:
13973    :CUSTOM_ID: org-crypt-tag-matcher
13974    :END:
13976 - *Type:* string
13977 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
13978 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-crypt-tag-matcher][Find modifications in git logs]]
13980 : The tag matcher used to find headings whose contents should be encrypted.
13982 : See the "Match syntax" section of the org manual for more details.
13984 ** org-edit-timestamp-down-means-later =(funcall (function (closure (f...=
13985    :PROPERTIES:
13986    :CUSTOM_ID: org-edit-timestamp-down-means-later
13987    :END:
13989 - *Type:* boolean
13990 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
13991 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-timestamp-down-means-later][Find modifications in git logs]]
13993 : Non-nil means S-down will increase the time in a time stamp.
13994 : When nil, S-up will increase.
13996 ** org-ascii-inlinetask-width =(funcall (function (closure (t...=
13997    :PROPERTIES:
13998    :CUSTOM_ID: org-ascii-inlinetask-width
13999    :END:
14001 - *Type:* integer
14002 - *Since:* Emacs version 24.4
14003 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
14004 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-inlinetask-width][Find modifications in git logs]]
14006 : Width of inline tasks, in number of characters.
14007 : This number ignores any margin.
14009 ** org-html-container-element =(funcall (function (closure (h...=
14010    :PROPERTIES:
14011    :CUSTOM_ID: org-html-container-element
14012    :END:
14014 - *Type:* string
14015 - *Since:* Emacs version 24.4
14016 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14017 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-container-element][Find modifications in git logs]]
14019 : HTML element to use for wrapping top level sections.
14020 : Can be set with the in-buffer HTML_CONTAINER property or for
14021 : publishing, with :html-container.
14023 : Note that changing the default will prevent you from using
14024 : org-info.js for your website.
14026 ** org-babel-noweb-wrap-end =(funcall (function (closure (t...=
14027    :PROPERTIES:
14028    :CUSTOM_ID: org-babel-noweb-wrap-end
14029    :END:
14031 - *Type:* string
14032 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
14033 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-noweb-wrap-end][Find modifications in git logs]]
14035 : String used to end a noweb reference in a code block.
14036 : See also `org-babel-noweb-wrap-start'.
14038 ** org-odt-create-custom-styles-for-srcblocks =(funcall (function (closure (h...=
14039    :PROPERTIES:
14040    :CUSTOM_ID: org-odt-create-custom-styles-for-srcblocks
14041    :END:
14043 - *Type:* boolean
14044 - *Since:* Emacs version 24.1
14045 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
14046 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-create-custom-styles-for-srcblocks][Find modifications in git logs]]
14048 : Whether custom styles for colorized source blocks be automatically created.
14049 : When this option is turned on, the exporter creates custom styles
14050 : for source blocks based on the advice of `htmlfontify'.  Creation
14051 : of custom styles happen as part of `org-odt-hfy-face-to-css'.
14053 : When this option is turned off exporter does not create such
14054 : styles.
14056 : Use the latter option if you do not want the custom styles to be
14057 : based on your current display settings.  It is necessary that the
14058 : styles.xml already contains needed styles for colorizing to work.
14060 : This variable is effective only if `org-odt-fontify-srcblocks' is
14061 : turned on.
14063 ** org-export-with-special-strings =(funcall (function (closure (t...=
14064    :PROPERTIES:
14065    :CUSTOM_ID: org-export-with-special-strings
14066    :END:
14068 - *Type:* boolean
14069 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
14070 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-special-strings][Find modifications in git logs]]
14072 : Non-nil means interpret "\-", "--" and "---" for export.
14074 : When this option is turned on, these strings will be exported as:
14076 :    Org     HTML     LaTeX    UTF-8
14077 :   -----+----------+--------+-------
14078 :    \-    &shy;      \-
14079 :    --    &ndash;    --         â€“
14080 :    ---   &mdash;    ---        â€”
14081 :    ...   &hellip;   \ldots     â€¦
14083 : This option can also be set with the OPTIONS keyword,
14084 : e.g. "-:nil".
14086 ** org-indirect-buffer-display =(funcall (function (closure (f...=
14087    :PROPERTIES:
14088    :CUSTOM_ID: org-indirect-buffer-display
14089    :END:
14091 - *Type:* (choice (const :tag "In curren...
14092 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14093 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indirect-buffer-display][Find modifications in git logs]]
14095 : How should indirect tree buffers be displayed?
14097 : This applies to indirect buffers created with the commands
14098 : `org-tree-to-indirect-buffer' and `org-agenda-tree-to-indirect-buffer'.
14100 : Valid values are:
14101 : current-window   Display in the current window
14102 : other-window     Just display in another window.
14103 : dedicated-frame  Create one new frame, and re-use it each time.
14104 : new-frame        Make a new frame each time.  Note that in this case
14105 :                  previously-made indirect buffers are kept, and you need to
14106 :                  kill these buffers yourself.
14108 ** org-html-infojs-template =(funcall (function (closure (h...=
14109    :PROPERTIES:
14110    :CUSTOM_ID: org-html-infojs-template
14111    :END:
14113 - *Type:* string
14114 - *Since:* Emacs version 24.4
14115 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14116 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-infojs-template][Find modifications in git logs]]
14118 : The template for the export style additions when org-info.js is used.
14119 : Option settings will replace the %MANAGER-OPTIONS cookie.
14121 ** org-deadline-warning-days =(funcall (function (closure (f...=
14122    :PROPERTIES:
14123    :CUSTOM_ID: org-deadline-warning-days
14124    :END:
14126 - *Type:* integer
14127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-deadline-warning-days][Find modifications in git logs]]
14130 : Number of days before expiration during which a deadline becomes active.
14131 : This variable governs the display in sparse trees and in the agenda.
14132 : When 0 or negative, it means use this number (the absolute value of it)
14133 : even if a deadline has a different individual lead time specified.
14135 : Custom commands can set this variable in the options section.
14137 ** org-use-sub-superscripts =(funcall (function (closure (f...=
14138    :PROPERTIES:
14139    :CUSTOM_ID: org-use-sub-superscripts
14140    :END:
14142 - *Type:* (choice (const :tag "Always in...
14143 - *Since:* Emacs version 24.4
14144 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14145 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-sub-superscripts][Find modifications in git logs]]
14147 : Non-nil means interpret "_" and "^" for display.
14149 : If you want to control how Org exports those characters, see
14150 : `org-export-with-sub-superscripts'.  `org-use-sub-superscripts'
14151 : used to be an alias for `org-export-with-sub-superscripts' in
14152 : Org <8.0, it is not anymore.
14154 : When this option is turned on, you can use TeX-like syntax for
14155 : sub- and superscripts within the buffer.  Several characters after
14156 : "_" or "^" will be considered as a single item - so grouping
14157 : with {} is normally not needed.  For example, the following things
14158 : will be parsed as single sub- or superscripts:
14160 :  10^24   or   10^tau     several digits will be considered 1 item.
14161 :  10^-12  or   10^-tau    a leading sign with digits or a word
14162 :  x^2-y^3                 will be read as x^2 - y^3, because items are
14163 :                        terminated by almost any nonword/nondigit char.
14164 :  x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
14166 : Still, ambiguity is possible.  So when in doubt, use {} to enclose
14167 : the sub/superscript.  If you set this variable to the symbol `{}',
14168 : the braces are *required* in order to trigger interpretations as
14169 : sub/superscript.  This can be helpful in documents that need "_"
14170 : frequently in plain text.
14172 ** org-agenda-insert-diary-extract-time =nil=
14173    :PROPERTIES:
14174    :CUSTOM_ID: org-agenda-insert-diary-extract-time
14175    :END:
14177 - *Type:* boolean
14178 - *Since:* Emacs version 24.1
14179 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
14180 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-insert-diary-extract-time][Find modifications in git logs]]
14182 : Non-nil means extract any time specification from the diary entry.
14184 ** org-html-footnote-format =(funcall (function (closure (h...=
14185    :PROPERTIES:
14186    :CUSTOM_ID: org-html-footnote-format
14187    :END:
14189 - *Type:* string
14190 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14191 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-footnote-format][Find modifications in git logs]]
14193 : The format for the footnote reference.
14194 : %s will be replaced by the footnote reference itself.
14196 ** org-texinfo-remove-logfiles =(funcall (function (closure (t...=
14197    :PROPERTIES:
14198    :CUSTOM_ID: org-texinfo-remove-logfiles
14199    :END:
14201 - *Type:* boolean
14202 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
14203 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-remove-logfiles][Find modifications in git logs]]
14205 : Non-nil means remove the logfiles produced by compiling a Texinfo file.
14206 : By default, logfiles are files with these extensions: .aux, .toc,
14207 : .cp, .fn, .ky, .pg and .tp.  To define the set of logfiles to remove,
14208 : set `org-texinfo-logfiles-extensions'.
14210 ** org-html-format-headline-function =(funcall (function (closure (h...=
14211    :PROPERTIES:
14212    :CUSTOM_ID: org-html-format-headline-function
14213    :END:
14215 - *Type:* function
14216 - *Since:* Emacs version 26.1
14217 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14218 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-headline-function][Find modifications in git logs]]
14220 : Function to format headline text.
14222 : This function will be called with six arguments:
14223 : TODO      the todo keyword (string or nil).
14224 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
14225 : PRIORITY  the priority of the headline (integer or nil)
14226 : TEXT      the main headline text (string).
14227 : TAGS      the tags (string or nil).
14228 : INFO      the export options (plist).
14230 : The function result will be used in the section format string.
14232 ** org-archive-file-header-format =(funcall (function (closure (t...=
14233    :PROPERTIES:
14234    :CUSTOM_ID: org-archive-file-header-format
14235    :END:
14237 - *Type:* string
14238 - *Since:* Emacs version 24.4
14239 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
14240 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-file-header-format][Find modifications in git logs]]
14242 : The header format string for newly created archive files.
14243 : When nil, no header will be inserted.
14244 : When a string, a %s formatter will be replaced by the file name.
14246 ** org-protocol-default-template-key =(funcall (function (closure (t...=
14247    :PROPERTIES:
14248    :CUSTOM_ID: org-protocol-default-template-key
14249    :END:
14251 - *Type:* (choice (const nil) (string))
14252 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
14253 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-default-template-key][Find modifications in git logs]]
14255 : The default template key to use.
14256 : This is usually a single character string but can also be a
14257 : string with two characters.
14259 ** org-latex-known-warnings =(funcall (function (closure (t...=
14260    :PROPERTIES:
14261    :CUSTOM_ID: org-latex-known-warnings
14262    :END:
14264 - *Type:* (repeat (cons (string :tag "Re...
14265 - *Since:* Emacs version 26.1
14266 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
14267 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-known-warnings][Find modifications in git logs]]
14269 : Alist of regular expressions and associated messages for the user.
14270 : The regular expressions are used to find possible warnings in the
14271 : log of a latex-run.  These warnings will be reported after
14272 : calling `org-latex-compile'.
14274 ** org-clock-clocktable-formatter =(funcall (function (closure (t...=
14275    :PROPERTIES:
14276    :CUSTOM_ID: org-clock-clocktable-formatter
14277    :END:
14279 - *Type:* function
14280 - *Since:* Emacs version 24.1
14281 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
14282 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocktable-formatter][Find modifications in git logs]]
14284 : Function to turn clocking data into a table.
14285 : For more information, see `org-clocktable-write-default'.
14287 ** org-bibtex-tags =(funcall (function (closure (t...=
14288    :PROPERTIES:
14289    :CUSTOM_ID: org-bibtex-tags
14290    :END:
14292 - *Type:* (repeat :tag "Tag" (string))
14293 - *Since:* Emacs version 24.1
14294 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
14295 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-tags][Find modifications in git logs]]
14297 : List of tag(s) that should be added to new bib entries.
14299 ** org-lowest-priority =(funcall (function (closure (f...=
14300    :PROPERTIES:
14301    :CUSTOM_ID: org-lowest-priority
14302    :END:
14304 - *Type:* character
14305 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14306 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lowest-priority][Find modifications in git logs]]
14308 : The lowest priority of TODO items.  A character like ?A, ?B etc.
14309 : Must have a larger ASCII number than `org-highest-priority'.
14311 ** org-agenda-log-mode-add-notes =t=
14312    :PROPERTIES:
14313    :CUSTOM_ID: org-agenda-log-mode-add-notes
14314    :END:
14316 - *Type:* boolean
14317 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
14318 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-log-mode-add-notes][Find modifications in git logs]]
14320 : Non-nil means add first line of notes to log entries in agenda views.
14321 : If a log item like a state change or a clock entry is associated with
14322 : notes, the first line of these notes will be added to the entry in the
14323 : agenda display.
14325 ** org-pretty-entities =(funcall (function (closure (f...=
14326    :PROPERTIES:
14327    :CUSTOM_ID: org-pretty-entities
14328    :END:
14330 - *Type:* boolean
14331 - *Since:* Emacs version 24.1
14332 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14333 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-pretty-entities][Find modifications in git logs]]
14335 : Non-nil means show entities as UTF8 characters.
14336 : When nil, the \name form remains in the buffer.
14338 ** org-ascii-list-margin =(funcall (function (closure (t...=
14339    :PROPERTIES:
14340    :CUSTOM_ID: org-ascii-list-margin
14341    :END:
14343 - *Type:* integer
14344 - *Since:* Emacs version 26.1
14345 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
14346 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-list-margin][Find modifications in git logs]]
14348 : Width of margin used for plain lists, in characters.
14349 : This margin applies to top level list only, not to its
14350 : sub-lists.
14352 ** org-id-track-globally =(funcall (function (closure (t...=
14353    :PROPERTIES:
14354    :CUSTOM_ID: org-id-track-globally
14355    :END:
14357 - *Type:* boolean
14358 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
14359 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-track-globally][Find modifications in git logs]]
14361 : Non-nil means track IDs through files, so that links work globally.
14362 : This work by maintaining a hash table for IDs and writing this table
14363 : to disk when exiting Emacs.  Because of this, it works best if you use
14364 : a single Emacs process, not many.
14366 : When nil, IDs are not tracked.  Links to IDs will still work within
14367 : a buffer, but not if the entry is located in another file.
14368 : IDs can still be used if the entry with the id is in the same file as
14369 : the link.
14371 ** org-publish-sitemap-file-entry-format =(funcall (function (closure (t...=
14372    :PROPERTIES:
14373    :CUSTOM_ID: org-publish-sitemap-file-entry-format
14374    :END:
14376 - *Type:* string
14377 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]]
14378 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-sitemap-file-entry-format][Find modifications in git logs]]
14380 : Format string for site-map file entry.
14381 : You could use brackets to delimit on what part the link will be.
14383 : %t is the title.
14384 : %a is the author.
14385 : %d is the date formatted using `org-publish-sitemap-date-format'.
14387 ** org-babel-latex-htlatex-packages =(funcall (function (closure (t...=
14388    :PROPERTIES:
14389    :CUSTOM_ID: org-babel-latex-htlatex-packages
14390    :END:
14392 - *Type:* (repeat (string))
14393 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-latex.el][ob-latex.el]]
14394 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-latex-htlatex-packages][Find modifications in git logs]]
14396 : Packages to use for htlatex export.
14398 ** org-export-coding-system =(funcall (function (closure (t...=
14399    :PROPERTIES:
14400    :CUSTOM_ID: org-export-coding-system
14401    :END:
14403 - *Type:* coding-system
14404 - *Since:* Emacs version 24.4
14405 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
14406 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-coding-system][Find modifications in git logs]]
14408 : Coding system for the exported file.
14410 ** org-texinfo-inactive-timestamp-format =(funcall (function (closure (t...=
14411    :PROPERTIES:
14412    :CUSTOM_ID: org-texinfo-inactive-timestamp-format
14413    :END:
14415 - *Type:* string
14416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
14417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-inactive-timestamp-format][Find modifications in git logs]]
14419 : A printf format string to be applied to inactive timestamps.
14421 ** org-habit-show-habits-only-for-today =(funcall (function (closure (t...=
14422    :PROPERTIES:
14423    :CUSTOM_ID: org-habit-show-habits-only-for-today
14424    :END:
14426 - *Type:* boolean
14427 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
14428 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-show-habits-only-for-today][Find modifications in git logs]]
14430 : If non-nil, only show habits on today's agenda, and not for future days.
14431 : Note that even when shown for future days, the graph is always
14432 : relative to the current effective date.
14434 ** org-ascii-table-use-ascii-art =(funcall (function (closure (t...=
14435    :PROPERTIES:
14436    :CUSTOM_ID: org-ascii-table-use-ascii-art
14437    :END:
14439 - *Type:* boolean
14440 - *Since:* Emacs version 24.4
14441 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
14442 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-table-use-ascii-art][Find modifications in git logs]]
14444 : Non-nil means table.el tables are turned into ascii-art.
14446 : It only makes sense when export charset is `utf-8'.  It is nil by
14447 : default since it requires ascii-art-to-unicode.el package.  You
14448 : can download it here:
14450 :   http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el.
14452 ** org-html-head-include-scripts =(funcall (function (closure (h...=
14453    :PROPERTIES:
14454    :CUSTOM_ID: org-html-head-include-scripts
14455    :END:
14457 - *Type:* boolean
14458 - *Since:* Emacs version 24.4
14459 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14460 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-head-include-scripts][Find modifications in git logs]]
14462 : Non-nil means include the JavaScript snippets in exported HTML files.
14463 : The actual script is defined in `org-html-scripts' and should
14464 : not be modified.
14466 ** org-todo-state-tags-triggers =(funcall (function (closure (f...=
14467    :PROPERTIES:
14468    :CUSTOM_ID: org-todo-state-tags-triggers
14469    :END:
14471 - *Type:* (repeat (cons (choice :tag "Wh...
14472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-state-tags-triggers][Find modifications in git logs]]
14475 : Tag changes that should be triggered by TODO state changes.
14476 : This is a list.  Each entry is
14478 :   (state-change (tag . flag) .......)
14480 : State-change can be a string with a state, and empty string to indicate the
14481 : state that has no TODO keyword, or it can be one of the symbols `todo'
14482 : or `done', meaning any not-done or done state, respectively.
14484 ** org-babel-C++-compiler =(funcall (function (closure (t...=
14485    :PROPERTIES:
14486    :CUSTOM_ID: org-babel-C++-compiler
14487    :END:
14489 - *Type:* string
14490 - *Since:* Emacs version 24.3
14491 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]]
14492 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-C++-compiler][Find modifications in git logs]]
14494 : Command used to compile a C++ source code file into an executable.
14495 : May be either a command in the path, like g++
14496 : or an absolute path name, like /usr/local/bin/g++
14497 : parameter may be used, like g++ -v
14499 ** org-texinfo-link-with-unknown-path-format =(funcall (function (closure (t...=
14500    :PROPERTIES:
14501    :CUSTOM_ID: org-texinfo-link-with-unknown-path-format
14502    :END:
14504 - *Type:* string
14505 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
14506 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-link-with-unknown-path-format][Find modifications in git logs]]
14508 : Format string for links with unknown path type.
14510 ** org-table-copy-increment =(funcall (function (closure (o...=
14511    :PROPERTIES:
14512    :CUSTOM_ID: org-table-copy-increment
14513    :END:
14515 - *Type:* (choice (const :tag "Use the d...
14516 - *Since:* Emacs version 26.1
14517 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
14518 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-increment][Find modifications in git logs]]
14520 : Non-nil means increment when copying current field with `\[org-table-copy-down]'.
14522 ** org-treat-insert-todo-heading-as-state-change =(funcall (function (closure (f...=
14523    :PROPERTIES:
14524    :CUSTOM_ID: org-treat-insert-todo-heading-as-state-change
14525    :END:
14527 - *Type:* boolean
14528 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14529 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-treat-insert-todo-heading-as-state-change][Find modifications in git logs]]
14531 : Non-nil means inserting a TODO heading is treated as state change.
14532 : So when the command `\[org-insert-todo-heading]' is used, state change
14533 : logging will apply if appropriate.  When nil, the new TODO item will
14534 : be inserted directly, and no logging will take place.
14536 ** org-rss-image-url ="https://orgmode.org/img/org-mo...=
14537    :PROPERTIES:
14538    :CUSTOM_ID: org-rss-image-url
14539    :END:
14541 - *Type:* string
14542 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
14543 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-image-url][Find modifications in git logs]]
14545 : The URL of the an image for the RSS feed.
14547 ** org-latex-images-centered =(funcall (function (closure (t...=
14548    :PROPERTIES:
14549    :CUSTOM_ID: org-latex-images-centered
14550    :END:
14552 - *Type:* boolean
14553 - *Since:* Emacs version 26.1
14554 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
14555 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-images-centered][Find modifications in git logs]]
14557 : When non-nil, images are centered.
14559 ** org-occur-case-fold-search =(funcall (function (closure (f...=
14560    :PROPERTIES:
14561    :CUSTOM_ID: org-occur-case-fold-search
14562    :END:
14564 - *Type:* (choice (const :tag "Case-sens...
14565 - *Since:* Emacs version 26.1
14566 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14567 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-case-fold-search][Find modifications in git logs]]
14569 : Non-nil means `org-occur' should be case-insensitive.
14570 : If set to `smart' the search will be case-insensitive only if it
14571 : doesn't specify any upper case character.
14573 ** org-duration-units =(funcall (function (closure (t...=
14574    :PROPERTIES:
14575    :CUSTOM_ID: org-duration-units
14576    :END:
14578 - *Type:* (choice (const :tag "H:MM" (qu...
14579 - *Since:* Emacs version 26.1
14580 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-duration.el][org-duration.el]]
14581 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-duration-units][Find modifications in git logs]]
14583 : Conversion factor to minutes for a duration.
14585 : Each entry has the form (UNIT . MODIFIER).
14587 : In a duration string, a number followed by UNIT is multiplied by
14588 : the specified number of MODIFIER to obtain a duration in minutes.
14590 : For example, the following value
14592 :   \=`(("min" . 1)
14593 :     ("h" . 60)
14594 :     ("d" . ,(* 60 8))
14595 :     ("w" . ,(* 60 8 5))
14596 :     ("m" . ,(* 60 8 5 4))
14597 :     ("y" . ,(* 60 8 5 4 10)))
14599 : is meaningful if you work an average of 8 hours per day, 5 days
14600 : a week, 4 weeks a month and 10 months a year.
14602 : When setting this variable outside the Customize interface, make
14603 : sure to call the following command:
14605 :   \[org-duration-set-regexps]
14607 ** org-man-source-highlight =(funcall (function (closure (o...=
14608    :PROPERTIES:
14609    :CUSTOM_ID: org-man-source-highlight
14610    :END:
14612 - *Type:* boolean
14613 - *Since:* Emacs version 24.4
14614 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
14615 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-source-highlight][Find modifications in git logs]]
14617 : Use GNU source highlight to embellish source blocks
14619 ** org-table-formula-evaluate-inline =(funcall (function (closure (o...=
14620    :PROPERTIES:
14621    :CUSTOM_ID: org-table-formula-evaluate-inline
14622    :END:
14624 - *Type:* boolean
14625 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
14626 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-evaluate-inline][Find modifications in git logs]]
14628 : Non-nil means TAB and RET evaluate a formula in current table field.
14629 : If the current field starts with an equal sign, it is assumed to be a formula
14630 : which should be evaluated as described in the manual and in the documentation
14631 : string of the command `org-table-eval-formula'.  This feature requires the
14632 : Emacs calc package.
14633 : When this variable is nil, formula calculation is only available through
14634 : the command `\[org-table-eval-formula]'.
14636 ** org-capture-templates =(funcall (function (closure (o...=
14637    :PROPERTIES:
14638    :CUSTOM_ID: org-capture-templates
14639    :END:
14641 - *Type:* (repeat (choice :value ("" "" ...
14642 - *Since:* Emacs version 24.1
14643 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
14644 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-templates][Find modifications in git logs]]
14646 : Templates for the creation of new entries.
14648 : Each entry is a list with the following items:
14650 : keys         The keys that will select the template, as a string, characters
14651 :              only, for example "a" for a template to be selected with a
14652 :              single key, or "bt" for selection with two keys.  When using
14653 :              several keys, keys using the same prefix key must be together
14654 :              in the list and preceded by a 2-element entry explaining the
14655 :              prefix key, for example
14657 :                      ("b" "Templates for marking stuff to buy")
14659 :              The "C" key is used by default for quick access to the
14660 :              customization of the template variable.  But if you want to use
14661 :              that key for a template, you can.
14663 : description  A short string describing the template, will be shown during
14664 :              selection.
14666 : type         The type of entry.  Valid types are:
14667 :                entry       an Org node, with a headline.  Will be filed
14668 :                            as the child of the target entry or as a
14669 :                            top-level entry.
14670 :                item        a plain list item, will be placed in the
14671 :                            first plain list at the target
14672 :                            location.
14673 :                checkitem   a checkbox item.  This differs from the
14674 :                            plain list item only is so far as it uses a
14675 :                            different default template.
14676 :                table-line  a new line in the first table at target location.
14677 :                plain       text to be inserted as it is.
14679 : target       Specification of where the captured item should be placed.
14680 :              In Org files, targets usually define a node.  Entries will
14681 :              become children of this node, other types will be added to the
14682 :              table or list in the body of this node.
14684 :              Most target specifications contain a file name.  If that file
14685 :              name is the empty string, it defaults to `org-default-notes-file'.
14686 :              A file can also be given as a variable or as a function called
14687 :              with no argument.  When an absolute path is not specified for a
14688 :              target, it is taken as relative to `org-directory'.
14690 :              Valid values are:
14692 :              (file "path/to/file")
14693 :                  Text will be placed at the beginning or end of that file
14695 :              (id "id of existing Org entry")
14696 :                  File as child of this entry, or in the body of the entry
14698 :              (file+headline "path/to/file" "node headline")
14699 :                  Fast configuration if the target heading is unique in the file
14701 :              (file+olp "path/to/file" "Level 1 heading" "Level 2" ...)
14702 :                  For non-unique headings, the full outline path is safer
14704 :              (file+regexp  "path/to/file" "regexp to find location")
14705 :                  File to the entry matching regexp
14707 :              (file+olp+datetree "path/to/file" "Level 1 heading" ...)
14708 :                  Will create a heading in a date tree for today's date.
14709 :                  If no heading is given, the tree will be on top level.
14710 :                  To prompt for date instead of using TODAY, use the
14711 :                  :time-prompt property.  To create a week-tree, use the
14712 :                  :tree-type property.
14714 :              (file+function "path/to/file" function-finding-location)
14715 :                  A function to find the right location in the file
14717 :              (clock)
14718 :                 File to the entry that is currently being clocked
14720 :              (function function-finding-location)
14721 :                 Most general way: write your own function which both visits
14722 :                 the file and moves point to the right location
14724 : template     The template for creating the capture item.  If you leave this
14725 :              empty, an appropriate default template will be used.  See below
14726 :              for more details.  Instead of a string, this may also be one of
14728 :                  (file "/path/to/template-file")
14729 :                  (function function-returning-the-template)
14731 :              in order to get a template from a file, or dynamically
14732 :              from a function.
14734 : The rest of the entry is a property list of additional options.  Recognized
14735 : properties are:
14737 :  :prepend            Normally newly captured information will be appended at
14738 :                      the target location (last child, last table line,
14739 :                      last list item...).  Setting this property will
14740 :                      change that.
14742 :  :immediate-finish   When set, do not offer to edit the information, just
14743 :                      file it away immediately.  This makes sense if the
14744 :                      template only needs information that can be added
14745 :                      automatically.
14747 :  :jump-to-captured   When set, jump to the captured entry when finished.
14749 :  :empty-lines        Set this to the number of lines the should be inserted
14750 :                      before and after the new item.  Default 0, only common
14751 :                      other value is 1.
14753 :  :empty-lines-before Set this to the number of lines the should be inserted
14754 :                      before the new item.  Overrides :empty-lines for the
14755 :                      number lines inserted before.
14757 :  :empty-lines-after  Set this to the number of lines the should be inserted
14758 :                      after the new item.  Overrides :empty-lines for the
14759 :                      number of lines inserted after.
14761 :  :clock-in           Start the clock in this item.
14763 :  :clock-keep         Keep the clock running when filing the captured entry.
14765 :  :clock-resume       Start the interrupted clock when finishing the capture.
14766 :                      Note that :clock-keep has precedence over :clock-resume.
14767 :                      When setting both to t, the current clock will run and
14768 :                      the previous one will not be resumed.
14770 :  :time-prompt        Prompt for a date/time to be used for date/week trees
14771 :                      and when filling the template.
14773 :  :tree-type          When `week', make a week tree instead of the month tree.
14775 :  :unnarrowed         Do not narrow the target buffer, simply show the
14776 :                      full buffer.  Default is to narrow it so that you
14777 :                      only see the new stuff.
14779 :  :table-line-pos     Specification of the location in the table where the
14780 :                      new line should be inserted.  It should be a string like
14781 :                      "II-3", meaning that the new line should become the
14782 :                      third line before the second horizontal separator line.
14784 :  :kill-buffer        If the target file was not yet visited by a buffer when
14785 :                      capture was invoked, kill the buffer again after capture
14786 :                      is finalized.
14788 : The template defines the text to be inserted.  Often this is an
14789 : Org mode entry (so the first line should start with a star) that
14790 : will be filed as a child of the target headline.  It can also be
14791 : freely formatted text.  Furthermore, the following %-escapes will
14792 : be replaced with content and expanded:
14794 :   %[pathname] Insert the contents of the file given by
14795 :               `pathname'.  These placeholders are expanded at the very
14796 :               beginning of the process so they can be used to extend the
14797 :               current template.
14798 :   %(sexp)     Evaluate elisp `(sexp)' and replace it with the results.
14799 :               Only placeholders pre-existing within the template, or
14800 :               introduced with %[pathname] are expanded this way.  Since this
14801 :               happens after expanding non-interactive %-escapes, those can
14802 :               be used to fill the expression.
14803 :   %<...>      The result of format-time-string on the ... format specification.
14804 :   %t          Time stamp, date only.
14805 :   %T          Time stamp with date and time.
14806 :   %u, %U      Like the above, but inactive time stamps.
14807 :   %i          Initial content, copied from the active region.  If %i is
14808 :               indented, the entire inserted text will be indented as well.
14809 :   %a          Annotation, normally the link created with `org-store-link'.
14810 :   %A          Like %a, but prompt for the description part.
14811 :   %l          Like %a, but only insert the literal link.
14812 :   %c          Current kill ring head.
14813 :   %x          Content of the X clipboard.
14814 :   %k          Title of currently clocked task.
14815 :   %K          Link to currently clocked task.
14816 :   %n          User name (taken from the variable `user-full-name').
14817 :   %f          File visited by current buffer when org-capture was called.
14818 :   %F          Full path of the file or directory visited by current buffer.
14819 :   %:keyword   Specific information for certain link types, see below.
14820 :   %^g         Prompt for tags, with completion on tags in target file.
14821 :   %^G         Prompt for tags, with completion on all tags in all agenda files.
14822 :   %^t         Like %t, but prompt for date.  Similarly %^T, %^u, %^U.
14823 :               You may define a prompt like: %^{Please specify birthday}t
14824 :   %^C         Interactive selection of which kill or clip to use.
14825 :   %^L         Like %^C, but insert as link.
14826 :   %^{prop}p   Prompt the user for a value for property `prop'.
14827 :   %^{prompt}  Prompt the user for a string and replace this sequence with it.
14828 :               A default value and a completion table ca be specified like this:
14829 :               %^{prompt|default|completion2|completion3|...}.
14830 :   %?          After completing the template, position cursor here.
14831 :   %\1 ... %\N Insert the text entered at the nth %^{prompt}, where N
14832 :               is a number, starting from 1.
14834 : Apart from these general escapes, you can access information specific to
14835 : the link type that is created.  For example, calling `org-capture' in emails
14836 : or in Gnus will record the author and the subject of the message, which you
14837 : can access with "%:from" and "%:subject", respectively.  Here is a
14838 : complete list of what is recorded for each link type.
14840 : Link type               |  Available information
14841 : ------------------------+------------------------------------------------------
14842 : bbdb                    |  %:type %:name %:company
14843 : vm, wl, mh, mew, rmail, |  %:type %:subject %:message-id
14844 : gnus                    |  %:from %:fromname %:fromaddress
14845 :                         |  %:to   %:toname   %:toaddress
14846 :                         |  %:fromto (either "to NAME" or "from NAME")
14847 :                         |  %:date %:date-timestamp (as active timestamp)
14848 :                         |  %:date-timestamp-inactive (as inactive timestamp)
14849 : gnus                    |  %:group, for messages also all email fields
14850 : eww, w3, w3m            |  %:type %:url
14851 : info                    |  %:type %:file %:node
14852 : calendar                |  %:type %:date
14854 : When you need to insert a literal percent sign in the template,
14855 : you can escape ambiguous cases with a backward slash, e.g., \%i.
14857 ** org-latex-packages-alist =(funcall (function (closure (f...=
14858    :PROPERTIES:
14859    :CUSTOM_ID: org-latex-packages-alist
14860    :END:
14862 - *Type:* (repeat (choice (list :tag "op...
14863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-packages-alist][Find modifications in git logs]]
14866 : Alist of packages to be inserted in every LaTeX header.
14868 : These will be inserted after `org-latex-default-packages-alist'.
14869 : Each element is either a cell or a string.
14871 : A cell is of the format:
14873 :     ("options" "package" SNIPPET-FLAG)
14875 : SNIPPET-FLAG, when non-nil, indicates that this package is also
14876 : needed when turning LaTeX snippets into images for inclusion into
14877 : non-LaTeX output.
14879 : A string will be inserted as-is in the header of the document.
14881 : Make sure that you only list packages here which:
14883 :   - you want in every file;
14884 :   - do not conflict with the setup in `org-format-latex-header';
14885 :   - do not conflict with the default packages in
14886 :     `org-latex-default-packages-alist'.
14888 ** org-latex-title-command =(funcall (function (closure (t...=
14889    :PROPERTIES:
14890    :CUSTOM_ID: org-latex-title-command
14891    :END:
14893 - *Type:* (string :tag "Format string")
14894 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
14895 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-title-command][Find modifications in git logs]]
14897 : The command used to insert the title just after \begin{document}.
14899 : This format string may contain these elements:
14901 :   %a for AUTHOR keyword
14902 :   %t for TITLE keyword
14903 :   %s for SUBTITLE keyword
14904 :   %k for KEYWORDS line
14905 :   %d for DESCRIPTION line
14906 :   %c for CREATOR line
14907 :   %l for Language keyword
14908 :   %L for capitalized language keyword
14909 :   %D for DATE keyword
14911 : If you need to use a "%" character, you need to escape it
14912 : like that: "%%".
14914 : Setting :latex-title-command in publishing projects will take
14915 : precedence over this variable.
14917 ** org-bibtex-tags-are-keywords =(funcall (function (closure (t...=
14918    :PROPERTIES:
14919    :CUSTOM_ID: org-bibtex-tags-are-keywords
14920    :END:
14922 - *Type:* boolean
14923 - *Since:* Emacs version 24.1
14924 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
14925 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-tags-are-keywords][Find modifications in git logs]]
14927 : Convert the value of the keywords field to tags and vice versa.
14929 : When non-nil, comma-separated entries in a bibtex entry's keywords
14930 : field will be converted to Org tags.  Note: spaces will be escaped
14931 : with underscores, and characters that are not permitted in Org
14932 : tags will be removed.
14934 : When non-nil, local tags in an Org entry will be exported as
14935 : a comma-separated string of keywords when exported to bibtex.
14936 : If `org-bibtex-inherit-tags' is non-nil, inherited tags will also
14937 : be exported as keywords.  Tags defined in `org-bibtex-tags' or
14938 : `org-bibtex-no-export-tags' will not be exported.
14940 ** org-html-home/up-format =(funcall (function (closure (h...=
14941    :PROPERTIES:
14942    :CUSTOM_ID: org-html-home/up-format
14943    :END:
14945 - *Type:* string
14946 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
14947 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-home/up-format][Find modifications in git logs]]
14949 : Snippet used to insert the HOME and UP links.
14950 : This is a format string, the first %s will receive the UP link,
14951 : the second the HOME link.  If both `org-html-link-up' and
14952 : `org-html-link-home' are empty, the entire snippet will be
14953 : ignored.
14955 ** org-mobile-checksum-binary =(funcall (function (closure (t...=
14956    :PROPERTIES:
14957    :CUSTOM_ID: org-mobile-checksum-binary
14958    :END:
14960 - *Type:* string
14961 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
14962 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-checksum-binary][Find modifications in git logs]]
14964 : Executable used for computing checksums of agenda files.
14966 ** org-clock-mode-line-total =(funcall (function (closure (t...=
14967    :PROPERTIES:
14968    :CUSTOM_ID: org-clock-mode-line-total
14969    :END:
14971 - *Type:* (choice (const :tag "Current c...
14972 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
14973 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-mode-line-total][Find modifications in git logs]]
14975 : Default setting for the time included for the mode line clock.
14976 : This can be overruled locally using the CLOCK_MODELINE_TOTAL property.
14977 : Allowed values are:
14979 : current  Only the time in the current instance of the clock
14980 : today    All time clocked into this task today
14981 : repeat   All time clocked into this task since last repeat
14982 : all      All time ever recorded for this task
14983 : auto     Automatically, either `all', or `repeat' for repeating tasks
14985 ** org-structure-template-alist =(funcall (function (closure (a...=
14986    :PROPERTIES:
14987    :CUSTOM_ID: org-structure-template-alist
14988    :END:
14990 - *Type:* (repeat (list (string :tag "Ke...
14991 - *Since:* Emacs version 26.1
14992 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
14993 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-structure-template-alist][Find modifications in git logs]]
14995 : Structure completion elements.
14996 : This is a list of abbreviation keys and values.  The value gets inserted
14997 : if you type `<' followed by the key and then press the completion key,
14998 : usually `TAB'.  %file will be replaced by a file name after prompting
14999 : for the file using completion.  The cursor will be placed at the position
15000 : of the `?' in the template.
15001 : There are two templates for each key, the first uses the original Org syntax,
15002 : the second uses Emacs Muse-like syntax tags.  These Muse-like tags become
15003 : the default when the /org-mtags.el/ module has been loaded.  See also the
15004 : variable `org-mtags-prefer-muse-templates'.
15006 ** orgtbl-radio-table-templates =(funcall (function (closure (o...=
15007    :PROPERTIES:
15008    :CUSTOM_ID: orgtbl-radio-table-templates
15009    :END:
15011 - *Type:* (repeat (list (symbol :tag "Ma...
15012 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
15013 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-radio-table-templates][Find modifications in git logs]]
15015 : Templates for radio tables in different major modes.
15016 : Each template must define lines that will be treated as a comment and that
15017 : must contain the "BEGIN RECEIVE ORGTBL %n" and "END RECEIVE ORGTBL"
15018 : lines where "%n" will be replaced with the name of the table during
15019 : insertion of the template.  The transformed table will later be inserted
15020 : between these lines.
15022 : The template should also contain a minimal table in a multiline comment.
15023 : If multiline comments are not possible in the buffer language,
15024 : you can pack it into a string that will not be used when the code
15025 : is compiled or executed.  Above the table will you need a line with
15026 : the fixed string "#+ORGTBL: SEND", followed by instruction on how to
15027 : convert the table into a data structure useful in the
15028 : language of the buffer.  Check the manual for the section on
15029 : "Translator functions", and more generally check out
15030 : https://orgmode.org/manual/Tables-in-arbitrary-syntax.html#Tables-in-arbitrary-syntax
15032 : All occurrences of %n in a template will be replaced with the name of the
15033 : table, obtained by prompting the user.
15035 ** org-odt-use-date-fields =(funcall (function (closure (h...=
15036    :PROPERTIES:
15037    :CUSTOM_ID: org-odt-use-date-fields
15038    :END:
15040 - *Type:* boolean
15041 - *Since:* Emacs version 24.4
15042 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
15043 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-use-date-fields][Find modifications in git logs]]
15045 : Non-nil, if timestamps should be exported as date fields.
15047 : When nil, export timestamps as plain text.
15049 : When non-nil, map `org-time-stamp-custom-formats' to a pair of
15050 : OpenDocument date-styles with names "OrgDate1" and "OrgDate2"
15051 : respectively.  A timestamp with no time component is formatted
15052 : with style "OrgDate1" while one with explicit hour and minutes
15053 : is formatted with style "OrgDate2".
15055 : This feature is experimental.  Most (but not all) of the common
15056 : %-specifiers in `format-time-string' are supported.
15057 : Specifically, locale-dependent specifiers like "%c", "%x" are
15058 : formatted as canonical Org timestamps.  For finer control, avoid
15059 : these %-specifiers.
15061 : Textual specifiers like "%b", "%h", "%B", "%a", "%A"
15062 : etc., are displayed by the application in the default language
15063 : and country specified in `org-odt-styles-file'.  Note that the
15064 : default styles file uses language "en" and country "GB".  You
15065 : can localize the week day and month strings in the exported
15066 : document by setting the default language and country either using
15067 : the application UI or through a custom styles file.
15069 : See `org-odt--build-date-styles' for implementation details.
15071 ** org-email-link-description-format =(funcall (function (closure (f...=
15072    :PROPERTIES:
15073    :CUSTOM_ID: org-email-link-description-format
15074    :END:
15076 - *Type:* string
15077 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15078 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-email-link-description-format][Find modifications in git logs]]
15080 : Format of the description part of a link to an email or usenet message.
15081 : The following %-escapes will be replaced by corresponding information:
15083 : %F   full "From" field
15084 : %f   name, taken from "From" field, address if no name
15085 : %T   full "To" field
15086 : %t   first name in "To" field, address if no name
15087 : %c   correspondent.  Usually "from NAME", but if you sent it yourself, it
15088 :      will be "to NAME".  See also the variable `org-from-is-user-regexp'.
15089 : %s   subject
15090 : %d   date
15091 : %m   message-id.
15093 : You may use normal field width specification between the % and the letter.
15094 : This is for example useful to limit the length of the subject.
15096 : Examples: "%f on: %.30s", "Email from %f", "Email %c"
15098 ** org-agenda-inhibit-startup =(funcall (function (closure (o...=
15099    :PROPERTIES:
15100    :CUSTOM_ID: org-agenda-inhibit-startup
15101    :END:
15103 - *Type:* boolean
15104 - *Since:* Emacs version 24.3
15105 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15106 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-inhibit-startup][Find modifications in git logs]]
15108 : Inhibit startup when preparing agenda buffers.
15109 : When this variable is t, the initialization of the Org agenda
15110 : buffers is inhibited: e.g. the visibility state is not set, the
15111 : tables are not re-aligned, etc.
15113 ** org-M-RET-may-split-line =(funcall (function (closure (f...=
15114    :PROPERTIES:
15115    :CUSTOM_ID: org-M-RET-may-split-line
15116    :END:
15118 - *Type:* (choice (const :tag "Always" t...
15119 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15120 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-M-RET-may-split-line][Find modifications in git logs]]
15122 : Non-nil means M-RET will split the line at the cursor position.
15123 : When nil, it will go to the end of the line before making a
15124 : new line.
15125 : You may also set this option in a different way for different
15126 : contexts.  Valid contexts are:
15128 : headline  when creating a new headline
15129 : item      when creating a new item
15130 : table     in a table field
15131 : default   the value to be used for all contexts not explicitly
15132 :           customized
15134 ** org-agenda-show-future-repeats =t=
15135    :PROPERTIES:
15136    :CUSTOM_ID: org-agenda-show-future-repeats
15137    :END:
15139 - *Type:* (choice (const :tag "Show all ...
15140 - *Since:* Emacs version 26.1
15141 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15142 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-future-repeats][Find modifications in git logs]]
15144 : Non-nil shows repeated entries in the future part of the agenda.
15145 : When set to the symbol `next' only the first future repeat is shown.
15147 ** org-koma-letter-author =(quote user-full-name)=
15148    :PROPERTIES:
15149    :CUSTOM_ID: org-koma-letter-author
15150    :END:
15152 - *Type:* (radio (function-item user-ful...
15153 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
15154 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-author][Find modifications in git logs]]
15156 : Sender's name.
15158 : This variable defaults to calling the function `user-full-name'
15159 : which just returns the current function `user-full-name'.
15160 : Alternatively a string, nil or a function may be given.
15161 : Functions must return a string.
15163 : This option can also be set with the AUTHOR keyword.
15165 ** org-bibtex-prefix =(funcall (function (closure (t...=
15166    :PROPERTIES:
15167    :CUSTOM_ID: org-bibtex-prefix
15168    :END:
15170 - *Type:* (choice (const nil) (string))
15171 - *Since:* Emacs version 24.1
15172 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
15173 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-prefix][Find modifications in git logs]]
15175 : Optional prefix for all bibtex property names.
15176 : For example setting to `BIB_' would allow interoperability with fireforg.
15178 ** org-latex-diary-timestamp-format =(funcall (function (closure (t...=
15179    :PROPERTIES:
15180    :CUSTOM_ID: org-latex-diary-timestamp-format
15181    :END:
15183 - *Type:* string
15184 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
15185 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-diary-timestamp-format][Find modifications in git logs]]
15187 : A printf format string to be applied to diary timestamps.
15189 ** org-attach-archive-delete =(funcall (function (closure (t...=
15190    :PROPERTIES:
15191    :CUSTOM_ID: org-attach-archive-delete
15192    :END:
15194 - *Type:* (choice (const :tag "Never del...
15195 - *Since:* Emacs version 26.1
15196 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
15197 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-archive-delete][Find modifications in git logs]]
15199 : Non-nil means attachments are deleted upon archiving a subtree.
15200 : When set to `query', ask the user instead.
15202 ** org-html-format-inlinetask-function =(funcall (function (closure (h...=
15203    :PROPERTIES:
15204    :CUSTOM_ID: org-html-format-inlinetask-function
15205    :END:
15207 - *Type:* function
15208 - *Since:* Emacs version 26.1
15209 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
15210 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-inlinetask-function][Find modifications in git logs]]
15212 : Function called to format an inlinetask in HTML code.
15214 : The function must accept seven parameters:
15215 :   TODO      the todo keyword, as a string
15216 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
15217 :   PRIORITY  the inlinetask priority, as a string
15218 :   NAME      the inlinetask name, as a string.
15219 :   TAGS      the inlinetask tags, as a list of strings.
15220 :   CONTENTS  the contents of the inlinetask, as a string.
15221 :   INFO      the export options, as a plist
15223 : The function should return the string to be exported.
15225 ** org-capture-use-agenda-date =(funcall (function (closure (o...=
15226    :PROPERTIES:
15227    :CUSTOM_ID: org-capture-use-agenda-date
15228    :END:
15230 - *Type:* boolean
15231 - *Since:* Emacs version 24.3
15232 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
15233 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-use-agenda-date][Find modifications in git logs]]
15235 : Non-nil means use the date at point when capturing from agendas.
15236 : When nil, you can still capture using the date at point with
15237 : `\[org-agenda-capture]'.
15239 ** org-refile-use-outline-path =(funcall (function (closure (f...=
15240    :PROPERTIES:
15241    :CUSTOM_ID: org-refile-use-outline-path
15242    :END:
15244 - *Type:* (choice (const :tag "Not" nil)...
15245 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15246 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-use-outline-path][Find modifications in git logs]]
15248 : Non-nil means provide refile targets as paths.
15249 : So a level 3 headline will be available as level1/level2/level3.
15251 : When the value is `file', also include the file name (without directory)
15252 : into the path.  In this case, you can also stop the completion after
15253 : the file name, to get entries inserted as top level in the file.
15255 : When `full-file-path', include the full file path.
15257 : When `buffer-name', use the buffer name.
15259 ** org-latex-inactive-timestamp-format =(funcall (function (closure (t...=
15260    :PROPERTIES:
15261    :CUSTOM_ID: org-latex-inactive-timestamp-format
15262    :END:
15264 - *Type:* string
15265 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
15266 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-inactive-timestamp-format][Find modifications in git logs]]
15268 : A printf format string to be applied to inactive timestamps.
15270 ** org-latex-pdf-process =(funcall (function (closure (t...=
15271    :PROPERTIES:
15272    :CUSTOM_ID: org-latex-pdf-process
15273    :END:
15275 - *Type:* (choice (repeat :tag "Shell co...
15276 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
15277 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-pdf-process][Find modifications in git logs]]
15279 : Commands to process a LaTeX file to a PDF file.
15281 : This is a list of strings, each of them will be given to the
15282 : shell as a command.  %f in the command will be replaced by the
15283 : relative file name, %F by the absolute file name, %b by the file
15284 : base name (i.e. without directory and extension parts), %o by the
15285 : base directory of the file, %O by the absolute file name of the
15286 : output file, %latex is the LaTeX compiler (see
15287 : `org-latex-compiler'), and %bib is the BibTeX-like compiler (see
15288 : `org-latex-bib-compiler').
15290 : The reason why this is a list is that it usually takes several
15291 : runs of `pdflatex', maybe mixed with a call to `bibtex'.  Org
15292 : does not have a clever mechanism to detect which of these
15293 : commands have to be run to get to a stable result, and it also
15294 : does not do any error checking.
15296 : Consider a smart LaTeX compiler such as `texi2dvi' or `latexmk',
15297 : which calls the "correct" combinations of auxiliary programs.
15299 : Alternatively, this may be a Lisp function that does the
15300 : processing, so you could use this to apply the machinery of
15301 : AUCTeX or the Emacs LaTeX mode.  This function should accept the
15302 : file name as its single argument.
15304 ** org-agenda-entry-text-exclude-regexps =nil=
15305    :PROPERTIES:
15306    :CUSTOM_ID: org-agenda-entry-text-exclude-regexps
15307    :END:
15309 - *Type:* (repeat (regexp))
15310 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15311 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-exclude-regexps][Find modifications in git logs]]
15313 : List of regular expressions to clean up entry text.
15314 : The complete matches of all regular expressions in this list will be
15315 : removed from entry text before it is shown in the agenda.
15317 ** org-latex-listings =(funcall (function (closure (t...=
15318    :PROPERTIES:
15319    :CUSTOM_ID: org-latex-listings
15320    :END:
15322 - *Type:* (choice (const :tag "Use listi...
15323 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
15324 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-listings][Find modifications in git logs]]
15326 : Non-nil means export source code using the listings package.
15328 : This package will fontify source code, possibly even with color.
15329 : If you want to use this, you also need to make LaTeX use the
15330 : listings package, and if you want to have color, the color
15331 : package.  Just add these to `org-latex-packages-alist', for
15332 : example using customize, or with something like:
15334 :   (require \='ox-latex)
15335 :   (add-to-list \='org-latex-packages-alist \='("" "listings"))
15336 :   (add-to-list \='org-latex-packages-alist \='("" "color"))
15338 : Alternatively,
15340 :   (setq org-latex-listings \='minted)
15342 : causes source code to be exported using the minted package as
15343 : opposed to listings.  If you want to use minted, you need to add
15344 : the minted package to `org-latex-packages-alist', for example
15345 : using customize, or with
15347 :   (require \='ox-latex)
15348 :   (add-to-list \='org-latex-packages-alist \='("newfloat" "minted"))
15350 : In addition, it is necessary to install pygments
15351 : (http://pygments.org), and to configure the variable
15352 : `org-latex-pdf-process' so that the -shell-escape option is
15353 : passed to pdflatex.
15355 : The minted choice has possible repercussions on the preview of
15356 : latex fragments (see `org-preview-latex-fragment').  If you run
15357 : into previewing problems, please consult
15359 :   https://orgmode.org/worg/org-tutorials/org-latex-preview.html
15361 ** org-columns-ellipses =(funcall (function (closure (f...=
15362    :PROPERTIES:
15363    :CUSTOM_ID: org-columns-ellipses
15364    :END:
15366 - *Type:* string
15367 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15368 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-ellipses][Find modifications in git logs]]
15370 : The ellipses to be used when a field in column view is truncated.
15371 : When this is the empty string, as many characters as possible are shown,
15372 : but then there will be no visual indication that the field has been truncated.
15373 : When this is a string of length N, the last N characters of a truncated
15374 : field are replaced by this string.  If the column is narrower than the
15375 : ellipses string, only part of the ellipses string will be shown.
15377 ** org-clock-report-include-clocking-task =(funcall (function (closure (t...=
15378    :PROPERTIES:
15379    :CUSTOM_ID: org-clock-report-include-clocking-task
15380    :END:
15382 - *Type:* boolean
15383 - *Since:* Emacs version 24.1
15384 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
15385 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-report-include-clocking-task][Find modifications in git logs]]
15387 : When non-nil, include the current clocking task time in clock reports.
15389 ** org-html-klipsify-src =(funcall (function (closure (h...=
15390    :PROPERTIES:
15391    :CUSTOM_ID: org-html-klipsify-src
15392    :END:
15394 - *Type:* boolean
15395 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
15396 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-klipsify-src][Find modifications in git logs]]
15398 : When non-nil, source code blocks are editable in exported presentation.
15400 ** org-latex-to-mathml-jar-file =(funcall (function (closure (f...=
15401    :PROPERTIES:
15402    :CUSTOM_ID: org-latex-to-mathml-jar-file
15403    :END:
15405 - *Type:* (choice (const :tag "None" nil...
15406 - *Since:* Emacs version 24.1
15407 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15408 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-to-mathml-jar-file][Find modifications in git logs]]
15410 : Value of"%j" in `org-latex-to-mathml-convert-command'.
15411 : Use this to specify additional executable file say a jar file.
15413 : When using MathToWeb as the converter, specify the full-path to
15414 : your mathtoweb.jar file.
15416 ** org-agenda-sorting-strategy =(quote ((agenda habit-down tim...=
15417    :PROPERTIES:
15418    :CUSTOM_ID: org-agenda-sorting-strategy
15419    :END:
15421 - *Type:* (choice (repeat :tag "General"...
15422 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15423 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-sorting-strategy][Find modifications in git logs]]
15425 : Sorting structure for the agenda items of a single day.
15426 : This is a list of symbols which will be used in sequence to determine
15427 : if an entry should be listed before another entry.  The following
15428 : symbols are recognized:
15430 : time-up            Put entries with time-of-day indications first, early first
15431 : time-down          Put entries with time-of-day indications first, late first
15432 : timestamp-up       Sort by any timestamp, early first
15433 : timestamp-down     Sort by any timestamp, late first
15434 : scheduled-up       Sort by scheduled timestamp, early first
15435 : scheduled-down     Sort by scheduled timestamp, late first
15436 : deadline-up        Sort by deadline timestamp, early first
15437 : deadline-down      Sort by deadline timestamp, late first
15438 : ts-up              Sort by active timestamp, early first
15439 : ts-down            Sort by active timestamp, late first
15440 : tsia-up            Sort by inactive timestamp, early first
15441 : tsia-down          Sort by inactive timestamp, late first
15442 : category-keep      Keep the default order of categories, corresponding to the
15443 :                  sequence in `org-agenda-files'.
15444 : category-up        Sort alphabetically by category, A-Z.
15445 : category-down      Sort alphabetically by category, Z-A.
15446 : tag-up             Sort alphabetically by last tag, A-Z.
15447 : tag-down           Sort alphabetically by last tag, Z-A.
15448 : priority-up        Sort numerically by priority, high priority last.
15449 : priority-down      Sort numerically by priority, high priority first.
15450 : todo-state-up      Sort by todo state, tasks that are done last.
15451 : todo-state-down    Sort by todo state, tasks that are done first.
15452 : effort-up          Sort numerically by estimated effort, high effort last.
15453 : effort-down        Sort numerically by estimated effort, high effort first.
15454 : user-defined-up    Sort according to `org-agenda-cmp-user-defined', high last.
15455 : user-defined-down  Sort according to `org-agenda-cmp-user-defined', high first.
15456 : habit-up           Put entries that are habits first
15457 : habit-down         Put entries that are habits last
15458 : alpha-up           Sort headlines alphabetically
15459 : alpha-down         Sort headlines alphabetically, reversed
15461 : The different possibilities will be tried in sequence, and testing stops
15462 : if one comparison returns a "not-equal".  For example, the default
15463 :     '(time-up category-keep priority-down)
15464 : means: Pull out all entries having a specified time of day and sort them,
15465 : in order to make a time schedule for the current day the first thing in the
15466 : agenda listing for the day.  Of the entries without a time indication, keep
15467 : the grouped in categories, don't sort the categories, but keep them in
15468 : the sequence given in `org-agenda-files'.  Within each category sort by
15469 : priority.
15471 : Leaving out `category-keep' would mean that items will be sorted across
15472 : categories by priority.
15474 : Instead of a single list, this can also be a set of list for specific
15475 : contents, with a context symbol in the car of the list, any of
15476 : `agenda', `todo', `tags', `search' for the corresponding agenda views.
15478 : Custom commands can bind this variable in the options section.
15480 ** org-inlinetask-show-first-star =(funcall (function (closure (t...=
15481    :PROPERTIES:
15482    :CUSTOM_ID: org-inlinetask-show-first-star
15483    :END:
15485 - *Type:* boolean
15486 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
15487 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-show-first-star][Find modifications in git logs]]
15489 : Non-nil means display the first star of an inline task as additional marker.
15490 : When nil, the first star is not shown.
15492 ** org-html-htmlize-font-prefix =(funcall (function (closure (h...=
15493    :PROPERTIES:
15494    :CUSTOM_ID: org-html-htmlize-font-prefix
15495    :END:
15497 - *Type:* string
15498 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
15499 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-font-prefix][Find modifications in git logs]]
15501 : The prefix for CSS class names for htmlize font specifications.
15503 ** org-texinfo-tables-verbatim =(funcall (function (closure (t...=
15504    :PROPERTIES:
15505    :CUSTOM_ID: org-texinfo-tables-verbatim
15506    :END:
15508 - *Type:* boolean
15509 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
15510 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-tables-verbatim][Find modifications in git logs]]
15512 : When non-nil, tables are exported verbatim.
15514 ** org-odt-pixels-per-inch =(funcall (function (closure (h...=
15515    :PROPERTIES:
15516    :CUSTOM_ID: org-odt-pixels-per-inch
15517    :END:
15519 - *Type:* float
15520 - *Since:* Emacs version 24.4
15521 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
15522 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-pixels-per-inch][Find modifications in git logs]]
15524 : Scaling factor for converting images pixels to inches.
15525 : Use this for sizing of embedded images.  See Info node `(org)
15526 : Images in ODT export' for more information.
15528 ** org-html-viewport =(funcall (function (closure (h...=
15529    :PROPERTIES:
15530    :CUSTOM_ID: org-html-viewport
15531    :END:
15533 - *Type:* (choice (const :tag "Disable" ...
15534 - *Since:* Emacs version 26.1
15535 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
15536 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-viewport][Find modifications in git logs]]
15538 : Viewport options for mobile-optimized sites.
15540 : The following values are recognized
15542 : width          Size of the viewport.
15543 : initial-scale  Zoom level when the page is first loaded.
15544 : minimum-scale  Minimum allowed zoom level.
15545 : maximum-scale  Maximum allowed zoom level.
15546 : user-scalable  Whether zoom can be changed.
15548 : The viewport meta tag is inserted if this variable is non-nil.
15550 : See the following site for a reference:
15551 : https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
15553 ** org-babel-process-comment-text =(funcall (function (closure (t...=
15554    :PROPERTIES:
15555    :CUSTOM_ID: org-babel-process-comment-text
15556    :END:
15558 - *Type:* function
15559 - *Since:* Emacs version 24.1
15560 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
15561 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-process-comment-text][Find modifications in git logs]]
15563 : Function called to process raw Org text collected to be
15564 : inserted as comments in tangled source-code files.  The function
15565 : should take a single string argument and return a string
15566 : result.  The default value is `org-remove-indentation'.
15568 ** org-koma-letter-use-phone =nil=
15569    :PROPERTIES:
15570    :CUSTOM_ID: org-koma-letter-use-phone
15571    :END:
15573 - *Type:* boolean
15574 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
15575 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-phone][Find modifications in git logs]]
15577 : Non-nil prints sender's phone number.
15578 : This option can also be set with the OPTIONS keyword, e.g.:
15579 : "phone:t".
15581 ** org-agenda-tags-todo-honor-ignore-options =nil=
15582    :PROPERTIES:
15583    :CUSTOM_ID: org-agenda-tags-todo-honor-ignore-options
15584    :END:
15586 - *Type:* boolean
15587 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15588 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-tags-todo-honor-ignore-options][Find modifications in git logs]]
15590 : Non-nil means honor todo-list ignores options also in tags-todo search.
15591 : The variables
15592 :    `org-agenda-todo-ignore-with-date',
15593 :    `org-agenda-todo-ignore-timestamp',
15594 :    `org-agenda-todo-ignore-scheduled',
15595 :    `org-agenda-todo-ignore-deadlines'
15596 : make the global TODO list skip entries that have time stamps of certain
15597 : kinds.  If this option is set, the same options will also apply for the
15598 : tags-todo search, which is the general tags/property matcher
15599 : restricted to unfinished TODO entries only.
15601 ** org-agenda-todo-ignore-scheduled =nil=
15602    :PROPERTIES:
15603    :CUSTOM_ID: org-agenda-todo-ignore-scheduled
15604    :END:
15606 - *Type:* (choice (const :tag "Ignore fu...
15607 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15608 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-scheduled][Find modifications in git logs]]
15610 : Non-nil means, ignore some scheduled TODO items when making TODO list.
15611 : This applies when creating the global todo list.
15612 : Valid values are:
15614 : past     Don't show entries scheduled today or in the past.
15616 : future   Don't show entries scheduled in the future.
15617 :          The idea behind this is that by scheduling it, you don't want to
15618 :          think about it until the scheduled date.
15620 : all      Don't show any scheduled entries in the global todo list.
15621 :          The idea behind this is that by scheduling it, you have already
15622 :          "taken care" of this item.
15624 : t        Same as `all', for backward compatibility.
15626 : This variable can also have an integer as a value.  See
15627 : `org-agenda-todo-ignore-timestamp' for more details.
15629 : See also `org-agenda-todo-ignore-with-date'.
15630 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
15631 : to make his option also apply to the tags-todo list.
15633 ** org-log-into-drawer =(funcall (function (closure (f...=
15634    :PROPERTIES:
15635    :CUSTOM_ID: org-log-into-drawer
15636    :END:
15638 - *Type:* (choice (const :tag "Not into ...
15639 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15640 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-into-drawer][Find modifications in git logs]]
15642 : Non-nil means insert state change notes and time stamps into a drawer.
15643 : When nil, state changes notes will be inserted after the headline and
15644 : any scheduling and clock lines, but not inside a drawer.
15646 : The value of this variable should be the name of the drawer to use.
15647 : LOGBOOK is proposed as the default drawer for this purpose, you can
15648 : also set this to a string to define the drawer of your choice.
15650 : A value of t is also allowed, representing "LOGBOOK".
15652 : A value of t or nil can also be set with on a per-file-basis with
15654 :    #+STARTUP: logdrawer
15655 :    #+STARTUP: nologdrawer
15657 : If this variable is set, `org-log-state-notes-insert-after-drawers'
15658 : will be ignored.
15660 : You can set the property LOG_INTO_DRAWER to overrule this setting for
15661 : a subtree.
15663 : Do not check directly this variable in a Lisp program.  Call
15664 : function `org-log-into-drawer' instead.
15666 ** org-icalendar-combined-description =(funcall (function (closure (t...=
15667    :PROPERTIES:
15668    :CUSTOM_ID: org-icalendar-combined-description
15669    :END:
15671 - *Type:* string
15672 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
15673 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combined-description][Find modifications in git logs]]
15675 : Calendar description for the combined iCalendar (all agenda files).
15677 ** org-table-formula-field-format =(funcall (function (closure (o...=
15678    :PROPERTIES:
15679    :CUSTOM_ID: org-table-formula-field-format
15680    :END:
15682 - *Type:* string
15683 - *Since:* Emacs version 24.1
15684 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
15685 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-field-format][Find modifications in git logs]]
15687 : Format for fields which contain the result of a formula.
15688 : For example, using "~%s~" will display the result within tilde
15689 : characters.  Beware that modifying the display can prevent the
15690 : field from being used in another formula.
15692 ** org-agenda-start-on-weekday =1=
15693    :PROPERTIES:
15694    :CUSTOM_ID: org-agenda-start-on-weekday
15695    :END:
15697 - *Type:* (choice (const :tag "Today" ni...
15698 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15699 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-on-weekday][Find modifications in git logs]]
15701 : Non-nil means start the overview always on the specified weekday.
15702 : 0 denotes Sunday, 1 denotes Monday, etc.
15703 : When nil, always start on the current day.
15704 : Custom commands can set this variable in the options section.
15706 ** org-agenda-search-headline-for-time =t=
15707    :PROPERTIES:
15708    :CUSTOM_ID: org-agenda-search-headline-for-time
15709    :END:
15711 - *Type:* boolean
15712 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
15713 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-search-headline-for-time][Find modifications in git logs]]
15715 : Non-nil means search headline for a time-of-day.
15716 : If the headline contains a time-of-day in one format or another, it will
15717 : be used to sort the entry into the time sequence of items for a day.
15718 : Some people have time stamps in the headline that refer to the creation
15719 : time or so, and then this produces an unwanted side effect.  If this is
15720 : the case for your, use this variable to turn off searching the headline
15721 : for a time.
15723 ** org-learn-always-reschedule =nil=
15724    :PROPERTIES:
15725    :CUSTOM_ID: org-learn-always-reschedule
15726    :END:
15728 - *Type:* boolean
15729 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-learn.el][org-learn.el]]
15730 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-learn-always-reschedule][Find modifications in git logs]]
15732 : If non-nil, always reschedule items, even if retention was "perfect".
15734 ** org-attach-git-annex-cutoff =(funcall (function (closure (t...=
15735    :PROPERTIES:
15736    :CUSTOM_ID: org-attach-git-annex-cutoff
15737    :END:
15739 - *Type:* (choice (const :tag "None" nil...
15740 - *Since:* Emacs version 24.4
15741 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
15742 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-git-annex-cutoff][Find modifications in git logs]]
15744 : If non-nil, files larger than this will be annexed instead of stored.
15746 ** org-table-automatic-realign =(funcall (function (closure (o...=
15747    :PROPERTIES:
15748    :CUSTOM_ID: org-table-automatic-realign
15749    :END:
15751 - *Type:* boolean
15752 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
15753 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-automatic-realign][Find modifications in git logs]]
15755 : Non-nil means automatically re-align table when pressing TAB or RETURN.
15756 : When nil, aligning is only done with `\[org-table-align]', or after column
15757 : removal/insertion.
15759 ** org-footnote-auto-label =(funcall (function (closure (t...=
15760    :PROPERTIES:
15761    :CUSTOM_ID: org-footnote-auto-label
15762    :END:
15764 - *Type:* (choice (const :tag "Prompt fo...
15765 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
15766 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-auto-label][Find modifications in git logs]]
15768 : Non-nil means define automatically new labels for footnotes.
15769 : Possible values are:
15771 : nil        Prompt the user for each label.
15772 : t          Create unique labels of the form [fn:1], [fn:2], etc.
15773 : confirm    Like t, but let the user edit the created value.
15774 :            The label can be removed from the minibuffer to create
15775 :            an anonymous footnote.
15776 : random           Automatically generate a unique, random label.
15778 ** org-table-export-default-format =(funcall (function (closure (o...=
15779    :PROPERTIES:
15780    :CUSTOM_ID: org-table-export-default-format
15781    :END:
15783 - *Type:* string
15784 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
15785 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-export-default-format][Find modifications in git logs]]
15787 : Default export parameters for `org-table-export'.
15788 : These can be overridden for a specific table by setting the
15789 : TABLE_EXPORT_FORMAT property.  See the manual section on orgtbl
15790 : radio tables for the different export transformations and
15791 : available parameters.
15793 ** org-agenda-skip-archived-trees =(funcall (function (closure (t...=
15794    :PROPERTIES:
15795    :CUSTOM_ID: org-agenda-skip-archived-trees
15796    :END:
15798 - *Type:* boolean
15799 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15800 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-archived-trees][Find modifications in git logs]]
15802 : Non-nil means the agenda will skip any items located in archived trees.
15803 : An archived tree is a tree marked with the tag ARCHIVE.  The use of this
15804 : variable is no longer recommended, you should leave it at the value t.
15805 : Instead, use the key `v' to cycle the archives-mode in the agenda.
15807 ** org-footnote-auto-adjust =(funcall (function (closure (t...=
15808    :PROPERTIES:
15809    :CUSTOM_ID: org-footnote-auto-adjust
15810    :END:
15812 - *Type:* (choice (const :tag "No adjust...
15813 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
15814 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-auto-adjust][Find modifications in git logs]]
15816 : Non-nil means automatically adjust footnotes after insert/delete.
15817 : When this is t, after each insertion or deletion of a footnote,
15818 : simple fn:N footnotes will be renumbered, and all footnotes will be sorted.
15819 : If you want to have just sorting or just renumbering, set this variable
15820 : to `sort' or `renumber'.
15822 : The main values of this variable can be set with in-buffer options:
15824 : #+STARTUP: fnadjust
15825 : #+STARTUP: nofnadjust
15827 ** org-babel-tangle-lang-exts =(funcall (function (closure (t...=
15828    :PROPERTIES:
15829    :CUSTOM_ID: org-babel-tangle-lang-exts
15830    :END:
15832 - *Type:* (repeat (cons (string "Languag...
15833 - *Since:* Emacs version 24.1
15834 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
15835 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-lang-exts][Find modifications in git logs]]
15837 : Alist mapping languages to their file extensions.
15838 : The key is the language name, the value is the string that should
15839 : be inserted as the extension commonly used to identify files
15840 : written in this language.  If no entry is found in this list,
15841 : then the name of the language is used.
15843 ** org-hidden-keywords =(funcall (function (closure (f...=
15844    :PROPERTIES:
15845    :CUSTOM_ID: org-hidden-keywords
15846    :END:
15848 - *Type:* (set (const :tag "#+AUTHOR" au...
15849 - *Since:* Emacs version 24.1
15850 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15851 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hidden-keywords][Find modifications in git logs]]
15853 : List of symbols corresponding to keywords to be hidden the org buffer.
15854 : For example, a value \='(title) for this list will make the document's title
15855 : appear in the buffer without the initial #+TITLE: keyword.
15857 ** org-preview-latex-default-process =(funcall (function (closure (f...=
15858    :PROPERTIES:
15859    :CUSTOM_ID: org-preview-latex-default-process
15860    :END:
15862 - *Type:* symbol
15863 - *Since:* Emacs version 26.1
15864 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15865 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-default-process][Find modifications in git logs]]
15867 : The default process to convert LaTeX fragments to image files.
15868 : All available processes and theirs documents can be found in
15869 : `org-preview-latex-process-alist', which see.
15871 ** org-publish-use-timestamps-flag =(funcall (function (closure (t...=
15872    :PROPERTIES:
15873    :CUSTOM_ID: org-publish-use-timestamps-flag
15874    :END:
15876 - *Type:* boolean
15877 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
15878 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-use-timestamps-flag][Find modifications in git logs]]
15880 : Non-nil means use timestamp checking to publish only changed files.
15881 : When nil, do no timestamp checking and always publish all files.
15883 ** org-man-logfiles-extensions =(funcall (function (closure (o...=
15884    :PROPERTIES:
15885    :CUSTOM_ID: org-man-logfiles-extensions
15886    :END:
15888 - *Type:* (repeat (string :tag "Extensio...
15889 - *Since:* Emacs version 24.4
15890 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
15891 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-logfiles-extensions][Find modifications in git logs]]
15893 : The list of file extensions to consider as Man logfiles.
15895 ** org-bibtex-treat-headline-as-title =(funcall (function (closure (t...=
15896    :PROPERTIES:
15897    :CUSTOM_ID: org-bibtex-treat-headline-as-title
15898    :END:
15900 - *Type:* boolean
15901 - *Since:* Emacs version 24.1
15902 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
15903 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-treat-headline-as-title][Find modifications in git logs]]
15905 : Treat headline text as title if title property is absent.
15906 : If an entry is missing a title property, use the headline text as
15907 : the property.  If this value is t, `org-bibtex-check' will ignore
15908 : a missing title field.
15910 ** org-blank-before-new-entry =(funcall (function (closure (f...=
15911    :PROPERTIES:
15912    :CUSTOM_ID: org-blank-before-new-entry
15913    :END:
15915 - *Type:* (list (cons (const heading) (c...
15916 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15917 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-blank-before-new-entry][Find modifications in git logs]]
15919 : Should `org-insert-heading' leave a blank line before new heading/item?
15920 : The value is an alist, with `heading' and `plain-list-item' as CAR,
15921 : and a boolean flag as CDR.  The cdr may also be the symbol `auto', in
15922 : which case Org will look at the surrounding headings/items and try to
15923 : make an intelligent decision whether to insert a blank line or not.
15925 ** org-feed-default-template =(funcall (function (closure (t...=
15926    :PROPERTIES:
15927    :CUSTOM_ID: org-feed-default-template
15928    :END:
15930 - *Type:* (string :tag "Template")
15931 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
15932 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-default-template][Find modifications in git logs]]
15934 : Template for the Org node created from RSS feed items.
15935 : This is just the default, each feed can specify its own.
15936 : Any fields from the feed item can be interpolated into the template with
15937 : %name, for example %title, %description, %pubDate etc.  In addition, the
15938 : following special escapes are valid as well:
15940 : %h      The title, or the first line of the description
15941 : %t      The date as a stamp, either from <pubDate> (if present), or
15942 :         the current date
15943 : %T      Date and time
15944 : %u,%U   Like %t,%T, but inactive time stamps
15945 : %a      A link, from <guid> if that is a permalink, else from <link>
15946 : %(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
15947 :         %-escapes above can be used as arguments, e.g. %(capitalize \"%h\")
15949 ** org-time-stamp-custom-formats =(funcall (function (closure (f...=
15950    :PROPERTIES:
15951    :CUSTOM_ID: org-time-stamp-custom-formats
15952    :END:
15954 - *Type:* sexp
15955 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
15956 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp-custom-formats][Find modifications in git logs]]
15958 : Custom formats for time stamps.  See `format-time-string' for the syntax.
15959 : These are overlaid over the default ISO format if the variable
15960 : `org-display-custom-times' is set.  Time like %H:%M should be at the
15961 : end of the second format.  The custom formats are also honored by export
15962 : commands, if custom time display is turned on at the time of export.
15964 ** org-man-table-scientific-notation =(funcall (function (closure (o...=
15965    :PROPERTIES:
15966    :CUSTOM_ID: org-man-table-scientific-notation
15967    :END:
15969 - *Type:* (choice (string :tag "Format s...
15970 - *Since:* Emacs version 24.4
15971 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
15972 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-table-scientific-notation][Find modifications in git logs]]
15974 : Format string to display numbers in scientific notation.
15975 : The format should have "%s" twice, for mantissa and exponent
15976 : (i.e. "%s\\times10^{%s}").
15978 : When nil, no transformation is made.
15980 ** org-babel-ruby-nil-to =(funcall (function (closure (i...=
15981    :PROPERTIES:
15982    :CUSTOM_ID: org-babel-ruby-nil-to
15983    :END:
15985 - *Type:* symbol
15986 - *Since:* Emacs version 24.4
15987 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ruby.el][ob-ruby.el]]
15988 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-ruby-nil-to][Find modifications in git logs]]
15990 : Replace nil in ruby tables with this before returning.
15992 ** org-babel-J-command =(funcall (function (closure (t...=
15993    :PROPERTIES:
15994    :CUSTOM_ID: org-babel-J-command
15995    :END:
15997 - *Type:* string
15998 - *Since:* Emacs version 26.1
15999 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-J.el][ob-J.el]]
16000 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-J-command][Find modifications in git logs]]
16002 : Command to call J.
16004 ** org-babel-R-command =(funcall (function (closure (t...=
16005    :PROPERTIES:
16006    :CUSTOM_ID: org-babel-R-command
16007    :END:
16009 - *Type:* string
16010 - *Since:* Emacs version 24.1
16011 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-R.el][ob-R.el]]
16012 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-R-command][Find modifications in git logs]]
16014 : Name of command to use for executing R code.
16016 ** org-clock-x11idle-program-name =(funcall (function (closure (t...=
16017    :PROPERTIES:
16018    :CUSTOM_ID: org-clock-x11idle-program-name
16019    :END:
16021 - *Type:* string
16022 - *Since:* Emacs version 24.4
16023 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
16024 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-x11idle-program-name][Find modifications in git logs]]
16026 : Name of the program which prints X11 idle time in milliseconds.
16028 : You can find x11idle.c in the contrib/scripts directory of the
16029 : Org git distribution. Or, you can do:
16031 :     sudo apt-get install xprintidle
16033 : if you are using Debian.
16035 ** org-icalendar-with-timestamps =(funcall (function (closure (t...=
16036    :PROPERTIES:
16037    :CUSTOM_ID: org-icalendar-with-timestamps
16038    :END:
16040 - *Type:* (choice (const :tag "All times...
16041 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
16042 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-with-timestamps][Find modifications in git logs]]
16044 : Non-nil means make an event from plain time stamps.
16046 : It can be set to `active', `inactive', t or nil, in order to make
16047 : an event from, respectively, only active timestamps, only
16048 : inactive ones, all of them or none.
16050 : This variable has precedence over `org-export-with-timestamps'.
16051 : It can also be set with the #+OPTIONS line, e.g. "<:t".
16053 ** org-mobile-encryption-password =(funcall (function (closure (t...=
16054    :PROPERTIES:
16055    :CUSTOM_ID: org-mobile-encryption-password
16056    :END:
16058 - *Type:* (string :tag "Password")
16059 - *Since:* Emacs version 24.1
16060 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
16061 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-encryption-password][Find modifications in git logs]]
16063 : Password for encrypting files uploaded to the server.
16064 : This is a single password which is used for AES-256 encryption.  The same
16065 : password must also be set in the MobileOrg application.  All Org files,
16066 : including mobileorg.org will be encrypted using this password.
16068 : SECURITY CONSIDERATIONS:
16070 : Note that, when Org runs the encryption commands, the password could
16071 : be visible briefly on your system with the `ps' command.  So this method is
16072 : only intended to keep the files secure on the server, not on your own machine.
16074 : Also, if you set this variable in an init file (.emacs or .emacs.d/init.el
16075 : or custom.el...) and if that file is stored in a way so that other can read
16076 : it, this also limits the security of this approach.  You can also leave
16077 : this variable empty - Org will then ask for the password once per Emacs
16078 : session.
16080 ** org-agenda-format-date =(quote org-agenda-format-date-...=
16081    :PROPERTIES:
16082    :CUSTOM_ID: org-agenda-format-date
16083    :END:
16085 - *Type:* (choice (string :tag "Format s...
16086 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16087 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-format-date][Find modifications in git logs]]
16089 : Format string for displaying dates in the agenda.
16090 : Used by the daily/weekly agenda and by the timeline.  This should be
16091 : a format string understood by `format-time-string', or a function returning
16092 : the formatted date as a string.  The function must take a single argument,
16093 : a calendar-style date list like (month day year).
16095 ** org-babel-remote-temporary-directory =(funcall (function (closure (*...=
16096    :PROPERTIES:
16097    :CUSTOM_ID: org-babel-remote-temporary-directory
16098    :END:
16100 - *Type:* string
16101 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
16102 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remote-temporary-directory][Find modifications in git logs]]
16104 : Directory to hold temporary files on remote hosts.
16106 ** org-export-with-section-numbers =(funcall (function (closure (t...=
16107    :PROPERTIES:
16108    :CUSTOM_ID: org-export-with-section-numbers
16109    :END:
16111 - *Type:* boolean
16112 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16113 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-section-numbers][Find modifications in git logs]]
16115 : Non-nil means add section numbers to headlines when exporting.
16117 : When set to an integer n, numbering will only happen for
16118 : headlines whose relative level is higher or equal to n.
16120 : This option can also be set with the OPTIONS keyword,
16121 : e.g. "num:t".
16123 ** org-export-with-latex =(funcall (function (closure (t...=
16124    :PROPERTIES:
16125    :CUSTOM_ID: org-export-with-latex
16126    :END:
16128 - *Type:* (choice (const :tag "Do not pr...
16129 - *Since:* Emacs version 24.4
16130 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16131 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-latex][Find modifications in git logs]]
16133 : Non-nil means process LaTeX environments and fragments.
16135 : This option can also be set with the OPTIONS line,
16136 : e.g. "tex:verbatim".  Allowed values are:
16138 : nil         Ignore math snippets.
16139 : `verbatim'  Keep everything in verbatim.
16140 : t           Allow export of math snippets.
16142 ** org-export-exclude-tags =(funcall (function (closure (t...=
16143    :PROPERTIES:
16144    :CUSTOM_ID: org-export-exclude-tags
16145    :END:
16147 - *Type:* (repeat (string :tag "Tag"))
16148 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16149 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-exclude-tags][Find modifications in git logs]]
16151 : Tags that exclude a tree from export.
16153 : All trees carrying any of these tags will be excluded from
16154 : export.  This is without condition, so even subtrees inside that
16155 : carry one of the `org-export-select-tags' will be removed.
16157 : This option can also be set with the EXCLUDE_TAGS keyword.
16159 ** org-html-head-include-default-style =(funcall (function (closure (h...=
16160    :PROPERTIES:
16161    :CUSTOM_ID: org-html-head-include-default-style
16162    :END:
16164 - *Type:* boolean
16165 - *Since:* Emacs version 24.4
16166 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
16167 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-head-include-default-style][Find modifications in git logs]]
16169 : Non-nil means include the default style in exported HTML files.
16170 : The actual style is defined in `org-html-style-default' and
16171 : should not be modified.  Use `org-html-head' to use your own
16172 : style information.
16174 ** org-habit-completed-glyph =(funcall (function (closure (t...=
16175    :PROPERTIES:
16176    :CUSTOM_ID: org-habit-completed-glyph
16177    :END:
16179 - *Type:* character
16180 - *Since:* Emacs version 24.1
16181 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
16182 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-completed-glyph][Find modifications in git logs]]
16184 : Glyph character used to show completed days on which a task was done.
16186 ** org-mhe-search-all-folders =(funcall (function (closure (t...=
16187    :PROPERTIES:
16188    :CUSTOM_ID: org-mhe-search-all-folders
16189    :END:
16191 - *Type:* boolean
16192 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mhe.el][org-mhe.el]]
16193 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mhe-search-all-folders][Find modifications in git logs]]
16195 : Non-nil means the search for the mh-message may extend to all folders.
16196 : When non-nil, the search for a message will extend to all other
16197 : folders if it cannot be found in the folder given in the link.
16198 : Searching all folders may be slow with the default pick based
16199 : search but is very efficient with one of the other search engines
16200 : supported by MH-E.
16202 ** org-babel-lua-hline-to =(funcall (function (closure (t...=
16203    :PROPERTIES:
16204    :CUSTOM_ID: org-babel-lua-hline-to
16205    :END:
16207 - *Type:* string
16208 - *Since:* Emacs version 24.5
16209 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lua.el][ob-lua.el]]
16210 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lua-hline-to][Find modifications in git logs]]
16212 : Replace hlines in incoming tables with this when translating to lua.
16214 ** org-agenda-max-todos =nil=
16215    :PROPERTIES:
16216    :CUSTOM_ID: org-agenda-max-todos
16217    :END:
16219 - *Type:* (choice (symbol :tag "No limit...
16220 - *Since:* Emacs version 24.4
16221 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16222 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-todos][Find modifications in git logs]]
16224 : Maximum number of TODOs to display in an agenda.
16225 : This can be nil (no limit) or an integer or an alist of agenda
16226 : types with an associated number of entries to display in this
16227 : type.
16229 ** org-agenda-skip-scheduled-delay-if-deadline =nil=
16230    :PROPERTIES:
16231    :CUSTOM_ID: org-agenda-skip-scheduled-delay-if-deadline
16232    :END:
16234 - *Type:* (choice (const :tag "Always ho...
16235 - *Since:* Emacs version 24.4
16236 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16237 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-scheduled-delay-if-deadline][Find modifications in git logs]]
16239 : Non-nil means skip scheduled delay when entry also has a deadline.
16240 : This variable may be set to nil, t, the symbol `post-deadline',
16241 : or a number which will then give the number of days after the actual
16242 : scheduled date when the delay should expire.  The symbol `post-deadline'
16243 : eliminates the schedule delay when the date is posterior to the deadline.
16245 ** org-html-keep-old-src =(funcall (function (closure (h...=
16246    :PROPERTIES:
16247    :CUSTOM_ID: org-html-keep-old-src
16248    :END:
16250 - *Type:* boolean
16251 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
16252 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-keep-old-src][Find modifications in git logs]]
16254 : When non-nil, use <pre class=""> instead of <pre><code class="">.
16256 ** org-table-fix-formulas-confirm =(funcall (function (closure (o...=
16257    :PROPERTIES:
16258    :CUSTOM_ID: org-table-fix-formulas-confirm
16259    :END:
16261 - *Type:* (choice (const :tag "with yes-...
16262 - *Since:* Emacs version 24.1
16263 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
16264 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fix-formulas-confirm][Find modifications in git logs]]
16266 : Whether the user should confirm when Org fixes formulas.
16268 ** org-clock-into-drawer =(funcall (function (closure (t...=
16269    :PROPERTIES:
16270    :CUSTOM_ID: org-clock-into-drawer
16271    :END:
16273 - *Type:* (choice (const :tag "Always" t...
16274 - *Since:* Emacs version 26.1
16275 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
16276 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-into-drawer][Find modifications in git logs]]
16278 : Non-nil when clocking info should be wrapped into a drawer.
16280 : When non-nil, clocking info will be inserted into the same drawer
16281 : as log notes (see variable `org-log-into-drawer'), if it exists,
16282 : or "LOGBOOK" otherwise.  If necessary, the drawer will be
16283 : created.
16285 : When an integer, the drawer is created only when the number of
16286 : clocking entries in an item reaches or exceeds this value.
16288 : When a string, it becomes the name of the drawer, ignoring the
16289 : log notes drawer altogether.
16291 : Do not check directly this variable in a Lisp program.  Call
16292 : function `org-clock-into-drawer' instead.
16294 ** org-src-tab-acts-natively =(funcall (function (closure (t...=
16295    :PROPERTIES:
16296    :CUSTOM_ID: org-src-tab-acts-natively
16297    :END:
16299 - *Type:* boolean
16300 - *Since:* Emacs version 24.1
16301 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
16302 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-tab-acts-natively][Find modifications in git logs]]
16304 : If non-nil, the effect of TAB in a code block is as if it were
16305 : issued in the language major mode buffer.
16307 ** org-log-done-with-time =(funcall (function (closure (f...=
16308    :PROPERTIES:
16309    :CUSTOM_ID: org-log-done-with-time
16310    :END:
16312 - *Type:* boolean
16313 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16314 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-done-with-time][Find modifications in git logs]]
16316 : Non-nil means the CLOSED time stamp will contain date and time.
16317 : When nil, only the date will be recorded.
16319 ** org-html-table-data-tags =(funcall (function (closure (h...=
16320    :PROPERTIES:
16321    :CUSTOM_ID: org-html-table-data-tags
16322    :END:
16324 - *Type:* (cons (string :tag "Opening ta...
16325 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
16326 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-data-tags][Find modifications in git logs]]
16328 : The opening and ending tags for table data fields.
16329 : This is customizable so that alignment options can be specified.
16330 : The first %s will be filled with the scope of the field, either row or col.
16331 : The second %s will be replaced by a style entry to align the field.
16332 : See also the variable `org-html-table-align-individual-fields'.
16334 ** org-agenda-use-time-grid =t=
16335    :PROPERTIES:
16336    :CUSTOM_ID: org-agenda-use-time-grid
16337    :END:
16339 - *Type:* boolean
16340 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16341 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-use-time-grid][Find modifications in git logs]]
16343 : Non-nil means show a time grid in the agenda schedule.
16344 : A time grid is a set of lines for specific times (like every two hours between
16345 : 8:00 and 20:00).  The items scheduled for a day at specific times are
16346 : sorted in between these lines.
16347 : For details about when the grid will be shown, and what it will look like, see
16348 : the variable `org-agenda-time-grid'.
16350 ** org-columns-modify-value-for-display-function =(funcall (function (closure (t...=
16351    :PROPERTIES:
16352    :CUSTOM_ID: org-columns-modify-value-for-display-function
16353    :END:
16355 - *Type:* (choice (const nil) (function)...
16356 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
16357 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-modify-value-for-display-function][Find modifications in git logs]]
16359 : Function that modifies values for display in column view.
16360 : For example, it can be used to cut out a certain part from a time stamp.
16361 : The function must take 2 arguments:
16363 : column-title    The title of the column (*not* the property name)
16364 : value           The value that should be modified.
16366 : The function should return the value that should be displayed,
16367 : or nil if the normal value should be used.
16369 ** org-edit-src-content-indentation =(funcall (function (closure (t...=
16370    :PROPERTIES:
16371    :CUSTOM_ID: org-edit-src-content-indentation
16372    :END:
16374 - *Type:* integer
16375 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
16376 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-content-indentation][Find modifications in git logs]]
16378 : Indentation for the content of a source code block.
16380 : This should be the number of spaces added to the indentation of the #+begin
16381 : line in order to compute the indentation of the block content after
16382 : editing it with `\[org-edit-src-code]'.
16384 : It has no effect if `org-src-preserve-indentation' is non-nil.
16386 ** org-indent-mode-turns-off-org-adapt-indentation =(funcall (function (closure (t...=
16387    :PROPERTIES:
16388    :CUSTOM_ID: org-indent-mode-turns-off-org-adapt-indentation
16389    :END:
16391 - *Type:* boolean
16392 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
16393 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-mode-turns-off-org-adapt-indentation][Find modifications in git logs]]
16395 : Non-nil means setting the variable `org-indent-mode' will turn off indentation adaptation.
16396 : For details see the variable `org-adapt-indentation'.
16398 ** org-table-relative-ref-may-cross-hline =(funcall (function (closure (o...=
16399    :PROPERTIES:
16400    :CUSTOM_ID: org-table-relative-ref-may-cross-hline
16401    :END:
16403 - *Type:* (choice (const :tag "Allow to ...
16404 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
16405 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-relative-ref-may-cross-hline][Find modifications in git logs]]
16407 : Non-nil means relative formula references may cross hlines.
16408 : Here are the allowed values:
16410 : nil    Relative references may not cross hlines.  They will reference the
16411 :        field next to the hline instead.  Coming from below, the reference
16412 :        will be to the field below the hline.  Coming from above, it will be
16413 :        to the field above.
16414 : t      Relative references may cross hlines.
16415 : error  An attempt to cross a hline will throw an error.
16417 : It is probably good to never set this variable to nil, for the sake of
16418 : portability of tables.
16420 ** org-ascii-paragraph-spacing =(funcall (function (closure (t...=
16421    :PROPERTIES:
16422    :CUSTOM_ID: org-ascii-paragraph-spacing
16423    :END:
16425 - *Type:* (choice (integer :tag "Number ...
16426 - *Since:* Emacs version 24.4
16427 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
16428 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-paragraph-spacing][Find modifications in git logs]]
16430 : Number of white lines between paragraphs.
16431 : If the value is an integer, add this number of blank lines
16432 : between contiguous paragraphs.  If is it the symbol `auto', keep
16433 : the same number of blank lines as in the original document.
16435 ** org-export-headline-levels =(funcall (function (closure (t...=
16436    :PROPERTIES:
16437    :CUSTOM_ID: org-export-headline-levels
16438    :END:
16440 - *Type:* integer
16441 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16442 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-headline-levels][Find modifications in git logs]]
16444 : The last level which is still exported as a headline.
16446 : Inferior levels will usually produce itemize or enumerate lists
16447 : when exported, but back-end behavior may differ.
16449 : This option can also be set with the OPTIONS keyword,
16450 : e.g. "H:2".
16452 ** org-export-with-statistics-cookies =(funcall (function (closure (t...=
16453    :PROPERTIES:
16454    :CUSTOM_ID: org-export-with-statistics-cookies
16455    :END:
16457 - *Type:* boolean
16458 - *Since:* Emacs version 24.4
16459 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16460 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-statistics-cookies][Find modifications in git logs]]
16462 : Non-nil means include statistics cookies in export.
16463 : This option can also be set with the OPTIONS keyword,
16464 : e.g. "stat:nil"
16466 ** org-agenda-entry-text-maxlines =5=
16467    :PROPERTIES:
16468    :CUSTOM_ID: org-agenda-entry-text-maxlines
16469    :END:
16471 - *Type:* integer
16472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-maxlines][Find modifications in git logs]]
16475 : Number of text lines to be added when `E' is pressed in the agenda.
16477 : Note that this variable only used during agenda display.  To add entry text
16478 : when exporting the agenda, configure the variable
16479 : `org-agenda-add-entry-text-maxlines'.
16481 ** org-babel-tangle-use-relative-file-links =(funcall (function (closure (t...=
16482    :PROPERTIES:
16483    :CUSTOM_ID: org-babel-tangle-use-relative-file-links
16484    :END:
16486 - *Type:* boolean
16487 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
16488 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-use-relative-file-links][Find modifications in git logs]]
16490 : Use relative path names in links from tangled source back the Org file.
16492 ** org-agenda-entry-text-leaders ="    > "=
16493    :PROPERTIES:
16494    :CUSTOM_ID: org-agenda-entry-text-leaders
16495    :END:
16497 - *Type:* string
16498 - *Since:* Emacs version 24.4
16499 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16500 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-leaders][Find modifications in git logs]]
16502 : Text prepended to the entry text in agenda buffers.
16504 ** org-ctrl-k-protect-subtree =(funcall (function (closure (f...=
16505    :PROPERTIES:
16506    :CUSTOM_ID: org-ctrl-k-protect-subtree
16507    :END:
16509 - *Type:* (choice (const :tag "Do not pr...
16510 - *Since:* Emacs version 24.1
16511 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16512 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-k-protect-subtree][Find modifications in git logs]]
16514 : Non-nil means, do not delete a hidden subtree with C-k.
16515 : When set to the symbol `error', simply throw an error when C-k is
16516 : used to kill (part-of) a headline that has hidden text behind it.
16517 : Any other non-nil value will result in a query to the user, if it is
16518 : OK to kill that hidden subtree.  When nil, kill without remorse.
16520 ** org-directory =(funcall (function (closure (f...=
16521    :PROPERTIES:
16522    :CUSTOM_ID: org-directory
16523    :END:
16525 - *Type:* directory
16526 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16527 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-directory][Find modifications in git logs]]
16529 : Directory with Org files.
16530 : This is just a default location to look for Org files.  There is no need
16531 : at all to put your files into this directory.  It is used in the
16532 : following situations:
16534 : 1. When a capture template specifies a target file that is not an
16535 :    absolute path.  The path will then be interpreted relative to
16536 :    `org-directory'
16537 : 2. When the value of variable `org-agenda-files' is a single file, any
16538 :    relative paths in this file will be taken as relative to
16539 :    `org-directory'.
16541 ** org-latex-footnote-separator =(funcall (function (closure (t...=
16542    :PROPERTIES:
16543    :CUSTOM_ID: org-latex-footnote-separator
16544    :END:
16546 - *Type:* string
16547 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
16548 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-footnote-separator][Find modifications in git logs]]
16550 : Text used to separate footnotes.
16552 ** org-clock-auto-clock-resolution =(funcall (function (closure (t...=
16553    :PROPERTIES:
16554    :CUSTOM_ID: org-clock-auto-clock-resolution
16555    :END:
16557 - *Type:* (choice (const :tag "Never" ni...
16558 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
16559 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-auto-clock-resolution][Find modifications in git logs]]
16561 : When to automatically resolve open clocks found in Org buffers.
16563 ** org-log-state-notes-insert-after-drawers =(funcall (function (closure (f...=
16564    :PROPERTIES:
16565    :CUSTOM_ID: org-log-state-notes-insert-after-drawers
16566    :END:
16568 - *Type:* boolean
16569 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16570 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-state-notes-insert-after-drawers][Find modifications in git logs]]
16572 : Non-nil means insert state change notes after any drawers in entry.
16573 : Only the drawers that *immediately* follow the headline and the
16574 : deadline/scheduled line are skipped.
16575 : When nil, insert notes right after the heading and perhaps the line
16576 : with deadline/scheduling if present.
16578 : This variable will have no effect if `org-log-into-drawer' is
16579 : set.
16581 ** org-plain-list-ordered-item-terminator =(funcall (function (closure (o...=
16582    :PROPERTIES:
16583    :CUSTOM_ID: org-plain-list-ordered-item-terminator
16584    :END:
16586 - *Type:* (choice (const :tag "dot like ...
16587 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
16588 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plain-list-ordered-item-terminator][Find modifications in git logs]]
16590 : The character that makes a line with leading number an ordered list item.
16591 : Valid values are ?. and ?).  To get both terminators, use t.
16593 : This variable needs to be set before org.el is loaded.  If you
16594 : need to make a change while Emacs is running, use the customize
16595 : interface or run the following code after updating it:
16597 :   `\[org-element-update-syntax]'
16599 ** org-ascii-indented-line-width =(funcall (function (closure (t...=
16600    :PROPERTIES:
16601    :CUSTOM_ID: org-ascii-indented-line-width
16602    :END:
16604 - *Type:* (choice (integer :tag "Number ...
16605 - *Since:* Emacs version 24.4
16606 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
16607 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-indented-line-width][Find modifications in git logs]]
16609 : Additional indentation width for the first line in a paragraph.
16610 : If the value is an integer, indent the first line of each
16611 : paragraph by this width, unless it is located at the beginning of
16612 : a section, in which case indentation is removed from that line.
16613 : If it is the symbol `auto' preserve indentation from original
16614 : document.
16616 ** org-attach-expert =(funcall (function (closure (t...=
16617    :PROPERTIES:
16618    :CUSTOM_ID: org-attach-expert
16619    :END:
16621 - *Type:* boolean
16622 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
16623 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-expert][Find modifications in git logs]]
16625 : Non-nil means do not show the splash buffer with the attach dispatcher.
16627 ** org-highlight-links =(funcall (function (closure (f...=
16628    :PROPERTIES:
16629    :CUSTOM_ID: org-highlight-links
16630    :END:
16632 - *Type:* (set :greedy t (const :tag "Do...
16633 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16634 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-highlight-links][Find modifications in git logs]]
16636 : Types of links that should be highlighted in Org files.
16638 : This is a list of symbols, each one of them leading to the
16639 : highlighting of a certain link type.
16641 : You can still open links that are not highlighted.
16643 : In principle, it does not hurt to turn on highlighting for all
16644 : link types.  There may be a small gain when turning off unused
16645 : link types.  The types are:
16647 : bracket   The recommended [[link][description]] or [[link]] links with hiding.
16648 : angle     Links in angular brackets that may contain whitespace like
16649 :           <bbdb:Carsten Dominik>.
16650 : plain     Plain links in normal text, no whitespace, like http://google.com.
16651 : radio     Text that is matched by a radio target, see manual for details.
16652 : tag       Tag settings in a headline (link to tag search).
16653 : date      Time stamps (link to calendar).
16654 : footnote  Footnote labels.
16656 : If you set this variable during an Emacs session, use `org-mode-restart'
16657 : in the Org buffer so that the change takes effect.
16659 ** org-src-preserve-indentation =(funcall (function (closure (t...=
16660    :PROPERTIES:
16661    :CUSTOM_ID: org-src-preserve-indentation
16662    :END:
16664 - *Type:* boolean
16665 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
16666 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-preserve-indentation][Find modifications in git logs]]
16668 : If non-nil preserve leading whitespace characters on export.
16669 : \<org-mode-map>
16670 : If non-nil leading whitespace characters in source code blocks
16671 : are preserved on export, and when switching between the org
16672 : buffer and the language mode edit buffer.
16674 : When this variable is nil, after editing with `\[org-edit-src-code]',
16675 : the minimum (across-lines) number of leading whitespace characters
16676 : are removed from all lines, and the code block is uniformly indented
16677 : according to the value of `org-edit-src-content-indentation'.
16679 ** org-custom-properties =(funcall (function (closure (f...=
16680    :PROPERTIES:
16681    :CUSTOM_ID: org-custom-properties
16682    :END:
16684 - *Type:* (repeat (string :tag "Property...
16685 - *Since:* Emacs version 24.3
16686 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16687 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-custom-properties][Find modifications in git logs]]
16689 : List of properties (as strings) with a special meaning.
16690 : The default use of these custom properties is to let the user
16691 : hide them with `org-toggle-custom-properties-visibility'.
16693 ** org-clock-heading-function =(funcall (function (closure (t...=
16694    :PROPERTIES:
16695    :CUSTOM_ID: org-clock-heading-function
16696    :END:
16698 - *Type:* (choice (const nil) (function)...
16699 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
16700 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-heading-function][Find modifications in git logs]]
16702 : When non-nil, should be a function to create `org-clock-heading'.
16703 : This is the string shown in the mode line when a clock is running.
16704 : The function is called with point at the beginning of the headline.
16706 ** org-link-frame-setup =(funcall (function (closure (f...=
16707    :PROPERTIES:
16708    :CUSTOM_ID: org-link-frame-setup
16709    :END:
16711 - *Type:* (list (cons (const vm) (choice...
16712 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16713 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-frame-setup][Find modifications in git logs]]
16715 : Setup the frame configuration for following links.
16716 : When following a link with Emacs, it may often be useful to display
16717 : this link in another window or frame.  This variable can be used to
16718 : set this up for the different types of links.
16719 : For VM, use any of
16720 :     `vm-visit-folder'
16721 :     `vm-visit-folder-other-window'
16722 :     `vm-visit-folder-other-frame'
16723 : For Gnus, use any of
16724 :     `gnus'
16725 :     `gnus-other-frame'
16726 :     `org-gnus-no-new-news'
16727 : For FILE, use any of
16728 :     `find-file'
16729 :     `find-file-other-window'
16730 :     `find-file-other-frame'
16731 : For Wanderlust use any of
16732 :     `wl'
16733 :     `wl-other-frame'
16734 : For the calendar, use the variable `calendar-setup'.
16735 : For BBDB, it is currently only possible to display the matches in
16736 : another window.
16738 ** org-agenda-remove-times-when-in-prefix =t=
16739    :PROPERTIES:
16740    :CUSTOM_ID: org-agenda-remove-times-when-in-prefix
16741    :END:
16743 - *Type:* (choice (const :tag "Always" t...
16744 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
16745 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-times-when-in-prefix][Find modifications in git logs]]
16747 : Non-nil means remove duplicate time specifications in agenda items.
16748 : When the format `org-agenda-prefix-format' contains a `%t' specifier, a
16749 : time-of-day specification in a headline or diary entry is extracted and
16750 : placed into the prefix.  If this option is non-nil, the original specification
16751 : (a timestamp or -range, or just a plain time(range) specification like
16752 : 11:30-4pm) will be removed for agenda display.  This makes the agenda less
16753 : cluttered.
16754 : The option can be t or nil.  It may also be the symbol `beg', indicating
16755 : that the time should only be removed when it is located at the beginning of
16756 : the headline/diary entry.
16758 ** org-pretty-entities-include-sub-superscripts =(funcall (function (closure (f...=
16759    :PROPERTIES:
16760    :CUSTOM_ID: org-pretty-entities-include-sub-superscripts
16761    :END:
16763 - *Type:* boolean
16764 - *Since:* Emacs version 24.1
16765 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16766 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-pretty-entities-include-sub-superscripts][Find modifications in git logs]]
16768 : Non-nil means, pretty entity display includes formatting sub/superscripts.
16770 ** org-todo-interpretation =(funcall (function (closure (f...=
16771    :PROPERTIES:
16772    :CUSTOM_ID: org-todo-interpretation
16773    :END:
16775 - *Type:* (choice (const sequence) (cons...
16776 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16777 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-interpretation][Find modifications in git logs]]
16779 : Controls how TODO keywords are interpreted.
16780 : This variable is in principle obsolete and is only used for
16781 : backward compatibility, if the interpretation of todo keywords is
16782 : not given already in `org-todo-keywords'.  See that variable for
16783 : more information.
16785 ** org-yank-folded-subtrees =(funcall (function (closure (f...=
16786    :PROPERTIES:
16787    :CUSTOM_ID: org-yank-folded-subtrees
16788    :END:
16790 - *Type:* boolean
16791 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16792 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-yank-folded-subtrees][Find modifications in git logs]]
16794 : Non-nil means when yanking subtrees, fold them.
16795 : If the kill is a single subtree, or a sequence of subtrees, i.e. if
16796 : it starts with a heading and all other headings in it are either children
16797 : or siblings, then fold all the subtrees.  However, do this only if no
16798 : text after the yank would be swallowed into a folded tree by this action.
16800 ** org-table-formula-use-constants =(funcall (function (closure (o...=
16801    :PROPERTIES:
16802    :CUSTOM_ID: org-table-formula-use-constants
16803    :END:
16805 - *Type:* boolean
16806 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
16807 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-use-constants][Find modifications in git logs]]
16809 : Non-nil means interpret constants in formulas in tables.
16810 : A constant looks like `$c' or `$Grav' and will be replaced before evaluation
16811 : by the value given in `org-table-formula-constants', or by a value obtained
16812 : from the `constants.el' package.
16814 ** org-display-internal-link-with-indirect-buffer =(funcall (function (closure (f...=
16815    :PROPERTIES:
16816    :CUSTOM_ID: org-display-internal-link-with-indirect-buffer
16817    :END:
16819 - *Type:* boolean
16820 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16821 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-internal-link-with-indirect-buffer][Find modifications in git logs]]
16823 : Non-nil means use indirect buffer to display infile links.
16824 : Activating internal links (from one location in a file to another location
16825 : in the same file) normally just jumps to the location.  When the link is
16826 : activated with a `\[universal-argument]' prefix (or with mouse-3), the link is displayed in
16827 : another window.  When this option is set, the other window actually displays
16828 : an indirect buffer clone of the current buffer, to avoid any visibility
16829 : changes to the current buffer.
16831 ** org-clock-sound =(funcall (function (closure (t...=
16832    :PROPERTIES:
16833    :CUSTOM_ID: org-clock-sound
16834    :END:
16836 - *Type:* (choice (const :tag "No sound"...
16837 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
16838 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-sound][Find modifications in git logs]]
16840 : Sound to use for notifications.
16841 : Possible values are:
16843 : nil        No sound played
16844 : t          Standard Emacs beep
16845 : file name  Play this sound file, fall back to beep
16847 ** org-property-format =(funcall (function (closure (f...=
16848    :PROPERTIES:
16849    :CUSTOM_ID: org-property-format
16850    :END:
16852 - *Type:* string
16853 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16854 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-format][Find modifications in git logs]]
16856 : How property key/value pairs should be formatted by `indent-line'.
16857 : When `indent-line' hits a property definition, it will format the line
16858 : according to this format, mainly to make sure that the values are
16859 : lined-up with respect to each other.
16861 ** org-log-refile =(funcall (function (closure (f...=
16862    :PROPERTIES:
16863    :CUSTOM_ID: org-log-refile
16864    :END:
16866 - *Type:* (choice (const :tag "No loggin...
16867 - *Since:* Emacs version 24.1
16868 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16869 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-refile][Find modifications in git logs]]
16871 : Information to record when a task is refiled.
16873 : Possible values are:
16875 : nil     Don't add anything
16876 : time    Add a time stamp to the task
16877 : note    Prompt for a note and add it with template `org-log-note-headings'
16879 : This option can also be set with on a per-file-basis with
16881 :    #+STARTUP: nologrefile
16882 :    #+STARTUP: logrefile
16883 :    #+STARTUP: lognoterefile
16885 : You can have local logging settings for a subtree by setting the LOGGING
16886 : property to one or more of these keywords.
16888 : When bulk-refiling from the agenda, the value `note' is forbidden and
16889 : will temporarily be changed to `time'.
16891 ** org-mobile-allpriorities =(funcall (function (closure (t...=
16892    :PROPERTIES:
16893    :CUSTOM_ID: org-mobile-allpriorities
16894    :END:
16896 - *Type:* string
16897 - *Since:* Emacs version 24.4
16898 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
16899 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-allpriorities][Find modifications in git logs]]
16901 : Default set of priority cookies for the index file.
16903 ** org-bibtex-autogen-keys =(funcall (function (closure (t...=
16904    :PROPERTIES:
16905    :CUSTOM_ID: org-bibtex-autogen-keys
16906    :END:
16908 - *Type:* boolean
16909 - *Since:* Emacs version 24.1
16910 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
16911 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-autogen-keys][Find modifications in git logs]]
16913 : Set to a truth value to use `bibtex-generate-autokey' to generate keys.
16915 ** org-export-with-todo-keywords =(funcall (function (closure (t...=
16916    :PROPERTIES:
16917    :CUSTOM_ID: org-export-with-todo-keywords
16918    :END:
16920 - *Type:* boolean
16921 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16922 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-todo-keywords][Find modifications in git logs]]
16924 : Non-nil means include TODO keywords in export.
16925 : When nil, remove all these keywords from the export.  This option
16926 : can also be set with the OPTIONS keyword, e.g.  "todo:nil".
16928 ** org-export-with-tags =(funcall (function (closure (t...=
16929    :PROPERTIES:
16930    :CUSTOM_ID: org-export-with-tags
16931    :END:
16933 - *Type:* (choice (const :tag "Off" nil)...
16934 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
16935 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-tags][Find modifications in git logs]]
16937 : If nil, do not export tags, just remove them from headlines.
16939 : If this is the symbol `not-in-toc', tags will be removed from
16940 : table of contents entries, but still be shown in the headlines of
16941 : the document.
16943 : This option can also be set with the OPTIONS keyword,
16944 : e.g. "tags:nil".
16946 ** org-latex-toc-command =(funcall (function (closure (t...=
16947    :PROPERTIES:
16948    :CUSTOM_ID: org-latex-toc-command
16949    :END:
16951 - *Type:* string
16952 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
16953 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-toc-command][Find modifications in git logs]]
16955 : LaTeX command to set the table of contents, list of figures, etc.
16956 : This command only applies to the table of contents generated with
16957 : the toc:nil option, not to those generated with #+TOC keyword.
16959 ** org-cycle-separator-lines =(funcall (function (closure (f...=
16960    :PROPERTIES:
16961    :CUSTOM_ID: org-cycle-separator-lines
16962    :END:
16964 - *Type:* integer
16965 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16966 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-separator-lines][Find modifications in git logs]]
16968 : Number of empty lines needed to keep an empty line between collapsed trees.
16969 : If you leave an empty line between the end of a subtree and the following
16970 : headline, this empty line is hidden when the subtree is folded.
16971 : Org mode will leave (exactly) one empty line visible if the number of
16972 : empty lines is equal or larger to the number given in this variable.
16973 : So the default 2 means at least 2 empty lines after the end of a subtree
16974 : are needed to produce free space between a collapsed subtree and the
16975 : following headline.
16977 : If the number is negative, and the number of empty lines is at least -N,
16978 : all empty lines are shown.
16980 : Special case: when 0, never leave empty lines in collapsed view.
16982 ** org-disputed-keys =(funcall (function (closure (f...=
16983    :PROPERTIES:
16984    :CUSTOM_ID: org-disputed-keys
16985    :END:
16987 - *Type:* alist
16988 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
16989 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-disputed-keys][Find modifications in git logs]]
16991 : Keys for which Org mode and other modes compete.
16992 : This is an alist, cars are the default keys, second element specifies
16993 : the alternative to use when `org-replace-disputed-keys' is t.
16995 : Keys can be specified in any syntax supported by `define-key'.
16996 : The value of this option takes effect only at Org mode startup,
16997 : therefore you'll have to restart Emacs to apply it after changing.
16999 ** org-cycle-skip-children-state-if-no-children =(funcall (function (closure (f...=
17000    :PROPERTIES:
17001    :CUSTOM_ID: org-cycle-skip-children-state-if-no-children
17002    :END:
17004 - *Type:* boolean
17005 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17006 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-skip-children-state-if-no-children][Find modifications in git logs]]
17008 : Non-nil means skip CHILDREN state in entries that don't have any.
17010 ** org-hide-emphasis-markers =(funcall (function (closure (f...=
17011    :PROPERTIES:
17012    :CUSTOM_ID: org-hide-emphasis-markers
17013    :END:
17015 - *Type:* boolean
17016 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17017 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-emphasis-markers][Find modifications in git logs]]
17019 : Non-nil mean font-lock should hide the emphasis marker characters.
17021 ** org-clock-persist-query-save =(funcall (function (closure (t...=
17022    :PROPERTIES:
17023    :CUSTOM_ID: org-clock-persist-query-save
17024    :END:
17026 - *Type:* boolean
17027 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
17028 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-persist-query-save][Find modifications in git logs]]
17030 : When non-nil, ask before saving the current clock on exit.
17032 ** org-odt-format-headline-function =(funcall (function (closure (h...=
17033    :PROPERTIES:
17034    :CUSTOM_ID: org-odt-format-headline-function
17035    :END:
17037 - *Type:* function
17038 - *Since:* Emacs version 26.1
17039 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
17040 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-format-headline-function][Find modifications in git logs]]
17042 : Function to format headline text.
17044 : This function will be called with 5 arguments:
17045 : TODO      the todo keyword (string or nil).
17046 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
17047 : PRIORITY  the priority of the headline (integer or nil)
17048 : TEXT      the main headline text (string).
17049 : TAGS      the tags string, separated with colons (string or nil).
17051 : The function result will be used as headline text.
17053 ** org-refile-target-verify-function =(funcall (function (closure (f...=
17054    :PROPERTIES:
17055    :CUSTOM_ID: org-refile-target-verify-function
17056    :END:
17058 - *Type:* (choice (const nil) (function)...
17059 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17060 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-target-verify-function][Find modifications in git logs]]
17062 : Function to verify if the headline at point should be a refile target.
17063 : The function will be called without arguments, with point at the
17064 : beginning of the headline.  It should return t and leave point
17065 : where it is if the headline is a valid target for refiling.
17067 : If the target should not be selected, the function must return nil.
17068 : In addition to this, it may move point to a place from where the search
17069 : should be continued.  For example, the function may decide that the entire
17070 : subtree of the current entry should be excluded and move point to the end
17071 : of the subtree.
17073 ** org-clock-out-when-done =(funcall (function (closure (t...=
17074    :PROPERTIES:
17075    :CUSTOM_ID: org-clock-out-when-done
17076    :END:
17078 - *Type:* (choice (const :tag "No" nil) ...
17079 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
17080 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-when-done][Find modifications in git logs]]
17082 : When non-nil, clock will be stopped when the clocked entry is marked DONE.
17083 : \<org-mode-map>DONE here means any DONE-like state.
17084 : A nil value means clock will keep running until stopped explicitly with
17085 : `\[org-clock-out]', or until the clock is started in a different item.
17086 : Instead of t, this can also be a list of TODO states that should trigger
17087 : clocking out.
17089 ** org-attach-allow-inheritance =(funcall (function (closure (t...=
17090    :PROPERTIES:
17091    :CUSTOM_ID: org-attach-allow-inheritance
17092    :END:
17094 - *Type:* boolean
17095 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
17096 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-allow-inheritance][Find modifications in git logs]]
17098 : Non-nil means allow attachment directories be inherited.
17100 ** org-export-copy-to-kill-ring =(funcall (function (closure (t...=
17101    :PROPERTIES:
17102    :CUSTOM_ID: org-export-copy-to-kill-ring
17103    :END:
17105 - *Type:* (choice (const :tag "Always" t...
17106 - *Since:* Emacs version 26.1
17107 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
17108 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-copy-to-kill-ring][Find modifications in git logs]]
17110 : Non-nil means pushing export output to the kill ring.
17111 : This variable is ignored during asynchronous export.
17113 ** org-inlinetask-min-level =(funcall (function (closure (t...=
17114    :PROPERTIES:
17115    :CUSTOM_ID: org-inlinetask-min-level
17116    :END:
17118 - *Type:* (choice (const :tag "Off" nil)...
17119 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
17120 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-min-level][Find modifications in git logs]]
17122 : Minimum level a headline must have before it is treated as an inline task.
17123 : Don't set it to something higher than `29' or clocking will break since this
17124 : is the hardcoded maximum number of stars `org-clock-sum' will work with.
17126 : It is strongly recommended that you set `org-cycle-max-level' not at all,
17127 : or to a number smaller than this one.  In fact, when `org-cycle-max-level' is
17128 : not set, it will be assumed to be one less than the value of smaller than
17129 : the value of this variable.
17131 ** org-archive-mark-done =(funcall (function (closure (t...=
17132    :PROPERTIES:
17133    :CUSTOM_ID: org-archive-mark-done
17134    :END:
17136 - *Type:* (choice (const :tag "No" nil) ...
17137 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
17138 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-mark-done][Find modifications in git logs]]
17140 : Non-nil means mark entries as DONE when they are moved to the archive file.
17141 : This can be a string to set the keyword to use.  When non-nil, Org will
17142 : use the first keyword in its list that means done.
17144 ** org-icalendar-combined-agenda-file =(funcall (function (closure (t...=
17145    :PROPERTIES:
17146    :CUSTOM_ID: org-icalendar-combined-agenda-file
17147    :END:
17149 - *Type:* file
17150 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
17151 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combined-agenda-file][Find modifications in git logs]]
17153 : The file name for the iCalendar file covering all agenda files.
17154 : This file is created with the command `\[org-icalendar-combine-agenda-files]'.
17155 : The file name should be absolute.  It will be overwritten without warning.
17157 ** org-confirm-elisp-link-not-regexp =(funcall (function (closure (f...=
17158    :PROPERTIES:
17159    :CUSTOM_ID: org-confirm-elisp-link-not-regexp
17160    :END:
17162 - *Type:* regexp
17163 - *Since:* Emacs version 24.1
17164 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17165 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-confirm-elisp-link-not-regexp][Find modifications in git logs]]
17167 : A regexp to skip confirmation for Elisp links.
17169 ** org-babel-C-compiler =(funcall (function (closure (t...=
17170    :PROPERTIES:
17171    :CUSTOM_ID: org-babel-C-compiler
17172    :END:
17174 - *Type:* string
17175 - *Since:* Emacs version 24.3
17176 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]]
17177 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-C-compiler][Find modifications in git logs]]
17179 : Command used to compile a C source code file into an executable.
17180 : May be either a command in the path, like gcc
17181 : or an absolute path name, like /usr/local/bin/gcc
17182 : parameter may be used, like gcc -v
17184 ** org-babel-D-compiler =(funcall (function (closure (t...=
17185    :PROPERTIES:
17186    :CUSTOM_ID: org-babel-D-compiler
17187    :END:
17189 - *Type:* string
17190 - *Since:* Emacs version 24.3
17191 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]]
17192 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-D-compiler][Find modifications in git logs]]
17194 : Command used to compile and execute a D source code file.
17195 : May be either a command in the path, like rdmd
17196 : or an absolute path name, like /usr/local/bin/rdmd
17197 : parameter may be used, like rdmd --chatty
17199 ** org-clock-string-limit =(funcall (function (closure (t...=
17200    :PROPERTIES:
17201    :CUSTOM_ID: org-clock-string-limit
17202    :END:
17204 - *Type:* integer
17205 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
17206 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-string-limit][Find modifications in git logs]]
17208 : Maximum length of clock strings in the mode line.  0 means no limit.
17210 ** org-agenda-move-date-from-past-immediately-to-today =t=
17211    :PROPERTIES:
17212    :CUSTOM_ID: org-agenda-move-date-from-past-immediately-to-today
17213    :END:
17215 - *Type:* boolean
17216 - *Since:* Emacs version 24.1
17217 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
17218 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-move-date-from-past-immediately-to-today][Find modifications in git logs]]
17220 : Non-nil means jump to today when moving a past date forward in time.
17221 : When using S-right in the agenda to move a a date forward, and the date
17222 : stamp currently points to the past, the first key press will move it
17223 : to today.  WHen nil, just move one day forward even if the date stays
17224 : in the past.
17226 ** org-bookmark-names-plist =(funcall (function (closure (f...=
17227    :PROPERTIES:
17228    :CUSTOM_ID: org-bookmark-names-plist
17229    :END:
17231 - *Type:* plist
17232 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17233 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bookmark-names-plist][Find modifications in git logs]]
17235 : Names for bookmarks automatically set by some Org commands.
17236 : This can provide strings as names for a number of bookmarks Org sets
17237 : automatically.  The following keys are currently implemented:
17238 :   :last-capture
17239 :   :last-capture-marker
17240 :   :last-refile
17241 : When a key does not show up in the property list, the corresponding bookmark
17242 : is not set.
17244 ** org-babel-clojure-backend =(funcall (function (closure (t...=
17245    :PROPERTIES:
17246    :CUSTOM_ID: org-babel-clojure-backend
17247    :END:
17249 - *Type:* (choice (const :tag "cider" ci...
17250 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-clojure.el][ob-clojure.el]]
17251 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-clojure-backend][Find modifications in git logs]]
17253 : Backend used to evaluate Clojure code blocks.
17255 ** org-export-show-temporary-export-buffer =(funcall (function (closure (t...=
17256    :PROPERTIES:
17257    :CUSTOM_ID: org-export-show-temporary-export-buffer
17258    :END:
17260 - *Type:* boolean
17261 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
17262 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-show-temporary-export-buffer][Find modifications in git logs]]
17264 : Non-nil means show buffer after exporting to temp buffer.
17265 : When Org exports to a file, the buffer visiting that file is never
17266 : shown, but remains buried.  However, when exporting to
17267 : a temporary buffer, that buffer is popped up in a second window.
17268 : When this variable is nil, the buffer remains buried also in
17269 : these cases.
17271 ** org-export-in-background =(funcall (function (closure (t...=
17272    :PROPERTIES:
17273    :CUSTOM_ID: org-export-in-background
17274    :END:
17276 - *Type:* boolean
17277 - *Since:* Emacs version 24.4
17278 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
17279 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-in-background][Find modifications in git logs]]
17281 : Non-nil means export and publishing commands will run in background.
17282 : Results from an asynchronous export are never displayed
17283 : automatically.  But you can retrieve them with `\[org-export-stack]'.
17285 ** org-agenda-show-inherited-tags =t=
17286    :PROPERTIES:
17287    :CUSTOM_ID: org-agenda-show-inherited-tags
17288    :END:
17290 - *Type:* (choice (const :tag "Show inhe...
17291 - *Since:* Emacs version 24.3
17292 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
17293 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-inherited-tags][Find modifications in git logs]]
17295 : Non-nil means show inherited tags in each agenda line.
17297 : When this option is set to `always', it takes precedence over
17298 : `org-agenda-use-tag-inheritance' and inherited tags are shown
17299 : in every agenda.
17301 : When this option is set to t (the default), inherited tags are
17302 : shown when they are available, i.e. when the value of
17303 : `org-agenda-use-tag-inheritance' enables tag inheritance for the
17304 : given agenda type.
17306 : This can be set to a list of agenda types in which the agenda
17307 : must display the inherited tags.  Available types are `todo',
17308 : `agenda', `search' and `timeline'.
17310 : When set to nil, never show inherited tags in agenda lines.
17312 ** org-babel-no-eval-on-ctrl-c-ctrl-c =(funcall (function (closure (t...=
17313    :PROPERTIES:
17314    :CUSTOM_ID: org-babel-no-eval-on-ctrl-c-ctrl-c
17315    :END:
17317 - *Type:* boolean
17318 - *Since:* Emacs version 24.1
17319 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
17320 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-no-eval-on-ctrl-c-ctrl-c][Find modifications in git logs]]
17322 : \<org-mode-map>Remove code block evaluation from the `\[org-ctrl-c-ctrl-c]' key binding.
17324 ** org-odd-levels-only =(funcall (function (closure (f...=
17325    :PROPERTIES:
17326    :CUSTOM_ID: org-odd-levels-only
17327    :END:
17329 - *Type:* boolean
17330 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17331 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odd-levels-only][Find modifications in git logs]]
17333 : Non-nil means skip even levels and only use odd levels for the outline.
17334 : This has the effect that two stars are being added/taken away in
17335 : promotion/demotion commands.  It also influences how levels are
17336 : handled by the exporters.
17337 : Changing it requires restart of `font-lock-mode' to become effective
17338 : for fontification also in regions already fontified.
17339 : You may also set this on a per-file basis by adding one of the following
17340 : lines to the buffer:
17342 :    #+STARTUP: odd
17343 :    #+STARTUP: oddeven
17345 ** org-ascii-headline-spacing =(funcall (function (closure (t...=
17346    :PROPERTIES:
17347    :CUSTOM_ID: org-ascii-headline-spacing
17348    :END:
17350 - *Type:* (choice (const :tag "Replicate...
17351 - *Since:* Emacs version 24.4
17352 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
17353 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-headline-spacing][Find modifications in git logs]]
17355 : Number of blank lines inserted around headlines.
17357 : This variable can be set to a cons cell.  In that case, its car
17358 : represents the number of blank lines present before headline
17359 : contents whereas its cdr reflects the number of blank lines after
17360 : contents.
17362 : A nil value replicates the number of blank lines found in the
17363 : original Org buffer at the same place.
17365 ** org-html-htmlize-output-type =(funcall (function (closure (h...=
17366    :PROPERTIES:
17367    :CUSTOM_ID: org-html-htmlize-output-type
17368    :END:
17370 - *Type:* (choice (const css) (const inl...
17371 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
17372 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-output-type][Find modifications in git logs]]
17374 : Output type to be used by htmlize when formatting code snippets.
17375 : Choices are `css' to export the CSS selectors only,`inline-css'
17376 : to export the CSS attribute values inline in the HTML or `nil' to
17377 : export plain text.  We use as default `inline-css', in order to
17378 : make the resulting HTML self-containing.
17380 : However, this will fail when using Emacs in batch mode for export, because
17381 : then no rich font definitions are in place.  It will also not be good if
17382 : people with different Emacs setup contribute HTML files to a website,
17383 : because the fonts will represent the individual setups.  In these cases,
17384 : it is much better to let Org/Htmlize assign classes only, and to use
17385 : a style file to define the look of these classes.
17386 : To get a start for your css file, start Emacs session and make sure that
17387 : all the faces you are interested in are defined, for example by loading files
17388 : in all modes you want.  Then, use the command
17389 : `\[org-html-htmlize-generate-css]' to extract class definitions.
17391 ** org-read-date-display-live =(funcall (function (closure (f...=
17392    :PROPERTIES:
17393    :CUSTOM_ID: org-read-date-display-live
17394    :END:
17396 - *Type:* boolean
17397 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17398 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-display-live][Find modifications in git logs]]
17400 : Non-nil means display current interpretation of date prompt live.
17401 : This display will be in an overlay, in the minibuffer.
17403 ** org-clock-history-length =(funcall (function (closure (t...=
17404    :PROPERTIES:
17405    :CUSTOM_ID: org-clock-history-length
17406    :END:
17408 - *Type:* integer
17409 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
17410 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-history-length][Find modifications in git logs]]
17412 : Number of clock tasks to remember in history.
17414 ** org-imenu-depth =(funcall (function (closure (f...=
17415    :PROPERTIES:
17416    :CUSTOM_ID: org-imenu-depth
17417    :END:
17419 - *Type:* integer
17420 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17421 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-imenu-depth][Find modifications in git logs]]
17423 : The maximum level for Imenu access to Org headlines.
17424 : This also applied for speedbar access.
17426 ** org-icalendar-use-scheduled =(funcall (function (closure (t...=
17427    :PROPERTIES:
17428    :CUSTOM_ID: org-icalendar-use-scheduled
17429    :END:
17431 - *Type:* (set :greedy t (const :tag "SC...
17432 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
17433 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-use-scheduled][Find modifications in git logs]]
17435 : Contexts where iCalendar export should use a scheduling time stamp.
17437 : This is a list with possibly several symbols in it.  Valid symbols are:
17439 : `event-if-todo'       Scheduling time stamps in TODO entries become an event.
17440 : `event-if-not-todo'   Scheduling time stamps in non-TODO entries become an event.
17441 : `todo-start'          Scheduling time stamps in TODO entries become start date.
17442 :                       Some calendar applications show TODO entries only after
17443 :                       that date.
17445 ** org-latex-format-headline-function =(funcall (function (closure (t...=
17446    :PROPERTIES:
17447    :CUSTOM_ID: org-latex-format-headline-function
17448    :END:
17450 - *Type:* function
17451 - *Since:* Emacs version 24.4
17452 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
17453 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-format-headline-function][Find modifications in git logs]]
17455 : Function for formatting the headline's text.
17457 : This function will be called with six arguments:
17458 : TODO      the todo keyword (string or nil)
17459 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
17460 : PRIORITY  the priority of the headline (integer or nil)
17461 : TEXT      the main headline text (string)
17462 : TAGS      the tags (list of strings or nil)
17463 : INFO      the export options (plist)
17465 : The function result will be used in the section format string.
17467 ** org-koma-letter-default-class ="default-koma-letter"=
17468    :PROPERTIES:
17469    :CUSTOM_ID: org-koma-letter-default-class
17470    :END:
17472 - *Type:* string
17473 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17474 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-default-class][Find modifications in git logs]]
17476 : Default class for `org-koma-letter'.
17477 : The value must be a member of `org-latex-classes'.
17479 ** org-cycle-max-level =(funcall (function (closure (f...=
17480    :PROPERTIES:
17481    :CUSTOM_ID: org-cycle-max-level
17482    :END:
17484 - *Type:* (choice (const :tag "No limit"...
17485 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17486 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-max-level][Find modifications in git logs]]
17488 : Maximum level which should still be subject to visibility cycling.
17489 : Levels higher than this will, for cycling, be treated as text, not a headline.
17490 : When `org-odd-levels-only' is set, a value of N in this variable actually
17491 : means 2N-1 stars as the limiting headline.
17492 : When nil, cycle all levels.
17493 : Note that the limiting level of cycling is also influenced by
17494 : `org-inlinetask-min-level'.  When `org-cycle-max-level' is not set but
17495 : `org-inlinetask-min-level' is, cycling will be limited to levels one less
17496 : than its value.
17498 ** org-md-footnote-format =(funcall (function (closure (t...=
17499    :PROPERTIES:
17500    :CUSTOM_ID: org-md-footnote-format
17501    :END:
17503 - *Type:* string
17504 - *Since:* Emacs version 26.1
17505 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
17506 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-footnote-format][Find modifications in git logs]]
17508 : Format string for the footnote reference.
17509 : The %s will be replaced by the footnote reference itself.
17511 ** org-bbdb-extract-date-fun =(funcall (function (closure (d...=
17512    :PROPERTIES:
17513    :CUSTOM_ID: org-bbdb-extract-date-fun
17514    :END:
17516 - *Type:* function
17517 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
17518 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-extract-date-fun][Find modifications in git logs]]
17520 : How to retrieve `month date year' from the anniversary field.
17522 : Customize if you have already filled your BBDB with dates
17523 : different from YYYY-MM-DD.  The function must return a list (month
17524 : date year).
17526 ** org-link-file-path-type =(funcall (function (closure (f...=
17527    :PROPERTIES:
17528    :CUSTOM_ID: org-link-file-path-type
17529    :END:
17531 - *Type:* (choice (const relative) (cons...
17532 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17533 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-file-path-type][Find modifications in git logs]]
17535 : How the path name in file links should be stored.
17536 : Valid values are:
17538 : relative  Relative to the current directory, i.e. the directory of the file
17539 :           into which the link is being inserted.
17540 : absolute  Absolute path, if possible with ~ for home directory.
17541 : noabbrev  Absolute path, no abbreviation of home directory.
17542 : adaptive  Use relative path for files in the current directory and sub-
17543 :           directories of it.  For other files, use an absolute path.
17545 ** org-koma-letter-from-address =""=
17546    :PROPERTIES:
17547    :CUSTOM_ID: org-koma-letter-from-address
17548    :END:
17550 - *Type:* string
17551 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17552 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-from-address][Find modifications in git logs]]
17554 : Sender's address, as a string.
17555 : This option can also be set with one or more FROM_ADDRESS
17556 : keywords.
17558 ** org-export-with-emphasize =(funcall (function (closure (t...=
17559    :PROPERTIES:
17560    :CUSTOM_ID: org-export-with-emphasize
17561    :END:
17563 - *Type:* boolean
17564 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
17565 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-emphasize][Find modifications in git logs]]
17567 : Non-nil means interpret *word*, /word/, _word_ and +word+.
17569 : If the export target supports emphasizing text, the word will be
17570 : typeset in bold, italic, with an underline or strike-through,
17571 : respectively.
17573 : This option can also be set with the OPTIONS keyword,
17574 : e.g. "*:nil".
17576 ** org-odt-schema-dir =(funcall (function (closure (h...=
17577    :PROPERTIES:
17578    :CUSTOM_ID: org-odt-schema-dir
17579    :END:
17581 - *Type:* (choice (const :tag "Not set" ...
17582 - *Since:* Emacs version 24.1
17583 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
17584 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-schema-dir][Find modifications in git logs]]
17586 : Directory that contains OpenDocument schema files.
17588 : This directory contains:
17589 : 1. rnc files for OpenDocument schema
17590 : 2. a "schemas.xml" file that specifies locating rules needed
17591 :    for auto validation of OpenDocument XML files.
17593 : Use the customize interface to set this variable.  This ensures
17594 : that `rng-schema-locating-files' is updated and auto-validation
17595 : of OpenDocument XML takes place based on the value
17596 : `rng-nxml-auto-validate-flag'.
17598 : The default value of this variable varies depending on the
17599 : version of org in use and is initialized from
17600 : `org-odt-schema-dir-list'.  The OASIS schema files are available
17601 : only in the org's private git repository.  It is *not* bundled
17602 : with GNU ELPA tar or standard Emacs distribution.
17604 ** org-inlinetask-default-state =(funcall (function (closure (t...=
17605    :PROPERTIES:
17606    :CUSTOM_ID: org-inlinetask-default-state
17607    :END:
17609 - *Type:* (choice (const :tag "No state"...
17610 - *Since:* Emacs version 24.1
17611 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
17612 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-default-state][Find modifications in git logs]]
17614 : Non-nil means make inline tasks have a TODO keyword initially.
17615 : This should be the state `org-inlinetask-insert-task' should use by
17616 : default, or nil of no state should be assigned.
17618 ** org-mobile-inbox-for-pull =(funcall (function (closure (t...=
17619    :PROPERTIES:
17620    :CUSTOM_ID: org-mobile-inbox-for-pull
17621    :END:
17623 - *Type:* file
17624 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
17625 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-inbox-for-pull][Find modifications in git logs]]
17627 : The file where captured notes and flags will be appended to.
17628 : During the execution of `org-mobile-pull', the file
17629 : `org-mobile-capture-file' will be emptied it's contents have
17630 : been appended to the file given here.  This file should be in
17631 : `org-directory', and not in the staging area or on the web server.
17633 ** org-babel-exp-call-line-template =(funcall (function (closure (t...=
17634    :PROPERTIES:
17635    :CUSTOM_ID: org-babel-exp-call-line-template
17636    :END:
17638 - *Type:* string
17639 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
17640 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-call-line-template][Find modifications in git logs]]
17642 : Template used to export call lines.
17643 : This template may be customized to include the call line name
17644 : with any export markup.  The template is filled out using
17645 : `org-fill-template', and the following %keys may be used.
17647 :  line --- call line
17649 : An example value would be "\n: call: %line" to export the call line
17650 : wrapped in a verbatim environment.
17652 : Note: the results are inserted separately after the contents of
17653 : this template.
17655 ** org-agenda-skip-timestamp-if-done =nil=
17656    :PROPERTIES:
17657    :CUSTOM_ID: org-agenda-skip-timestamp-if-done
17658    :END:
17660 - *Type:* boolean
17661 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
17662 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-timestamp-if-done][Find modifications in git logs]]
17664 : Non-nil means don't select item by timestamp or -range if it is DONE.
17666 ** org-html-toplevel-hlevel =(funcall (function (closure (h...=
17667    :PROPERTIES:
17668    :CUSTOM_ID: org-html-toplevel-hlevel
17669    :END:
17671 - *Type:* integer
17672 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
17673 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-toplevel-hlevel][Find modifications in git logs]]
17675 : The <H> level for level 1 headings in HTML export.
17676 : This is also important for the classes that will be wrapped around headlines
17677 : and outline structure.  If this variable is 1, the top-level headlines will
17678 : be <h1>, and the corresponding classes will be outline-1, section-number-1,
17679 : and outline-text-1.  If this is 2, all of these will get a 2 instead.
17680 : The default for this variable is 2, because we use <h1> for formatting the
17681 : document title.
17683 ** org-latex-minted-langs =(funcall (function (closure (t...=
17684    :PROPERTIES:
17685    :CUSTOM_ID: org-latex-minted-langs
17686    :END:
17688 - *Type:* (repeat (list (symbol :tag "Ma...
17689 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
17690 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-minted-langs][Find modifications in git logs]]
17692 : Alist mapping languages to their minted language counterpart.
17693 : The key is a symbol, the major mode symbol without the "-mode".
17694 : The value is the string that should be inserted as the language
17695 : parameter for the minted package.  If the mode name and the
17696 : listings name are the same, the language does not need an entry
17697 : in this list - but it does not hurt if it is present.
17699 : Note that minted uses all lower case for language identifiers,
17700 : and that the full list of language identifiers can be obtained
17701 : with:
17703 :   pygmentize -L lexers
17705 ** org-clock-clocktable-default-properties =(funcall (function (closure (t...=
17706    :PROPERTIES:
17707    :CUSTOM_ID: org-clock-clocktable-default-properties
17708    :END:
17710 - *Type:* plist
17711 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
17712 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocktable-default-properties][Find modifications in git logs]]
17714 : Default properties for new clocktables.
17715 : These will be inserted into the BEGIN line, to make it easy for users to
17716 : play with them.
17718 ** org-html-table-use-header-tags-for-first-column =(funcall (function (closure (h...=
17719    :PROPERTIES:
17720    :CUSTOM_ID: org-html-table-use-header-tags-for-first-column
17721    :END:
17723 - *Type:* boolean
17724 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
17725 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-use-header-tags-for-first-column][Find modifications in git logs]]
17727 : Non-nil means format column one in tables with header tags.
17728 : When nil, also column one will use data tags.
17730 ** org-link-translation-function =(funcall (function (closure (f...=
17731    :PROPERTIES:
17732    :CUSTOM_ID: org-link-translation-function
17733    :END:
17735 - *Type:* (choice (const nil) (function)...
17736 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17737 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-translation-function][Find modifications in git logs]]
17739 : Function to translate links with different syntax to Org syntax.
17740 : This can be used to translate links created for example by the Planner
17741 : or emacs-wiki packages to Org syntax.
17742 : The function must accept two parameters, a TYPE containing the link
17743 : protocol name like "rmail" or "gnus" as a string, and the linked path,
17744 : which is everything after the link protocol.  It should return a cons
17745 : with possibly modified values of type and path.
17746 : Org contains a function for this, so if you set this variable to
17747 : `org-translate-link-from-planner', you should be able follow many
17748 : links created by planner.
17750 ** org-latex-remove-logfiles =(funcall (function (closure (t...=
17751    :PROPERTIES:
17752    :CUSTOM_ID: org-latex-remove-logfiles
17753    :END:
17755 - *Type:* boolean
17756 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
17757 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-remove-logfiles][Find modifications in git logs]]
17759 : Non-nil means remove the logfiles produced by PDF production.
17760 : By default, logfiles are files with these extensions: .aux, .idx,
17761 : .log, .out, .toc, .nav, .snm and .vrb.  To define the set of
17762 : logfiles to remove, set `org-latex-logfiles-extensions'.
17764 ** org-koma-letter-location =""=
17765    :PROPERTIES:
17766    :CUSTOM_ID: org-koma-letter-location
17767    :END:
17769 - *Type:* string
17770 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
17771 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-location][Find modifications in git logs]]
17773 : Sender's extension field, as a string.
17775 : This option can also be set with the LOCATION keyword.
17776 : Moreover, when:
17777 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
17778 :       or there is no LOCATION keyword or the LOCATION keyword is
17779 :       empty;
17780 :   (2) the letter contains a headline with the special
17781 :       tag "location";
17782 : then the location will be set as the content of the location
17783 : special heading.
17785 : The location field is typically printed right of the address
17786 : field (See Figure 4.9. in the English manual of 2015-10-03).
17788 ** org-latex-custom-lang-environments =(funcall (function (closure (t...=
17789    :PROPERTIES:
17790    :CUSTOM_ID: org-latex-custom-lang-environments
17791    :END:
17793 - *Type:* (repeat (list (symbol :tag "La...
17794 - *Since:* Emacs version 26.1
17795 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
17796 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-custom-lang-environments][Find modifications in git logs]]
17798 : Alist mapping languages to language-specific LaTeX environments.
17800 : It is used during export of src blocks by the listings and minted
17801 : latex packages.  The environment may be a simple string, composed of
17802 : only letters and numbers.  In this case, the string is directly the
17803 : name of the latex environment to use.  The environment may also be
17804 : a format string.  In this case the format string will be directly
17805 : exported.  This format string may contain these elements:
17807 :   %s for the formatted source
17808 :   %c for the caption
17809 :   %f for the float attribute
17810 :   %l for an appropriate label
17811 :   %o for the LaTeX attributes
17813 : For example,
17815 :   (setq org-latex-custom-lang-environments
17816 :      \='((python "pythoncode")
17817 :        (ocaml "\\begin{listing}
17818 : \\begin{minted}[%o]{ocaml}
17819 : %s\\end{minted}
17820 : \\caption{%c}
17821 : \\label{%l}")))
17823 : would have the effect that if Org encounters a Python source block
17824 : during LaTeX export it will produce
17826 :   \begin{pythoncode}
17827 :   <src block body>
17828 :   \end{pythoncode}
17830 : and if Org encounters an Ocaml source block during LaTeX export it
17831 : will produce
17833 :   \begin{listing}
17834 :   \begin{minted}[<attr_latex options>]{ocaml}
17835 :   <src block body>
17836 :   \end{minted}
17837 :   \caption{<caption>}
17838 :   \label{<label>}
17839 :   \end{listing}
17841 ** org-id-search-archives =(funcall (function (closure (t...=
17842    :PROPERTIES:
17843    :CUSTOM_ID: org-id-search-archives
17844    :END:
17846 - *Type:* boolean
17847 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
17848 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-search-archives][Find modifications in git logs]]
17850 : Non-nil means search also the archive files of agenda files for entries.
17851 : This is a possibility to reduce overhead, but it means that entries moved
17852 : to the archives can no longer be found by ID.
17853 : This variable is only relevant when `org-id-track-globally' is set.
17855 ** org-org-htmlized-css-url =(funcall (function (closure (h...=
17856    :PROPERTIES:
17857    :CUSTOM_ID: org-org-htmlized-css-url
17858    :END:
17860 - *Type:* (choice (const :tag "Don't inc...
17861 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-org.el][ox-org.el]]
17862 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-htmlized-css-url][Find modifications in git logs]]
17864 : URL pointing to the CSS defining colors for htmlized Emacs buffers.
17865 : Normally when creating an htmlized version of an Org buffer,
17866 : htmlize will create the CSS to define the font colors.  However,
17867 : this does not work when converting in batch mode, and it also can
17868 : look bad if different people with different fontification setup
17869 : work on the same website.  When this variable is non-nil,
17870 : creating an htmlized version of an Org buffer using
17871 : `org-org-export-as-org' will include a link to this URL if the
17872 : setting of `org-html-htmlize-output-type' is `css'.
17874 ** org-use-fast-tag-selection =(funcall (function (closure (f...=
17875    :PROPERTIES:
17876    :CUSTOM_ID: org-use-fast-tag-selection
17877    :END:
17879 - *Type:* (choice (const :tag "Always" t...
17880 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17881 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-fast-tag-selection][Find modifications in git logs]]
17883 : Non-nil means use fast tag selection scheme.
17884 : This is a special interface to select and deselect tags with single keys.
17885 : When nil, fast selection is never used.
17886 : When the symbol `auto', fast selection is used if and only if selection
17887 : characters for tags have been configured, either through the variable
17888 : `org-tag-alist' or through a #+TAGS line in the buffer.
17889 : When t, fast selection is always used and selection keys are assigned
17890 : automatically if necessary.
17892 ** org-preview-latex-process-alist =(funcall (function (closure (f...=
17893    :PROPERTIES:
17894    :CUSTOM_ID: org-preview-latex-process-alist
17895    :END:
17897 - *Type:* (alist :tag "LaTeX to image ba...
17898 - *Since:* Emacs version 26.1
17899 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17900 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-process-alist][Find modifications in git logs]]
17902 : Definitions of external processes for LaTeX previewing.
17903 : Org mode can use some external commands to generate TeX snippet's images for
17904 : previewing or inserting into HTML files, e.g., "dvipng".  This variable tells
17905 : `org-create-formula-image' how to call them.
17907 : The value is an alist with the pattern (NAME . PROPERTIES).  NAME is a symbol.
17908 : PROPERTIES accepts the following attributes:
17910 :   :programs           list of strings, required programs.
17911 :   :description        string, describe the process.
17912 :   :message            string, message it when required programs cannot be found.
17913 :   :image-input-type   string, input file type of image converter (e.g., "dvi").
17914 :   :image-output-type  string, output file type of image converter (e.g., "png").
17915 :   :use-xcolor         boolean, when non-nil, LaTeX "xcolor" macro is used to
17916 :                       deal with background and foreground color of image.
17917 :                       Otherwise, dvipng style background and foregroud color
17918 :                       format are generated.  You may then refer to them in
17919 :                       command options with "%F" and "%B".
17920 :   :image-size-adjust  cons of numbers, the car element is used to adjust LaTeX
17921 :                       image size showed in buffer and the cdr element is for
17922 :                       HTML file.  This option is only useful for process
17923 :                       developers, users should use variable
17924 :                       `org-format-latex-options' instead.
17925 :   :post-clean         list of strings, files matched are to be cleaned up once
17926 :                       the image is generated.  When nil, the files with ".dvi",
17927 :                       ".xdv", ".pdf", ".tex", ".aux", ".log", ".svg",
17928 :                       ".png", ".jpg", ".jpeg" or ".out" extension will
17929 :                       be cleaned up.
17930 :   :latex-header       list of strings, the LaTeX header of the snippet file.
17931 :                       When nil, the fallback value is used instead, which is
17932 :                       controlled by `org-format-latex-header',
17933 :                       `org-latex-default-packages-alist' and
17934 :                       `org-latex-packages-alist', which see.
17935 :   :latex-compiler     list of LaTeX commands, as strings.  Each of them is given
17936 :                       to the shell.  Place-holders "%t", "%b" and "%o" are
17937 :                       replaced with values defined below.
17938 :   :image-converter    list of image converter commands strings.  Each of them is
17939 :                       given to the shell and supports any of the following
17940 :                       place-holders defined below.
17942 : Place-holders used by `:image-converter' and `:latex-compiler':
17944 :   %f    input file name
17945 :   %b    base name of input file
17946 :   %o    base directory of input file
17947 :   %O    absolute output file name
17949 : Place-holders only used by `:image-converter':
17951 :   %F    foreground of image
17952 :   %B    background of image
17953 :   %D    dpi, which is used to adjust image size by some processing commands.
17954 :   %S    the image size scale ratio, which is used to adjust image size by some
17955 :         processing commands.
17957 ** org-archive-subtree-add-inherited-tags =(funcall (function (closure (t...=
17958    :PROPERTIES:
17959    :CUSTOM_ID: org-archive-subtree-add-inherited-tags
17960    :END:
17962 - *Type:* (choice (const :tag "Never" ni...
17963 - *Since:* Emacs version 24.1
17964 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
17965 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree-add-inherited-tags][Find modifications in git logs]]
17967 : Non-nil means append inherited tags when archiving a subtree.
17969 ** org-get-priority-function =(funcall (function (closure (f...=
17970    :PROPERTIES:
17971    :CUSTOM_ID: org-get-priority-function
17972    :END:
17974 - *Type:* (choice (const nil) (function)...
17975 - *Since:* Emacs version 24.1
17976 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
17977 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-get-priority-function][Find modifications in git logs]]
17979 : Function to extract the priority from a string.
17980 : The string is normally the headline.  If this is nil Org computes the
17981 : priority from the priority cookie like [#A] in the headline.  It returns
17982 : an integer, increasing by 1000 for each priority level.
17983 : The user can set a different function here, which should take a string
17984 : as an argument and return the numeric priority.
17986 ** org-html-table-align-individual-fields =(funcall (function (closure (h...=
17987    :PROPERTIES:
17988    :CUSTOM_ID: org-html-table-align-individual-fields
17989    :END:
17991 - *Type:* boolean
17992 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
17993 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-align-individual-fields][Find modifications in git logs]]
17995 : Non-nil means attach style attributes for alignment to each table field.
17996 : When nil, alignment will only be specified in the column tags, but this
17997 : is ignored by some browsers (like Firefox, Safari).  Opera does it right
17998 : though.
18000 ** org-beamer-outline-frame-title =(funcall (function (closure (t...=
18001    :PROPERTIES:
18002    :CUSTOM_ID: org-beamer-outline-frame-title
18003    :END:
18005 - *Type:* (string :tag "Outline frame ti...
18006 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
18007 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-outline-frame-title][Find modifications in git logs]]
18009 : Default title of a frame containing an outline.
18011 ** org-latex-text-markup-alist =(funcall (function (closure (t...=
18012    :PROPERTIES:
18013    :CUSTOM_ID: org-latex-text-markup-alist
18014    :END:
18016 - *Type:* alist
18017 - *Since:* Emacs version 26.1
18018 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
18019 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-text-markup-alist][Find modifications in git logs]]
18021 : Alist of LaTeX expressions to convert text markup.
18023 : The key must be a symbol among `bold', `code', `italic',
18024 : `strike-through', `underline' and `verbatim'.  The value is
18025 : a formatting string to wrap fontified text with.
18027 : Value can also be set to the following symbols: `verb' and
18028 : `protectedtexttt'.  For the former, Org will use "\verb" to
18029 : create a format string and select a delimiter character that
18030 : isn't in the string.  For the latter, Org will use "\texttt"
18031 : to typeset and try to protect special characters.
18033 : If no association can be found for a given markup, text will be
18034 : returned as-is.
18036 ** org-ascii-caption-above =(funcall (function (closure (t...=
18037    :PROPERTIES:
18038    :CUSTOM_ID: org-ascii-caption-above
18039    :END:
18041 - *Type:* boolean
18042 - *Since:* Emacs version 24.4
18043 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
18044 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-caption-above][Find modifications in git logs]]
18046 : When non-nil, place caption string before the element.
18047 : Otherwise, place it right after it.
18049 ** org-clock-file-time-cell-format =(funcall (function (closure (t...=
18050    :PROPERTIES:
18051    :CUSTOM_ID: org-clock-file-time-cell-format
18052    :END:
18054 - *Type:* string
18055 - *Since:* Emacs version 24.1
18056 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
18057 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-file-time-cell-format][Find modifications in git logs]]
18059 : Format string for the file time cells.
18061 ** org-babel-lua-mode =(funcall (function (closure (t...=
18062    :PROPERTIES:
18063    :CUSTOM_ID: org-babel-lua-mode
18064    :END:
18066 - *Type:* symbol
18067 - *Since:* Emacs version 24.5
18068 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lua.el][ob-lua.el]]
18069 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lua-mode][Find modifications in git logs]]
18071 : Preferred lua mode for use in running lua interactively.
18072 : This will typically be 'lua-mode.
18074 ** org-export-dispatch-use-expert-ui =(funcall (function (closure (t...=
18075    :PROPERTIES:
18076    :CUSTOM_ID: org-export-dispatch-use-expert-ui
18077    :END:
18079 - *Type:* boolean
18080 - *Since:* Emacs version 24.4
18081 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
18082 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-dispatch-use-expert-ui][Find modifications in git logs]]
18084 : Non-nil means using a non-intrusive `org-export-dispatch'.
18085 : In that case, no help buffer is displayed.  Though, an indicator
18086 : for current export scope is added to the prompt ("b" when
18087 : output is restricted to body only, "s" when it is restricted to
18088 : the current subtree, "v" when only visible elements are
18089 : considered for export, "f" when publishing functions should be
18090 : passed the FORCE argument and "a" when the export should be
18091 : asynchronous).  Also, [?] allows switching back to standard
18092 : mode.
18094 ** org-export-with-footnotes =(funcall (function (closure (t...=
18095    :PROPERTIES:
18096    :CUSTOM_ID: org-export-with-footnotes
18097    :END:
18099 - *Type:* boolean
18100 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
18101 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-footnotes][Find modifications in git logs]]
18103 : Non-nil means Org footnotes should be exported.
18104 : This option can also be set with the OPTIONS keyword,
18105 : e.g. "f:nil".
18107 ** org-html-creator-string =(funcall (function (closure (h...=
18108    :PROPERTIES:
18109    :CUSTOM_ID: org-html-creator-string
18110    :END:
18112 - *Type:* (string :tag "Creator string")
18113 - *Since:* Emacs version 24.4
18114 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
18115 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-creator-string][Find modifications in git logs]]
18117 : Information about the creator of the HTML document.
18118 : This option can also be set on with the CREATOR keyword.
18120 ** org-md-footnotes-section =(funcall (function (closure (t...=
18121    :PROPERTIES:
18122    :CUSTOM_ID: org-md-footnotes-section
18123    :END:
18125 - *Type:* string
18126 - *Since:* Emacs version 26.1
18127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
18128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-footnotes-section][Find modifications in git logs]]
18130 : Format string for the footnotes section.
18131 : The first %s placeholder will be replaced with the localized Footnotes section
18132 : heading, the second with the contents of the Footnotes section.
18134 ** org-export-with-inlinetasks =(funcall (function (closure (t...=
18135    :PROPERTIES:
18136    :CUSTOM_ID: org-export-with-inlinetasks
18137    :END:
18139 - *Type:* boolean
18140 - *Since:* Emacs version 24.4
18141 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
18142 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-inlinetasks][Find modifications in git logs]]
18144 : Non-nil means inlinetasks should be exported.
18145 : This option can also be set with the OPTIONS keyword,
18146 : e.g. "inline:nil".
18148 ** org-html-coding-system =(funcall (function (closure (h...=
18149    :PROPERTIES:
18150    :CUSTOM_ID: org-html-coding-system
18151    :END:
18153 - *Type:* coding-system
18154 - *Since:* Emacs version 24.4
18155 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
18156 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-coding-system][Find modifications in git logs]]
18158 : Coding system for HTML export.
18159 : Use utf-8 as the default value.
18161 ** org-agenda-skip-additional-timestamps-same-entry =nil=
18162    :PROPERTIES:
18163    :CUSTOM_ID: org-agenda-skip-additional-timestamps-same-entry
18164    :END:
18166 - *Type:* boolean
18167 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18168 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-additional-timestamps-same-entry][Find modifications in git logs]]
18170 : When nil, multiple same-day timestamps in entry make multiple agenda lines.
18171 : When non-nil, after the search for timestamps has matched once in an
18172 : entry, the rest of the entry will not be searched.
18174 ** org-icalendar-include-bbdb-anniversaries =(funcall (function (closure (t...=
18175    :PROPERTIES:
18176    :CUSTOM_ID: org-icalendar-include-bbdb-anniversaries
18177    :END:
18179 - *Type:* boolean
18180 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
18181 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-include-bbdb-anniversaries][Find modifications in git logs]]
18183 : Non-nil means a combined iCalendar file should include anniversaries.
18184 : The anniversaries are defined in the BBDB database.
18186 ** org-babel-picolisp-cmd =(funcall (function (closure (t...=
18187    :PROPERTIES:
18188    :CUSTOM_ID: org-babel-picolisp-cmd
18189    :END:
18191 - *Type:* string
18192 - *Since:* Emacs version 24.1
18193 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-picolisp.el][ob-picolisp.el]]
18194 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-picolisp-cmd][Find modifications in git logs]]
18196 : Name of command used to evaluate picolisp blocks.
18198 ** org-enforce-todo-dependencies =(funcall (function (closure (f...=
18199    :PROPERTIES:
18200    :CUSTOM_ID: org-enforce-todo-dependencies
18201    :END:
18203 - *Type:* boolean
18204 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18205 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-enforce-todo-dependencies][Find modifications in git logs]]
18207 : Non-nil means undone TODO entries will block switching the parent to DONE.
18208 : Also, if a parent has an :ORDERED: property, switching an entry to DONE will
18209 : be blocked if any prior sibling is not yet done.
18210 : Finally, if the parent is blocked because of ordered siblings of its own,
18211 : the child will also be blocked.
18213 ** org-id-method =(funcall (function (closure (t...=
18214    :PROPERTIES:
18215    :CUSTOM_ID: org-id-method
18216    :END:
18218 - *Type:* (choice (const :tag "Org's int...
18219 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
18220 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-method][Find modifications in git logs]]
18222 : The method that should be used to create new IDs.
18224 : An ID will consist of the optional prefix specified in `org-id-prefix',
18225 : and a unique part created by the method this variable specifies.
18227 : Allowed values are:
18229 : org        Org's own internal method, using an encoding of the current time to
18230 :            microsecond accuracy, and optionally the current domain of the
18231 :            computer.  See the variable `org-id-include-domain'.
18233 : uuid       Create random (version 4) UUIDs.  If the program defined in
18234 :            `org-id-uuid-program' is available it is used to create the ID.
18235 :            Otherwise an internal functions is used.
18237 ** org-export-with-sub-superscripts =(funcall (function (closure (t...=
18238    :PROPERTIES:
18239    :CUSTOM_ID: org-export-with-sub-superscripts
18240    :END:
18242 - *Type:* (choice (const :tag "Interpret...
18243 - *Since:* Emacs version 24.4
18244 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
18245 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-sub-superscripts][Find modifications in git logs]]
18247 : Non-nil means interpret "_" and "^" for export.
18249 : If you want to control how Org displays those characters, see
18250 : `org-use-sub-superscripts'.  `org-export-with-sub-superscripts'
18251 : used to be an alias for `org-use-sub-superscripts' in Org <8.0,
18252 : it is not anymore.
18254 : When this option is turned on, you can use TeX-like syntax for
18255 : sub- and superscripts and see them exported correctly.
18257 : You can also set the option with #+OPTIONS: ^:t
18259 : Several characters after "_" or "^" will be considered as a
18260 : single item - so grouping with {} is normally not needed.  For
18261 : example, the following things will be parsed as single sub- or
18262 : superscripts:
18264 :  10^24   or   10^tau     several digits will be considered 1 item.
18265 :  10^-12  or   10^-tau    a leading sign with digits or a word
18266 :  x^2-y^3                 will be read as x^2 - y^3, because items are
18267 :                        terminated by almost any nonword/nondigit char.
18268 :  x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.
18270 : Still, ambiguity is possible.  So when in doubt, use {} to enclose
18271 : the sub/superscript.  If you set this variable to the symbol `{}',
18272 : the braces are *required* in order to trigger interpretations as
18273 : sub/superscript.  This can be helpful in documents that need "_"
18274 : frequently in plain text.
18276 ** org-icalendar-exclude-tags =(funcall (function (closure (t...=
18277    :PROPERTIES:
18278    :CUSTOM_ID: org-icalendar-exclude-tags
18279    :END:
18281 - *Type:* (repeat (string :tag "Tag"))
18282 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
18283 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-exclude-tags][Find modifications in git logs]]
18285 : Tags that exclude a tree from export.
18286 : This variable allows specifying different exclude tags from other
18287 : back-ends.  It can also be set with the ICALENDAR_EXCLUDE_TAGS
18288 : keyword.
18290 ** org-src-ask-before-returning-to-edit-buffer =(funcall (function (closure (t...=
18291    :PROPERTIES:
18292    :CUSTOM_ID: org-src-ask-before-returning-to-edit-buffer
18293    :END:
18295 - *Type:* boolean
18296 - *Since:* Emacs version 24.4
18297 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
18298 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-ask-before-returning-to-edit-buffer][Find modifications in git logs]]
18300 : Non-nil means ask before switching to an existing edit buffer.
18301 : If nil, when `org-edit-src-code' is used on a block that already
18302 : has an active edit buffer, it will switch to that edit buffer
18303 : immediately; otherwise it will ask whether you want to return to
18304 : the existing edit buffer.
18306 ** org-agenda-window-frame-fractions =(quote (0.5 . 0.75))=
18307    :PROPERTIES:
18308    :CUSTOM_ID: org-agenda-window-frame-fractions
18309    :END:
18311 - *Type:* (cons (number :tag "Minimum") ...
18312 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18313 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-window-frame-fractions][Find modifications in git logs]]
18315 : The min and max height of the agenda window as a fraction of frame height.
18316 : The value of the variable is a cons cell with two numbers between 0 and 1.
18317 : It only matters if `org-agenda-window-setup' is `reorganize-frame'.
18319 ** org-latex-default-table-environment =(funcall (function (closure (t...=
18320    :PROPERTIES:
18321    :CUSTOM_ID: org-latex-default-table-environment
18322    :END:
18324 - *Type:* string
18325 - *Since:* Emacs version 24.4
18326 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
18327 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-table-environment][Find modifications in git logs]]
18329 : Default environment used to build tables.
18331 ** org-babel-stan-cmdstan-directory =(funcall (function (closure (t...=
18332    :PROPERTIES:
18333    :CUSTOM_ID: org-babel-stan-cmdstan-directory
18334    :END:
18336 - *Type:* string
18337 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-stan.el][ob-stan.el]]
18338 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-stan-cmdstan-directory][Find modifications in git logs]]
18340 : CmdStan source directory.
18341 : 'make' will be called from this directory to compile the Stan
18342 : block.  When nil, executing Stan blocks dumps the content to a
18343 : plain text file.
18345 ** org-columns-default-format =(funcall (function (closure (f...=
18346    :PROPERTIES:
18347    :CUSTOM_ID: org-columns-default-format
18348    :END:
18350 - *Type:* string
18351 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18352 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-default-format][Find modifications in git logs]]
18354 : The default column format, if no other format has been defined.
18355 : This variable can be set on the per-file basis by inserting a line
18357 : #+COLUMNS: %25ITEM .....
18359 ** org-url-hexify-p =(funcall (function (closure (f...=
18360    :PROPERTIES:
18361    :CUSTOM_ID: org-url-hexify-p
18362    :END:
18364 - *Type:* boolean
18365 - *Since:* Emacs version 24.3
18366 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18367 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-url-hexify-p][Find modifications in git logs]]
18369 : When non-nil, hexify URL when creating a link.
18371 ** org-table-duration-hour-zero-padding =(funcall (function (closure (o...=
18372    :PROPERTIES:
18373    :CUSTOM_ID: org-table-duration-hour-zero-padding
18374    :END:
18376 - *Type:* boolean
18377 - *Since:* Emacs version 26.1
18378 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
18379 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-duration-hour-zero-padding][Find modifications in git logs]]
18381 : Non-nil means hours in table duration computations should be zero-padded.
18382 : So this is about 08:32:34 versus 8:33:34.
18384 ** org-clock-continuously =(funcall (function (closure (t...=
18385    :PROPERTIES:
18386    :CUSTOM_ID: org-clock-continuously
18387    :END:
18389 - *Type:* boolean
18390 - *Since:* Emacs version 24.1
18391 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
18392 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-continuously][Find modifications in git logs]]
18394 : Non-nil means to start clocking from the last clock-out time, if any.
18396 ** org-agenda-include-diary =nil=
18397    :PROPERTIES:
18398    :CUSTOM_ID: org-agenda-include-diary
18399    :END:
18401 - *Type:* boolean
18402 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18403 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-include-diary][Find modifications in git logs]]
18405 : If non-nil, include in the agenda entries from the Emacs Calendar's diary.
18406 : Custom commands can set this variable in the options section.
18408 ** org-export-with-priority =(funcall (function (closure (t...=
18409    :PROPERTIES:
18410    :CUSTOM_ID: org-export-with-priority
18411    :END:
18413 - *Type:* boolean
18414 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
18415 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-priority][Find modifications in git logs]]
18417 : Non-nil means include priority cookies in export.
18418 : This option can also be set with the OPTIONS keyword,
18419 : e.g. "pri:t".
18421 ** org-provide-todo-statistics =(funcall (function (closure (f...=
18422    :PROPERTIES:
18423    :CUSTOM_ID: org-provide-todo-statistics
18424    :END:
18426 - *Type:* (choice (const :tag "Yes, only...
18427 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18428 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-provide-todo-statistics][Find modifications in git logs]]
18430 : Non-nil means update todo statistics after insert and toggle.
18431 : ALL-HEADLINES means update todo statistics by including headlines
18432 : with no TODO keyword as well, counting them as not done.
18433 : A list of TODO keywords means the same, but skip keywords that are
18434 : not in this list.
18435 : When set to a list of two lists, the first list contains keywords
18436 : to consider as TODO keywords, the second list contains keywords
18437 : to consider as DONE keywords.
18439 : When this is set, todo statistics is updated in the parent of the
18440 : current entry each time a todo state is changed.
18442 ** org-ditaa-jar-path =(funcall (function (closure (t...=
18443    :PROPERTIES:
18444    :CUSTOM_ID: org-ditaa-jar-path
18445    :END:
18447 - *Type:* string
18448 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ditaa.el][ob-ditaa.el]]
18449 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ditaa-jar-path][Find modifications in git logs]]
18451 : Path to the ditaa jar executable.
18453 ** org-highest-priority =(funcall (function (closure (f...=
18454    :PROPERTIES:
18455    :CUSTOM_ID: org-highest-priority
18456    :END:
18458 - *Type:* character
18459 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18460 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-highest-priority][Find modifications in git logs]]
18462 : The highest priority of TODO items.  A character like ?A, ?B etc.
18463 : Must have a smaller ASCII number than `org-lowest-priority'.
18465 ** org-edit-src-auto-save-idle-delay =(funcall (function (closure (t...=
18466    :PROPERTIES:
18467    :CUSTOM_ID: org-edit-src-auto-save-idle-delay
18468    :END:
18470 - *Type:* integer
18471 - *Since:* Emacs version 24.4
18472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
18473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-auto-save-idle-delay][Find modifications in git logs]]
18475 : Delay before saving a source code buffer back into its base buffer.
18476 : When a positive integer N, save after N seconds of idle time.
18477 : When 0 (the default), don't auto-save.
18479 : If you want to save the source code buffer itself, don't use this.
18480 : Check `org-edit-src-turn-on-auto-save' instead.
18482 ** org-koma-letter-closing =""=
18483    :PROPERTIES:
18484    :CUSTOM_ID: org-koma-letter-closing
18485    :END:
18487 - *Type:* string
18488 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
18489 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-closing][Find modifications in git logs]]
18491 : Letter's closing, as a string.
18492 : This option can also be set with the CLOSING keyword.  Moreover,
18493 : when:
18494 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
18495 :       or the CLOSING keyword is empty;
18496 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
18497 :   (3) the letter contains a headline with the special
18498 :       tag "closing";
18499 : then the opening will be set as the title of the closing special
18500 : heading title.
18502 ** org-capture-templates-contexts =(funcall (function (closure (o...=
18503    :PROPERTIES:
18504    :CUSTOM_ID: org-capture-templates-contexts
18505    :END:
18507 - *Type:* (repeat (list :tag "Rule" (str...
18508 - *Since:* Emacs version 24.3
18509 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
18510 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-templates-contexts][Find modifications in git logs]]
18512 : Alist of capture templates and valid contexts.
18514 : For example, if you have a capture template "c" and you want
18515 : this template to be accessible only from `message-mode' buffers,
18516 : use this:
18518 :    \='(("c" ((in-mode . "message-mode"))))
18520 : Here are the available contexts definitions:
18522 :       in-file: command displayed only in matching files
18523 :       in-mode: command displayed only in matching modes
18524 :   not-in-file: command not displayed in matching files
18525 :   not-in-mode: command not displayed in matching modes
18526 :     in-buffer: command displayed only in matching buffers
18527 : not-in-buffer: command not displayed in matching buffers
18528 :    [function]: a custom function taking no argument
18530 : If you define several checks, the agenda command will be
18531 : accessible if there is at least one valid check.
18533 : You can also bind a key to another agenda custom command
18534 : depending on contextual rules.
18536 :     \='(("c" "d" ((in-mode . "message-mode"))))
18538 : Here it means: in `message-mode buffers', use "c" as the
18539 : key for the capture template otherwise associated with "d".
18540 : (The template originally associated with "d" is not displayed
18541 : to avoid duplicates.)
18543 ** org-odt-format-drawer-function =(funcall (function (closure (h...=
18544    :PROPERTIES:
18545    :CUSTOM_ID: org-odt-format-drawer-function
18546    :END:
18548 - *Type:* function
18549 - *Since:* Emacs version 24.4
18550 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
18551 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-format-drawer-function][Find modifications in git logs]]
18553 : Function called to format a drawer in ODT code.
18555 : The function must accept two parameters:
18556 :   NAME      the drawer name, like "LOGBOOK"
18557 :   CONTENTS  the contents of the drawer.
18559 : The function should return the string to be exported.
18561 : The default value simply returns the value of CONTENTS.
18563 ** org-table-number-regexp =(funcall (function (closure (o...=
18564    :PROPERTIES:
18565    :CUSTOM_ID: org-table-number-regexp
18566    :END:
18568 - *Type:* (choice (const :tag "Positive ...
18569 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
18570 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-number-regexp][Find modifications in git logs]]
18572 : Regular expression for recognizing numbers in table columns.
18573 : If a table column contains mostly numbers, it will be aligned to the
18574 : right.  If not, it will be aligned to the left.
18576 : The default value of this option is a regular expression which allows
18577 : anything which looks remotely like a number as used in scientific
18578 : context.  For example, all of the following will be considered a
18579 : number:
18580 :     12    12.2    2.4e-08    2x10^12    4.034+-0.02    2.7(10)  >3.5
18582 : Other options offered by the customize interface are more restrictive.
18584 ** org-return-follows-link =(funcall (function (closure (f...=
18585    :PROPERTIES:
18586    :CUSTOM_ID: org-return-follows-link
18587    :END:
18589 - *Type:* boolean
18590 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18591 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-return-follows-link][Find modifications in git logs]]
18593 : Non-nil means on links RET will follow the link.
18594 : In tables, the special behavior of RET has precedence.
18596 ** org-ascii-underline =(funcall (function (closure (t...=
18597    :PROPERTIES:
18598    :CUSTOM_ID: org-ascii-underline
18599    :END:
18601 - *Type:* (list (cons :tag "Underline ch...
18602 - *Since:* Emacs version 24.4
18603 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
18604 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-underline][Find modifications in git logs]]
18606 : Characters for underlining headings in ASCII export.
18608 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
18609 : and whose value is a list of characters.
18611 : For each supported charset, this variable associates a sequence
18612 : of underline characters.  In a sequence, the characters will be
18613 : used in order for headlines level 1, 2, ...  If no character is
18614 : available for a given level, the headline won't be underlined.
18616 ** org-agenda-compact-blocks =nil=
18617    :PROPERTIES:
18618    :CUSTOM_ID: org-agenda-compact-blocks
18619    :END:
18621 - *Type:* boolean
18622 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18623 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-compact-blocks][Find modifications in git logs]]
18625 : Non-nil means make the block agenda more compact.
18626 : This is done globally by leaving out lines like the agenda span
18627 : name and week number or the separator lines.
18629 ** org-texinfo-format-drawer-function =(funcall (function (closure (t...=
18630    :PROPERTIES:
18631    :CUSTOM_ID: org-texinfo-format-drawer-function
18632    :END:
18634 - *Type:* function
18635 - *Since:* Emacs version 24.4
18636 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
18637 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-format-drawer-function][Find modifications in git logs]]
18639 : Function called to format a drawer in Texinfo code.
18641 : The function must accept two parameters:
18642 :   NAME      the drawer name, like "LOGBOOK"
18643 :   CONTENTS  the contents of the drawer.
18645 : The function should return the string to be exported.
18647 : The default function simply returns the value of CONTENTS.
18649 ** org-highlight-sparse-tree-matches =(funcall (function (closure (f...=
18650    :PROPERTIES:
18651    :CUSTOM_ID: org-highlight-sparse-tree-matches
18652    :END:
18654 - *Type:* boolean
18655 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18656 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-highlight-sparse-tree-matches][Find modifications in git logs]]
18658 : Non-nil means highlight all matches that define a sparse tree.
18659 : The highlights will automatically disappear the next time the buffer is
18660 : changed by an edit command.
18662 ** org-bibtex-inherit-tags =(funcall (function (closure (t...=
18663    :PROPERTIES:
18664    :CUSTOM_ID: org-bibtex-inherit-tags
18665    :END:
18667 - *Type:* boolean
18668 - *Since:* Emacs version 26.1
18669 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
18670 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-inherit-tags][Find modifications in git logs]]
18672 : Controls whether inherited tags are converted to bibtex keywords.
18673 : It is relevant only if `org-bibtex-tags-are-keywords' is non-nil.
18674 : Tag inheritence itself is controlled by `org-use-tag-inheritence'
18675 : and `org-exclude-tags-from-inheritence'.
18677 ** org-archive-sibling-heading =(funcall (function (closure (t...=
18678    :PROPERTIES:
18679    :CUSTOM_ID: org-archive-sibling-heading
18680    :END:
18682 - *Type:* string
18683 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
18684 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-sibling-heading][Find modifications in git logs]]
18686 : Name of the local archive sibling that is used to archive entries locally.
18687 : Locally means: in the tree, under a sibling.
18688 : See `org-archive-to-archive-sibling' for more information.
18690 ** org-learn-fraction =0.5=
18691    :PROPERTIES:
18692    :CUSTOM_ID: org-learn-fraction
18693    :END:
18695 - *Type:* float
18696 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-learn.el][org-learn.el]]
18697 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-learn-fraction][Find modifications in git logs]]
18699 : Controls the rate at which EF is increased or decreased.
18700 : Must be a number between 0 and 1 (the greater it is the faster
18701 : the changes of the OF matrix).
18703 ** org-agenda-files =(funcall (function (closure (f...=
18704    :PROPERTIES:
18705    :CUSTOM_ID: org-agenda-files
18706    :END:
18708 - *Type:* (choice (repeat :tag "List of ...
18709 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18710 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-files][Find modifications in git logs]]
18712 : The files to be used for agenda display.
18714 : If an entry is a directory, all files in that directory that are matched
18715 : by `org-agenda-file-regexp' will be part of the file list.
18717 : If the value of the variable is not a list but a single file name, then
18718 : the list of agenda files is actually stored and maintained in that file,
18719 : one agenda file per line.  In this file paths can be given relative to
18720 : `org-directory'.  Tilde expansion and environment variable substitution
18721 : are also made.
18723 : Entries may be added to this list with `\[org-agenda-file-to-front]'
18724 : and removed with `\[org-remove-file]'.
18726 ** org-fontify-whole-heading-line =(funcall (function (closure (f...=
18727    :PROPERTIES:
18728    :CUSTOM_ID: org-fontify-whole-heading-line
18729    :END:
18731 - *Type:* boolean
18732 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18733 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fontify-whole-heading-line][Find modifications in git logs]]
18735 : Non-nil means fontify the whole line for headings.
18736 : This is useful when setting a background color for the
18737 : org-level-* faces.
18739 ** org-properties-postprocess-alist =(funcall (function (closure (f...=
18740    :PROPERTIES:
18741    :CUSTOM_ID: org-properties-postprocess-alist
18742    :END:
18744 - *Type:* (alist :key-type (string :tag ...
18745 - *Since:* Emacs version 24.1
18746 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18747 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-properties-postprocess-alist][Find modifications in git logs]]
18749 : Alist of properties and functions to adjust inserted values.
18750 : Elements of this alist must be of the form
18752 :   ([string] [function])
18754 : where [string] must be a property name and [function] must be a
18755 : lambda expression: this lambda expression must take one argument,
18756 : the value to adjust, and return the new value as a string.
18758 : For example, this element will allow the property "Remaining"
18759 : to be updated wrt the relation between the "Effort" property
18760 : and the clock summary:
18762 :  (("Remaining" (lambda(value)
18763 :                    (let ((clocksum (org-clock-sum-current-item))
18764 :                          (effort (org-duration-to-minutes
18765 :                                    (org-entry-get (point) "Effort"))))
18766 :                      (org-minutes-to-clocksum-string (- effort clocksum))))))
18768 ** org-latex-subtitle-format =(funcall (function (closure (t...=
18769    :PROPERTIES:
18770    :CUSTOM_ID: org-latex-subtitle-format
18771    :END:
18773 - *Type:* (string :tag "Format string")
18774 - *Since:* Emacs version 26.1
18775 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
18776 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-subtitle-format][Find modifications in git logs]]
18778 : Format string used for transcoded subtitle.
18779 : The format string should have at most one "%s"-expression,
18780 : which is replaced with the subtitle.
18782 ** org-agenda-skip-scheduled-if-deadline-is-shown =nil=
18783    :PROPERTIES:
18784    :CUSTOM_ID: org-agenda-skip-scheduled-if-deadline-is-shown
18785    :END:
18787 - *Type:* (choice (const :tag "Never" ni...
18788 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18789 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-scheduled-if-deadline-is-shown][Find modifications in git logs]]
18791 : Non-nil means skip scheduling line if same entry shows because of deadline.
18793 : In the agenda of today, an entry can show up multiple times
18794 : because it is both scheduled and has a nearby deadline, and maybe
18795 : a plain time stamp as well.
18797 : When this variable is nil, the entry will be shown several times.
18799 : When set to t, then only the deadline is shown and the fact that
18800 : the entry is scheduled today or was scheduled previously is not
18801 : shown.
18803 : When set to the symbol `not-today', skip scheduled previously,
18804 : but not scheduled today.
18806 : When set to the symbol `repeated-after-deadline', skip scheduled
18807 : items if they are repeated beyond the current deadline.
18809 ** org-babel-lisp-dir-fmt =(funcall (function (closure (t...=
18810    :PROPERTIES:
18811    :CUSTOM_ID: org-babel-lisp-dir-fmt
18812    :END:
18814 - *Type:* string
18815 - *Since:* Emacs version 24.1
18816 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lisp.el][ob-lisp.el]]
18817 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lisp-dir-fmt][Find modifications in git logs]]
18819 : Format string used to wrap code bodies to set the current directory.
18820 : For example a value of "(progn ;; %s\n   %%s)" would ignore the
18821 : current directory string.
18823 ** org-footnote-define-inline =(funcall (function (closure (t...=
18824    :PROPERTIES:
18825    :CUSTOM_ID: org-footnote-define-inline
18826    :END:
18828 - *Type:* boolean
18829 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
18830 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-define-inline][Find modifications in git logs]]
18832 : Non-nil means define footnotes inline, at reference location.
18833 : When nil, footnotes will be defined in a special section near
18834 : the end of the document.  When t, the [fn:label:definition] notation
18835 : will be used to define the footnote at the reference position.
18837 ** org-replace-disputed-keys =(funcall (function (closure (f...=
18838    :PROPERTIES:
18839    :CUSTOM_ID: org-replace-disputed-keys
18840    :END:
18842 - *Type:* boolean
18843 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18844 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-replace-disputed-keys][Find modifications in git logs]]
18846 : Non-nil means use alternative key bindings for some keys.
18847 : Org mode uses S-<cursor> keys for changing timestamps and priorities.
18848 : These keys are also used by other packages like shift-selection-mode'
18849 : (built into Emacs 23), `CUA-mode' or `windmove.el'.
18850 : If you want to use Org mode together with one of these other modes,
18851 : or more generally if you would like to move some Org mode commands to
18852 : other keys, set this variable and configure the keys with the variable
18853 : `org-disputed-keys'.
18855 : This option is only relevant at load-time of Org mode, and must be set
18856 : *before* org.el is loaded.  Changing it requires a restart of Emacs to
18857 : become effective.
18859 ** org-agenda-block-separator =61=
18860    :PROPERTIES:
18861    :CUSTOM_ID: org-agenda-block-separator
18862    :END:
18864 - *Type:* (choice (const :tag "Disabled"...
18865 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18866 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-block-separator][Find modifications in git logs]]
18868 : The separator between blocks in the agenda.
18869 : If this is a string, it will be used as the separator, with a newline added.
18870 : If it is a character, it will be repeated to fill the window width.
18871 : If nil the separator is disabled.  In `org-agenda-custom-commands' this
18872 : addresses the separator between the current and the previous block.
18874 ** org-beamer-column-view-format =(funcall (function (closure (t...=
18875    :PROPERTIES:
18876    :CUSTOM_ID: org-beamer-column-view-format
18877    :END:
18879 - *Type:* (choice (const :tag "Do not in...
18880 - *Since:* Emacs version 24.4
18881 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
18882 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-column-view-format][Find modifications in git logs]]
18884 : Column view format that should be used to fill the template.
18886 ** org-texinfo-text-markup-alist =(funcall (function (closure (t...=
18887    :PROPERTIES:
18888    :CUSTOM_ID: org-texinfo-text-markup-alist
18889    :END:
18891 - *Type:* alist
18892 - *Since:* Emacs version 26.1
18893 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
18894 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-text-markup-alist][Find modifications in git logs]]
18896 : Alist of Texinfo expressions to convert text markup.
18898 : The key must be a symbol among `bold', `code', `italic',
18899 : `strike-through', `underscore' and `verbatim'.  The value is
18900 : a formatting string to wrap fontified text with.
18902 : Value can also be set to the following symbols: `verb', `samp'
18903 : and `code'.  With the first one, Org uses "@verb" to create
18904 : a format string and selects a delimiter character that isn't in
18905 : the string.  For the other two, Org uses "@samp" or "@code"
18906 : to typeset and protects special characters.
18908 : When no association is found for a given markup, text is returned
18909 : as-is.
18911 ** org-clock-in-switch-to-state =(funcall (function (closure (t...=
18912    :PROPERTIES:
18913    :CUSTOM_ID: org-clock-in-switch-to-state
18914    :END:
18916 - *Type:* (choice (const :tag "Don't for...
18917 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
18918 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-switch-to-state][Find modifications in git logs]]
18920 : Set task to a special todo state while clocking it.
18921 : The value should be the state to which the entry should be
18922 : switched.  If the value is a function, it must take one
18923 : parameter (the current TODO state of the item) and return the
18924 : state to switch it to.
18926 ** org-agenda-restore-windows-after-quit =nil=
18927    :PROPERTIES:
18928    :CUSTOM_ID: org-agenda-restore-windows-after-quit
18929    :END:
18931 - *Type:* boolean
18932 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
18933 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-restore-windows-after-quit][Find modifications in git logs]]
18935 : Non-nil means restore window configuration upon exiting agenda.
18936 : Before the window configuration is changed for displaying the agenda,
18937 : the current status is recorded.  When the agenda is exited with
18938 : `q' or `x' and this option is set, the old state is restored.  If
18939 : `org-agenda-window-setup' is `other-frame', the value of this
18940 : option will be ignored.
18942 ** org-src-fontify-natively =(funcall (function (closure (b...=
18943    :PROPERTIES:
18944    :CUSTOM_ID: org-src-fontify-natively
18945    :END:
18947 - *Type:* boolean
18948 - *Since:* Emacs version 24.4
18949 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
18950 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-fontify-natively][Find modifications in git logs]]
18952 : When non-nil, fontify code in code blocks.
18953 : See also the `org-block' face.
18955 ** org-bbdb-general-anniversary-description-after =(funcall (function (closure (d...=
18956    :PROPERTIES:
18957    :CUSTOM_ID: org-bbdb-general-anniversary-description-after
18958    :END:
18960 - *Type:* integer
18961 - *Since:* Emacs version 26.1
18962 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
18963 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-general-anniversary-description-after][Find modifications in git logs]]
18965 : When to switch anniversary descriptions to a more general format.
18967 : Anniversary descriptions include the point in time, when the
18968 : anniversary appears.  This is, in its most general form, just the
18969 : date of the anniversary.  Or more specific terms, like "today",
18970 : "tomorrow" or "in n days" are used to describe the time span.
18972 : If the anniversary happens in less than that number of days, the
18973 : specific description is used.  Otherwise, the general one is
18974 : used.
18976 ** org-gnus-no-server =(funcall (function (closure (t...=
18977    :PROPERTIES:
18978    :CUSTOM_ID: org-gnus-no-server
18979    :END:
18981 - *Type:* boolean
18982 - *Since:* Emacs version 24.4
18983 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-gnus.el][org-gnus.el]]
18984 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-gnus-no-server][Find modifications in git logs]]
18986 : Should Gnus be started using `gnus-no-server'?
18988 ** org-protocol-reverse-list-of-files =(funcall (function (closure (t...=
18989    :PROPERTIES:
18990    :CUSTOM_ID: org-protocol-reverse-list-of-files
18991    :END:
18993 - *Type:* boolean
18994 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
18995 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-reverse-list-of-files][Find modifications in git logs]]
18997 : Non-nil means re-reverse the list of filenames passed on the command line.
18998 : The filenames passed on the command line are passed to the emacs-server in
18999 : reverse order.  Set to t (default) to re-reverse the list, i.e. use the
19000 : sequence on the command line.  If nil, the sequence of the filenames is
19001 : unchanged.
19003 ** org-protocol-project-alist =(funcall (function (closure (t...=
19004    :PROPERTIES:
19005    :CUSTOM_ID: org-protocol-project-alist
19006    :END:
19008 - *Type:* alist
19009 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
19010 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-project-alist][Find modifications in git logs]]
19012 : Map URLs to local filenames for `org-protocol-open-source' (open-source).
19014 : Each element of this list must be of the form:
19016 :   (module-name :property value property: value ...)
19018 : where module-name is an arbitrary name.  All the values are strings.
19020 : Possible properties are:
19022 :   :online-suffix     - the suffix to strip from the published URLs
19023 :   :working-suffix    - the replacement for online-suffix
19024 :   :base-url          - the base URL, e.g. http://www.example.com/project/
19025 :                        Last slash required.
19026 :   :working-directory - the local working directory.  This is, what base-url will
19027 :                        be replaced with.
19028 :   :redirects         - A list of cons cells, each of which maps a regular
19029 :                        expression to match to a path relative to :working-directory.
19031 : Example:
19033 :    (setq org-protocol-project-alist
19034 :        \='(("https://orgmode.org/worg/"
19035 :           :online-suffix ".php"
19036 :           :working-suffix ".org"
19037 :           :base-url "https://orgmode.org/worg/"
19038 :           :working-directory "/home/user/org/Worg/")
19039 :          ("http://localhost/org-notes/"
19040 :           :online-suffix ".html"
19041 :           :working-suffix ".org"
19042 :           :base-url "http://localhost/org/"
19043 :           :working-directory "/home/user/org/"
19044 :           :rewrites (("org/?$" . "index.php")))
19045 :          ("Hugo based blog"
19046 :           :base-url "https://www.site.com/"
19047 :           :working-directory "~/site/content/post/"
19048 :           :online-suffix ".html"
19049 :           :working-suffix ".md"
19050 :           :rewrites (("\(https://site.com/[0-9]+/[0-9]+/[0-9]+/\)" . ".md")))))
19053 :    The last line tells `org-protocol-open-source' to open
19054 :    /home/user/org/index.php, if the URL cannot be mapped to an existing
19055 :    file, and ends with either "org" or "org/".
19057 : Consider using the interactive functions `org-protocol-create' and
19058 : `org-protocol-create-for-org' to help you filling this variable with valid contents.
19060 ** org-enforce-todo-checkbox-dependencies =(funcall (function (closure (f...=
19061    :PROPERTIES:
19062    :CUSTOM_ID: org-enforce-todo-checkbox-dependencies
19063    :END:
19065 - *Type:* boolean
19066 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19067 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-enforce-todo-checkbox-dependencies][Find modifications in git logs]]
19069 : Non-nil means unchecked boxes will block switching the parent to DONE.
19070 : When this is nil, checkboxes have no influence on switching TODO states.
19071 : When non-nil, you first need to check off all check boxes before the TODO
19072 : entry can be switched to DONE.
19073 : This variable needs to be set before org.el is loaded, and you need to
19074 : restart Emacs after a change to make the change effective.  The only way
19075 : to change is while Emacs is running is through the customize interface.
19077 ** org-babel-ditaa-java-cmd =(funcall (function (closure (t...=
19078    :PROPERTIES:
19079    :CUSTOM_ID: org-babel-ditaa-java-cmd
19080    :END:
19082 - *Type:* string
19083 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ditaa.el][ob-ditaa.el]]
19084 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-ditaa-java-cmd][Find modifications in git logs]]
19086 : Java executable to use when evaluating ditaa blocks.
19088 ** org-icalendar-include-sexps =(funcall (function (closure (t...=
19089    :PROPERTIES:
19090    :CUSTOM_ID: org-icalendar-include-sexps
19091    :END:
19093 - *Type:* boolean
19094 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
19095 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-include-sexps][Find modifications in git logs]]
19097 : Non-nil means export to iCalendar files should also cover sexp entries.
19098 : These are entries like in the diary, but directly in an Org file.
19100 ** org-babel-ruby-hline-to =(funcall (function (closure (i...=
19101    :PROPERTIES:
19102    :CUSTOM_ID: org-babel-ruby-hline-to
19103    :END:
19105 - *Type:* string
19106 - *Since:* Emacs version 24.4
19107 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ruby.el][ob-ruby.el]]
19108 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-ruby-hline-to][Find modifications in git logs]]
19110 : Replace hlines in incoming tables with this when translating to ruby.
19112 ** org-cycle-level-after-item/entry-creation =(funcall (function (closure (f...=
19113    :PROPERTIES:
19114    :CUSTOM_ID: org-cycle-level-after-item/entry-creation
19115    :END:
19117 - *Type:* boolean
19118 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19119 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-level-after-item/entry-creation][Find modifications in git logs]]
19121 : Non-nil means cycle entry level or item indentation in new empty entries.
19123 : When the cursor is at the end of an empty headline, i.e., with only stars
19124 : and maybe a TODO keyword, TAB will then switch the entry to become a child,
19125 : and then all possible ancestor states, before returning to the original state.
19126 : This makes data entry extremely fast:  M-RET to create a new headline,
19127 : on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
19129 : When the cursor is at the end of an empty plain list item, one TAB will
19130 : make it a subitem, two or more tabs will back up to make this an item
19131 : higher up in the item hierarchy.
19133 ** org-agenda-start-with-follow-mode =nil=
19134    :PROPERTIES:
19135    :CUSTOM_ID: org-agenda-start-with-follow-mode
19136    :END:
19138 - *Type:* boolean
19139 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19140 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-with-follow-mode][Find modifications in git logs]]
19142 : The initial value of follow mode in a newly created agenda window.
19144 ** org-agenda-export-html-style =nil=
19145    :PROPERTIES:
19146    :CUSTOM_ID: org-agenda-export-html-style
19147    :END:
19149 - *Type:* (choice (const nil) (string))
19150 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19151 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-export-html-style][Find modifications in git logs]]
19153 : The style specification for exported HTML Agenda files.
19154 : If this variable contains a string, it will replace the default <style>
19155 : section as produced by `htmlize'.
19156 : Since there are different ways of setting style information, this variable
19157 : needs to contain the full HTML structure to provide a style, including the
19158 : surrounding HTML tags.  The style specifications should include definitions
19159 : the fonts used by the agenda, here is an example:
19161 :    <style type="text/css">
19162 :        p { font-weight: normal; color: gray; }
19163 :        .org-agenda-structure {
19164 :           font-size: 110%;
19165 :           color: #003399;
19166 :           font-weight: 600;
19167 :        }
19168 :        .org-todo {
19169 :           color: #cc6666;
19170 :           font-weight: bold;
19171 :        }
19172 :        .org-agenda-done {
19173 :           color: #339933;
19174 :        }
19175 :        .org-done {
19176 :           color: #339933;
19177 :        }
19178 :        .title { text-align: center; }
19179 :        .todo, .deadline { color: red; }
19180 :        .done { color: green; }
19181 :     </style>
19183 : or, if you want to keep the style in a file,
19185 :    <link rel="stylesheet" type="text/css" href="mystyles.css">
19187 : As the value of this option simply gets inserted into the HTML <head> header,
19188 : you can "misuse" it to also add other text to the header.
19190 ** org-agenda-follow-indirect =nil=
19191    :PROPERTIES:
19192    :CUSTOM_ID: org-agenda-follow-indirect
19193    :END:
19195 - *Type:* boolean
19196 - *Since:* Emacs version 24.1
19197 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19198 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-follow-indirect][Find modifications in git logs]]
19200 : Non-nil means `org-agenda-follow-mode' displays only the
19201 : current item's tree, in an indirect buffer.
19203 ** org-agenda-persistent-filter =nil=
19204    :PROPERTIES:
19205    :CUSTOM_ID: org-agenda-persistent-filter
19206    :END:
19208 - *Type:* boolean
19209 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19210 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-persistent-filter][Find modifications in git logs]]
19212 : When set, keep filters from one agenda view to the next.
19214 ** org-global-properties =(funcall (function (closure (f...=
19215    :PROPERTIES:
19216    :CUSTOM_ID: org-global-properties
19217    :END:
19219 - *Type:* (repeat (cons (string :tag "Pr...
19220 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19221 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-global-properties][Find modifications in git logs]]
19223 : List of property/value pairs that can be inherited by any entry.
19225 : This list will be combined with the constant `org-global-properties-fixed'.
19227 : The entries in this list are cons cells where the car is a property
19228 : name and cdr is a string with the value.
19230 : You can set buffer-local values for the same purpose in the variable
19231 : `org-file-properties' this by adding lines like
19233 : #+PROPERTY: NAME VALUE
19235 ** org-hide-block-startup =(funcall (function (closure (f...=
19236    :PROPERTIES:
19237    :CUSTOM_ID: org-hide-block-startup
19238    :END:
19240 - *Type:* boolean
19241 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19242 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-startup][Find modifications in git logs]]
19244 : Non-nil means entering Org mode will fold all blocks.
19245 : This can also be set in on a per-file basis with
19247 : #+STARTUP: hideblocks
19248 : #+STARTUP: showblocks
19250 ** org-babel-tangle-comment-format-beg =(funcall (function (closure (t...=
19251    :PROPERTIES:
19252    :CUSTOM_ID: org-babel-tangle-comment-format-beg
19253    :END:
19255 - *Type:* string
19256 - *Since:* Emacs version 24.1
19257 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
19258 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-comment-format-beg][Find modifications in git logs]]
19260 : Format of inserted comments in tangled code files.
19261 : The following format strings can be used to insert special
19262 : information into the output using `org-fill-template'.
19263 : %start-line --- the line number at the start of the code block
19264 : %file --------- the file from which the code block was tangled
19265 : %link --------- Org style link to the code block
19266 : %source-name -- name of the code block
19268 : Upon insertion the formatted comment will be commented out, and
19269 : followed by a newline.  To inhibit this post-insertion processing
19270 : set the `org-babel-tangle-uncomment-comments' variable to a
19271 : non-nil value.
19273 : Whether or not comments are inserted during tangling is
19274 : controlled by the :comments header argument.
19276 ** org-archive-stamp-time =(funcall (function (closure (t...=
19277    :PROPERTIES:
19278    :CUSTOM_ID: org-archive-stamp-time
19279    :END:
19281 - *Type:* boolean
19282 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
19283 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-stamp-time][Find modifications in git logs]]
19285 : Non-nil means add a time stamp to entries moved to an archive file.
19286 : This variable is obsolete and has no effect anymore, instead add or remove
19287 : `time' from the variable `org-archive-save-context-info'.
19289 ** org-odt-format-inlinetask-function =(funcall (function (closure (h...=
19290    :PROPERTIES:
19291    :CUSTOM_ID: org-odt-format-inlinetask-function
19292    :END:
19294 - *Type:* function
19295 - *Since:* Emacs version 26.1
19296 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
19297 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-format-inlinetask-function][Find modifications in git logs]]
19299 : Function called to format an inlinetask in ODT code.
19301 : The function must accept six parameters:
19302 :   TODO      the todo keyword, as a string
19303 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
19304 :   PRIORITY  the inlinetask priority, as a string
19305 :   NAME      the inlinetask name, as a string.
19306 :   TAGS      the inlinetask tags, as a string.
19307 :   CONTENTS  the contents of the inlinetask, as a string.
19309 : The function should return the string to be exported.
19311 ** org-babel-inline-result-wrap =(funcall (function (closure (t...=
19312    :PROPERTIES:
19313    :CUSTOM_ID: org-babel-inline-result-wrap
19314    :END:
19316 - *Type:* string
19317 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
19318 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-inline-result-wrap][Find modifications in git logs]]
19320 : Format string used to wrap inline results.
19321 : This string must include a "%s" which will be replaced by the results.
19323 ** org-calc-default-modes =(funcall (function (closure (o...=
19324    :PROPERTIES:
19325    :CUSTOM_ID: org-calc-default-modes
19326    :END:
19328 - *Type:* plist
19329 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
19330 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calc-default-modes][Find modifications in git logs]]
19332 : List with Calc mode settings for use in `calc-eval' for table formulas.
19333 : The list must contain alternating symbols (Calc modes variables and values).
19334 : Don't remove any of the default settings, just change the values.  Org mode
19335 : relies on the variables to be present in the list.
19337 ** org-agenda-exporter-settings =nil=
19338    :PROPERTIES:
19339    :CUSTOM_ID: org-agenda-exporter-settings
19340    :END:
19342 - *Type:* (repeat (list (variable) (sexp...
19343 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19344 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-exporter-settings][Find modifications in git logs]]
19346 : Alist of variable/value pairs that should be active during agenda export.
19347 : This is a good place to set options for ps-print and for htmlize.
19348 : Note that the way this is implemented, the values will be evaluated
19349 : before assigned to the variables.  So make sure to quote values you do
19350 : *not* want evaluated, for example
19352 :    (setq org-agenda-exporter-settings
19353 :          \='((ps-print-color-p \='black-white)))
19355 ** org-log-note-headings =(funcall (function (closure (f...=
19356    :PROPERTIES:
19357    :CUSTOM_ID: org-log-note-headings
19358    :END:
19360 - *Type:* (list :greedy t (cons (const :...
19361 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19362 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-note-headings][Find modifications in git logs]]
19364 : Headings for notes added to entries.
19366 : The value is an alist, with the car being a symbol indicating the
19367 : note context, and the cdr is the heading to be used.  The heading
19368 : may also be the empty string.  The following placeholders can be
19369 : used:
19371 :   %t  a time stamp.
19372 :   %T  an active time stamp instead the default inactive one
19373 :   %d  a short-format time stamp.
19374 :   %D  an active short-format time stamp.
19375 :   %s  the new TODO state or time stamp (inactive), in double quotes.
19376 :   %S  the old TODO state or time stamp (inactive), in double quotes.
19377 :   %u  the user name.
19378 :   %U  full user name.
19380 : In fact, it is not a good idea to change the `state' entry,
19381 : because Agenda Log mode depends on the format of these entries.
19383 ** org-babel-python-hline-to =(funcall (function (closure (t...=
19384    :PROPERTIES:
19385    :CUSTOM_ID: org-babel-python-hline-to
19386    :END:
19388 - *Type:* string
19389 - *Since:* Emacs version 24.4
19390 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-python.el][ob-python.el]]
19391 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-python-hline-to][Find modifications in git logs]]
19393 : Replace hlines in incoming tables with this when translating to python.
19395 ** org-babel-shell-names =(funcall (function (closure (o...=
19396    :PROPERTIES:
19397    :CUSTOM_ID: org-babel-shell-names
19398    :END:
19400 - *Type:* (repeat (string :tag "Shell na...
19401 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-shell.el][ob-shell.el]]
19402 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-shell-names][Find modifications in git logs]]
19404 : List of names of shell supported by babel shell code blocks.
19405 : Call `org-babel-shell-initialize' when modifying this variable
19406 : outside the Customize interface.
19408 ** org-deadline-past-days =10000=
19409    :PROPERTIES:
19410    :CUSTOM_ID: org-deadline-past-days
19411    :END:
19413 - *Type:* integer
19414 - *Since:* Emacs version 26.1
19415 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19416 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-deadline-past-days][Find modifications in git logs]]
19418 : Number of days to warn about missed deadlines.
19419 : When an item has deadline on a date, it shows up in the agenda on
19420 : this day and will appear as a reminder until it is marked DONE or
19421 : for the number of days given here.
19423 ** org-html-use-infojs =(funcall (function (closure (h...=
19424    :PROPERTIES:
19425    :CUSTOM_ID: org-html-use-infojs
19426    :END:
19428 - *Type:* (choice (const :tag "Never" ni...
19429 - *Since:* Emacs version 24.4
19430 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
19431 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-use-infojs][Find modifications in git logs]]
19433 : Non-nil when Sebastian Rose's Java Script org-info.js should be active.
19434 : This option can be nil or t to never or always use the script.
19435 : It can also be the symbol `when-configured', meaning that the
19436 : script will be linked into the export file if and only if there
19437 : is a "#+INFOJS_OPT:" line in the buffer.  See also the variable
19438 : `org-html-infojs-options'.
19440 ** org-beamer-theme =(funcall (function (closure (t...=
19441    :PROPERTIES:
19442    :CUSTOM_ID: org-beamer-theme
19443    :END:
19445 - *Type:* (choice (const :tag "Do not in...
19446 - *Since:* Emacs version 24.4
19447 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
19448 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-theme][Find modifications in git logs]]
19450 : Default theme used in Beamer presentations.
19452 ** org-clock-total-time-cell-format =(funcall (function (closure (t...=
19453    :PROPERTIES:
19454    :CUSTOM_ID: org-clock-total-time-cell-format
19455    :END:
19457 - *Type:* string
19458 - *Since:* Emacs version 24.1
19459 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
19460 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-total-time-cell-format][Find modifications in git logs]]
19462 : Format string for the total time cells.
19464 ** org-export-snippet-translation-alist =(funcall (function (closure (t...=
19465    :PROPERTIES:
19466    :CUSTOM_ID: org-export-snippet-translation-alist
19467    :END:
19469 - *Type:* (repeat (cons (string :tag "Sh...
19470 - *Since:* Emacs version 24.4
19471 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
19472 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-snippet-translation-alist][Find modifications in git logs]]
19474 : Alist between export snippets back-ends and exporter back-ends.
19476 : This variable allows providing shortcuts for export snippets.
19478 : For example, with a value of \='(("h" . "html")), the
19479 : HTML back-end will recognize the contents of "@@h:<b>@@" as
19480 : HTML code while every other back-end will ignore it.
19482 ** org-agenda-category-icon-alist =nil=
19483    :PROPERTIES:
19484    :CUSTOM_ID: org-agenda-category-icon-alist
19485    :END:
19487 - *Type:* (alist :key-type (string :tag ...
19488 - *Since:* Emacs version 24.1
19489 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19490 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-category-icon-alist][Find modifications in git logs]]
19492 : Alist of category icon to be displayed in agenda views.
19494 : Each entry should have the following format:
19496 :   (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
19498 : Where CATEGORY-REGEXP is a regexp matching the categories where
19499 : the icon should be displayed.
19500 : FILE-OR-DATA either a file path or a string containing image data.
19502 : The other fields can be omitted safely if not needed:
19503 : TYPE indicates the image type.
19504 : DATA-P is a boolean indicating whether the FILE-OR-DATA string is
19505 : image data.
19506 : PROPS are additional image attributes to assign to the image,
19507 : like, e.g. `:ascent center'.
19509 :    ("Org" "/path/to/icon.png" nil nil :ascent center)
19511 : If you want to set the display properties yourself, just put a
19512 : list as second element:
19514 :   (CATEGORY-REGEXP (MY PROPERTY LIST))
19516 : For example, to display a 16px horizontal space for Emacs
19517 : category, you can use:
19519 :   ("Emacs" \='(space . (:width (16))))
19521 ** org-fontify-done-headline =(funcall (function (closure (f...=
19522    :PROPERTIES:
19523    :CUSTOM_ID: org-fontify-done-headline
19524    :END:
19526 - *Type:* boolean
19527 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19528 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fontify-done-headline][Find modifications in git logs]]
19530 : Non-nil means change the face of a headline if it is marked DONE.
19531 : Normally, only the TODO/DONE keyword indicates the state of a headline.
19532 : When this is non-nil, the headline after the keyword is set to the
19533 : `org-headline-done' as an additional indication.
19535 ** org-mouse-punctuation =(funcall (function (closure (t...=
19536    :PROPERTIES:
19537    :CUSTOM_ID: org-mouse-punctuation
19538    :END:
19540 - *Type:* string
19541 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
19542 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-punctuation][Find modifications in git logs]]
19544 : Punctuation used when inserting text by drag and drop.
19546 ** org-latex-tables-booktabs =(funcall (function (closure (t...=
19547    :PROPERTIES:
19548    :CUSTOM_ID: org-latex-tables-booktabs
19549    :END:
19551 - *Type:* boolean
19552 - *Since:* Emacs version 24.4
19553 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
19554 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-tables-booktabs][Find modifications in git logs]]
19556 : When non-nil, display tables in a formal "booktabs" style.
19557 : This option assumes that the "booktabs" package is properly
19558 : loaded in the header of the document.  This value can be ignored
19559 : locally with ":booktabs t" and ":booktabs nil" LaTeX
19560 : attributes.
19562 ** org-startup-indented =(funcall (function (closure (f...=
19563    :PROPERTIES:
19564    :CUSTOM_ID: org-startup-indented
19565    :END:
19567 - *Type:* (choice (const :tag "Not" nil)...
19568 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19569 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-indented][Find modifications in git logs]]
19571 : Non-nil means turn on `org-indent-mode' on startup.
19572 : This can also be configured on a per-file basis by adding one of
19573 : the following lines anywhere in the buffer:
19575 :    #+STARTUP: indent
19576 :    #+STARTUP: noindent
19578 ** org-agenda-add-entry-text-descriptive-links =t=
19579    :PROPERTIES:
19580    :CUSTOM_ID: org-agenda-add-entry-text-descriptive-links
19581    :END:
19583 - *Type:* boolean
19584 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
19585 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-add-entry-text-descriptive-links][Find modifications in git logs]]
19587 : Non-nil means export org-links as descriptive links in agenda added text.
19588 : This variable applies to the text added to the agenda when
19589 : `org-agenda-add-entry-text-maxlines' is larger than 0.
19590 : When this variable nil, the URL will (also) be shown.
19592 ** org-html-text-markup-alist =(funcall (function (closure (h...=
19593    :PROPERTIES:
19594    :CUSTOM_ID: org-html-text-markup-alist
19595    :END:
19597 - *Type:* (alist :key-type (symbol :tag ...
19598 - *Since:* Emacs version 24.4
19599 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
19600 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-text-markup-alist][Find modifications in git logs]]
19602 : Alist of HTML expressions to convert text markup.
19604 : The key must be a symbol among `bold', `code', `italic',
19605 : `strike-through', `underline' and `verbatim'.  The value is
19606 : a formatting string to wrap fontified text with.
19608 : If no association can be found for a given markup, text will be
19609 : returned as-is.
19611 ** org-list-automatic-rules =(funcall (function (closure (o...=
19612    :PROPERTIES:
19613    :CUSTOM_ID: org-list-automatic-rules
19614    :END:
19616 - *Type:* (alist :tag "Sets of rules" :k...
19617 - *Since:* Emacs version 24.1
19618 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
19619 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-automatic-rules][Find modifications in git logs]]
19621 : Non-nil means apply set of rules when acting on lists.
19622 : \<org-mode-map>
19623 : By default, automatic actions are taken when using
19624 :   `\[org-meta-return]',
19625 :   `\[org-metaright]',
19626 :   `\[org-metaleft]',
19627 :   `\[org-shiftmetaright]',
19628 :   `\[org-shiftmetaleft]',
19629 :   `\[org-ctrl-c-minus]',
19630 :   `\[org-toggle-checkbox]',
19631 :   `\[org-insert-todo-heading]'.
19633 : You can disable individually these rules by setting them to nil.
19634 : Valid rules are:
19636 : checkbox  when non-nil, checkbox statistics is updated each time
19637 :           you either insert a new checkbox or toggle a checkbox.
19638 : indent    when non-nil, indenting or outdenting list top-item
19639 :           with its subtree will move the whole list and
19640 :           outdenting a list whose bullet is * to column 0 will
19641 :           change that bullet to "-".
19643 ** org-hide-leading-stars =(funcall (function (closure (f...=
19644    :PROPERTIES:
19645    :CUSTOM_ID: org-hide-leading-stars
19646    :END:
19648 - *Type:* boolean
19649 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19650 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-leading-stars][Find modifications in git logs]]
19652 : Non-nil means hide the first N-1 stars in a headline.
19653 : This works by using the face `org-hide' for these stars.  This
19654 : face is white for a light background, and black for a dark
19655 : background.  You may have to customize the face `org-hide' to
19656 : make this work.
19657 : Changing it requires restart of `font-lock-mode' to become effective
19658 : also in regions already fontified.
19659 : You may also set this on a per-file basis by adding one of the following
19660 : lines to the buffer:
19662 :    #+STARTUP: hidestars
19663 :    #+STARTUP: showstars
19665 ** org-odt-inline-formula-rules =(funcall (function (closure (h...=
19666    :PROPERTIES:
19667    :CUSTOM_ID: org-odt-inline-formula-rules
19668    :END:
19670 - *Type:* (alist :key-type (string :tag ...
19671 - *Since:* Emacs version 24.4
19672 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
19673 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-inline-formula-rules][Find modifications in git logs]]
19675 : Rules characterizing formula files that can be inlined into ODT.
19677 : A rule consists in an association whose key is the type of link
19678 : to consider, and value is a regexp that will be matched against
19679 : link's path.
19681 ** org-table-allow-automatic-line-recalculation =(funcall (function (closure (o...=
19682    :PROPERTIES:
19683    :CUSTOM_ID: org-table-allow-automatic-line-recalculation
19684    :END:
19686 - *Type:* boolean
19687 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
19688 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-allow-automatic-line-recalculation][Find modifications in git logs]]
19690 : Non-nil means lines marked with |#| or |*| will be recomputed automatically.
19691 : \<org-mode-map>Automatically means when `TAB' or `RET' or `\[org-ctrl-c-ctrl-c]' are pressed in the line.
19693 ** org-use-fast-todo-selection =(funcall (function (closure (f...=
19694    :PROPERTIES:
19695    :CUSTOM_ID: org-use-fast-todo-selection
19696    :END:
19698 - *Type:* (choice (const :tag "Never" ni...
19699 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19700 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-fast-todo-selection][Find modifications in git logs]]
19702 : \<org-mode-map>Non-nil means use the fast todo selection scheme with `\[org-todo]'.
19703 : This variable describes if and under what circumstances the cycling
19704 : mechanism for TODO keywords will be replaced by a single-key, direct
19705 : selection scheme.
19707 : When nil, fast selection is never used.
19709 : When the symbol `prefix', it will be used when `org-todo' is called
19710 : with a prefix argument,  i.e. `\[universal-argument] \[org-todo]' in an Org buffer, and
19711 : `\[universal-argument] t' in an agenda buffer.
19713 : When t, fast selection is used by default.  In this case, the prefix
19714 : argument forces cycling instead.
19716 : In all cases, the special interface is only used if access keys have
19717 : actually been assigned by the user, i.e. if keywords in the configuration
19718 : are followed by a letter in parenthesis, like TODO(t).
19720 ** org-habit-following-days =(funcall (function (closure (t...=
19721    :PROPERTIES:
19722    :CUSTOM_ID: org-habit-following-days
19723    :END:
19725 - *Type:* integer
19726 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
19727 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-following-days][Find modifications in git logs]]
19729 : Number of days after today to appear in consistency graphs.
19731 ** org-special-ctrl-k =(funcall (function (closure (f...=
19732    :PROPERTIES:
19733    :CUSTOM_ID: org-special-ctrl-k
19734    :END:
19736 - *Type:* boolean
19737 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19738 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-special-ctrl-k][Find modifications in git logs]]
19740 : Non-nil means `C-k' will behave specially in headlines.
19741 : When nil, `C-k' will call the default `kill-line' command.
19742 : When t, the following will happen while the cursor is in the headline:
19744 : - When the cursor is at the beginning of a headline, kill the entire
19745 :   line and possible the folded subtree below the line.
19746 : - When in the middle of the headline text, kill the headline up to the tags.
19747 : - When after the headline text, kill the tags.
19749 ** org-special-ctrl-o =(funcall (function (closure (f...=
19750    :PROPERTIES:
19751    :CUSTOM_ID: org-special-ctrl-o
19752    :END:
19754 - *Type:* boolean
19755 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19756 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-special-ctrl-o][Find modifications in git logs]]
19758 : Non-nil means, make `C-o' insert a row in tables.
19760 ** org-man-remove-logfiles =(funcall (function (closure (o...=
19761    :PROPERTIES:
19762    :CUSTOM_ID: org-man-remove-logfiles
19763    :END:
19765 - *Type:* boolean
19766 - *Since:* Emacs version 24.4
19767 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
19768 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-remove-logfiles][Find modifications in git logs]]
19770 : Non-nil means remove the logfiles produced by PDF production.
19771 : These are the .aux, .log, .out, and .toc files.
19773 ** org-latex-image-default-width =(funcall (function (closure (t...=
19774    :PROPERTIES:
19775    :CUSTOM_ID: org-latex-image-default-width
19776    :END:
19778 - *Type:* string
19779 - *Since:* Emacs version 24.4
19780 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
19781 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-image-default-width][Find modifications in git logs]]
19783 : Default width for images.
19784 : This value will not be used if a height is provided.
19786 ** org-columns-summary-types =(funcall (function (closure (t...=
19787    :PROPERTIES:
19788    :CUSTOM_ID: org-columns-summary-types
19789    :END:
19791 - *Type:* (alist :key-type (string :tag ...
19792 - *Since:* Emacs version 26.1
19793 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
19794 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-summary-types][Find modifications in git logs]]
19796 : Alist between operators and summarize functions.
19798 : Each association follows the pattern (LABEL . SUMMARIZE) where
19800 :   LABEL is a string used in #+COLUMNS definition describing the
19801 :   summary type.  It can contain any character but "}".  It is
19802 :   case-sensitive.
19804 :   SUMMARIZE is a function called with two arguments.  The first
19805 :   argument is a non-empty list of values, as non-empty strings.
19806 :   The second one is a format string or nil.  It has to return
19807 :   a string summarizing the list of values.
19809 : Note that the return value can become one value for an higher
19810 : order summary, so the function is expected to handle its own
19811 : output.
19813 : Types defined in this variable take precedence over those defined
19814 : in `org-columns-summary-types-default', which see.
19816 ** org-list-demote-modify-bullet =(funcall (function (closure (o...=
19817    :PROPERTIES:
19818    :CUSTOM_ID: org-list-demote-modify-bullet
19819    :END:
19821 - *Type:* (repeat (cons (choice :tag "If...
19822 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
19823 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-demote-modify-bullet][Find modifications in git logs]]
19825 : Default bullet type installed when demoting an item.
19826 : This is an association list, for each bullet type, this alist will point
19827 : to the bullet that should be used when this item is demoted.
19828 : For example,
19830 :  (setq org-list-demote-modify-bullet
19831 :        \='(("+" . "-") ("-" . "+") ("*" . "+")))
19833 : will make
19835 :   + Movies
19836 :     + Silence of the Lambs
19837 :     + My Cousin Vinny
19838 :   + Books
19839 :     + The Hunt for Red October
19840 :     + The Road to Omaha
19842 : into
19844 :   + Movies
19845 :     - Silence of the Lambs
19846 :     - My Cousin Vinny
19847 :   + Books
19848 :     - The Hunt for Red October
19849 :     - The Road to Omaha
19851 ** org-clock-task-overrun-text =(funcall (function (closure (t...=
19852    :PROPERTIES:
19853    :CUSTOM_ID: org-clock-task-overrun-text
19854    :END:
19856 - *Type:* (choice (const :tag "Just mark...
19857 - *Since:* Emacs version 24.1
19858 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
19859 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-task-overrun-text][Find modifications in git logs]]
19861 : Extra mode line text to indicate that the clock is overrun.
19862 : The can be nil to indicate that instead of adding text, the clock time
19863 : should get a different face (`org-mode-line-clock-overrun').
19864 : When this is a string, it is prepended to the clock string as an indication,
19865 : also using the face `org-mode-line-clock-overrun'.
19867 ** org-publish-sitemap-sort-ignore-case =(funcall (function (closure (t...=
19868    :PROPERTIES:
19869    :CUSTOM_ID: org-publish-sitemap-sort-ignore-case
19870    :END:
19872 - *Type:* boolean
19873 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
19874 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-sitemap-sort-ignore-case][Find modifications in git logs]]
19876 : Non-nil when site-map sorting should ignore case.
19878 : You can overwrite this default per project in your
19879 : `org-publish-project-alist', using `:sitemap-ignore-case'.
19881 ** org-tags-sort-function =(funcall (function (closure (f...=
19882    :PROPERTIES:
19883    :CUSTOM_ID: org-tags-sort-function
19884    :END:
19886 - *Type:* (choice (const :tag "No sortin...
19887 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19888 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-sort-function][Find modifications in git logs]]
19890 : When set, tags are sorted using this function as a comparator.
19892 ** org-read-date-prefer-future =(funcall (function (closure (f...=
19893    :PROPERTIES:
19894    :CUSTOM_ID: org-read-date-prefer-future
19895    :END:
19897 - *Type:* (choice (const :tag "Never" ni...
19898 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19899 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-prefer-future][Find modifications in git logs]]
19901 : Non-nil means assume future for incomplete date input from user.
19902 : This affects the following situations:
19903 : 1. The user gives a month but not a year.
19904 :    For example, if it is April and you enter "feb 2", this will be read
19905 :    as Feb 2, *next* year.  "May 5", however, will be this year.
19906 : 2. The user gives a day, but no month.
19907 :    For example, if today is the 15th, and you enter "3", Org will read
19908 :    this as the third of *next* month.  However, if you enter "17",
19909 :    it will be considered as *this* month.
19911 : If you set this variable to the symbol `time', then also the following
19912 : will work:
19914 : 3. If the user gives a time.
19915 :    If the time is before now, it will be interpreted as tomorrow.
19917 : Currently none of this works for ISO week specifications.
19919 : When this option is nil, the current day, month and year will always be
19920 : used as defaults.
19922 : See also `org-agenda-jump-prefer-future'.
19924 ** org-edit-src-turn-on-auto-save =(funcall (function (closure (t...=
19925    :PROPERTIES:
19926    :CUSTOM_ID: org-edit-src-turn-on-auto-save
19927    :END:
19929 - *Type:* boolean
19930 - *Since:* Emacs version 24.4
19931 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
19932 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-turn-on-auto-save][Find modifications in git logs]]
19934 : Non-nil means turn `auto-save-mode' on when editing a source block.
19935 : This will save the content of the source code editing buffer into
19936 : a newly created file, not the base buffer for this source block.
19938 : If you want to regularly save the base buffer instead of the source
19939 : code editing buffer, see `org-edit-src-auto-save-idle-delay' instead.
19941 ** org-agenda-file-regexp =(funcall (function (closure (f...=
19942    :PROPERTIES:
19943    :CUSTOM_ID: org-agenda-file-regexp
19944    :END:
19946 - *Type:* regexp
19947 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
19948 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-file-regexp][Find modifications in git logs]]
19950 : Regular expression to match files for `org-agenda-files'.
19951 : If any element in the list in that variable contains a directory instead
19952 : of a normal file, all files in that directory that are matched by this
19953 : regular expression will be included.
19955 ** org-export-with-smart-quotes =(funcall (function (closure (t...=
19956    :PROPERTIES:
19957    :CUSTOM_ID: org-export-with-smart-quotes
19958    :END:
19960 - *Type:* boolean
19961 - *Since:* Emacs version 24.4
19962 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
19963 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-smart-quotes][Find modifications in git logs]]
19965 : Non-nil means activate smart quotes during export.
19966 : This option can also be set with the OPTIONS keyword,
19967 : e.g., "':t".
19969 : When setting this to non-nil, you need to take care of
19970 : using the correct Babel package when exporting to LaTeX.
19971 : E.g., you can load Babel for french like this:
19973 : #+LATEX_HEADER: \usepackage[french]{babel}
19975 ** org-html-inline-image-rules =(funcall (function (closure (h...=
19976    :PROPERTIES:
19977    :CUSTOM_ID: org-html-inline-image-rules
19978    :END:
19980 - *Type:* (alist :key-type (string :tag ...
19981 - *Since:* Emacs version 24.4
19982 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
19983 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-inline-image-rules][Find modifications in git logs]]
19985 : Rules characterizing image files that can be inlined into HTML.
19986 : A rule consists in an association whose key is the type of link
19987 : to consider, and value is a regexp that will be matched against
19988 : link's path.
19990 ** org-table-convert-region-max-lines =(funcall (function (closure (o...=
19991    :PROPERTIES:
19992    :CUSTOM_ID: org-table-convert-region-max-lines
19993    :END:
19995 - *Type:* integer
19996 - *Since:* Emacs version 26.1
19997 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
19998 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-convert-region-max-lines][Find modifications in git logs]]
20000 : Max lines that `org-table-convert-region' will attempt to process.
20002 : The function can be slow on larger regions; this safety feature
20003 : prevents it from hanging emacs.
20005 ** org-latex-compiler =(funcall (function (closure (t...=
20006    :PROPERTIES:
20007    :CUSTOM_ID: org-latex-compiler
20008    :END:
20010 - *Type:* (choice (const :tag "pdfLaTeX"...
20011 - *Since:* Emacs version 26.1
20012 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
20013 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-compiler][Find modifications in git logs]]
20015 : LaTeX compiler to use.
20017 : Must be an element in `org-latex-compilers' or the empty quote.
20018 : Can also be set in buffers via #+LATEX_COMPILER.  See also
20019 : `org-latex-compiler-file-string'.
20021 ** org-log-redeadline =(funcall (function (closure (f...=
20022    :PROPERTIES:
20023    :CUSTOM_ID: org-log-redeadline
20024    :END:
20026 - *Type:* (choice (const :tag "No loggin...
20027 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20028 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-redeadline][Find modifications in git logs]]
20030 : Information to record when the deadline date of a tasks is modified.
20032 : Possible values are:
20034 : nil     Don't add anything, just change the date
20035 : time    Add a time stamp to the task
20036 : note    Prompt for a note and add it with template `org-log-note-headings'
20038 : This option can also be set with on a per-file-basis with
20040 :    #+STARTUP: nologredeadline
20041 :    #+STARTUP: logredeadline
20042 :    #+STARTUP: lognoteredeadline
20044 : You can have local logging settings for a subtree by setting the LOGGING
20045 : property to one or more of these keywords.
20047 ** org-agenda-todo-ignore-timestamp =nil=
20048    :PROPERTIES:
20049    :CUSTOM_ID: org-agenda-todo-ignore-timestamp
20050    :END:
20052 - *Type:* (choice (const :tag "Ignore fu...
20053 - *Since:* Emacs version 24.1
20054 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20055 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-timestamp][Find modifications in git logs]]
20057 : Non-nil means don't show entries with a timestamp.
20058 : This applies when creating the global todo list.
20059 : Valid values are:
20061 : past     Don't show entries for today or in the past.
20063 : future   Don't show entries with a timestamp in the future.
20064 :          The idea behind this is that if it has a future
20065 :          timestamp, you don't want to think about it until the
20066 :          date.
20068 : all      Don't show any entries with a timestamp in the global todo list.
20069 :          The idea behind this is that by setting a timestamp, you
20070 :          have already "taken care" of this item.
20072 : This variable can also have an integer as a value.  If positive (N),
20073 : todos with a timestamp N or more days in the future will be ignored.  If
20074 : negative (-N), todos with a timestamp N or more days in the past will be
20075 : ignored.  If 0, todos with a timestamp either today or in the future will
20076 : be ignored.  For example, a value of -1 will exclude todos with a
20077 : timestamp in the past (yesterday or earlier), while a value of 7 will
20078 : exclude todos with a timestamp a week or more in the future.
20080 : See also `org-agenda-todo-ignore-with-date'.
20081 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
20082 : to make his option also apply to the tags-todo list.
20084 ** org-koma-letter-email =(quote org-koma-letter-email)=
20085    :PROPERTIES:
20086    :CUSTOM_ID: org-koma-letter-email
20087    :END:
20089 - *Type:* (radio (function-item org-koma...
20090 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20091 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-email][Find modifications in git logs]]
20093 : Sender's email address.
20095 : This variable defaults to the value `org-koma-letter-email' which
20096 : returns `user-mail-address'.  Alternatively a string, nil or
20097 : a function may be given.  Functions must return a string.
20099 : This option can also be set with the EMAIL keyword.
20101 ** org-agenda-tags-column =-80=
20102    :PROPERTIES:
20103    :CUSTOM_ID: org-agenda-tags-column
20104    :END:
20106 - *Type:* integer
20107 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20108 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-tags-column][Find modifications in git logs]]
20110 : Shift tags in agenda items to this column.
20111 : If this number is positive, it specifies the column.  If it is negative,
20112 : it means that the tags should be flushright to that column.  For example,
20113 : -80 works well for a normal 80 character screen.
20115 ** org-koma-letter-headline-is-opening-maybe =t=
20116    :PROPERTIES:
20117    :CUSTOM_ID: org-koma-letter-headline-is-opening-maybe
20118    :END:
20120 - *Type:* boolean
20121 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20122 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-headline-is-opening-maybe][Find modifications in git logs]]
20124 : Non-nil means a headline may be used as an opening and closing.
20125 : See also `org-koma-letter-opening' and
20126 : `org-koma-letter-closing'.
20128 ** org-agenda-current-time-string ="now - - - - - - - - - - - - -...=
20129    :PROPERTIES:
20130    :CUSTOM_ID: org-agenda-current-time-string
20131    :END:
20133 - *Type:* string
20134 - *Since:* Emacs version 24.1
20135 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20136 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-current-time-string][Find modifications in git logs]]
20138 : The string for the current time marker in the agenda.
20140 ** org-bibtex-key-property =(funcall (function (closure (t...=
20141    :PROPERTIES:
20142    :CUSTOM_ID: org-bibtex-key-property
20143    :END:
20145 - *Type:* string
20146 - *Since:* Emacs version 24.1
20147 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
20148 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-key-property][Find modifications in git logs]]
20150 : Property that holds the bibtex key.
20151 : By default, this is CUSTOM_ID, which enables easy linking to
20152 : bibtex headlines from within an org file.  This can be set to ID
20153 : to enable global links, but only with great caution, as global
20154 : IDs must be unique.
20156 ** org-export-with-archived-trees =(funcall (function (closure (t...=
20157    :PROPERTIES:
20158    :CUSTOM_ID: org-export-with-archived-trees
20159    :END:
20161 - *Type:* (choice (const :tag "Not at al...
20162 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
20163 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-archived-trees][Find modifications in git logs]]
20165 : Whether sub-trees with the ARCHIVE tag should be exported.
20167 : This can have three different values:
20168 : nil         Do not export, pretend this tree is not present.
20169 : t           Do export the entire tree.
20170 : `headline'  Only export the headline, but skip the tree below it.
20172 : This option can also be set with the OPTIONS keyword,
20173 : e.g. "arch:nil".
20175 ** org-coderef-label-format =(funcall (function (closure (t...=
20176    :PROPERTIES:
20177    :CUSTOM_ID: org-coderef-label-format
20178    :END:
20180 - *Type:* string
20181 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
20182 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-coderef-label-format][Find modifications in git logs]]
20184 : The default coderef format.
20185 : This format string will be used to search for coderef labels in literal
20186 : examples (EXAMPLE and SRC blocks).  The format can be overwritten in
20187 : an individual literal example with the -l option, like
20189 : #+BEGIN_SRC pascal +n -r -l "((%s))"
20190 : ...
20191 : #+END_SRC
20193 : If you want to use this for HTML export, make sure that the format does
20194 : not introduce special font-locking, and avoid the HTML special
20195 : characters `<', `>', and `&'.  The reason for this restriction is that
20196 : the labels are searched for only after htmlize has done its job.
20198 ** org-bbdb-default-anniversary-format =(funcall (function (closure (d...=
20199    :PROPERTIES:
20200    :CUSTOM_ID: org-bbdb-default-anniversary-format
20201    :END:
20203 - *Type:* string
20204 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
20205 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-default-anniversary-format][Find modifications in git logs]]
20207 : Default anniversary class.
20209 ** org-clock-out-remove-zero-time-clocks =(funcall (function (closure (t...=
20210    :PROPERTIES:
20211    :CUSTOM_ID: org-clock-out-remove-zero-time-clocks
20212    :END:
20214 - *Type:* boolean
20215 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
20216 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-remove-zero-time-clocks][Find modifications in git logs]]
20218 : Non-nil means remove the clock line when the resulting time is zero.
20220 ** org-export-with-fixed-width =(funcall (function (closure (t...=
20221    :PROPERTIES:
20222    :CUSTOM_ID: org-export-with-fixed-width
20223    :END:
20225 - *Type:* boolean
20226 - *Since:* Emacs version 24.4
20227 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
20228 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-fixed-width][Find modifications in git logs]]
20230 : Non-nil means export lines starting with ":".
20231 : This option can also be set with the OPTIONS keyword,
20232 : e.g. "::nil".
20234 ** org-rss-categories =(quote from-tags)=
20235    :PROPERTIES:
20236    :CUSTOM_ID: org-rss-categories
20237    :END:
20239 - *Type:* (choice (const :tag "From tags...
20240 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
20241 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-categories][Find modifications in git logs]]
20243 : Where to extract items category information from.
20244 : The default is to extract categories from the tags of the
20245 : headlines.  When set to another value, extract the category
20246 : from the :CATEGORY: property of the entry.
20248 ** org-babel-python-command =(funcall (function (closure (t...=
20249    :PROPERTIES:
20250    :CUSTOM_ID: org-babel-python-command
20251    :END:
20253 - *Type:* string
20254 - *Since:* Emacs version 24.4
20255 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-python.el][ob-python.el]]
20256 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-python-command][Find modifications in git logs]]
20258 : Name of the command for executing Python code.
20260 ** org-latex-logfiles-extensions =(funcall (function (closure (t...=
20261    :PROPERTIES:
20262    :CUSTOM_ID: org-latex-logfiles-extensions
20263    :END:
20265 - *Type:* (repeat (string :tag "Extensio...
20266 - *Since:* Emacs version 26.1
20267 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
20268 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-logfiles-extensions][Find modifications in git logs]]
20270 : The list of file extensions to consider as LaTeX logfiles.
20271 : The logfiles will be removed if `org-latex-remove-logfiles' is
20272 : non-nil.
20274 ** org-rss-use-entry-url-as-guid =t=
20275    :PROPERTIES:
20276    :CUSTOM_ID: org-rss-use-entry-url-as-guid
20277    :END:
20279 - *Type:* boolean
20280 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
20281 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-use-entry-url-as-guid][Find modifications in git logs]]
20283 : Use the URL for the <guid> metatag?
20284 : When nil, Org will create ids using `org-icalendar-create-uid'.
20286 ** org-babel-tangle-comment-format-end =(funcall (function (closure (t...=
20287    :PROPERTIES:
20288    :CUSTOM_ID: org-babel-tangle-comment-format-end
20289    :END:
20291 - *Type:* string
20292 - *Since:* Emacs version 24.1
20293 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
20294 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-comment-format-end][Find modifications in git logs]]
20296 : Format of inserted comments in tangled code files.
20297 : The following format strings can be used to insert special
20298 : information into the output using `org-fill-template'.
20299 : %start-line --- the line number at the start of the code block
20300 : %file --------- the file from which the code block was tangled
20301 : %link --------- Org style link to the code block
20302 : %source-name -- name of the code block
20304 : Upon insertion the formatted comment will be commented out, and
20305 : followed by a newline.  To inhibit this post-insertion processing
20306 : set the `org-babel-tangle-uncomment-comments' variable to a
20307 : non-nil value.
20309 : Whether or not comments are inserted during tangling is
20310 : controlled by the :comments header argument.
20312 ** org-export-preserve-breaks =(funcall (function (closure (t...=
20313    :PROPERTIES:
20314    :CUSTOM_ID: org-export-preserve-breaks
20315    :END:
20317 - *Type:* boolean
20318 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
20319 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-preserve-breaks][Find modifications in git logs]]
20321 : Non-nil means preserve all line breaks when exporting.
20322 : This option can also be set with the OPTIONS keyword,
20323 : e.g. "\n:t".
20325 ** org-doi-server-url =(funcall (function (closure (f...=
20326    :PROPERTIES:
20327    :CUSTOM_ID: org-doi-server-url
20328    :END:
20330 - *Type:* string
20331 - *Since:* Emacs version 24.3
20332 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20333 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-doi-server-url][Find modifications in git logs]]
20335 : The URL of the DOI server.
20337 ** org-ctags-path-to-ctags =(funcall (function (closure (t...=
20338    :PROPERTIES:
20339    :CUSTOM_ID: org-ctags-path-to-ctags
20340    :END:
20342 - *Type:* file
20343 - *Since:* Emacs version 24.1
20344 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
20345 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-path-to-ctags][Find modifications in git logs]]
20347 : Name of the ctags executable file.
20349 ** org-clock-in-resume =(funcall (function (closure (t...=
20350    :PROPERTIES:
20351    :CUSTOM_ID: org-clock-in-resume
20352    :END:
20354 - *Type:* boolean
20355 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
20356 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-resume][Find modifications in git logs]]
20358 : If non-nil, resume clock when clocking into task with open clock.
20359 : When clocking into a task with a clock entry which has not been closed,
20360 : the clock can be resumed from that point.
20362 ** org-agenda-show-current-time-in-grid =t=
20363    :PROPERTIES:
20364    :CUSTOM_ID: org-agenda-show-current-time-in-grid
20365    :END:
20367 - *Type:* boolean
20368 - *Since:* Emacs version 24.1
20369 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20370 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-current-time-in-grid][Find modifications in git logs]]
20372 : Non-nil means show the current time in the time grid.
20374 ** org-goto-interface =(funcall (function (closure (f...=
20375    :PROPERTIES:
20376    :CUSTOM_ID: org-goto-interface
20377    :END:
20379 - *Type:* (choice (const :tag "Outline" ...
20380 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20381 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-interface][Find modifications in git logs]]
20383 : The default interface to be used for `org-goto'.
20384 : Allowed values are:
20385 : outline                  The interface shows an outline of the relevant file
20386 :                          and the correct heading is found by moving through
20387 :                          the outline or by searching with incremental search.
20388 : outline-path-completion  Headlines in the current buffer are offered via
20389 :                          completion.  This is the interface also used by
20390 :                          the refile command.
20392 ** org-agenda-timerange-leaders =(quote ("" "(%d/%d): "))=
20393    :PROPERTIES:
20394    :CUSTOM_ID: org-agenda-timerange-leaders
20395    :END:
20397 - *Type:* (list (string :tag "Deadline t...
20398 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20399 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-timerange-leaders][Find modifications in git logs]]
20401 : Text preceding timerange entries in the agenda view.
20402 : This is a list with two strings.  The first applies when the range
20403 : is entirely on one day.  The second applies if the range spans several days.
20404 : The strings may have two "%d" format specifiers which will be filled
20405 : with the sequence number of the days, and the total number of days in the
20406 : range, respectively.
20408 ** org-format-latex-signal-error =(funcall (function (closure (f...=
20409    :PROPERTIES:
20410    :CUSTOM_ID: org-format-latex-signal-error
20411    :END:
20413 - *Type:* boolean
20414 - *Since:* Emacs version 24.1
20415 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20416 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-format-latex-signal-error][Find modifications in git logs]]
20418 : Non-nil means signal an error when image creation of LaTeX snippets fails.
20419 : When nil, just push out a message.
20421 ** org-agenda-skip-unavailable-files =(funcall (function (closure (f...=
20422    :PROPERTIES:
20423    :CUSTOM_ID: org-agenda-skip-unavailable-files
20424    :END:
20426 - *Type:* boolean
20427 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20428 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-unavailable-files][Find modifications in git logs]]
20430 : Non-nil means to just skip non-reachable files in `org-agenda-files'.
20431 : A nil value means to remove them, after a query, from the list.
20433 ** org-ascii-text-width =(funcall (function (closure (t...=
20434    :PROPERTIES:
20435    :CUSTOM_ID: org-ascii-text-width
20436    :END:
20438 - *Type:* integer
20439 - *Since:* Emacs version 24.4
20440 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
20441 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-text-width][Find modifications in git logs]]
20443 : Maximum width of exported text.
20444 : This number includes margin size, as set in
20445 : `org-ascii-global-margin'.
20447 ** org-table-duration-custom-format =(funcall (function (closure (o...=
20448    :PROPERTIES:
20449    :CUSTOM_ID: org-table-duration-custom-format
20450    :END:
20452 - *Type:* (choice (symbol :tag "Seconds"...
20453 - *Since:* Emacs version 24.1
20454 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
20455 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-duration-custom-format][Find modifications in git logs]]
20457 : Format for the output of calc computations like $1+$2;t.
20458 : The default value is `hours', and will output the results as a
20459 : number of hours.  Other allowed values are `seconds', `minutes' and
20460 : `days', and the output will be a fraction of seconds, minutes or
20461 : days. `hh:mm' selects to use hours and minutes, ignoring seconds.
20462 : The `U' flag in a table formula will select this specific format for
20463 : a single formula.
20465 ** org-latex-caption-above =(funcall (function (closure (t...=
20466    :PROPERTIES:
20467    :CUSTOM_ID: org-latex-caption-above
20468    :END:
20470 - *Type:* (choice (const :tag "For all e...
20471 - *Since:* Emacs version 26.1
20472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
20473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-caption-above][Find modifications in git logs]]
20475 : When non-nil, place caption string at the beginning of elements.
20476 : Otherwise, place it near the end.  When value is a list of
20477 : symbols, put caption above selected elements only.  Allowed
20478 : symbols are: `image', `table', `src-block' and `special-block'.
20480 ** org-agenda-sticky =nil=
20481    :PROPERTIES:
20482    :CUSTOM_ID: org-agenda-sticky
20483    :END:
20485 - *Type:* boolean
20486 - *Since:* Emacs version 24.3
20487 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20488 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-sticky][Find modifications in git logs]]
20490 : Non-nil means agenda q key will bury agenda buffers.
20491 : Agenda commands will then show existing buffer instead of generating new ones.
20492 : When nil, `q' will kill the single agenda buffer.
20494 ** org-loop-over-headlines-in-active-region =(funcall (function (closure (f...=
20495    :PROPERTIES:
20496    :CUSTOM_ID: org-loop-over-headlines-in-active-region
20497    :END:
20499 - *Type:* (choice (const :tag "Don't loo...
20500 - *Since:* Emacs version 24.1
20501 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20502 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-loop-over-headlines-in-active-region][Find modifications in git logs]]
20504 : Shall some commands act upon headlines in the active region?
20506 : When set to t, some commands will be performed in all headlines
20507 : within the active region.
20509 : When set to `start-level', some commands will be performed in all
20510 : headlines within the active region, provided that these headlines
20511 : are of the same level than the first one.
20513 : When set to a string, those commands will be performed on the
20514 : matching headlines within the active region.  Such string must be
20515 : a tags/property/todo match as it is used in the agenda tags view.
20517 : The list of commands is: `org-schedule', `org-deadline',
20518 : `org-todo', `org-archive-subtree', `org-archive-set-tag' and
20519 : `org-archive-to-archive-sibling'.  The archiving commands skip
20520 : already archived entries.
20522 ** org-sort-agenda-notime-is-late =t=
20523    :PROPERTIES:
20524    :CUSTOM_ID: org-sort-agenda-notime-is-late
20525    :END:
20527 - *Type:* boolean
20528 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20529 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort-agenda-notime-is-late][Find modifications in git logs]]
20531 : Non-nil means items without time are considered late.
20532 : This is only relevant for sorting.  When t, items which have no explicit
20533 : time like 15:30 will be considered as 99:01, i.e. later than any items which
20534 : do have a time.  When nil, the default time is before 0:00.  You can use this
20535 : option to decide if the schedule for today should come before or after timeless
20536 : agenda entries.
20538 ** org-calendar-to-agenda-key =(funcall (function (closure (f...=
20539    :PROPERTIES:
20540    :CUSTOM_ID: org-calendar-to-agenda-key
20541    :END:
20543 - *Type:* sexp
20544 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20545 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-to-agenda-key][Find modifications in git logs]]
20547 : The key to be installed in `calendar-mode-map' for switching to the agenda.
20548 : The command `org-calendar-goto-agenda' will be bound to this key.  The
20549 : default is the character `c' because then `c' can be used to switch back and
20550 : forth between agenda and calendar.
20552 ** org-faces-easy-properties =(funcall (function (closure (t...=
20553    :PROPERTIES:
20554    :CUSTOM_ID: org-faces-easy-properties
20555    :END:
20557 - *Type:* (repeat (cons (choice (const t...
20558 - *Since:* Emacs version 24.1
20559 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
20560 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-faces-easy-properties][Find modifications in git logs]]
20562 : The property changes by easy faces.
20563 : This is an alist, the keys show the area of application, the values
20564 : can be `:foreground' or `:background'.  A color string for special
20565 : keywords will then be interpreted as either foreground or background
20566 : color.
20568 ** org-clock-frame-title-format =(funcall (function (closure (t...=
20569    :PROPERTIES:
20570    :CUSTOM_ID: org-clock-frame-title-format
20571    :END:
20573 - *Type:* sexp
20574 - *Since:* Emacs version 24.1
20575 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
20576 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-frame-title-format][Find modifications in git logs]]
20578 : The value for `frame-title-format' when clocking in.
20580 : When `org-clock-clocked-in-display' is set to `frame-title'
20581 : or `both', clocking in will replace `frame-title-format' with
20582 : this value.  Clocking out will restore `frame-title-format'.
20584 : `org-frame-title-string' is a format string using the same
20585 : specifications than `frame-title-format', which see.
20587 ** org-icalendar-include-todo =(funcall (function (closure (t...=
20588    :PROPERTIES:
20589    :CUSTOM_ID: org-icalendar-include-todo
20590    :END:
20592 - *Type:* (choice (const :tag "None" nil...
20593 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
20594 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-include-todo][Find modifications in git logs]]
20596 : Non-nil means create VTODO components from TODO items.
20598 : Valid values are:
20599 : nil                  don't include any task.
20600 : t                    include tasks that are not in DONE state.
20601 : `unblocked'          include all TODO items that are not blocked.
20602 : `all'                include both done and not done items.
20604 ** org-agenda-todo-ignore-with-date =nil=
20605    :PROPERTIES:
20606    :CUSTOM_ID: org-agenda-todo-ignore-with-date
20607    :END:
20609 - *Type:* boolean
20610 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20611 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-with-date][Find modifications in git logs]]
20613 : Non-nil means don't show entries with a date in the global todo list.
20614 : You can use this if you prefer to mark mere appointments with a TODO keyword,
20615 : but don't want them to show up in the TODO list.
20616 : When this is set, it also covers deadlines and scheduled items, the settings
20617 : of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
20618 : will be ignored.
20619 : See also the variable `org-agenda-tags-todo-honor-ignore-options'.
20621 ** org-use-effective-time =(funcall (function (closure (f...=
20622    :PROPERTIES:
20623    :CUSTOM_ID: org-use-effective-time
20624    :END:
20626 - *Type:* boolean
20627 - *Since:* Emacs version 24.1
20628 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20629 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-effective-time][Find modifications in git logs]]
20631 : If non-nil, consider `org-extend-today-until' when creating timestamps.
20632 : For example, if `org-extend-today-until' is 8, and it's 4am, then the
20633 : "effective time" of any timestamps between midnight and 8am will be
20634 : 23:59 of the previous day.
20636 ** org-icalendar-use-deadline =(funcall (function (closure (t...=
20637    :PROPERTIES:
20638    :CUSTOM_ID: org-icalendar-use-deadline
20639    :END:
20641 - *Type:* (set :greedy t (const :tag "De...
20642 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
20643 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-use-deadline][Find modifications in git logs]]
20645 : Contexts where iCalendar export should use a deadline time stamp.
20647 : This is a list with possibly several symbols in it.  Valid symbols are:
20649 : `event-if-todo'       Deadlines in TODO entries become calendar events.
20650 : `event-if-not-todo'   Deadlines in non-TODO entries become calendar events.
20651 : `todo-due'            Use deadlines in TODO entries as due-dates.
20653 ** org-latex-tables-centered =(funcall (function (closure (t...=
20654    :PROPERTIES:
20655    :CUSTOM_ID: org-latex-tables-centered
20656    :END:
20658 - *Type:* boolean
20659 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
20660 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-tables-centered][Find modifications in git logs]]
20662 : When non-nil, tables are exported in a center environment.
20664 ** org-table-formula-create-columns =(funcall (function (closure (o...=
20665    :PROPERTIES:
20666    :CUSTOM_ID: org-table-formula-create-columns
20667    :END:
20669 - *Type:* (choice (const :tag "Setting a...
20670 - *Since:* Emacs version 26.1
20671 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
20672 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-create-columns][Find modifications in git logs]]
20674 : Non-nil means that evaluation of a field formula can add new
20675 : columns if an out-of-bounds field is being set.
20677 ** org-agenda-span =(quote week)=
20678    :PROPERTIES:
20679    :CUSTOM_ID: org-agenda-span
20680    :END:
20682 - *Type:* (choice (const :tag "Day" day)...
20683 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
20684 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-span][Find modifications in git logs]]
20686 : Number of days to include in overview display.
20687 : Can be day, week, month, year, or any number of days.
20688 : Custom commands can set this variable in the options section.
20690 ** org-startup-with-beamer-mode =(funcall (function (closure (f...=
20691    :PROPERTIES:
20692    :CUSTOM_ID: org-startup-with-beamer-mode
20693    :END:
20695 - *Type:* boolean
20696 - *Since:* Emacs version 24.1
20697 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20698 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-with-beamer-mode][Find modifications in git logs]]
20700 : Non-nil means turn on `org-beamer-mode' on startup.
20701 : This can also be configured on a per-file basis by adding one of
20702 : the following lines anywhere in the buffer:
20704 :    #+STARTUP: beamer
20706 ** org-koma-letter-prefer-subject =nil=
20707    :PROPERTIES:
20708    :CUSTOM_ID: org-koma-letter-prefer-subject
20709    :END:
20711 - *Type:* boolean
20712 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
20713 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-prefer-subject][Find modifications in git logs]]
20715 : Non-nil means title should be interpreted as subject if subject is missing.
20716 : This option can also be set with the OPTIONS keyword,
20717 : e.g. "title-subject:t".
20719 ** org-export-with-author =(funcall (function (closure (t...=
20720    :PROPERTIES:
20721    :CUSTOM_ID: org-export-with-author
20722    :END:
20724 - *Type:* boolean
20725 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
20726 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-author][Find modifications in git logs]]
20728 : Non-nil means insert author name into the exported file.
20729 : This option can also be set with the OPTIONS keyword,
20730 : e.g. "author:nil".
20732 ** org-show-notification-handler =(funcall (function (closure (t...=
20733    :PROPERTIES:
20734    :CUSTOM_ID: org-show-notification-handler
20735    :END:
20737 - *Type:* (choice (const nil) (string :t...
20738 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
20739 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-notification-handler][Find modifications in git logs]]
20741 : Function or program to send notification with.
20742 : The function or program will be called with the notification
20743 : string as argument.
20745 ** org-attach-store-link-p =(funcall (function (closure (t...=
20746    :PROPERTIES:
20747    :CUSTOM_ID: org-attach-store-link-p
20748    :END:
20750 - *Type:* (choice (const :tag "Don't sto...
20751 - *Since:* Emacs version 24.1
20752 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
20753 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-store-link-p][Find modifications in git logs]]
20755 : Non-nil means store a link to a file when attaching it.
20757 ** org-babel-maxima-command =(funcall (function (closure (t...=
20758    :PROPERTIES:
20759    :CUSTOM_ID: org-babel-maxima-command
20760    :END:
20762 - *Type:* string
20763 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-maxima.el][ob-maxima.el]]
20764 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-maxima-command][Find modifications in git logs]]
20766 : Command used to call maxima on the shell.
20768 ** org-html-mathjax-template =(funcall (function (closure (h...=
20769    :PROPERTIES:
20770    :CUSTOM_ID: org-html-mathjax-template
20771    :END:
20773 - *Type:* string
20774 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
20775 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-mathjax-template][Find modifications in git logs]]
20777 : The MathJax template.  See also `org-html-mathjax-options'.
20779 ** org-enable-table-editor =(funcall (function (closure (f...=
20780    :PROPERTIES:
20781    :CUSTOM_ID: org-enable-table-editor
20782    :END:
20784 - *Type:* (choice (const :tag "off" nil)...
20785 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20786 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-enable-table-editor][Find modifications in git logs]]
20788 : Non-nil means lines starting with "|" are handled by the table editor.
20789 : When nil, such lines will be treated like ordinary lines.
20791 : When equal to the symbol `optimized', the table editor will be optimized to
20792 : do the following:
20793 : - Automatic overwrite mode in front of whitespace in table fields.
20794 :   This makes the structure of the table stay in tact as long as the edited
20795 :   field does not exceed the column width.
20796 : - Minimize the number of realigns.  Normally, the table is aligned each time
20797 :   TAB or RET are pressed to move to another field.  With optimization this
20798 :   happens only if changes to a field might have changed the column width.
20799 : Optimization requires replacing the functions `self-insert-command',
20800 : `delete-char', and `backward-delete-char' in Org buffers, with a
20801 : slight (in fact: unnoticeable) speed impact for normal typing.  Org is very
20802 : good at guessing when a re-align will be necessary, but you can always
20803 : force one with `\[org-ctrl-c-ctrl-c]'.
20805 : If you would like to use the optimized version in Org mode, but the
20806 : un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
20808 : This variable can be used to turn on and off the table editor during a session,
20809 : but in order to toggle optimization, a restart is required.
20811 : See also the variable `org-table-auto-blank-field'.
20813 ** org-mobile-encryption-tempfile =(funcall (function (closure (t...=
20814    :PROPERTIES:
20815    :CUSTOM_ID: org-mobile-encryption-tempfile
20816    :END:
20818 - *Type:* directory
20819 - *Since:* Emacs version 24.1
20820 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
20821 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-encryption-tempfile][Find modifications in git logs]]
20823 : File that is being used as a temporary file for encryption.
20824 : This must be local file on your local machine (not on the WebDAV server).
20825 : You might want to put this file into a directory where only you have access.
20827 ** org-time-stamp-rounding-minutes =(funcall (function (closure (f...=
20828    :PROPERTIES:
20829    :CUSTOM_ID: org-time-stamp-rounding-minutes
20830    :END:
20832 - *Type:* (list (integer :tag "when inse...
20833 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20834 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp-rounding-minutes][Find modifications in git logs]]
20836 : Number of minutes to round time stamps to.
20837 : \<org-mode-map>These are two values, the first applies when first creating a time stamp.
20838 : The second applies when changing it with the commands `S-up' and `S-down'.
20839 : When changing the time stamp, this means that it will change in steps
20840 : of N minutes, as given by the second value.
20842 : When a setting is 0 or 1, insert the time unmodified.  Useful rounding
20843 : numbers should be factors of 60, so for example 5, 10, 15.
20845 : When this is larger than 1, you can still force an exact time stamp by using
20846 : a double prefix argument to a time stamp command like `\[org-time-stamp]' or `\[org-time-stamp-inactive],
20847 : and by using a prefix arg to `S-up/down' to specify the exact number
20848 : of minutes to shift.
20850 ** org-html-html5-fancy =(funcall (function (closure (h...=
20851    :PROPERTIES:
20852    :CUSTOM_ID: org-html-html5-fancy
20853    :END:
20855 - *Type:* boolean
20856 - *Since:* Emacs version 24.4
20857 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
20858 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-html5-fancy][Find modifications in git logs]]
20860 : Non-nil means using new HTML5 elements.
20861 : This variable is ignored for anything other than HTML5 export.
20863 : For compatibility with Internet Explorer, it's probably a good
20864 : idea to download some form of the html5shiv (for instance
20865 : https://code.google.com/p/html5shiv/) and add it to your
20866 : HTML_HEAD_EXTRA, so that your pages don't break for users of IE
20867 : versions 8 and below.
20869 ** org-babel-exp-inline-code-template =(funcall (function (closure (t...=
20870    :PROPERTIES:
20871    :CUSTOM_ID: org-babel-exp-inline-code-template
20872    :END:
20874 - *Type:* string
20875 - *Since:* Emacs version 26.1
20876 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
20877 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-inline-code-template][Find modifications in git logs]]
20879 : Template used to export the body of inline code blocks.
20880 : This template may be customized to include additional information
20881 : such as the code block name, or the values of particular header
20882 : arguments.  The template is filled out using `org-fill-template',
20883 : and the following %keys may be used.
20885 :  lang ------ the language of the code block
20886 :  name ------ the name of the code block
20887 :  body ------ the body of the code block
20888 :  switches -- the switches associated to the code block
20889 :  flags ----- the flags passed to the code block
20891 : In addition to the keys mentioned above, every header argument
20892 : defined for the code block may be used as a key and will be
20893 : replaced with its value.
20895 ** org-export-use-babel =(funcall (function (closure (t...=
20896    :PROPERTIES:
20897    :CUSTOM_ID: org-export-use-babel
20898    :END:
20900 - *Type:* (choice (const :tag "Never" ni...
20901 - *Since:* Emacs version 24.1
20902 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
20903 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-use-babel][Find modifications in git logs]]
20905 : Switch controlling code evaluation and header processing during export.
20906 : When set to nil no code will be evaluated as part of the export
20907 : process and no header arguments will be obeyed.  When set to
20908 : `inline-only', only inline code blocks will be executed.  Users
20909 : who wish to avoid evaluating code on export should use the header
20910 : argument `:eval never-export'.
20912 ** org-latex-to-mathml-convert-command =(funcall (function (closure (f...=
20913    :PROPERTIES:
20914    :CUSTOM_ID: org-latex-to-mathml-convert-command
20915    :END:
20917 - *Type:* (choice (const :tag "None" nil...
20918 - *Since:* Emacs version 24.1
20919 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20920 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-to-mathml-convert-command][Find modifications in git logs]]
20922 : Command to convert LaTeX fragments to MathML.
20923 : Replace format-specifiers in the command as noted below and use
20924 : `shell-command' to convert LaTeX to MathML.
20925 : %j:     Executable file in fully expanded form as specified by
20926 :         `org-latex-to-mathml-jar-file'.
20927 : %I:     Input LaTeX file in fully expanded form.
20928 : %i:     The latex fragment to be converted.
20929 : %o:     Output MathML file.
20931 : This command is used by `org-create-math-formula'.
20933 : When using MathToWeb as the converter, set this option to
20934 : "java -jar %j -unicode -force -df %o %I".
20936 : When using LaTeXML set this option to
20937 : "latexmlmath "%i" --presentationmathml=%o".
20939 ** org-startup-align-all-tables =(funcall (function (closure (f...=
20940    :PROPERTIES:
20941    :CUSTOM_ID: org-startup-align-all-tables
20942    :END:
20944 - *Type:* boolean
20945 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20946 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-align-all-tables][Find modifications in git logs]]
20948 : Non-nil means align all tables when visiting a file.
20949 : This is useful when the column width in tables is forced with <N> cookies
20950 : in table fields.  Such tables will look correct only after the first re-align.
20951 : This can also be configured on a per-file basis by adding one of
20952 : the following lines anywhere in the buffer:
20953 :    #+STARTUP: align
20954 :    #+STARTUP: noalign
20956 ** org-table-default-size =(funcall (function (closure (o...=
20957    :PROPERTIES:
20958    :CUSTOM_ID: org-table-default-size
20959    :END:
20961 - *Type:* string
20962 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
20963 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-default-size][Find modifications in git logs]]
20965 : The default size for newly created tables, Columns x Rows.
20967 ** org-default-notes-file =(funcall (function (closure (f...=
20968    :PROPERTIES:
20969    :CUSTOM_ID: org-default-notes-file
20970    :END:
20972 - *Type:* file
20973 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20974 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-default-notes-file][Find modifications in git logs]]
20976 : Default target for storing notes.
20977 : Used as a fall back file for org-capture.el, for templates that
20978 : do not specify a target file.
20980 ** org-make-link-description-function =(funcall (function (closure (f...=
20981    :PROPERTIES:
20982    :CUSTOM_ID: org-make-link-description-function
20983    :END:
20985 - *Type:* (choice (const nil) (function)...
20986 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
20987 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-make-link-description-function][Find modifications in git logs]]
20989 : Function to use for generating link descriptions from links.
20990 : When nil, the link location will be used.  This function must take
20991 : two parameters: the first one is the link, the second one is the
20992 : description generated by `org-insert-link'.  The function should
20993 : return the description to use.
20995 ** org-koma-letter-opening =""=
20996    :PROPERTIES:
20997    :CUSTOM_ID: org-koma-letter-opening
20998    :END:
21000 - *Type:* string
21001 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
21002 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-opening][Find modifications in git logs]]
21004 : Letter's opening, as a string.
21006 : This option can also be set with the OPENING keyword.  Moreover,
21007 : when:
21008 :   (1) Either `org-koma-letter-prefer-special-headings' is non-nil
21009 :       or the CLOSING keyword is empty
21010 :   (2) `org-koma-letter-headline-is-opening-maybe' is non-nil;
21011 :   (3) the letter contains a headline without a special
21012 :       tag (e.g. "to" or "ps");
21013 : then the opening will be implicitly set as the untagged headline title.
21015 ** org-agenda-todo-keyword-format ="%-1s"=
21016    :PROPERTIES:
21017    :CUSTOM_ID: org-agenda-todo-keyword-format
21018    :END:
21020 - *Type:* string
21021 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21022 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-keyword-format][Find modifications in git logs]]
21024 : Format for the TODO keyword in agenda lines.
21025 : Set this to something like "%-12s" if you want all TODO keywords
21026 : to occupy a fixed space in the agenda display.
21028 ** org-babel-sh-var-quote-fmt ="$(cat <<'BABEL_TABLE'\n%s\nBA...=
21029    :PROPERTIES:
21030    :CUSTOM_ID: org-babel-sh-var-quote-fmt
21031    :END:
21033 - *Type:* string
21034 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-sh.el][ob-sh.el]]
21035 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-sh-var-quote-fmt][Find modifications in git logs]]
21039 ** org-man-tables-verbatim =(funcall (function (closure (o...=
21040    :PROPERTIES:
21041    :CUSTOM_ID: org-man-tables-verbatim
21042    :END:
21044 - *Type:* boolean
21045 - *Since:* Emacs version 24.4
21046 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
21047 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-tables-verbatim][Find modifications in git logs]]
21049 : When non-nil, tables are exported verbatim.
21051 ** org-habit-show-done-always-green =(funcall (function (closure (t...=
21052    :PROPERTIES:
21053    :CUSTOM_ID: org-habit-show-done-always-green
21054    :END:
21056 - *Type:* boolean
21057 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
21058 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-show-done-always-green][Find modifications in git logs]]
21060 : Non-nil means DONE days will always be green in the consistency graph.
21061 : It will be green even if it was done after the deadline.
21063 ** org-agenda-log-mode-items =(quote (closed clock))=
21064    :PROPERTIES:
21065    :CUSTOM_ID: org-agenda-log-mode-items
21066    :END:
21068 - *Type:* (set :greedy t (const closed) ...
21069 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21070 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-log-mode-items][Find modifications in git logs]]
21072 : List of items that should be shown in agenda log mode.
21073 : \<org-agenda-mode-map>This list may contain the following symbols:
21075 :   closed    Show entries that have been closed on that day.
21076 :   clock     Show entries that have received clocked time on that day.
21077 :   state     Show all logged state changes.
21078 : Note that instead of changing this variable, you can also press `\[universal-argument] \[org-agenda-log-mode]' in
21079 : the agenda to display all available LOG items temporarily.
21081 ** org-agenda-remove-timeranges-from-blocks =nil=
21082    :PROPERTIES:
21083    :CUSTOM_ID: org-agenda-remove-timeranges-from-blocks
21084    :END:
21086 - *Type:* boolean
21087 - *Since:* Emacs version 24.1
21088 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21089 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-timeranges-from-blocks][Find modifications in git logs]]
21091 : Non-nil means remove time ranges specifications in agenda
21092 : items that span on several days.
21094 ** org-latex-footnote-defined-format =(funcall (function (closure (t...=
21095    :PROPERTIES:
21096    :CUSTOM_ID: org-latex-footnote-defined-format
21097    :END:
21099 - *Type:* (choice (const :tag "Use plain...
21100 - *Since:* Emacs version 26.1
21101 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
21102 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-footnote-defined-format][Find modifications in git logs]]
21104 : Format string used to format reference to footnote already defined.
21105 : %s will be replaced by the label of the referred footnote.
21107 ** org-archive-location =(funcall (function (closure (t...=
21108    :PROPERTIES:
21109    :CUSTOM_ID: org-archive-location
21110    :END:
21112 - *Type:* string
21113 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21114 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-location][Find modifications in git logs]]
21116 : The location where subtrees should be archived.
21118 : The value of this variable is a string, consisting of two parts,
21119 : separated by a double-colon.  The first part is a filename and
21120 : the second part is a headline.
21122 : When the filename is omitted, archiving happens in the same file.
21123 : %s in the filename will be replaced by the current file
21124 : name (without the directory part).  Archiving to a different file
21125 : is useful to keep archived entries from contributing to the
21126 : Org Agenda.
21128 : The archived entries will be filed as subtrees of the specified
21129 : headline.  When the headline is omitted, the subtrees are simply
21130 : filed away at the end of the file, as top-level entries.  Also in
21131 : the heading you can use %s to represent the file name, this can be
21132 : useful when using the same archive for a number of different files.
21134 : Here are a few examples:
21135 : "%s_archive::"
21136 :       If the current file is Projects.org, archive in file
21137 :       Projects.org_archive, as top-level trees.  This is the default.
21139 : "::* Archived Tasks"
21140 :       Archive in the current file, under the top-level headline
21141 :       "* Archived Tasks".
21143 : "~/org/archive.org::"
21144 :       Archive in file ~/org/archive.org (absolute path), as top-level trees.
21146 : "~/org/archive.org::* From %s"
21147 :       Archive in file ~/org/archive.org (absolute path), under headlines
21148 :         "From FILENAME" where file name is the current file name.
21150 : "~/org/datetree.org::datetree/* Finished Tasks"
21151 :         The "datetree/" string is special, signifying to archive
21152 :         items to the datetree.  Items are placed in either the CLOSED
21153 :         date of the item, or the current date if there is no CLOSED date.
21154 :         The heading will be a subentry to the current date.  There doesn't
21155 :         need to be a heading, but there always needs to be a slash after
21156 :         datetree.  For example, to store archived items directly in the
21157 :         datetree, use "~/org/datetree.org::datetree/".
21159 : "basement::** Finished Tasks"
21160 :       Archive in file ./basement (relative path), as level 3 trees
21161 :       below the level 2 heading "** Finished Tasks".
21163 : You may set this option on a per-file basis by adding to the buffer a
21164 : line like
21166 : #+ARCHIVE: basement::** Finished Tasks
21168 : You may also define it locally for a subtree by setting an ARCHIVE property
21169 : in the entry.  If such a property is found in an entry, or anywhere up
21170 : the hierarchy, it will be used.
21172 ** org-html-table-row-open-tag =(funcall (function (closure (h...=
21173    :PROPERTIES:
21174    :CUSTOM_ID: org-html-table-row-open-tag
21175    :END:
21177 - *Type:* (choice :tag "Opening tag" (st...
21178 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21179 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-row-open-tag][Find modifications in git logs]]
21181 : The opening tag for table rows.
21182 : This is customizable so that alignment options can be specified.
21183 : Instead of strings, these can be a Lisp function that will be
21184 : evaluated for each row in order to construct the table row tags.
21186 : The function will be called with these arguments:
21188 :          `number': row number (0 is the first row)
21189 :    `group-number': group number of current row
21190 :    `start-group?': non-nil means the row starts a group
21191 :      `end-group?': non-nil means the row ends a group
21192 :            `top?': non-nil means this is the top row
21193 :         `bottom?': non-nil means this is the bottom row
21195 : For example:
21197 :   (setq org-html-table-row-open-tag
21198 :         (lambda (number group-number start-group? end-group-p top? bottom?)
21199 :            (cond (top? "<tr class=\"tr-top\">")
21200 :                  (bottom? "<tr class=\"tr-bottom\">")
21201 :                  (t (if (= (mod number 2) 1)
21202 :                         "<tr class=\"tr-odd\">"
21203 :                       "<tr class=\"tr-even\">")))))
21205 : will use the "tr-top" and "tr-bottom" classes for the top row
21206 : and the bottom row, and otherwise alternate between "tr-odd" and
21207 : "tr-even" for odd and even rows.
21209 ** org-icalendar-combined-name =(funcall (function (closure (t...=
21210    :PROPERTIES:
21211    :CUSTOM_ID: org-icalendar-combined-name
21212    :END:
21214 - *Type:* string
21215 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
21216 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combined-name][Find modifications in git logs]]
21218 : Calendar name for the combined iCalendar representing all agenda files.
21220 ** org-priority-start-cycle-with-default =(funcall (function (closure (f...=
21221    :PROPERTIES:
21222    :CUSTOM_ID: org-priority-start-cycle-with-default
21223    :END:
21225 - *Type:* boolean
21226 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21227 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority-start-cycle-with-default][Find modifications in git logs]]
21229 : Non-nil means start with default priority when starting to cycle.
21230 : When this is nil, the first step in the cycle will be (depending on the
21231 : command used) one higher or lower than the default priority.
21232 : See also `org-default-priority'.
21234 ** org-table-use-standard-references =(funcall (function (closure (o...=
21235    :PROPERTIES:
21236    :CUSTOM_ID: org-table-use-standard-references
21237    :END:
21239 - *Type:* (choice (const :tag "Never, do...
21240 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
21241 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-use-standard-references][Find modifications in git logs]]
21243 : Non-nil means using table references like B3 instead of @3$2.
21244 : Possible values are:
21245 : nil     never use them
21246 : from    accept as input, do not present for editing
21247 : t       accept as input and present for editing
21249 ** org-src-lang-modes =(funcall (function (closure (t...=
21250    :PROPERTIES:
21251    :CUSTOM_ID: org-src-lang-modes
21252    :END:
21254 - *Type:* (repeat (cons (string "Languag...
21255 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
21256 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-lang-modes][Find modifications in git logs]]
21258 : Alist mapping languages to their major mode.
21259 : The key is the language name, the value is the string that should
21260 : be inserted as the name of the major mode.  For many languages this is
21261 : simple, but for language where this is not the case, this variable
21262 : provides a way to simplify things on the user side.
21263 : For example, there is no ocaml-mode in Emacs, but the mode to use is
21264 : `tuareg-mode'.
21266 ** org-startup-with-inline-images =(funcall (function (closure (f...=
21267    :PROPERTIES:
21268    :CUSTOM_ID: org-startup-with-inline-images
21269    :END:
21271 - *Type:* boolean
21272 - *Since:* Emacs version 24.1
21273 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21274 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-with-inline-images][Find modifications in git logs]]
21276 : Non-nil means show inline images when loading a new Org file.
21277 : This can also be configured on a per-file basis by adding one of
21278 : the following lines anywhere in the buffer:
21279 :    #+STARTUP: inlineimages
21280 :    #+STARTUP: noinlineimages
21282 ** org-refile-allow-creating-parent-nodes =(funcall (function (closure (f...=
21283    :PROPERTIES:
21284    :CUSTOM_ID: org-refile-allow-creating-parent-nodes
21285    :END:
21287 - *Type:* (choice (const :tag "Never" ni...
21288 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21289 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-allow-creating-parent-nodes][Find modifications in git logs]]
21291 : Non-nil means allow the creation of new nodes as refile targets.
21292 : New nodes are then created by adding "/new node name" to the completion
21293 : of an existing node.  When the value of this variable is `confirm',
21294 : new node creation must be confirmed by the user (recommended).
21295 : When nil, the completion must match an existing entry.
21297 : Note that, if the new heading is not seen by the criteria
21298 : listed in `org-refile-targets', multiple instances of the same
21299 : heading would be created by trying again to file under the new
21300 : heading.
21302 ** org-enable-fixed-width-editor =(funcall (function (closure (f...=
21303    :PROPERTIES:
21304    :CUSTOM_ID: org-enable-fixed-width-editor
21305    :END:
21307 - *Type:* boolean
21308 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21309 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-enable-fixed-width-editor][Find modifications in git logs]]
21311 : Non-nil means lines starting with ":" are treated as fixed-width.
21312 : This currently only means they are never auto-wrapped.
21313 : When nil, such lines will be treated like ordinary lines.
21315 ** org-html-metadata-timestamp-format =(funcall (function (closure (h...=
21316    :PROPERTIES:
21317    :CUSTOM_ID: org-html-metadata-timestamp-format
21318    :END:
21320 - *Type:* string
21321 - *Since:* Emacs version 24.4
21322 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21323 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-metadata-timestamp-format][Find modifications in git logs]]
21325 : Format used for timestamps in preamble, postamble and metadata.
21326 : See `format-time-string' for more information on its components.
21328 ** org-entities-user =(funcall (function (closure (t...=
21329    :PROPERTIES:
21330    :CUSTOM_ID: org-entities-user
21331    :END:
21333 - *Type:* (repeat (list (string :tag "na...
21334 - *Since:* Emacs version 24.1
21335 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-entities.el][org-entities.el]]
21336 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-entities-user][Find modifications in git logs]]
21338 : User-defined entities used in Org to produce special characters.
21339 : Each entry in this list is a list of strings.  It associates the name
21340 : of the entity that can be inserted into an Org file as \name with the
21341 : appropriate replacements for the different export backends.  The order
21342 : of the fields is the following
21344 : name                 As a string, without the leading backslash.
21345 : LaTeX replacement    In ready LaTeX, no further processing will take place.
21346 : LaTeX mathp          Either t or nil.  When t this entity needs to be in
21347 :                      math mode.
21348 : HTML replacement     In ready HTML, no further processing will take place.
21349 :                      Usually this will be an &...; entity.
21350 : ASCII replacement    Plain ASCII, no extensions.
21351 : Latin1 replacement   Use the special characters available in latin1.
21352 : utf-8 replacement    Use the special characters available in utf-8.
21354 : If you define new entities here that require specific LaTeX
21355 : packages to be loaded, add these packages to `org-latex-packages-alist'.
21357 ** org-agenda-prefer-last-repeat =nil=
21358    :PROPERTIES:
21359    :CUSTOM_ID: org-agenda-prefer-last-repeat
21360    :END:
21362 - *Type:* (choice (const :tag "Prefer la...
21363 - *Since:* Emacs version 26.1
21364 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21365 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-prefer-last-repeat][Find modifications in git logs]]
21367 : Non-nil sets date for repeated entries to their last repeat.
21369 : When nil, display SCHEDULED and DEADLINE dates at their base
21370 : date, and in today's agenda, as a reminder.  Display plain
21371 : time-stamps, on the other hand, at every repeat date in the past
21372 : in addition to the base date.
21374 : When non-nil, show a repeated entry at its latest repeat date,
21375 : possibly being today even if it wasn't marked as done.  This
21376 : setting is useful if you do not always mark repeated entries as
21377 : done and, yet, consider that reaching repeat date starts the task
21378 : anew.
21380 : When set to a list of strings, prefer last repeats only for
21381 : entries with these TODO keywords.
21383 ** org-agenda-skip-deadline-if-done =nil=
21384    :PROPERTIES:
21385    :CUSTOM_ID: org-agenda-skip-deadline-if-done
21386    :END:
21388 - *Type:* boolean
21389 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21390 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-deadline-if-done][Find modifications in git logs]]
21392 : Non-nil means don't show deadlines when the corresponding item is done.
21393 : When nil, the deadline is still shown and should give you a happy feeling.
21394 : This is relevant for the daily/weekly agenda.  It applies only to the
21395 : actual date of the deadline.  Warnings about approaching and past-due
21396 : deadlines are always turned off when the item is DONE.
21398 ** org-texinfo-classes =(funcall (function (closure (t...=
21399    :PROPERTIES:
21400    :CUSTOM_ID: org-texinfo-classes
21401    :END:
21403 - *Type:* (repeat (list (string :tag "Te...
21404 - *Since:* Emacs version 26.1
21405 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
21406 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-classes][Find modifications in git logs]]
21408 : Alist of Texinfo classes and associated header and structure.
21409 : If #+TEXINFO_CLASS is set in the buffer, use its value and the
21410 : associated information.  Here is the structure of a class
21411 : definition:
21413 :   (class-name
21414 :     header-string
21415 :     (numbered-1 unnumbered-1 appendix-1)
21416 :     (numbered-2 unnumbered-2 appendix-2)
21417 :     ...)
21420 : The header string
21421 : -----------------
21423 : The header string is inserted in the header of the generated
21424 : document, right after "@setfilename" and "@settitle"
21425 : commands.
21427 : If it contains the special string
21429 :   "@documentencoding AUTO"
21431 : "AUTO" will be replaced with an appropriate coding system.  See
21432 : `org-texinfo-coding-system' for more information.  Likewise, if
21433 : the string contains the special string
21435 :   "@documentlanguage AUTO"
21437 : "AUTO" will be replaced with the language defined in the
21438 : buffer, through #+LANGUAGE keyword, or globally, with
21439 : `org-export-default-language', which see.
21442 : The sectioning structure
21443 : ------------------------
21445 : The sectioning structure of the class is given by the elements
21446 : following the header string.  For each sectioning level, a number
21447 : of strings is specified.  A %s formatter is mandatory in each
21448 : section string and will be replaced by the title of the section.
21450 ** org-html-xml-declaration =(funcall (function (closure (h...=
21451    :PROPERTIES:
21452    :CUSTOM_ID: org-html-xml-declaration
21453    :END:
21455 - *Type:* (choice (string :tag "Single d...
21456 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21457 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-xml-declaration][Find modifications in git logs]]
21459 : The extension for exported HTML files.
21460 : %s will be replaced with the charset of the exported file.
21461 : This may be a string, or an alist with export extensions
21462 : and corresponding declarations.
21464 : This declaration only applies when exporting to XHTML.
21466 ** org-sort-agenda-noeffort-is-high =t=
21467    :PROPERTIES:
21468    :CUSTOM_ID: org-sort-agenda-noeffort-is-high
21469    :END:
21471 - *Type:* boolean
21472 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21473 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort-agenda-noeffort-is-high][Find modifications in git logs]]
21475 : Non-nil means items without effort estimate are sorted as high effort.
21476 : This also applies when filtering an agenda view with respect to the
21477 : < or > effort operator.  Then, tasks with no effort defined will be treated
21478 : as tasks with high effort.
21479 : When nil, such items are sorted as 0 minutes effort.
21481 ** org-html-table-header-tags =(funcall (function (closure (h...=
21482    :PROPERTIES:
21483    :CUSTOM_ID: org-html-table-header-tags
21484    :END:
21486 - *Type:* (cons (string :tag "Opening ta...
21487 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21488 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-header-tags][Find modifications in git logs]]
21490 : The opening and ending tags for table header fields.
21491 : This is customizable so that alignment options can be specified.
21492 : The first %s will be filled with the scope of the field, either row or col.
21493 : The second %s will be replaced by a style entry to align the field.
21494 : See also the variable `org-html-table-use-header-tags-for-first-column'.
21495 : See also the variable `org-html-table-align-individual-fields'.
21497 ** org-use-extra-keys =(funcall (function (closure (f...=
21498    :PROPERTIES:
21499    :CUSTOM_ID: org-use-extra-keys
21500    :END:
21502 - *Type:* boolean
21503 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21504 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-extra-keys][Find modifications in git logs]]
21506 : Non-nil means use extra key sequence definitions for certain commands.
21507 : This happens automatically if `window-system' is nil.  This
21508 : variable lets you do the same manually.  You must set it before
21509 : loading Org.
21511 ** org-html-allow-name-attribute-in-anchors =(funcall (function (closure (h...=
21512    :PROPERTIES:
21513    :CUSTOM_ID: org-html-allow-name-attribute-in-anchors
21514    :END:
21516 - *Type:* boolean
21517 - *Since:* Emacs version 24.4
21518 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21519 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-allow-name-attribute-in-anchors][Find modifications in git logs]]
21521 : When nil, do not set "name" attribute in anchors.
21522 : By default, when appropriate, anchors are formatted with "id"
21523 : but without "name" attribute.
21525 ** org-use-tag-inheritance =(funcall (function (closure (f...=
21526    :PROPERTIES:
21527    :CUSTOM_ID: org-use-tag-inheritance
21528    :END:
21530 - *Type:* (choice (const :tag "Not" nil)...
21531 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21532 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-tag-inheritance][Find modifications in git logs]]
21534 : Non-nil means tags in levels apply also for sublevels.
21535 : When nil, only the tags directly given in a specific line apply there.
21536 : This may also be a list of tags that should be inherited, or a regexp that
21537 : matches tags that should be inherited.  Additional control is possible
21538 : with the variable  `org-tags-exclude-from-inheritance' which gives an
21539 : explicit list of tags to be excluded from inheritance, even if the value of
21540 : `org-use-tag-inheritance' would select it for inheritance.
21542 : If this option is t, a match early-on in a tree can lead to a large
21543 : number of matches in the subtree when constructing the agenda or creating
21544 : a sparse tree.  If you only want to see the first match in a tree during
21545 : a search, check out the variable `org-tags-match-list-sublevels'.
21547 ** org-html-doctype =(funcall (function (closure (h...=
21548    :PROPERTIES:
21549    :CUSTOM_ID: org-html-doctype
21550    :END:
21552 - *Type:* (choice (const "html4-strict")...
21553 - *Since:* Emacs version 24.4
21554 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21555 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-doctype][Find modifications in git logs]]
21557 : Document type definition to use for exported HTML files.
21558 : Can be set with the in-buffer HTML_DOCTYPE property or for
21559 : publishing, with :html-doctype.
21561 ** org-agenda-todo-ignore-deadlines =nil=
21562    :PROPERTIES:
21563    :CUSTOM_ID: org-agenda-todo-ignore-deadlines
21564    :END:
21566 - *Type:* (choice (const :tag "Ignore ne...
21567 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21568 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-deadlines][Find modifications in git logs]]
21570 : Non-nil means ignore some deadline TODO items when making TODO list.
21572 : There are different motivations for using different values, please think
21573 : carefully when configuring this variable.
21575 : This applies when creating the global TODO list.
21577 : Valid values are:
21579 : near    Don't show near deadline entries.  A deadline is near when it is
21580 :         closer than `org-deadline-warning-days' days.  The idea behind this
21581 :         is that such items will appear in the agenda anyway.
21583 : far     Don't show TODO entries where a deadline has been defined, but
21584 :         is not going to happen anytime soon.  This is useful if you want to use
21585 :         the TODO list to figure out what to do now.
21587 : past    Don't show entries with a deadline timestamp for today or in the past.
21589 : future  Don't show entries with a deadline timestamp in the future, not even
21590 :         when they become `near' ones.  Use it with caution.
21592 : all     Ignore all TODO entries that do have a deadline.
21594 : t       Same as `near', for backward compatibility.
21596 : This variable can also have an integer as a value.  See
21597 : `org-agenda-todo-ignore-timestamp' for more details.
21599 : See also `org-agenda-todo-ignore-with-date'.
21600 : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
21601 : to make his option also apply to the tags-todo list.
21603 ** org-latex-default-class =(funcall (function (closure (t...=
21604    :PROPERTIES:
21605    :CUSTOM_ID: org-latex-default-class
21606    :END:
21608 - *Type:* (string :tag "LaTeX class")
21609 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
21610 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-class][Find modifications in git logs]]
21612 : The default LaTeX class.
21614 ** org-crypt-key =(funcall (function (closure (t...=
21615    :PROPERTIES:
21616    :CUSTOM_ID: org-crypt-key
21617    :END:
21619 - *Type:* string
21620 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
21621 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-crypt-key][Find modifications in git logs]]
21623 : The default key to use when encrypting the contents of a heading.
21625 : This setting can also be overridden in the CRYPTKEY property.
21627 ** org-agenda-menu-show-matcher =t=
21628    :PROPERTIES:
21629    :CUSTOM_ID: org-agenda-menu-show-matcher
21630    :END:
21632 - *Type:* boolean
21633 - *Since:* Emacs version 24.1
21634 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21635 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-menu-show-matcher][Find modifications in git logs]]
21637 : Non-nil means show the match string in the agenda dispatcher menu.
21638 : When nil, the matcher string is not shown, but is put into the help-echo
21639 : property so than moving the mouse over the command shows it.
21640 : Setting it to nil is good if matcher strings are very long and/or if
21641 : you want to use two-columns display (see `org-agenda-menu-two-columns').
21643 ** org-cycle-level-faces =(funcall (function (closure (t...=
21644    :PROPERTIES:
21645    :CUSTOM_ID: org-cycle-level-faces
21646    :END:
21648 - *Type:* boolean
21649 - *Since:* Emacs version 24.1
21650 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
21651 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-level-faces][Find modifications in git logs]]
21653 : Non-nil means level styles cycle after level `org-n-level-faces'.
21654 : Then so level org-n-level-faces+1 is styled like level 1.
21655 : If nil, then all levels >=org-n-level-faces are styled like
21656 : level org-n-level-faces
21658 ** org-html-with-latex =(funcall (function (closure (h...=
21659    :PROPERTIES:
21660    :CUSTOM_ID: org-html-with-latex
21661    :END:
21663 - *Type:* (choice (const :tag "Do not pr...
21664 - *Since:* Emacs version 24.4
21665 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
21666 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-with-latex][Find modifications in git logs]]
21668 : Non-nil means process LaTeX math snippets.
21670 : When set, the exporter will process LaTeX environments and
21671 : fragments.
21673 : This option can also be set with the +OPTIONS line,
21674 : e.g. "tex:mathjax".  Allowed values are:
21676 :   nil           Ignore math snippets.
21677 :   `verbatim'    Keep everything in verbatim
21678 :   `mathjax', t  Do MathJax preprocessing and arrange for MathJax.js to
21679 :                 be loaded.
21680 :   SYMBOL        Any symbol defined in `org-preview-latex-process-alist',
21681 :                 e.g., `dvipng'.
21683 ** org-agenda-mouse-1-follows-link =nil=
21684    :PROPERTIES:
21685    :CUSTOM_ID: org-agenda-mouse-1-follows-link
21686    :END:
21688 - *Type:* boolean
21689 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21690 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-mouse-1-follows-link][Find modifications in git logs]]
21692 : Non-nil means mouse-1 on a link will follow the link in the agenda.
21693 : A longer mouse click will still set point.  Needs to be set
21694 : before org.el is loaded.
21696 ** org-babel-lua-command =(funcall (function (closure (t...=
21697    :PROPERTIES:
21698    :CUSTOM_ID: org-babel-lua-command
21699    :END:
21701 - *Type:* string
21702 - *Since:* Emacs version 24.5
21703 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lua.el][ob-lua.el]]
21704 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lua-command][Find modifications in git logs]]
21706 : Name of the command for executing Lua code.
21708 ** org-ditaa-jar-option =(funcall (function (closure (t...=
21709    :PROPERTIES:
21710    :CUSTOM_ID: org-ditaa-jar-option
21711    :END:
21713 - *Type:* string
21714 - *Since:* Emacs version 24.1
21715 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ditaa.el][ob-ditaa.el]]
21716 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ditaa-jar-option][Find modifications in git logs]]
21718 : Option for the ditaa jar file.
21719 : Do not leave leading or trailing spaces in this string.
21721 ** org-export-default-language =(funcall (function (closure (t...=
21722    :PROPERTIES:
21723    :CUSTOM_ID: org-export-default-language
21724    :END:
21726 - *Type:* (string :tag "Language")
21727 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
21728 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-default-language][Find modifications in git logs]]
21730 : The default language for export and clocktable translations, as a string.
21731 : This may have an association in
21732 : `org-clock-clocktable-language-setup',
21733 : `org-export-smart-quotes-alist' and `org-export-dictionary'.
21734 : This option can also be set with the LANGUAGE keyword.
21736 ** org-publish-timestamp-directory =(funcall (function (closure (t...=
21737    :PROPERTIES:
21738    :CUSTOM_ID: org-publish-timestamp-directory
21739    :END:
21741 - *Type:* directory
21742 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
21743 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-timestamp-directory][Find modifications in git logs]]
21745 : Name of directory in which to store publishing timestamps.
21747 ** org-agenda-scheduled-leaders =(quote ("Scheduled: " "Sched.%...=
21748    :PROPERTIES:
21749    :CUSTOM_ID: org-agenda-scheduled-leaders
21750    :END:
21752 - *Type:* (list (string :tag "Scheduled ...
21753 - *Since:* Emacs version 24.4
21754 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21755 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-scheduled-leaders][Find modifications in git logs]]
21757 : Text preceding scheduled items in the agenda view.
21758 : This is a list with two strings.  The first applies when the item is
21759 : scheduled on the current day.  The second applies when it has been scheduled
21760 : previously, it may contain a %d indicating that this is the nth time that
21761 : this item is scheduled, due to automatic rescheduling of unfinished items
21762 : for the following day.  So this number is one larger than the number of days
21763 : that passed since this item was scheduled first.
21765 ** org-export-with-tables =(funcall (function (closure (t...=
21766    :PROPERTIES:
21767    :CUSTOM_ID: org-export-with-tables
21768    :END:
21770 - *Type:* boolean
21771 - *Since:* Emacs version 24.4
21772 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
21773 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-tables][Find modifications in git logs]]
21775 : Non-nil means export tables.
21776 : This option can also be set with the OPTIONS keyword,
21777 : e.g. "|:nil".
21779 ** org-duration-format =(funcall (function (closure (t...=
21780    :PROPERTIES:
21781    :CUSTOM_ID: org-duration-format
21782    :END:
21784 - *Type:* (choice (const :tag "Use H:MM"...
21785 - *Since:* Emacs version 26.1
21786 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-duration.el][org-duration.el]]
21787 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-duration-format][Find modifications in git logs]]
21789 : Format definition for a duration.
21791 : The value can be set to, respectively, the symbols `h:mm:ss' or
21792 : `h:mm', which means a duration is expressed as, respectively,
21793 : a "H:MM:SS" or "H:MM" string.
21795 : Alternatively, the value can be a list of entries following the
21796 : pattern:
21798 :   (UNIT . REQUIRED?)
21800 : UNIT is a unit string, as defined in `org-duration-units'.  The
21801 : time duration is formatted using only the time components that
21802 : are specified here.
21804 : Units with a zero value are skipped, unless REQUIRED? is non-nil.
21805 : In that case, the unit is always used.
21807 : Eventually, the list can contain one of the following special
21808 : entries:
21810 :   (special . h:mm)
21811 :   (special . h:mm:ss)
21813 :     Units shorter than an hour are ignored.  The hours and
21814 :     minutes part of the duration is expressed unconditionally
21815 :     with H:MM, or H:MM:SS, pattern.
21817 :   (special . PRECISION)
21819 :     A duration is expressed with a single unit, PRECISION being
21820 :     the number of decimal places to show.  The unit chosen is the
21821 :     first one required or with a non-zero integer part.  If there
21822 :     is no such unit, the smallest one is used.
21824 : For example,
21826 :    (("d" . nil) ("h" . t) ("min" . t))
21828 : means a duration longer than a day is expressed in days, hours
21829 : and minutes, whereas a duration shorter than a day is always
21830 : expressed in hours and minutes, even when shorter than an hour.
21832 : On the other hand, the value
21834 :   (("d" . nil) ("min" . nil))
21836 : means a duration longer than a day is expressed in days and
21837 : minutes, whereas a duration shorter than a day is expressed
21838 : entirely in minutes, even when longer than an hour.
21840 : The following format
21842 :   (("d" . nil) (special . h:mm))
21844 : means that any duration longer than a day is expressed with both
21845 : a "d" unit and a "H:MM" part, whereas a duration shorter than
21846 : a day is expressed only as a "H:MM" string.
21848 : Eventually,
21850 :   (("d" . nil) ("h" . nil) (special . 2))
21852 : expresses a duration longer than a day as a decimal number, with
21853 : a 2-digits fractional part, of "d" unit.  A duration shorter
21854 : than a day uses "h" unit instead.
21856 ** org-timer-default-timer =(funcall (function (closure (t...=
21857    :PROPERTIES:
21858    :CUSTOM_ID: org-timer-default-timer
21859    :END:
21861 - *Type:* string
21862 - *Since:* Emacs version 26.1
21863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
21864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-default-timer][Find modifications in git logs]]
21866 : The default timer when a timer is set, in minutes or hh:mm:ss format.
21867 : When 0, the user is prompted for a value.
21869 ** org-clock-persist =(funcall (function (closure (t...=
21870    :PROPERTIES:
21871    :CUSTOM_ID: org-clock-persist
21872    :END:
21874 - *Type:* (choice (const :tag "Just the ...
21875 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
21876 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-persist][Find modifications in git logs]]
21878 : When non-nil, save the running clock when Emacs is closed.
21879 : The clock is resumed when Emacs restarts.
21880 : When this is t, both the running clock, and the entire clock
21881 : history are saved.  When this is the symbol `clock', only the
21882 : running clock is saved.  When this is the symbol `history', only
21883 : the clock history is saved.
21885 : When Emacs restarts with saved clock information, the file containing
21886 : the running clock as well as all files mentioned in the clock history
21887 : will be visited.
21889 : All this depends on running `org-clock-persistence-insinuate' in your
21890 : Emacs initialization file.
21892 ** org-agenda-columns-compute-summary-properties =t=
21893    :PROPERTIES:
21894    :CUSTOM_ID: org-agenda-columns-compute-summary-properties
21895    :END:
21897 - *Type:* boolean
21898 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
21899 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-columns-compute-summary-properties][Find modifications in git logs]]
21901 : Non-nil means recompute all summary properties before column view.
21902 : When column view in the agenda is listing properties that have a summary
21903 : operator, it can go to all relevant buffers and recompute the summaries
21904 : there.  This can mean overhead for the agenda column view, but is necessary
21905 : to have thing up to date.
21906 : As a special case, a CLOCKSUM property also makes sure that the clock
21907 : computations are current.
21909 ** org-agenda-deadline-faces =(funcall (function (closure (t...=
21910    :PROPERTIES:
21911    :CUSTOM_ID: org-agenda-deadline-faces
21912    :END:
21914 - *Type:* (repeat (cons (number :tag "Fr...
21915 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
21916 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-deadline-faces][Find modifications in git logs]]
21918 : Faces for showing deadlines in the agenda.
21919 : This is a list of cons cells.  The cdr of each cell is a face to be used,
21920 : and it can also just be like \='(:foreground "yellow").
21921 : Each car is a fraction of the head-warning time that must have passed for
21922 : this the face in the cdr to be used for display.  The numbers must be
21923 : given in descending order.  The head-warning time is normally taken
21924 : from `org-deadline-warning-days', but can also be specified in the deadline
21925 : timestamp itself, like this:
21927 :    DEADLINE: <2007-08-13 Mon -8d>
21929 : You may use d for days, w for weeks, m for months and y for years.  Months
21930 : and years will only be treated in an approximate fashion (30.4 days for a
21931 : month and 365.24 days for a year).
21933 ** org-export-with-toc =(funcall (function (closure (t...=
21934    :PROPERTIES:
21935    :CUSTOM_ID: org-export-with-toc
21936    :END:
21938 - *Type:* (choice (const :tag "No Table ...
21939 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
21940 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-toc][Find modifications in git logs]]
21942 : Non-nil means create a table of contents in exported files.
21944 : The TOC contains headlines with levels up
21945 : to`org-export-headline-levels'.  When an integer, include levels
21946 : up to N in the toc, this may then be different from
21947 : `org-export-headline-levels', but it will not be allowed to be
21948 : larger than the number of headline levels.  When nil, no table of
21949 : contents is made.
21951 : This option can also be set with the OPTIONS keyword,
21952 : e.g. "toc:nil" or "toc:3".
21954 ** org-cycle-emulate-tab =(funcall (function (closure (f...=
21955    :PROPERTIES:
21956    :CUSTOM_ID: org-cycle-emulate-tab
21957    :END:
21959 - *Type:* (choice (const :tag "Never" ni...
21960 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21961 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-emulate-tab][Find modifications in git logs]]
21963 : Where should `org-cycle' emulate TAB.
21964 : nil         Never
21965 : white       Only in completely white lines
21966 : whitestart  Only at the beginning of lines, before the first non-white char
21967 : t           Everywhere except in headlines
21968 : exc-hl-bol  Everywhere except at the start of a headline
21969 : If TAB is used in a place where it does not emulate TAB, the current subtree
21970 : visibility is cycled.
21972 ** org-remove-highlights-with-change =(funcall (function (closure (f...=
21973    :PROPERTIES:
21974    :CUSTOM_ID: org-remove-highlights-with-change
21975    :END:
21977 - *Type:* boolean
21978 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21979 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-highlights-with-change][Find modifications in git logs]]
21981 : Non-nil means any change to the buffer will remove temporary highlights.
21982 : \<org-mode-map>Such highlights are created by `org-occur' and `org-clock-display'.
21983 : When nil, `\[org-ctrl-c-ctrl-c]' needs to be used to get rid of the highlights.
21984 : The highlights created by `org-toggle-latex-fragment' always need
21985 : `\[org-toggle-latex-fragment]' to be removed.
21987 ** org-adapt-indentation =(funcall (function (closure (f...=
21988    :PROPERTIES:
21989    :CUSTOM_ID: org-adapt-indentation
21990    :END:
21992 - *Type:* boolean
21993 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
21994 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-adapt-indentation][Find modifications in git logs]]
21996 : Non-nil means adapt indentation to outline node level.
21998 : When this variable is set, Org assumes that you write outlines by
21999 : indenting text in each node to align with the headline (after the
22000 : stars).  The following issues are influenced by this variable:
22002 : - The indentation is increased by one space in a demotion
22003 :   command, and decreased by one in a promotion command.  However,
22004 :   in the latter case, if shifting some line in the entry body
22005 :   would alter document structure (e.g., insert a new headline),
22006 :   indentation is not changed at all.
22008 : - Property drawers and planning information is inserted indented
22009 :   when this variable is set.  When nil, they will not be indented.
22011 : - TAB indents a line relative to current level.  The lines below
22012 :   a headline will be indented when this variable is set.
22014 : Note that this is all about true indentation, by adding and
22015 : removing space characters.  See also `org-indent.el' which does
22016 : level-dependent indentation in a virtual way, i.e. at display
22017 : time in Emacs.
22019 ** org-list-radio-list-templates =(funcall (function (closure (o...=
22020    :PROPERTIES:
22021    :CUSTOM_ID: org-list-radio-list-templates
22022    :END:
22024 - *Type:* (repeat (list (symbol :tag "Ma...
22025 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
22026 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-radio-list-templates][Find modifications in git logs]]
22028 : Templates for radio lists in different major modes.
22029 : All occurrences of %n in a template will be replaced with the name of the
22030 : list, obtained by prompting the user.
22032 ** org-koma-letter-use-foldmarks =t=
22033    :PROPERTIES:
22034    :CUSTOM_ID: org-koma-letter-use-foldmarks
22035    :END:
22037 - *Type:* (choice (const :tag "Activate ...
22038 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
22039 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-foldmarks][Find modifications in git logs]]
22041 : Configure appearance of folding marks.
22043 : When t, activate default folding marks.  When nil, do not insert
22044 : folding marks at all.  It can also be a list of symbols among the
22045 : following ones:
22047 :   `B'  Activate upper horizontal mark on left paper edge
22048 :   `b'  Deactivate upper horizontal mark on left paper edge
22050 :   `H'  Activate all horizontal marks on left paper edge
22051 :   `h'  Deactivate all horizontal marks on left paper edge
22053 :   `L'  Activate left vertical mark on upper paper edge
22054 :   `l'  Deactivate left vertical mark on upper paper edge
22056 :   `M'  Activate middle horizontal mark on left paper edge
22057 :   `m'  Deactivate middle horizontal mark on left paper edge
22059 :   `P'  Activate punch or center mark on left paper edge
22060 :   `p'  Deactivate punch or center mark on left paper edge
22062 :   `T'  Activate lower horizontal mark on left paper edge
22063 :   `t'  Deactivate lower horizontal mark on left paper edge
22065 :   `V'  Activate all vertical marks on upper paper edge
22066 :   `v'  Deactivate all vertical marks on upper paper edge
22068 : This option can also be set with the OPTIONS keyword, e.g.:
22069 : "foldmarks:(b l m t)".
22071 ** org-odt-table-styles =(funcall (function (closure (h...=
22072    :PROPERTIES:
22073    :CUSTOM_ID: org-odt-table-styles
22074    :END:
22076 - *Type:* (choice (const :tag "None" nil...
22077 - *Since:* Emacs version 24.1
22078 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
22079 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-table-styles][Find modifications in git logs]]
22081 : Specify how Table Styles should be derived from a Table Template.
22082 : This is a list where each element is of the
22083 : form (TABLE-STYLE-NAME TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS).
22085 : TABLE-STYLE-NAME is the style associated with the table through
22086 : "#+ATTR_ODT: :style TABLE-STYLE-NAME" line.
22088 : TABLE-TEMPLATE-NAME is a set of - upto 9 - automatic
22089 : TABLE-CELL-STYLE-NAMEs and PARAGRAPH-STYLE-NAMEs (as defined
22090 : below) that is included in `org-odt-content-template-file'.
22092 : TABLE-CELL-STYLE-NAME := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
22093 :                          "TableCell"
22094 : PARAGRAPH-STYLE-NAME  := TABLE-TEMPLATE-NAME + TABLE-CELL-TYPE +
22095 :                          "TableParagraph"
22096 : TABLE-CELL-TYPE       := "FirstRow"   | "LastColumn" |
22097 :                          "FirstRow"   | "LastRow"    |
22098 :                          "EvenRow"    | "OddRow"     |
22099 :                          "EvenColumn" | "OddColumn"  | ""
22100 : where "+" above denotes string concatenation.
22102 : TABLE-CELL-OPTIONS is an alist where each element is of the
22103 : form (TABLE-CELL-STYLE-SELECTOR . ON-OR-OFF).
22104 : TABLE-CELL-STYLE-SELECTOR := `use-first-row-styles'       |
22105 :                              `use-last-row-styles'        |
22106 :                              `use-first-column-styles'    |
22107 :                              `use-last-column-styles'     |
22108 :                              `use-banding-rows-styles'    |
22109 :                              `use-banding-columns-styles' |
22110 :                              `use-first-row-styles'
22111 : ON-OR-OFF                 := t | nil
22113 : For example, with the following configuration
22115 : (setq org-odt-table-styles
22116 :       \='(("TableWithHeaderRowsAndColumns" "Custom"
22117 :          ((use-first-row-styles . t)
22118 :           (use-first-column-styles . t)))
22119 :         ("TableWithHeaderColumns" "Custom"
22120 :          ((use-first-column-styles . t)))))
22122 : 1. A table associated with "TableWithHeaderRowsAndColumns"
22123 :    style will use the following table-cell styles -
22124 :    "CustomFirstRowTableCell", "CustomFirstColumnTableCell",
22125 :    "CustomTableCell" and the following paragraph styles
22126 :    "CustomFirstRowTableParagraph",
22127 :    "CustomFirstColumnTableParagraph", "CustomTableParagraph"
22128 :    as appropriate.
22130 : 2. A table associated with "TableWithHeaderColumns" style will
22131 :    use the following table-cell styles -
22132 :    "CustomFirstColumnTableCell", "CustomTableCell" and the
22133 :    following paragraph styles
22134 :    "CustomFirstColumnTableParagraph", "CustomTableParagraph"
22135 :    as appropriate..
22137 : Note that TABLE-TEMPLATE-NAME corresponds to the
22138 : "<table:table-template>" elements contained within
22139 : "<office:styles>".  The entries (TABLE-STYLE-NAME
22140 : TABLE-TEMPLATE-NAME TABLE-CELL-OPTIONS) correspond to
22141 : "table:template-name" and "table:use-first-row-styles" etc
22142 : attributes of "<table:table>" element.  Refer ODF-1.2
22143 : specification for more information.  Also consult the
22144 : implementation filed under `org-odt-get-table-cell-styles'.
22146 : The TABLE-STYLE-NAME "OrgEquation" is used internally for
22147 : formatting of numbered display equations.  Do not delete this
22148 : style from the list.
22150 ** org-export-date-timestamp-format =(funcall (function (closure (t...=
22151    :PROPERTIES:
22152    :CUSTOM_ID: org-export-date-timestamp-format
22153    :END:
22155 - *Type:* (choice (string :tag "Time-sta...
22156 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
22157 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-date-timestamp-format][Find modifications in git logs]]
22159 : Time-stamp format string to use for DATE keyword.
22161 : The format string, when specified, only applies if date consists
22162 : in a single time-stamp.  Otherwise its value will be ignored.
22164 : See `format-time-string' for details on how to build this
22165 : string.
22167 ** org-agenda-hide-tags-regexp =nil=
22168    :PROPERTIES:
22169    :CUSTOM_ID: org-agenda-hide-tags-regexp
22170    :END:
22172 - *Type:* (choice (const :tag "Hide none...
22173 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
22174 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-hide-tags-regexp][Find modifications in git logs]]
22176 : Regular expression used to filter away specific tags in agenda views.
22177 : This means that these tags will be present, but not be shown in the agenda
22178 : line.  Secondary filtering will still work on the hidden tags.
22179 : Nil means don't hide any tags.
22181 ** org-table-tab-recognizes-table.el =(funcall (function (closure (f...=
22182    :PROPERTIES:
22183    :CUSTOM_ID: org-table-tab-recognizes-table.el
22184    :END:
22186 - *Type:* boolean
22187 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22188 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-tab-recognizes-table.el][Find modifications in git logs]]
22190 : Non-nil means TAB will automatically notice a table.el table.
22191 : When it sees such a table, it moves point into it and - if necessary -
22192 : calls `table-recognize-table'.
22194 ** org-preview-latex-image-directory =(funcall (function (closure (f...=
22195    :PROPERTIES:
22196    :CUSTOM_ID: org-preview-latex-image-directory
22197    :END:
22199 - *Type:* string
22200 - *Since:* Emacs version 26.1
22201 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22202 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-image-directory][Find modifications in git logs]]
22204 : Path to store latex preview images.
22205 : A relative path here creates many directories relative to the
22206 : processed org files paths.  An absolute path puts all preview
22207 : images at the same place.
22209 ** org-latex-subtitle-separate =(funcall (function (closure (t...=
22210    :PROPERTIES:
22211    :CUSTOM_ID: org-latex-subtitle-separate
22212    :END:
22214 - *Type:* boolean
22215 - *Since:* Emacs version 26.1
22216 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
22217 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-subtitle-separate][Find modifications in git logs]]
22219 : Non-nil means the subtitle is not typeset as part of title.
22221 ** org-attach-file-list-property =(funcall (function (closure (t...=
22222    :PROPERTIES:
22223    :CUSTOM_ID: org-attach-file-list-property
22224    :END:
22226 - *Type:* (choice (const :tag "None" nil...
22227 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
22228 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-file-list-property][Find modifications in git logs]]
22230 : The property used to keep a list of attachment belonging to this entry.
22231 : This is not really needed, so you may set this to nil if you don't want it.
22232 : Also, for entries where children inherit the directory, the list of
22233 : attachments is not kept in this property.
22235 ** org-agenda-skip-deadline-prewarning-if-scheduled =nil=
22236    :PROPERTIES:
22237    :CUSTOM_ID: org-agenda-skip-deadline-prewarning-if-scheduled
22238    :END:
22240 - *Type:* (choice (const :tag "Always sh...
22241 - *Since:* Emacs version 24.1
22242 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
22243 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-deadline-prewarning-if-scheduled][Find modifications in git logs]]
22245 : Non-nil means skip deadline prewarning when entry is also scheduled.
22246 : This will apply on all days where a prewarning for the deadline would
22247 : be shown, but not at the day when the entry is actually due.  On that day,
22248 : the deadline will be shown anyway.
22249 : This variable may be set to nil, t, the symbol `pre-scheduled',
22250 : or a number which will then give the number of days before the actual
22251 : deadline when the prewarnings should resume.  The symbol `pre-scheduled'
22252 : eliminates the deadline prewarning only prior to the scheduled date.
22253 : This can be used in a workflow where the first showing of the deadline will
22254 : trigger you to schedule it, and then you don't want to be reminded of it
22255 : because you will take care of it on the day when scheduled.
22257 ** org-closed-keep-when-no-todo =(funcall (function (closure (f...=
22258    :PROPERTIES:
22259    :CUSTOM_ID: org-closed-keep-when-no-todo
22260    :END:
22262 - *Type:* boolean
22263 - *Since:* Emacs version 24.4
22264 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22265 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-closed-keep-when-no-todo][Find modifications in git logs]]
22267 : Remove CLOSED: time-stamp when switching back to a non-todo state?
22269 ** org-babel-uppercase-example-markers =(funcall (function (closure (t...=
22270    :PROPERTIES:
22271    :CUSTOM_ID: org-babel-uppercase-example-markers
22272    :END:
22274 - *Type:* boolean
22275 - *Since:* Emacs version 26.1
22276 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
22277 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-uppercase-example-markers][Find modifications in git logs]]
22279 : When non-nil, begin/end example markers will be inserted in upper case.
22281 ** org-texinfo-active-timestamp-format =(funcall (function (closure (t...=
22282    :PROPERTIES:
22283    :CUSTOM_ID: org-texinfo-active-timestamp-format
22284    :END:
22286 - *Type:* string
22287 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
22288 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-active-timestamp-format][Find modifications in git logs]]
22290 : A printf format string to be applied to active timestamps.
22292 ** org-refile-targets =(funcall (function (closure (f...=
22293    :PROPERTIES:
22294    :CUSTOM_ID: org-refile-targets
22295    :END:
22297 - *Type:* (repeat (cons (choice :value o...
22298 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22299 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-targets][Find modifications in git logs]]
22301 : Targets for refiling entries with `\[org-refile]'.
22302 : This is a list of cons cells.  Each cell contains:
22303 : - a specification of the files to be considered, either a list of files,
22304 :   or a symbol whose function or variable value will be used to retrieve
22305 :   a file name or a list of file names.  If you use `org-agenda-files' for
22306 :   that, all agenda files will be scanned for targets.  Nil means consider
22307 :   headings in the current buffer.
22308 : - A specification of how to find candidate refile targets.  This may be
22309 :   any of:
22310 :   - a cons cell (:tag . "TAG") to identify refile targets by a tag.
22311 :     This tag has to be present in all target headlines, inheritance will
22312 :     not be considered.
22313 :   - a cons cell (:todo . "KEYWORD") to identify refile targets by
22314 :     todo keyword.
22315 :   - a cons cell (:regexp . "REGEXP") with a regular expression matching
22316 :     headlines that are refiling targets.
22317 :   - a cons cell (:level . N).  Any headline of level N is considered a target.
22318 :     Note that, when `org-odd-levels-only' is set, level corresponds to
22319 :     order in hierarchy, not to the number of stars.
22320 :   - a cons cell (:maxlevel . N).  Any headline with level <= N is a target.
22321 :     Note that, when `org-odd-levels-only' is set, level corresponds to
22322 :     order in hierarchy, not to the number of stars.
22324 : Each element of this list generates a set of possible targets.
22325 : The union of these sets is presented (with completion) to
22326 : the user by `org-refile'.
22328 : You can set the variable `org-refile-target-verify-function' to a function
22329 : to verify each headline found by the simple criteria above.
22331 : When this variable is nil, all top-level headlines in the current buffer
22332 : are used, equivalent to the value `((nil . (:level . 1))'.
22334 ** org-html-preamble =(funcall (function (closure (h...=
22335    :PROPERTIES:
22336    :CUSTOM_ID: org-html-preamble
22337    :END:
22339 - *Type:* (choice (const :tag "No preamb...
22340 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
22341 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-preamble][Find modifications in git logs]]
22343 : Non-nil means insert a preamble in HTML export.
22345 : When t, insert a string as defined by the formatting string in
22346 : `org-html-preamble-format'.  When set to a string, use this
22347 : formatting string instead (see `org-html-postamble-format' for an
22348 : example of such a formatting string).
22350 : When set to a function, apply this function and insert the
22351 : returned string.  The function takes the property list of export
22352 : options as its only argument.
22354 : Setting :html-preamble in publishing projects will take
22355 : precedence over this variable.
22357 ** org-babel-noweb-wrap-start =(funcall (function (closure (t...=
22358    :PROPERTIES:
22359    :CUSTOM_ID: org-babel-noweb-wrap-start
22360    :END:
22362 - *Type:* string
22363 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
22364 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-noweb-wrap-start][Find modifications in git logs]]
22366 : String used to begin a noweb reference in a code block.
22367 : See also `org-babel-noweb-wrap-end'.
22369 ** org-mark-ring-length =(funcall (function (closure (f...=
22370    :PROPERTIES:
22371    :CUSTOM_ID: org-mark-ring-length
22372    :END:
22374 - *Type:* integer
22375 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22376 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-ring-length][Find modifications in git logs]]
22378 : Number of different positions to be recorded in the ring.
22379 : Changing this requires a restart of Emacs to work correctly.
22381 ** org-startup-folded =(funcall (function (closure (f...=
22382    :PROPERTIES:
22383    :CUSTOM_ID: org-startup-folded
22384    :END:
22386 - *Type:* (choice (const :tag "nofold: s...
22387 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22388 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-folded][Find modifications in git logs]]
22390 : Non-nil means entering Org mode will switch to OVERVIEW.
22392 : This can also be configured on a per-file basis by adding one of
22393 : the following lines anywhere in the buffer:
22395 :    #+STARTUP: fold              (or `overview', this is equivalent)
22396 :    #+STARTUP: nofold            (or `showall', this is equivalent)
22397 :    #+STARTUP: content
22398 :    #+STARTUP: showeverything
22400 : Set `org-agenda-inhibit-startup' to a non-nil value if you want
22401 : to ignore this option when Org opens agenda files for the first
22402 : time.
22404 ** org-md-headline-style =(funcall (function (closure (t...=
22405    :PROPERTIES:
22406    :CUSTOM_ID: org-md-headline-style
22407    :END:
22409 - *Type:* (choice (const :tag "Use \"atx...
22410 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
22411 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-headline-style][Find modifications in git logs]]
22413 : Style used to format headlines.
22414 : This variable can be set to either `atx' or `setext'.
22416 ** org-export-allow-bind-keywords =(funcall (function (closure (t...=
22417    :PROPERTIES:
22418    :CUSTOM_ID: org-export-allow-bind-keywords
22419    :END:
22421 - *Type:* boolean
22422 - *Since:* Emacs version 24.4
22423 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
22424 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-allow-bind-keywords][Find modifications in git logs]]
22426 : Non-nil means BIND keywords can define local variable values.
22427 : This is a potential security risk, which is why the default value
22428 : is nil.  You can also allow them through local buffer variables.
22430 ** org-highlight-latex-and-related =(funcall (function (closure (f...=
22431    :PROPERTIES:
22432    :CUSTOM_ID: org-highlight-latex-and-related
22433    :END:
22435 - *Type:* (choice (const :tag "No highli...
22436 - *Since:* Emacs version 24.4
22437 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22438 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-highlight-latex-and-related][Find modifications in git logs]]
22440 : Non-nil means highlight LaTeX related syntax in the buffer.
22441 : When non nil, the value should be a list containing any of the
22442 : following symbols:
22443 :   `latex'    Highlight LaTeX snippets and environments.
22444 :   `script'   Highlight subscript and superscript.
22445 :   `entities' Highlight entities.
22447 ** org-texinfo-table-default-markup =(funcall (function (closure (t...=
22448    :PROPERTIES:
22449    :CUSTOM_ID: org-texinfo-table-default-markup
22450    :END:
22452 - *Type:* string
22453 - *Since:* Emacs version 26.1
22454 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
22455 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-table-default-markup][Find modifications in git logs]]
22457 : Default markup for first column in two-column tables.
22459 : This should an indicating command, e.g., "@code", "@kbd" or
22460 : "@samp".
22462 : It can be overridden locally using the ":indic" attribute.
22464 ** org-mobile-use-encryption =(funcall (function (closure (t...=
22465    :PROPERTIES:
22466    :CUSTOM_ID: org-mobile-use-encryption
22467    :END:
22469 - *Type:* boolean
22470 - *Since:* Emacs version 24.1
22471 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
22472 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-use-encryption][Find modifications in git logs]]
22474 : Non-nil means keep only encrypted files on the WebDAV server.
22475 : Encryption uses AES-256, with a password given in
22476 : `org-mobile-encryption-password'.
22477 : When nil, plain files are kept on the server.
22478 : Turning on encryption requires setting the same password in the MobileOrg
22479 : application.  Before turning this on, check of MobileOrg does already
22480 : support it - at the time of this writing it did not yet.
22482 ** org-export-with-timestamps =(funcall (function (closure (t...=
22483    :PROPERTIES:
22484    :CUSTOM_ID: org-export-with-timestamps
22485    :END:
22487 - *Type:* (choice (const :tag "All times...
22488 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
22489 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-timestamps][Find modifications in git logs]]
22491 : Non nil means allow timestamps in export.
22493 : It can be set to any of the following values:
22494 :   t          export all timestamps.
22495 :   `active'   export active timestamps only.
22496 :   `inactive' export inactive timestamps only.
22497 :   nil        do not export timestamps
22499 : This only applies to timestamps isolated in a paragraph
22500 : containing only timestamps.  Other timestamps are always
22501 : exported.
22503 : This option can also be set with the OPTIONS keyword, e.g.
22504 : "<:nil".
22506 ** org-export-time-stamp-file =(funcall (function (closure (t...=
22507    :PROPERTIES:
22508    :CUSTOM_ID: org-export-time-stamp-file
22509    :END:
22511 - *Type:* boolean
22512 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
22513 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-time-stamp-file][Find modifications in git logs]]
22515 : Non-nil means insert a time stamp into the exported file.
22516 : The time stamp shows when the file was created.  This option can
22517 : also be set with the OPTIONS keyword, e.g. "timestamp:nil".
22519 ** org-auto-align-tags =(funcall (function (closure (f...=
22520    :PROPERTIES:
22521    :CUSTOM_ID: org-auto-align-tags
22522    :END:
22524 - *Type:* boolean
22525 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22526 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-auto-align-tags][Find modifications in git logs]]
22528 : Non-nil keeps tags aligned when modifying headlines.
22529 : Some operations (i.e. demoting) change the length of a headline and
22530 : therefore shift the tags around.  With this option turned on, after
22531 : each such operation the tags are again aligned to `org-tags-column'.
22533 ** org-koma-letter-use-email =nil=
22534    :PROPERTIES:
22535    :CUSTOM_ID: org-koma-letter-use-email
22536    :END:
22538 - *Type:* boolean
22539 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
22540 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-email][Find modifications in git logs]]
22542 : Non-nil prints sender's email address.
22543 : This option can also be set with the OPTIONS keyword, e.g.:
22544 : "email:t".
22546 ** org-bibtex-no-export-tags =(funcall (function (closure (t...=
22547    :PROPERTIES:
22548    :CUSTOM_ID: org-bibtex-no-export-tags
22549    :END:
22551 - *Type:* (repeat :tag "Tag" (string))
22552 - *Since:* Emacs version 24.1
22553 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
22554 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-no-export-tags][Find modifications in git logs]]
22556 : List of tag(s) that should not be converted to keywords.
22557 : This variable is relevant only if `org-bibtex-tags-are-keywords'
22558 : is non-nil.
22560 ** org-tag-persistent-alist =(funcall (function (closure (f...=
22561    :PROPERTIES:
22562    :CUSTOM_ID: org-tag-persistent-alist
22563    :END:
22565 - *Type:* (repeat (choice (cons (string ...
22566 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22567 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tag-persistent-alist][Find modifications in git logs]]
22569 : Tags always available in Org files.
22571 : The value of this variable is an alist.  Associations either:
22573 :   (TAG)
22574 :   (TAG . SELECT)
22575 :   (SPECIAL)
22577 : where TAG is a tag as a string, SELECT is a character, used to
22578 : select that tag through the fast tag selection interface, and
22579 : SPECIAL is one of the following keywords: `:startgroup',
22580 : `:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or
22581 : `:newline'.  These keywords are used to define a hierarchy of
22582 : tags.  See manual for details.
22584 : Unlike to `org-tag-alist', tags defined in this variable do not
22585 : depend on a local TAGS keyword.  Instead, to disable these tags
22586 : on a per-file basis, insert anywhere in the file:
22588 :   #+STARTUP: noptag
22590 ** org-datetree-add-timestamp =(funcall (function (closure (t...=
22591    :PROPERTIES:
22592    :CUSTOM_ID: org-datetree-add-timestamp
22593    :END:
22595 - *Type:* (choice (const :tag "Do not ad...
22596 - *Since:* Emacs version 24.3
22597 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-datetree.el][org-datetree.el]]
22598 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-datetree-add-timestamp][Find modifications in git logs]]
22600 : When non-nil, add a time stamp matching date of entry.
22601 : Added time stamp is active unless value is `inactive'.
22603 ** org-babel-python-None-to =(funcall (function (closure (t...=
22604    :PROPERTIES:
22605    :CUSTOM_ID: org-babel-python-None-to
22606    :END:
22608 - *Type:* symbol
22609 - *Since:* Emacs version 24.4
22610 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-python.el][ob-python.el]]
22611 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-python-None-to][Find modifications in git logs]]
22613 : Replace `None' in python tables with this before returning.
22615 ** org-latex-minted-options =(funcall (function (closure (t...=
22616    :PROPERTIES:
22617    :CUSTOM_ID: org-latex-minted-options
22618    :END:
22620 - *Type:* (repeat (list (string :tag "Mi...
22621 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
22622 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-minted-options][Find modifications in git logs]]
22624 : Association list of options for the latex minted package.
22626 : These options are supplied within square brackets in
22627 : \begin{minted} environments.  Each element of the alist should
22628 : be a list containing two strings: the name of the option, and the
22629 : value.  For example,
22631 :   (setq org-latex-minted-options
22632 :     \='(("bgcolor" "bg") ("frame" "lines")))
22634 : will result in src blocks being exported with
22636 : \begin{minted}[bgcolor=bg,frame=lines]{<LANG>}
22638 : as the start of the minted environment. Note that the same
22639 : options will be applied to blocks of all languages.  If you need
22640 : block-specific options, you may use the following syntax:
22642 :   #+ATTR_LATEX: :options key1=value1,key2=value2
22643 :   #+BEGIN_SRC <LANG>
22644 :   ...
22645 :   #+END_SRC
22647 ** org-html-validation-link =(funcall (function (closure (h...=
22648    :PROPERTIES:
22649    :CUSTOM_ID: org-html-validation-link
22650    :END:
22652 - *Type:* string
22653 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
22654 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-validation-link][Find modifications in git logs]]
22656 : Link to HTML validation service.
22658 ** org-agenda-time-leading-zero =nil=
22659    :PROPERTIES:
22660    :CUSTOM_ID: org-agenda-time-leading-zero
22661    :END:
22663 - *Type:* boolean
22664 - *Since:* Emacs version 24.1
22665 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
22666 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-time-leading-zero][Find modifications in git logs]]
22668 : Non-nil means use leading zero for military times in agenda.
22669 : For example, 9:30am would become 09:30 rather than  9:30.
22671 ** org-odt-inline-image-rules =(funcall (function (closure (h...=
22672    :PROPERTIES:
22673    :CUSTOM_ID: org-odt-inline-image-rules
22674    :END:
22676 - *Type:* (alist :key-type (string :tag ...
22677 - *Since:* Emacs version 26.1
22678 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
22679 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-inline-image-rules][Find modifications in git logs]]
22681 : Rules characterizing image files that can be inlined into ODT.
22683 : A rule consists in an association whose key is the type of link
22684 : to consider, and value is a regexp that will be matched against
22685 : link's path.
22687 ** org-latex-format-inlinetask-function =(funcall (function (closure (t...=
22688    :PROPERTIES:
22689    :CUSTOM_ID: org-latex-format-inlinetask-function
22690    :END:
22692 - *Type:* function
22693 - *Since:* Emacs version 26.1
22694 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
22695 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-format-inlinetask-function][Find modifications in git logs]]
22697 : Function called to format an inlinetask in LaTeX code.
22699 : The function must accept seven parameters:
22700 :   TODO      the todo keyword (string or nil)
22701 :   TODO-TYPE the todo type (symbol: `todo', `done', nil)
22702 :   PRIORITY  the inlinetask priority (integer or nil)
22703 :   NAME      the inlinetask name (string)
22704 :   TAGS      the inlinetask tags (list of strings or nil)
22705 :   CONTENTS  the contents of the inlinetask (string or nil)
22706 :   INFO      the export options (plist)
22708 : The function should return the string to be exported.
22710 ** org-icalendar-alarm-time =(funcall (function (closure (t...=
22711    :PROPERTIES:
22712    :CUSTOM_ID: org-icalendar-alarm-time
22713    :END:
22715 - *Type:* integer
22716 - *Since:* Emacs version 24.1
22717 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
22718 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-alarm-time][Find modifications in git logs]]
22720 : Number of minutes for triggering an alarm for exported timed events.
22722 : A zero value (the default) turns off the definition of an alarm trigger
22723 : for timed events.  If non-zero, alarms are created.
22725 : - a single alarm per entry is defined
22726 : - The alarm will go off N minutes before the event
22727 : - only a DISPLAY action is defined.
22729 ** org-icalendar-include-body =(funcall (function (closure (t...=
22730    :PROPERTIES:
22731    :CUSTOM_ID: org-icalendar-include-body
22732    :END:
22734 - *Type:* (choice (const :tag "Nothing" ...
22735 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
22736 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-include-body][Find modifications in git logs]]
22738 : Amount of text below headline to be included in iCalendar export.
22739 : This is a number of characters that should maximally be included.
22740 : Properties, scheduling and clocking lines will always be removed.
22741 : The text will be inserted into the DESCRIPTION field.
22743 ** org-latex-listings-options =(funcall (function (closure (t...=
22744    :PROPERTIES:
22745    :CUSTOM_ID: org-latex-listings-options
22746    :END:
22748 - *Type:* (repeat (list (string :tag "Li...
22749 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
22750 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-listings-options][Find modifications in git logs]]
22752 : Association list of options for the latex listings package.
22754 : These options are supplied as a comma-separated list to the
22755 : \lstset command.  Each element of the association list should be
22756 : a list containing two strings: the name of the option, and the
22757 : value.  For example,
22759 :   (setq org-latex-listings-options
22760 :     \='(("basicstyle" "\\small")
22761 :       ("keywordstyle" "\\color{black}\\bfseries\\underbar")))
22763 : will typeset the code in a small size font with underlined, bold
22764 : black keywords.
22766 : Note that the same options will be applied to blocks of all
22767 : languages.  If you need block-specific options, you may use the
22768 : following syntax:
22770 :   #+ATTR_LATEX: :options key1=value1,key2=value2
22771 :   #+BEGIN_SRC <LANG>
22772 :   ...
22773 :   #+END_SRC
22775 ** org-bibtex-headline-format-function =(funcall (function (closure (t...=
22776    :PROPERTIES:
22777    :CUSTOM_ID: org-bibtex-headline-format-function
22778    :END:
22780 - *Type:* function
22781 - *Since:* Emacs version 26.1
22782 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
22783 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-headline-format-function][Find modifications in git logs]]
22785 : Function returning the headline text for `org-bibtex-write'.
22786 : It should take a single argument, the bibtex entry (an alist as
22787 : returned by `org-bibtex-read').  The default value simply returns
22788 : the entry title.
22790 ** org-confirm-shell-link-function =(funcall (function (closure (f...=
22791    :PROPERTIES:
22792    :CUSTOM_ID: org-confirm-shell-link-function
22793    :END:
22795 - *Type:* (choice (const :tag "with yes-...
22796 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22797 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-confirm-shell-link-function][Find modifications in git logs]]
22799 : Non-nil means ask for confirmation before executing shell links.
22800 : Shell links can be dangerous: just think about a link
22802 :      [[shell:rm -rf ~/*][Google Search]]
22804 : This link would show up in your Org document as "Google Search",
22805 : but really it would remove your entire home directory.
22806 : Therefore we advise against setting this variable to nil.
22807 : Just change it to `y-or-n-p' if you want to confirm with a
22808 : single keystroke rather than having to type "yes".
22810 ** org-texinfo-diary-timestamp-format =(funcall (function (closure (t...=
22811    :PROPERTIES:
22812    :CUSTOM_ID: org-texinfo-diary-timestamp-format
22813    :END:
22815 - *Type:* string
22816 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
22817 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-diary-timestamp-format][Find modifications in git logs]]
22819 : A printf format string to be applied to diary timestamps.
22821 ** org-list-allow-alphabetical =(funcall (function (closure (o...=
22822    :PROPERTIES:
22823    :CUSTOM_ID: org-list-allow-alphabetical
22824    :END:
22826 - *Type:* boolean
22827 - *Since:* Emacs version 24.1
22828 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
22829 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-allow-alphabetical][Find modifications in git logs]]
22831 : Non-nil means single character alphabetical bullets are allowed.
22833 : Both uppercase and lowercase are handled.  Lists with more than
22834 : 26 items will fallback to standard numbering.  Alphabetical
22835 : counters like "[@c]" will be recognized.
22837 : This variable needs to be set before org.el is loaded.  If you
22838 : need to make a change while Emacs is running, use the customize
22839 : interface or run the following code after updating it:
22841 :   `\[org-element-update-syntax]'
22843 ** org-crypt-disable-auto-save =(funcall (function (closure (t...=
22844    :PROPERTIES:
22845    :CUSTOM_ID: org-crypt-disable-auto-save
22846    :END:
22848 - *Type:* (choice (const :tag "Always" t...
22849 - *Since:* Emacs version 24.1
22850 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]]
22851 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-crypt-disable-auto-save][Find modifications in git logs]]
22853 : What org-decrypt should do if `auto-save-mode' is enabled.
22855 : t        : Disable auto-save-mode for the current buffer
22856 :            prior to decrypting an entry.
22858 : nil      : Leave auto-save-mode enabled.
22859 :            This may cause data to be written to disk unencrypted!
22861 : `ask'    : Ask user whether or not to disable auto-save-mode
22862 :            for the current buffer.
22864 : `encrypt': Leave auto-save-mode enabled for the current buffer,
22865 :            but automatically re-encrypt all decrypted entries
22866 :            *before* auto-saving.
22867 :            NOTE: This only works for entries which have a tag
22868 :            that matches `org-crypt-tag-matcher'.
22870 ** org-id-prefix =(funcall (function (closure (t...=
22871    :PROPERTIES:
22872    :CUSTOM_ID: org-id-prefix
22873    :END:
22875 - *Type:* (choice (const :tag "No prefix...
22876 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
22877 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-prefix][Find modifications in git logs]]
22879 : The prefix for IDs.
22881 : This may be a string, or it can be nil to indicate that no prefix is required.
22882 : When a string, the string should have no space characters as IDs are expected
22883 : to have no space characters in them.
22885 ** org-tag-faces =(funcall (function (closure (t...=
22886    :PROPERTIES:
22887    :CUSTOM_ID: org-tag-faces
22888    :END:
22890 - *Type:* (repeat (cons (string :tag "Ta...
22891 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
22892 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tag-faces][Find modifications in git logs]]
22894 : Faces for specific tags.
22895 : This is a list of cons cells, with tags in the car and faces in the cdr.
22896 : The face can be a symbol, a foreground color (in which case the rest is
22897 : inherited from the `org-tag' face) or a property list of attributes,
22898 : like (:foreground "blue" :weight bold :underline t).
22899 : If you set this variable through customize, it will immediately be effective
22900 : in new buffers and in modified lines.
22901 : If you set it with Lisp, a restart of Emacs is required to activate the
22902 : changes.
22904 ** org-icalendar-categories =(funcall (function (closure (t...=
22905    :PROPERTIES:
22906    :CUSTOM_ID: org-icalendar-categories
22907    :END:
22909 - *Type:* (repeat (choice (const :tag "T...
22910 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
22911 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-categories][Find modifications in git logs]]
22913 : Items that should be entered into the "categories" field.
22915 : This is a list of symbols, the following are valid:
22916 : `category'    The Org mode category of the current file or tree
22917 : `todo-state'  The todo state, if any
22918 : `local-tags'  The tags, defined in the current line
22919 : `all-tags'    All tags, including inherited ones.
22921 ** org-mobile-agendas =(funcall (function (closure (t...=
22922    :PROPERTIES:
22923    :CUSTOM_ID: org-mobile-agendas
22924    :END:
22926 - *Type:* (choice (const :tag "Default A...
22927 - *Since:* Emacs version 24.1
22928 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
22929 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-agendas][Find modifications in git logs]]
22931 : The agendas that should be pushed to MobileOrg.
22932 : Allowed values:
22934 : default  the weekly agenda and the global TODO list
22935 : custom   all custom agendas defined by the user
22936 : all      the custom agendas and the default ones
22937 : list     a list of selection key(s) as string.
22939 ** org-track-ordered-property-with-tag =(funcall (function (closure (o...=
22940    :PROPERTIES:
22941    :CUSTOM_ID: org-track-ordered-property-with-tag
22942    :END:
22944 - *Type:* (choice (const :tag "No tracki...
22945 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
22946 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-track-ordered-property-with-tag][Find modifications in git logs]]
22948 : Should the ORDERED property also be shown as a tag?
22949 : The ORDERED property decides if an entry should require subtasks to be
22950 : completed in sequence.  Since a property is not very visible, setting
22951 : this option means that toggling the ORDERED property with the command
22952 : `org-toggle-ordered-property' will also toggle a tag ORDERED.  That tag is
22953 : not relevant for the behavior, but it makes things more visible.
22955 : Note that toggling the tag with tags commands will not change the property
22956 : and therefore not influence behavior!
22958 : This can be t, meaning the tag ORDERED should be used,  It can also be a
22959 : string to select a different tag for this task.
22961 ** org-habit-graph-column =(funcall (function (closure (t...=
22962    :PROPERTIES:
22963    :CUSTOM_ID: org-habit-graph-column
22964    :END:
22966 - *Type:* integer
22967 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
22968 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-graph-column][Find modifications in git logs]]
22970 : The absolute column at which to insert habit consistency graphs.
22971 : Note that consistency graphs will overwrite anything else in the buffer.
22973 ** org-odt-preferred-output-format =(funcall (function (closure (h...=
22974    :PROPERTIES:
22975    :CUSTOM_ID: org-odt-preferred-output-format
22976    :END:
22978 - *Type:* (choice :convert-widget (lambd...
22979 - *Since:* Emacs version 24.1
22980 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
22981 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-preferred-output-format][Find modifications in git logs]]
22983 : Automatically post-process to this format after exporting to "odt".
22984 : Command `org-odt-export-to-odt' exports first to "odt" format
22985 : and then uses `org-odt-convert-process' to convert the
22986 : resulting document to this format.  During customization of this
22987 : variable, the list of valid values are populated based on
22988 : `org-odt-convert-capabilities'.
22990 : You can set this option on per-file basis using file local
22991 : values.  See Info node `(emacs) File Variables'.
22993 ** org-list-indent-offset =(funcall (function (closure (o...=
22994    :PROPERTIES:
22995    :CUSTOM_ID: org-list-indent-offset
22996    :END:
22998 - *Type:* integer
22999 - *Since:* Emacs version 24.1
23000 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
23001 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-indent-offset][Find modifications in git logs]]
23003 : Additional indentation for sub-items in a list.
23004 : By setting this to a small number, usually 1 or 2, one can more
23005 : clearly distinguish sub-items in a list.
23007 ** org-support-shift-select =(funcall (function (closure (f...=
23008    :PROPERTIES:
23009    :CUSTOM_ID: org-support-shift-select
23010    :END:
23012 - *Type:* (choice (const :tag "Never" ni...
23013 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23014 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-support-shift-select][Find modifications in git logs]]
23016 : Non-nil means make shift-cursor commands select text when possible.
23017 : \<org-mode-map>
23018 : In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
23019 : start selecting a region, or enlarge regions started in this way.
23020 : In Org mode, in special contexts, these same keys are used for
23021 : other purposes, important enough to compete with shift selection.
23022 : Org tries to balance these needs by supporting `shift-select-mode'
23023 : outside these special contexts, under control of this variable.
23025 : The default of this variable is nil, to avoid confusing behavior.  Shifted
23026 : cursor keys will then execute Org commands in the following contexts:
23027 : - on a headline, changing TODO state (left/right) and priority (up/down)
23028 : - on a time stamp, changing the time
23029 : - in a plain list item, changing the bullet type
23030 : - in a property definition line, switching between allowed values
23031 : - in the BEGIN line of a clock table (changing the time block).
23032 : Outside these contexts, the commands will throw an error.
23034 : When this variable is t and the cursor is not in a special
23035 : context, Org mode will support shift-selection for making and
23036 : enlarging regions.  To make this more effective, the bullet
23037 : cycling will no longer happen anywhere in an item line, but only
23038 : if the cursor is exactly on the bullet.
23040 : If you set this variable to the symbol `always', then the keys
23041 : will not be special in headlines, property lines, and item lines,
23042 : to make shift selection work there as well.  If this is what you
23043 : want, you can use the following alternative commands:
23044 : `\[org-todo]' and `\[org-priority]' to change TODO state and priority,
23045 : `\[universal-argument] \[universal-argument] \[org-todo]' can be used to switch TODO sets,
23046 : `\[org-ctrl-c-minus]' to cycle item bullet types,
23047 : and properties can be edited by hand or in column view.
23049 : However, when the cursor is on a timestamp, shift-cursor commands
23050 : will still edit the time stamp - this is just too good to give up.
23052 ** org-ascii-verbatim-format =(funcall (function (closure (t...=
23053    :PROPERTIES:
23054    :CUSTOM_ID: org-ascii-verbatim-format
23055    :END:
23057 - *Type:* string
23058 - *Since:* Emacs version 24.4
23059 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
23060 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-verbatim-format][Find modifications in git logs]]
23062 : Format string used for verbatim text and inline code.
23064 ** org-agenda-start-with-entry-text-mode =nil=
23065    :PROPERTIES:
23066    :CUSTOM_ID: org-agenda-start-with-entry-text-mode
23067    :END:
23069 - *Type:* boolean
23070 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23071 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-with-entry-text-mode][Find modifications in git logs]]
23073 : The initial value of entry-text-mode in a newly created agenda window.
23075 ** org-mobile-index-file =(funcall (function (closure (t...=
23076    :PROPERTIES:
23077    :CUSTOM_ID: org-mobile-index-file
23078    :END:
23080 - *Type:* file
23081 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
23082 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-index-file][Find modifications in git logs]]
23084 : The index file with links to all Org files that should be loaded by MobileOrg.
23085 : Relative to `org-mobile-directory'.  The Address field in the MobileOrg setup
23086 : should point to this file.
23088 ** org-clock-clocktable-language-setup =(funcall (function (closure (t...=
23089    :PROPERTIES:
23090    :CUSTOM_ID: org-clock-clocktable-language-setup
23091    :END:
23093 - *Type:* alist
23094 - *Since:* Emacs version 24.1
23095 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
23096 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocktable-language-setup][Find modifications in git logs]]
23098 : Terms used in clocktable, translated to different languages.
23100 ** org-treat-S-cursor-todo-selection-as-state-change =(funcall (function (closure (f...=
23101    :PROPERTIES:
23102    :CUSTOM_ID: org-treat-S-cursor-todo-selection-as-state-change
23103    :END:
23105 - *Type:* boolean
23106 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23107 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-treat-S-cursor-todo-selection-as-state-change][Find modifications in git logs]]
23109 : Non-nil means switching TODO states with S-cursor counts as state change.
23110 : This is the default behavior.  However, setting this to nil allows a
23111 : convenient way to select a TODO state and bypass any logging associated
23112 : with that.
23114 ** org-html-link-org-files-as-html =(funcall (function (closure (h...=
23115    :PROPERTIES:
23116    :CUSTOM_ID: org-html-link-org-files-as-html
23117    :END:
23119 - *Type:* boolean
23120 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23121 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-link-org-files-as-html][Find modifications in git logs]]
23123 : Non-nil means make file links to `file.org' point to `file.html'.
23124 : When `org-mode' is exporting an `org-mode' file to HTML, links to
23125 : non-html files are directly put into a href tag in HTML.
23126 : However, links to other Org files (recognized by the extension
23127 : ".org") should become links to the corresponding HTML
23128 : file, assuming that the linked `org-mode' file will also be
23129 : converted to HTML.
23130 : When nil, the links still point to the plain ".org" file.
23132 ** org-bbdb-anniversary-field =(funcall (function (closure (d...=
23133    :PROPERTIES:
23134    :CUSTOM_ID: org-bbdb-anniversary-field
23135    :END:
23137 - *Type:* symbol
23138 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
23139 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-anniversary-field][Find modifications in git logs]]
23141 : The BBDB field which contains anniversaries.
23142 : The anniversaries are stored in the following format
23144 : YYYY-MM-DD Class-or-Format-String
23146 : where class is one of the customized classes for anniversaries;
23147 : birthday and wedding are predefined.  Format-String can take three
23148 : substitutions 1) the name of the record containing this
23149 : anniversary, 2) the number of years, and 3) an ordinal suffix for
23150 : the year.
23152 : Multiple anniversaries can be separated by \n.
23154 ** org-agenda-bulk-mark-char =">"=
23155    :PROPERTIES:
23156    :CUSTOM_ID: org-agenda-bulk-mark-char
23157    :END:
23159 - *Type:* string
23160 - *Since:* Emacs version 24.1
23161 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23162 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark-char][Find modifications in git logs]]
23164 : A single-character string to be used as the bulk mark.
23166 ** org-koma-letter-subject-format =t=
23167    :PROPERTIES:
23168    :CUSTOM_ID: org-koma-letter-subject-format
23169    :END:
23171 - *Type:* (choice (const :tag "No export...
23172 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
23173 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-subject-format][Find modifications in git logs]]
23175 : Non-nil means include the subject.
23177 : Support formatting options.
23179 : When t, insert a subject using default options.  When nil, do not
23180 : insert a subject at all.  It can also be a list of symbols among
23181 : the following ones:
23183 :  `afteropening'  Subject after opening
23184 :  `beforeopening' Subject before opening
23185 :  `centered'      Subject centered
23186 :  `left'          Subject left-justified
23187 :  `right'         Subject right-justified
23188 :  `titled'        Add title/description to subject
23189 :  `underlined'    Set subject underlined
23190 :  `untitled'      Do not add title/description to subject
23192 : Please refer to the KOMA-script manual (Table 4.16. in the
23193 : English manual of 2012-07-22).
23195 : This option can also be set with the OPTIONS keyword, e.g.:
23196 : "subject:(underlined centered)".
23198 ** org-list-description-max-indent =(funcall (function (closure (o...=
23199    :PROPERTIES:
23200    :CUSTOM_ID: org-list-description-max-indent
23201    :END:
23203 - *Type:* integer
23204 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
23205 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-description-max-indent][Find modifications in git logs]]
23207 : Maximum indentation for the second line of a description list.
23208 : When the indentation would be larger than this, it will become
23209 : 5 characters instead.
23211 ** org-html-postamble-format =(funcall (function (closure (h...=
23212    :PROPERTIES:
23213    :CUSTOM_ID: org-html-postamble-format
23214    :END:
23216 - *Type:* (repeat (list (string :tag "La...
23217 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23218 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-postamble-format][Find modifications in git logs]]
23220 : Alist of languages and format strings for the HTML postamble.
23222 : The first element of each list is the language code, as used for
23223 : the LANGUAGE keyword.  See `org-export-default-language'.
23225 : The second element of each list is a format string to format the
23226 : postamble itself.  This format string can contain these elements:
23228 :   %t stands for the title.
23229 :   %s stands for the subtitle.
23230 :   %a stands for the author's name.
23231 :   %e stands for the author's email.
23232 :   %d stands for the date.
23233 :   %c will be replaced by `org-html-creator-string'.
23234 :   %v will be replaced by `org-html-validation-link'.
23235 :   %T will be replaced by the export time.
23236 :   %C will be replaced by the last modification time.
23238 : If you need to use a "%" character, you need to escape it
23239 : like that: "%%".
23241 ** org-agenda-ignore-properties =(funcall (function (closure (o...=
23242    :PROPERTIES:
23243    :CUSTOM_ID: org-agenda-ignore-properties
23244    :END:
23246 - *Type:* (set :greedy t (const effort) ...
23247 - *Since:* Emacs version 26.1
23248 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23249 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-ignore-properties][Find modifications in git logs]]
23251 : Avoid updating text properties when building the agenda.
23252 : Properties are used to prepare buffers for effort estimates,
23253 : appointments, statistics and subtree-local categories.
23254 : If you don't use these in the agenda, you can add them to this
23255 : list and agenda building will be a bit faster.
23256 : The value is a list, with zero or more of the symbols `effort', `appt',
23257 : `stats' or `category'.
23259 ** org-babel-hash-show-time =(funcall (function (closure (t...=
23260    :PROPERTIES:
23261    :CUSTOM_ID: org-babel-hash-show-time
23262    :END:
23264 - *Type:* boolean
23265 - *Since:* Emacs version 26.1
23266 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
23267 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hash-show-time][Find modifications in git logs]]
23269 : Non-nil means show the time the code block was evaluated in the result hash.
23271 ** org-agenda-max-tags =nil=
23272    :PROPERTIES:
23273    :CUSTOM_ID: org-agenda-max-tags
23274    :END:
23276 - *Type:* (choice (symbol :tag "No limit...
23277 - *Since:* Emacs version 24.4
23278 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23279 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-tags][Find modifications in git logs]]
23281 : Maximum number of tagged entries to display in an agenda.
23282 : This can be nil (no limit) or an integer or an alist of agenda
23283 : types with an associated number of entries to display in this
23284 : type.
23286 ** org-export-with-drawers =(funcall (function (closure (t...=
23287    :PROPERTIES:
23288    :CUSTOM_ID: org-export-with-drawers
23289    :END:
23291 - *Type:* (choice (const :tag "All drawe...
23292 - *Since:* Emacs version 24.4
23293 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
23294 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-drawers][Find modifications in git logs]]
23296 : Non-nil means export contents of standard drawers.
23298 : When t, all drawers are exported.  This may also be a list of
23299 : drawer names to export, as strings.  If that list starts with
23300 : `not', only drawers with such names will be ignored.
23302 : This variable doesn't apply to properties drawers.  See
23303 : `org-export-with-properties' instead.
23305 : This option can also be set with the OPTIONS keyword,
23306 : e.g. "d:nil".
23308 ** org-html-inline-images =(funcall (function (closure (h...=
23309    :PROPERTIES:
23310    :CUSTOM_ID: org-html-inline-images
23311    :END:
23313 - *Type:* boolean
23314 - *Since:* Emacs version 24.4
23315 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23316 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-inline-images][Find modifications in git logs]]
23318 : Non-nil means inline images into exported HTML pages.
23319 : This is done using an <img> tag.  When nil, an anchor with href is used to
23320 : link to the image.
23322 ** org-agenda-clock-consistency-checks =(quote (:max-duration "10:00" ...=
23323    :PROPERTIES:
23324    :CUSTOM_ID: org-agenda-clock-consistency-checks
23325    :END:
23327 - *Type:* plist
23328 - *Since:* Emacs version 24.1
23329 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23330 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-consistency-checks][Find modifications in git logs]]
23332 : This is a property list, with the following keys:
23334 : :max-duration    Mark clocking chunks that are longer than this time.
23335 :                  This is a time string like "HH:MM", or the number
23336 :                  of minutes as an integer.
23338 : :min-duration    Mark clocking chunks that are shorter that this.
23339 :                  This is a time string like "HH:MM", or the number
23340 :                  of minutes as an integer.
23342 : :max-gap         Mark gaps between clocking chunks that are longer than
23343 :                  this duration.  A number of minutes, or a string
23344 :                  like "HH:MM".
23346 : :gap-ok-around   List of times during the day which are usually not working
23347 :                  times.  When a gap is detected, but the gap contains any
23348 :                  of these times, the gap is *not* reported.  For example,
23349 :                  if this is ("4:00" "13:00") then gaps that contain
23350 :                  4:00 in the morning (i.e. the night) and 13:00
23351 :                  (i.e. a typical lunch time) do not cause a warning.
23352 :                  You should have at least one time during the night in this
23353 :                  list, or otherwise the first task each morning will trigger
23354 :                  a warning because it follows a long gap.
23356 : Furthermore, the following properties can be used to define faces for
23357 : issue display.
23359 : :default-face         the default face, if the specific face is undefined
23360 : :overlap-face         face for overlapping clocks
23361 : :gap-face             face for gaps between clocks
23362 : :no-end-time-face     face for incomplete clocks
23363 : :long-face            face for clock intervals that are too long
23364 : :short-face           face for clock intervals that are too short
23366 ** org-format-latex-header =(funcall (function (closure (f...=
23367    :PROPERTIES:
23368    :CUSTOM_ID: org-format-latex-header
23369    :END:
23371 - *Type:* string
23372 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23373 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-format-latex-header][Find modifications in git logs]]
23375 : The document header used for processing LaTeX fragments.
23376 : It is imperative that this header make sure that no page number
23377 : appears on the page.  The package defined in the variables
23378 : `org-latex-default-packages-alist' and `org-latex-packages-alist'
23379 : will either replace the placeholder "[PACKAGES]" in this
23380 : header, or they will be appended.
23382 ** org-agenda-auto-exclude-function =nil=
23383    :PROPERTIES:
23384    :CUSTOM_ID: org-agenda-auto-exclude-function
23385    :END:
23387 - *Type:* (choice (const nil) (function)...
23388 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23389 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-auto-exclude-function][Find modifications in git logs]]
23391 : A function called with a tag to decide if it is filtered on \<org-agenda-mode-map>`\[org-agenda-filter-by-tag] RET'.
23392 : The sole argument to the function, which is called once for each
23393 : possible tag, is a string giving the name of the tag.  The
23394 : function should return either nil if the tag should be included
23395 : as normal, or "-<TAG>" to exclude the tag.
23396 : Note that for the purpose of tag filtering, only the lower-case version of
23397 : all tags will be considered, so that this function will only ever see
23398 : the lower-case version of all tags.
23400 ** org-agenda-remove-tags =nil=
23401    :PROPERTIES:
23402    :CUSTOM_ID: org-agenda-remove-tags
23403    :END:
23405 - *Type:* (choice (const :tag "Always" t...
23406 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23407 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-tags][Find modifications in git logs]]
23409 : Non-nil means remove the tags from the headline copy in the agenda.
23410 : When this is the symbol `prefix', only remove tags when
23411 : `org-agenda-prefix-format' contains a `%T' specifier.
23413 ** org-koma-letter-prefer-special-headings =nil=
23414    :PROPERTIES:
23415    :CUSTOM_ID: org-koma-letter-prefer-special-headings
23416    :END:
23418 - *Type:* boolean
23419 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
23420 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-prefer-special-headings][Find modifications in git logs]]
23422 : Non-nil means prefer headlines over keywords for TO and FROM.
23423 : This option can also be set with the OPTIONS keyword, e.g.:
23424 : "special-headings:t".
23426 ** org-mobile-force-mobile-change =(funcall (function (closure (t...=
23427    :PROPERTIES:
23428    :CUSTOM_ID: org-mobile-force-mobile-change
23429    :END:
23431 - *Type:* (choice (const :tag "Always" t...
23432 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
23433 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-force-mobile-change][Find modifications in git logs]]
23435 : Non-nil means force the change made on the mobile device.
23436 : So even if there have been changes to the computer version of the entry,
23437 : force the new value set on the mobile.
23438 : When nil, mark the entry from the mobile with an error message.
23439 : Instead of nil or t, this variable can also be a list of symbols, indicating
23440 : the editing types for which the mobile version should always dominate.
23442 ** org-mouse-features =(funcall (function (closure (t...=
23443    :PROPERTIES:
23444    :CUSTOM_ID: org-mouse-features
23445    :END:
23447 - *Type:* (set :greedy t (const :tag "Mo...
23448 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]]
23449 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-features][Find modifications in git logs]]
23451 : The features of org-mouse that should be activated.
23452 : Changing this variable requires a restart of Emacs to get activated.
23454 ** org-agenda-menu-two-columns =nil=
23455    :PROPERTIES:
23456    :CUSTOM_ID: org-agenda-menu-two-columns
23457    :END:
23459 - *Type:* boolean
23460 - *Since:* Emacs version 24.1
23461 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23462 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-menu-two-columns][Find modifications in git logs]]
23464 : Non-nil means, use two columns to show custom commands in the dispatcher.
23465 : If you use this, you probably want to set `org-agenda-menu-show-matcher'
23466 : to nil.
23468 ** org-mobile-force-id-on-agenda-items =(funcall (function (closure (t...=
23469    :PROPERTIES:
23470    :CUSTOM_ID: org-mobile-force-id-on-agenda-items
23471    :END:
23473 - *Type:* boolean
23474 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
23475 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-force-id-on-agenda-items][Find modifications in git logs]]
23477 : Non-nil means make all agenda items carry an ID.
23479 ** org-clock-clocked-in-display =(funcall (function (closure (t...=
23480    :PROPERTIES:
23481    :CUSTOM_ID: org-clock-clocked-in-display
23482    :END:
23484 - *Type:* (choice (const :tag "Mode line...
23485 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
23486 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocked-in-display][Find modifications in git logs]]
23488 : When clocked in for a task, Org can display the current
23489 : task and accumulated time in the mode line and/or frame title.
23490 : Allowed values are:
23492 : both         displays in both mode line and frame title
23493 : mode-line    displays only in mode line (default)
23494 : frame-title  displays only in frame title
23495 : nil          current clock is not displayed
23497 ** org-latex-classes =(funcall (function (closure (t...=
23498    :PROPERTIES:
23499    :CUSTOM_ID: org-latex-classes
23500    :END:
23502 - *Type:* (repeat (list (string :tag "La...
23503 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
23504 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-classes][Find modifications in git logs]]
23506 : Alist of LaTeX classes and associated header and structure.
23507 : If #+LATEX_CLASS is set in the buffer, use its value and the
23508 : associated information.  Here is the structure of each cell:
23510 :   (class-name
23511 :     header-string
23512 :     (numbered-section . unnumbered-section)
23513 :     ...)
23515 : The header string
23516 : -----------------
23518 : The HEADER-STRING is the header that will be inserted into the
23519 : LaTeX file.  It should contain the \documentclass macro, and
23520 : anything else that is needed for this setup.  To this header, the
23521 : following commands will be added:
23523 : - Calls to \usepackage for all packages mentioned in the
23524 :   variables `org-latex-default-packages-alist' and
23525 :   `org-latex-packages-alist'.  Thus, your header definitions
23526 :   should avoid to also request these packages.
23528 : - Lines specified via "#+LATEX_HEADER:" and
23529 :   "#+LATEX_HEADER_EXTRA:" keywords.
23531 : If you need more control about the sequence in which the header
23532 : is built up, or if you want to exclude one of these building
23533 : blocks for a particular class, you can use the following
23534 : macro-like placeholders.
23536 :  [DEFAULT-PACKAGES]      \usepackage statements for default packages
23537 :  [NO-DEFAULT-PACKAGES]   do not include any of the default packages
23538 :  [PACKAGES]              \usepackage statements for packages
23539 :  [NO-PACKAGES]           do not include the packages
23540 :  [EXTRA]                 the stuff from #+LATEX_HEADER(_EXTRA)
23541 :  [NO-EXTRA]              do not include #+LATEX_HEADER(_EXTRA) stuff
23543 : So a header like
23545 :   \documentclass{article}
23546 :   [NO-DEFAULT-PACKAGES]
23547 :   [EXTRA]
23548 :   \providecommand{\alert}[1]{\textbf{#1}}
23549 :   [PACKAGES]
23551 : will omit the default packages, and will include the
23552 : #+LATEX_HEADER and #+LATEX_HEADER_EXTRA lines, then have a call
23553 : to \providecommand, and then place \usepackage commands based
23554 : on the content of `org-latex-packages-alist'.
23556 : If your header, `org-latex-default-packages-alist' or
23557 : `org-latex-packages-alist' inserts "\usepackage[AUTO]{inputenc}",
23558 : AUTO will automatically be replaced with a coding system derived
23559 : from `buffer-file-coding-system'.  See also the variable
23560 : `org-latex-inputenc-alist' for a way to influence this mechanism.
23562 : Likewise, if your header contains "\usepackage[AUTO]{babel}"
23563 : or "\usepackage[AUTO]{polyglossia}", AUTO will be replaced
23564 : with the language related to the language code specified by
23565 : `org-export-default-language'.  Note that constructions such as
23566 : "\usepackage[french,AUTO,english]{babel}" are permitted.  For
23567 : Polyglossia the language will be set via the macros
23568 : "\setmainlanguage" and "\setotherlanguage".  See also
23569 : `org-latex-guess-babel-language' and
23570 : `org-latex-guess-polyglossia-language'.
23572 : The sectioning structure
23573 : ------------------------
23575 : The sectioning structure of the class is given by the elements
23576 : following the header string.  For each sectioning level, a number
23577 : of strings is specified.  A %s formatter is mandatory in each
23578 : section string and will be replaced by the title of the section.
23580 : Instead of a cons cell (numbered . unnumbered), you can also
23581 : provide a list of 2 or 4 elements,
23583 :   (numbered-open numbered-close)
23585 : or
23587 :   (numbered-open numbered-close unnumbered-open unnumbered-close)
23589 : providing opening and closing strings for a LaTeX environment
23590 : that should represent the document section.  The opening clause
23591 : should have a %s to represent the section title.
23593 : Instead of a list of sectioning commands, you can also specify
23594 : a function name.  That function will be called with two
23595 : parameters, the (reduced) level of the headline, and a predicate
23596 : non-nil when the headline should be numbered.  It must return
23597 : a format string in which the section title will be added.
23599 ** org-startup-truncated =(funcall (function (closure (f...=
23600    :PROPERTIES:
23601    :CUSTOM_ID: org-startup-truncated
23602    :END:
23604 - *Type:* boolean
23605 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23606 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-truncated][Find modifications in git logs]]
23608 : Non-nil means entering Org mode will set `truncate-lines'.
23609 : This is useful since some lines containing links can be very long and
23610 : uninteresting.  Also tables look terrible when wrapped.
23612 : The variable `org-startup-truncated' allows to configure
23613 : truncation for Org mode different to the other modes that use the
23614 : variable `truncate-lines' and as a shortcut instead of putting
23615 : the variable `truncate-lines' into the `org-mode-hook'.  If one
23616 : wants to configure truncation for Org mode not statically but
23617 : dynamically e. g. in a hook like `ediff-prepare-buffer-hook' then
23618 : the variable `truncate-lines' has to be used because in such a
23619 : case it is too late to set the variable `org-startup-truncated'.
23621 ** org-complete-tags-always-offer-all-agenda-tags =(funcall (function (closure (f...=
23622    :PROPERTIES:
23623    :CUSTOM_ID: org-complete-tags-always-offer-all-agenda-tags
23624    :END:
23626 - *Type:* boolean
23627 - *Since:* Emacs version 24.1
23628 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23629 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-complete-tags-always-offer-all-agenda-tags][Find modifications in git logs]]
23631 : If non-nil, always offer completion for all tags of all agenda files.
23632 : Instead of customizing this variable directly, you might want to
23633 : set it locally for capture buffers, because there no list of
23634 : tags in that file can be created dynamically (there are none).
23636 :   (add-hook \='org-capture-mode-hook
23637 :             (lambda ()
23638 :               (setq-local org-complete-tags-always-offer-all-agenda-tags t)))
23640 ** org-html-link-up =(funcall (function (closure (h...=
23641    :PROPERTIES:
23642    :CUSTOM_ID: org-html-link-up
23643    :END:
23645 - *Type:* (string :tag "File or URL")
23646 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23647 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-link-up][Find modifications in git logs]]
23649 : Where should the "UP" link of exported HTML pages lead?
23651 ** org-feed-drawer =(funcall (function (closure (t...=
23652    :PROPERTIES:
23653    :CUSTOM_ID: org-feed-drawer
23654    :END:
23656 - *Type:* (string :tag "Drawer Name")
23657 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
23658 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-drawer][Find modifications in git logs]]
23660 : The name of the drawer for feed status information.
23661 : Each feed may also specify its own drawer name using the `:drawer'
23662 : parameter in `org-feed-alist'.
23664 ** org-clock-resolve-expert =(funcall (function (closure (t...=
23665    :PROPERTIES:
23666    :CUSTOM_ID: org-clock-resolve-expert
23667    :END:
23669 - *Type:* boolean
23670 - *Since:* Emacs version 24.1
23671 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
23672 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-resolve-expert][Find modifications in git logs]]
23674 : Non-nil means do not show the splash buffer with the clock resolver.
23676 ** org-publish-sitemap-sort-folders =(funcall (function (closure (t...=
23677    :PROPERTIES:
23678    :CUSTOM_ID: org-publish-sitemap-sort-folders
23679    :END:
23681 - *Type:* (choice (const :tag "Folders b...
23682 - *Since:* Emacs version 26.1
23683 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
23684 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-sitemap-sort-folders][Find modifications in git logs]]
23686 : A symbol, denoting if folders are sorted first in site-maps.
23688 : Possible values are `first', `last', `ignore' and nil.
23689 : If `first', folders will be sorted before files.
23690 : If `last', folders are sorted to the end after the files.
23691 : If `ignore', folders do not appear in the site-map.
23692 : Any other value will mix files and folders.
23694 : You can overwrite this default per project in your
23695 : `org-publish-project-alist', using `:sitemap-sort-folders'.
23697 : This variable is ignored when site-map style is `tree'.
23699 ** org-ascii-format-drawer-function =(funcall (function (closure (t...=
23700    :PROPERTIES:
23701    :CUSTOM_ID: org-ascii-format-drawer-function
23702    :END:
23704 - *Type:* function
23705 - *Since:* Emacs version 24.4
23706 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
23707 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-format-drawer-function][Find modifications in git logs]]
23709 : Function called to format a drawer in ASCII.
23711 : The function must accept three parameters:
23712 :   NAME      the drawer name, like "LOGBOOK"
23713 :   CONTENTS  the contents of the drawer.
23714 :   WIDTH     the text width within the drawer.
23716 : The function should return either the string to be exported or
23717 : nil to ignore the drawer.
23719 : The default value simply returns the value of CONTENTS.
23721 ** org-log-reschedule =(funcall (function (closure (f...=
23722    :PROPERTIES:
23723    :CUSTOM_ID: org-log-reschedule
23724    :END:
23726 - *Type:* (choice (const :tag "No loggin...
23727 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23728 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-reschedule][Find modifications in git logs]]
23730 : Information to record when the scheduling date of a tasks is modified.
23732 : Possible values are:
23734 : nil     Don't add anything, just change the date
23735 : time    Add a time stamp to the task
23736 : note    Prompt for a note and add it with template `org-log-note-headings'
23738 : This option can also be set with on a per-file-basis with
23740 :    #+STARTUP: nologreschedule
23741 :    #+STARTUP: logreschedule
23742 :    #+STARTUP: lognotereschedule
23744 ** org-odt-fontify-srcblocks =(funcall (function (closure (h...=
23745    :PROPERTIES:
23746    :CUSTOM_ID: org-odt-fontify-srcblocks
23747    :END:
23749 - *Type:* boolean
23750 - *Since:* Emacs version 24.1
23751 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
23752 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-fontify-srcblocks][Find modifications in git logs]]
23754 : Specify whether or not source blocks need to be fontified.
23755 : Turn this option on if you want to colorize the source code
23756 : blocks in the exported file.  For colorization to work, you need
23757 : to make available an enhanced version of `htmlfontify' library.
23759 ** org-feed-save-after-adding =(funcall (function (closure (t...=
23760    :PROPERTIES:
23761    :CUSTOM_ID: org-feed-save-after-adding
23762    :END:
23764 - *Type:* boolean
23765 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
23766 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-save-after-adding][Find modifications in git logs]]
23768 : Non-nil means save buffer after adding new feed items.
23770 ** org-agenda-window-setup =(quote reorganize-frame)=
23771    :PROPERTIES:
23772    :CUSTOM_ID: org-agenda-window-setup
23773    :END:
23775 - *Type:* (choice (const current-window)...
23776 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23777 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-window-setup][Find modifications in git logs]]
23779 : How the agenda buffer should be displayed.
23780 : Possible values for this option are:
23782 : current-window    Show agenda in the current window, keeping all other windows.
23783 : other-window      Use `switch-to-buffer-other-window' to display agenda.
23784 : only-window       Show agenda, deleting all other windows.
23785 : reorganize-frame  Show only two windows on the current frame, the current
23786 :                   window and the agenda.
23787 : other-frame       Use `switch-to-buffer-other-frame' to display agenda.
23788 :                   Also, when exiting the agenda, kill that frame.
23789 : See also the variable `org-agenda-restore-windows-after-quit'.
23791 ** org-html-tag-class-prefix =(funcall (function (closure (h...=
23792    :PROPERTIES:
23793    :CUSTOM_ID: org-html-tag-class-prefix
23794    :END:
23796 - *Type:* string
23797 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23798 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-tag-class-prefix][Find modifications in git logs]]
23800 : Prefix to class names for TODO keywords.
23801 : Each tag gets a class given by the tag itself, with this prefix.
23802 : The default prefix is empty because it is nice to just use the keyword
23803 : as a class name.  But if you get into conflicts with other, existing
23804 : CSS classes, then this prefix can be very useful.
23806 ** org-hide-macro-markers =(funcall (function (closure (f...=
23807    :PROPERTIES:
23808    :CUSTOM_ID: org-hide-macro-markers
23809    :END:
23811 - *Type:* boolean
23812 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23813 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-macro-markers][Find modifications in git logs]]
23815 : Non-nil mean font-lock should hide the brackets marking macro calls.
23817 ** org-table-number-fraction =(funcall (function (closure (o...=
23818    :PROPERTIES:
23819    :CUSTOM_ID: org-table-number-fraction
23820    :END:
23822 - *Type:* number
23823 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
23824 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-number-fraction][Find modifications in git logs]]
23826 : Fraction of numbers in a column required to make the column align right.
23827 : In a column all non-white fields are considered.  If at least
23828 : this fraction of fields is matched by `org-table-number-regexp',
23829 : alignment to the right border applies.
23831 ** org-agenda-include-deadlines =t=
23832    :PROPERTIES:
23833    :CUSTOM_ID: org-agenda-include-deadlines
23834    :END:
23836 - *Type:* boolean
23837 - *Since:* Emacs version 24.1
23838 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
23839 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-include-deadlines][Find modifications in git logs]]
23841 : If non-nil, include entries within their deadline warning period.
23842 : Custom commands can set this variable in the options section.
23844 ** org-html-indent =(funcall (function (closure (h...=
23845    :PROPERTIES:
23846    :CUSTOM_ID: org-html-indent
23847    :END:
23849 - *Type:* boolean
23850 - *Since:* Emacs version 24.4
23851 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23852 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-indent][Find modifications in git logs]]
23854 : Non-nil means to indent the generated HTML.
23855 : Warning: non-nil may break indentation of source code blocks.
23857 ** org-archive-default-command =(funcall (function (closure (t...=
23858    :PROPERTIES:
23859    :CUSTOM_ID: org-archive-default-command
23860    :END:
23862 - *Type:* (choice (const org-archive-sub...
23863 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
23864 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-default-command][Find modifications in git logs]]
23866 : The default archiving command.
23868 ** org-todo-keywords =(funcall (function (closure (f...=
23869    :PROPERTIES:
23870    :CUSTOM_ID: org-todo-keywords
23871    :END:
23873 - *Type:* (choice (repeat :tag "Old synt...
23874 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23875 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-keywords][Find modifications in git logs]]
23877 : List of TODO entry keyword sequences and their interpretation.
23878 : \<org-mode-map>This is a list of sequences.
23880 : Each sequence starts with a symbol, either `sequence' or `type',
23881 : indicating if the keywords should be interpreted as a sequence of
23882 : action steps, or as different types of TODO items.  The first
23883 : keywords are states requiring action - these states will select a headline
23884 : for inclusion into the global TODO list Org produces.  If one of the
23885 : "keywords" is the vertical bar, "|", the remaining keywords
23886 : signify that no further action is necessary.  If "|" is not found,
23887 : the last keyword is treated as the only DONE state of the sequence.
23889 : The command `\[org-todo]' cycles an entry through these states, and one
23890 : additional state where no keyword is present.  For details about this
23891 : cycling, see the manual.
23893 : TODO keywords and interpretation can also be set on a per-file basis with
23894 : the special #+SEQ_TODO and #+TYP_TODO lines.
23896 : Each keyword can optionally specify a character for fast state selection
23897 : (in combination with the variable `org-use-fast-todo-selection')
23898 : and specifiers for state change logging, using the same syntax that
23899 : is used in the "#+TODO:" lines.  For example, "WAIT(w)" says that
23900 : the WAIT state can be selected with the "w" key.  "WAIT(w!)"
23901 : indicates to record a time stamp each time this state is selected.
23903 : Each keyword may also specify if a timestamp or a note should be
23904 : recorded when entering or leaving the state, by adding additional
23905 : characters in the parenthesis after the keyword.  This looks like this:
23906 : "WAIT(w@/!)".  "@" means to add a note (with time), "!" means to
23907 : record only the time of the state change.  With X and Y being either
23908 : "@" or "!", "X/Y" means use X when entering the state, and use
23909 : Y when leaving the state if and only if the *target* state does not
23910 : define X.  You may omit any of the fast-selection key or X or /Y,
23911 : so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
23913 : For backward compatibility, this variable may also be just a list
23914 : of keywords.  In this case the interpretation (sequence or type) will be
23915 : taken from the (otherwise obsolete) variable `org-todo-interpretation'.
23917 ** org-src-window-setup =(funcall (function (closure (t...=
23918    :PROPERTIES:
23919    :CUSTOM_ID: org-src-window-setup
23920    :END:
23922 - *Type:* (choice (const current-window)...
23923 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
23924 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-window-setup][Find modifications in git logs]]
23926 : How the source code edit buffer should be displayed.
23927 : Possible values for this option are:
23929 : current-window    Show edit buffer in the current window, keeping all other
23930 :                   windows.
23931 : other-window      Use `switch-to-buffer-other-window' to display edit buffer.
23932 : reorganize-frame  Show only two windows on the current frame, the current
23933 :                   window and the edit buffer.  When exiting the edit buffer,
23934 :                   return to one window.
23935 : other-frame       Use `switch-to-buffer-other-frame' to display edit buffer.
23936 :                   Also, when exiting the edit buffer, kill that frame.
23938 ** org-goto-auto-isearch =(funcall (function (closure (f...=
23939    :PROPERTIES:
23940    :CUSTOM_ID: org-goto-auto-isearch
23941    :END:
23943 - *Type:* boolean
23944 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
23945 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-auto-isearch][Find modifications in git logs]]
23947 : Non-nil means typing characters in `org-goto' starts incremental search.
23948 : When nil, you can use these keybindings to navigate the buffer:
23950 :   q    Quit the org-goto interface
23951 :   n    Go to the next visible heading
23952 :   p    Go to the previous visible heading
23953 :   f    Go one heading forward on same level
23954 :   b    Go one heading backward on same level
23955 :   u    Go one heading up
23957 ** org-n-level-faces =(funcall (function (closure (t...=
23958    :PROPERTIES:
23959    :CUSTOM_ID: org-n-level-faces
23960    :END:
23962 - *Type:* integer
23963 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
23964 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-n-level-faces][Find modifications in git logs]]
23966 : The number of different faces to be used for headlines.
23967 : Org mode defines 8 different headline faces, so this can be at most 8.
23968 : If it is less than 8, the level-1 face gets re-used for level N+1 etc.
23970 ** org-capture-bookmark =(funcall (function (closure (o...=
23971    :PROPERTIES:
23972    :CUSTOM_ID: org-capture-bookmark
23973    :END:
23975 - *Type:* boolean
23976 - *Since:* Emacs version 24.3
23977 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]]
23978 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-bookmark][Find modifications in git logs]]
23980 : When non-nil, add a bookmark pointing at the last stored
23981 : position when capturing.
23983 ** org-html-link-home =(funcall (function (closure (h...=
23984    :PROPERTIES:
23985    :CUSTOM_ID: org-html-link-home
23986    :END:
23988 - *Type:* (string :tag "File or URL")
23989 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
23990 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-link-home][Find modifications in git logs]]
23992 : Where should the "HOME" link of exported HTML pages lead?
23994 ** org-agenda-columns-show-summaries =t=
23995    :PROPERTIES:
23996    :CUSTOM_ID: org-agenda-columns-show-summaries
23997    :END:
23999 - *Type:* boolean
24000 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24001 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-columns-show-summaries][Find modifications in git logs]]
24003 : Non-nil means show summaries for columns displayed in the agenda view.
24005 ** org-export-with-broken-links =(funcall (function (closure (t...=
24006    :PROPERTIES:
24007    :CUSTOM_ID: org-export-with-broken-links
24008    :END:
24010 - *Type:* (choice (const :tag "Ignore br...
24011 - *Since:* Emacs version 26.1
24012 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
24013 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-broken-links][Find modifications in git logs]]
24015 : Non-nil means do not raise an error on broken links.
24017 : When this variable is non-nil, broken links are ignored, without
24018 : stopping the export process.  If it is set to `mark', broken
24019 : links are marked as such in the output, with a string like
24021 :   [BROKEN LINK: path]
24023 : where PATH is the un-resolvable reference.
24025 : This option can also be set with the OPTIONS keyword, e.g.,
24026 : "broken-links:mark".
24028 ** org-ctags-new-topic-template =(funcall (function (closure (t...=
24029    :PROPERTIES:
24030    :CUSTOM_ID: org-ctags-new-topic-template
24031    :END:
24033 - *Type:* string
24034 - *Since:* Emacs version 24.1
24035 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]]
24036 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-new-topic-template][Find modifications in git logs]]
24038 : Text to insert when creating a new org file via opening a hyperlink.
24039 : The following patterns are replaced in the string:
24040 :     `%t' - replaced with the capitalized title of the hyperlink
24042 ** org-calendar-follow-timestamp-change =(funcall (function (closure (f...=
24043    :PROPERTIES:
24044    :CUSTOM_ID: org-calendar-follow-timestamp-change
24045    :END:
24047 - *Type:* boolean
24048 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24049 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-follow-timestamp-change][Find modifications in git logs]]
24051 : Non-nil means make the calendar window follow timestamp changes.
24052 : When a timestamp is modified and the calendar window is visible, it will be
24053 : moved to the new date.
24055 ** org-html-todo-kwd-class-prefix =(funcall (function (closure (h...=
24056    :PROPERTIES:
24057    :CUSTOM_ID: org-html-todo-kwd-class-prefix
24058    :END:
24060 - *Type:* string
24061 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24062 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-todo-kwd-class-prefix][Find modifications in git logs]]
24064 : Prefix to class names for TODO keywords.
24065 : Each TODO keyword gets a class given by the keyword itself, with this prefix.
24066 : The default prefix is empty because it is nice to just use the keyword
24067 : as a class name.  But if you get into conflicts with other, existing
24068 : CSS classes, then this prefix can be very useful.
24070 ** org-babel-lua-None-to =(funcall (function (closure (t...=
24071    :PROPERTIES:
24072    :CUSTOM_ID: org-babel-lua-None-to
24073    :END:
24075 - *Type:* symbol
24076 - *Since:* Emacs version 24.5
24077 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lua.el][ob-lua.el]]
24078 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lua-None-to][Find modifications in git logs]]
24080 : Replace 'None' in lua tables with this before returning.
24082 ** org-protocol-protocol-alist =(funcall (function (closure (t...=
24083    :PROPERTIES:
24084    :CUSTOM_ID: org-protocol-protocol-alist
24085    :END:
24087 - *Type:* (alist)
24088 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
24089 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-protocol-alist][Find modifications in git logs]]
24091 : Register custom handlers for org-protocol.
24093 : Each element of this list must be of the form:
24095 :   (module-name :protocol protocol :function func :kill-client nil)
24097 : protocol - protocol to detect in a filename without trailing
24098 :            colon and slashes.  See rfc1738 section 2.1 for more
24099 :            on this.  If you define a protocol "my-protocol",
24100 :            `org-protocol-check-filename-for-protocol' will search
24101 :            filenames for "org-protocol:/my-protocol" and
24102 :            trigger your action for every match.  `org-protocol'
24103 :            is defined in `org-protocol-the-protocol'.  Double and
24104 :            triple slashes are compressed to one by emacsclient.
24106 : function - function that handles requests with protocol and takes
24107 :            one argument.  If a new-style link (key=val&key2=val2)
24108 :            is given, the argument will be a property list with
24109 :            the values from the link.  If an old-style link is
24110 :            given (val1/val2), the argument will be the filename
24111 :            with all protocols stripped.
24113 :            If the function returns nil, emacsclient and -server
24114 :            do nothing.  Any non-nil return value is considered a
24115 :            valid filename and thus passed to the server.
24117 :            `org-protocol.el' provides some support for handling
24118 :            old-style filenames, if you follow the conventions
24119 :            used for the standard handlers in
24120 :            `org-protocol-protocol-alist-default'.  See
24121 :            `org-protocol-parse-parameters'.
24123 : kill-client - If t, kill the client immediately, once the sub-protocol is
24124 :            detected.  This is necessary for actions that can be interrupted by
24125 :            `C-g' to avoid dangling emacsclients.  Note that all other command
24126 :            line arguments but the this one will be discarded.  Greedy handlers
24127 :            still receive the whole list of arguments though.
24129 : Here is an example:
24131 :   (setq org-protocol-protocol-alist
24132 :       \='(("my-protocol"
24133 :          :protocol "my-protocol"
24134 :          :function my-protocol-handler-function)
24135 :         ("your-protocol"
24136 :          :protocol "your-protocol"
24137 :          :function your-protocol-handler-function)))
24139 ** org-agenda-skip-function-global =nil=
24140    :PROPERTIES:
24141    :CUSTOM_ID: org-agenda-skip-function-global
24142    :END:
24144 - *Type:* sexp
24145 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24146 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-function-global][Find modifications in git logs]]
24148 : Function to be called at each match during agenda construction.
24149 : If this function returns nil, the current match should not be skipped.
24150 : If the function decided to skip an agenda match, is must return the
24151 : buffer position from which the search should be continued.
24152 : This may also be a Lisp form, which will be evaluated.
24154 : This variable will be applied to every agenda match, including
24155 : tags/property searches and TODO lists.  So try to make the test function
24156 : do its checking as efficiently as possible.  To implement a skipping
24157 : condition just for specific agenda commands, use the variable
24158 : `org-agenda-skip-function' which can be set in the options section
24159 : of custom agenda commands.
24161 ** org-emphasis-alist =(funcall (function (closure (f...=
24162    :PROPERTIES:
24163    :CUSTOM_ID: org-emphasis-alist
24164    :END:
24166 - *Type:* (repeat (list (string :tag "Ma...
24167 - *Since:* Emacs version 24.4
24168 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24169 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-emphasis-alist][Find modifications in git logs]]
24171 : Alist of characters and faces to emphasize text.
24172 : Text starting and ending with a special character will be emphasized,
24173 : for example *bold*, _underlined_ and /italic/.  This variable sets the
24174 : marker characters and the face to be used by font-lock for highlighting
24175 : in Org buffers.
24177 : You need to reload Org or to restart Emacs after customizing this.
24179 ** org-ellipsis =(funcall (function (closure (f...=
24180    :PROPERTIES:
24181    :CUSTOM_ID: org-ellipsis
24182    :END:
24184 - *Type:* (choice (const :tag "Default" ...
24185 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24186 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ellipsis][Find modifications in git logs]]
24188 : The ellipsis to use in the Org mode outline.
24190 : When nil, just use the standard three dots.  When a non-empty string,
24191 : use that string instead.
24193 : The change affects only Org mode (which will then use its own display table).
24194 : Changing this requires executing `\[org-mode]' in a buffer to become
24195 : effective.
24197 ** org-html-klipse-js =(funcall (function (closure (h...=
24198    :PROPERTIES:
24199    :CUSTOM_ID: org-html-klipse-js
24200    :END:
24202 - *Type:* string
24203 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24204 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-klipse-js][Find modifications in git logs]]
24206 : Location of the klipse javascript file.
24208 ** orgtbl-optimized =(funcall (function (closure (o...=
24209    :PROPERTIES:
24210    :CUSTOM_ID: orgtbl-optimized
24211    :END:
24213 - *Type:* boolean
24214 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
24215 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-optimized][Find modifications in git logs]]
24217 : Non-nil means use the optimized table editor version for `orgtbl-mode'.
24218 : In the optimized version, the table editor takes over all simple keys that
24219 : normally just insert a character.  In tables, the characters are inserted
24220 : in a way to minimize disturbing the table structure (i.e. in overwrite mode
24221 : for empty fields).  Outside tables, the correct binding of the keys is
24222 : restored.
24224 : The default for this option is t if the optimized version is also used in
24225 : Org mode.  See the variable `org-enable-table-editor' for details.  Changing
24226 : this variable requires a restart of Emacs to become effective.
24228 ** org-ditaa-eps-jar-path =(funcall (function (closure (t...=
24229    :PROPERTIES:
24230    :CUSTOM_ID: org-ditaa-eps-jar-path
24231    :END:
24233 - *Type:* string
24234 - *Since:* Emacs version 24.4
24235 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ditaa.el][ob-ditaa.el]]
24236 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ditaa-eps-jar-path][Find modifications in git logs]]
24238 : Path to the DitaaEps.jar executable.
24240 ** org-agenda-default-appointment-duration =nil=
24241    :PROPERTIES:
24242    :CUSTOM_ID: org-agenda-default-appointment-duration
24243    :END:
24245 - *Type:* (choice (integer :tag "Minutes...
24246 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24247 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-default-appointment-duration][Find modifications in git logs]]
24249 : Default duration for appointments that only have a starting time.
24250 : When nil, no duration is specified in such cases.
24251 : When non-nil, this must be the number of minutes, e.g. 60 for one hour.
24253 ** org-habit-show-all-today =(funcall (function (closure (t...=
24254    :PROPERTIES:
24255    :CUSTOM_ID: org-habit-show-all-today
24256    :END:
24258 - *Type:* boolean
24259 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
24260 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-show-all-today][Find modifications in git logs]]
24262 : If non-nil, will show the consistency graph of all habits on
24263 : today's agenda, even if they are not scheduled.
24265 ** org-open-non-existing-files =(funcall (function (closure (f...=
24266    :PROPERTIES:
24267    :CUSTOM_ID: org-open-non-existing-files
24268    :END:
24270 - *Type:* boolean
24271 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24272 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-non-existing-files][Find modifications in git logs]]
24274 : Non-nil means `org-open-file' will open non-existing files.
24275 : When nil, an error will be generated.
24276 : This variable applies only to external applications because they
24277 : might choke on non-existing files.  If the link is to a file that
24278 : will be opened in Emacs, the variable is ignored.
24280 ** org-priority-faces =(funcall (function (closure (t...=
24281    :PROPERTIES:
24282    :CUSTOM_ID: org-priority-faces
24283    :END:
24285 - *Type:* (repeat (cons (character :tag ...
24286 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
24287 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority-faces][Find modifications in git logs]]
24289 : Faces for specific Priorities.
24290 : This is a list of cons cells, with priority character in the car
24291 : and faces in the cdr.  The face can be a symbol, a color as
24292 : as a string, or a property list of attributes, like
24293 :     (:foreground "blue" :weight bold :underline t).
24294 : If it is a color string, the variable `org-faces-easy-properties'
24295 : determines if it is a foreground or a background color.
24297 ** org-beamer-frame-default-options =(funcall (function (closure (t...=
24298    :PROPERTIES:
24299    :CUSTOM_ID: org-beamer-frame-default-options
24300    :END:
24302 - *Type:* (string :tag "[options]")
24303 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
24304 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-frame-default-options][Find modifications in git logs]]
24306 : Default options string to use for frames.
24307 : For example, it could be set to "allowframebreaks".
24309 ** org-man-tables-centered =(funcall (function (closure (o...=
24310    :PROPERTIES:
24311    :CUSTOM_ID: org-man-tables-centered
24312    :END:
24314 - *Type:* boolean
24315 - *Since:* Emacs version 24.4
24316 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
24317 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-tables-centered][Find modifications in git logs]]
24319 : When non-nil, tables are exported in a center environment.
24321 ** org-clock-goto-may-find-recent-task =(funcall (function (closure (t...=
24322    :PROPERTIES:
24323    :CUSTOM_ID: org-clock-goto-may-find-recent-task
24324    :END:
24326 - *Type:* boolean
24327 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
24328 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto-may-find-recent-task][Find modifications in git logs]]
24330 : Non-nil means `org-clock-goto' can go to recent task if no active clock.
24332 ** org-html-checkbox-type =(funcall (function (closure (h...=
24333    :PROPERTIES:
24334    :CUSTOM_ID: org-html-checkbox-type
24335    :END:
24337 - *Type:* (choice (const :tag "ASCII cha...
24338 - *Since:* Emacs version 24.4
24339 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24340 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-checkbox-type][Find modifications in git logs]]
24342 : The type of checkboxes to use for HTML export.
24343 : See `org-html-checkbox-types' for for the values used for each
24344 : option.
24346 ** org-koma-letter-use-backaddress =nil=
24347    :PROPERTIES:
24348    :CUSTOM_ID: org-koma-letter-use-backaddress
24349    :END:
24351 - *Type:* boolean
24352 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
24353 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-backaddress][Find modifications in git logs]]
24355 : Non-nil prints return address in line above to address.
24356 : This option can also be set with the OPTIONS keyword, e.g.:
24357 : "backaddress:t".
24359 ** org-latex-active-timestamp-format =(funcall (function (closure (t...=
24360    :PROPERTIES:
24361    :CUSTOM_ID: org-latex-active-timestamp-format
24362    :END:
24364 - *Type:* string
24365 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
24366 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-active-timestamp-format][Find modifications in git logs]]
24368 : A printf format string to be applied to active timestamps.
24370 ** org-texinfo-format-headline-function =(funcall (function (closure (t...=
24371    :PROPERTIES:
24372    :CUSTOM_ID: org-texinfo-format-headline-function
24373    :END:
24375 - *Type:* function
24376 - *Since:* Emacs version 26.1
24377 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
24378 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-format-headline-function][Find modifications in git logs]]
24380 : Function to format headline text.
24382 : This function will be called with 5 arguments:
24383 : TODO      the todo keyword (string or nil).
24384 : TODO-TYPE the type of todo (symbol: `todo', `done', nil)
24385 : PRIORITY  the priority of the headline (integer or nil)
24386 : TEXT      the main headline text (string).
24387 : TAGS      the tags as a list of strings (list of strings or nil).
24389 : The function result will be used in the section format string.
24391 ** org-html-klipse-selection-script =(funcall (function (closure (h...=
24392    :PROPERTIES:
24393    :CUSTOM_ID: org-html-klipse-selection-script
24394    :END:
24396 - *Type:* string
24397 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24398 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-klipse-selection-script][Find modifications in git logs]]
24400 : Javascript snippet to activate klipse.
24402 ** org-todo-repeat-to-state =(funcall (function (closure (f...=
24403    :PROPERTIES:
24404    :CUSTOM_ID: org-todo-repeat-to-state
24405    :END:
24407 - *Type:* (choice (const :tag "Head of s...
24408 - *Since:* Emacs version 24.1
24409 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24410 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-repeat-to-state][Find modifications in git logs]]
24412 : The TODO state to which a repeater should return the repeating task.
24413 : By default this is the first task in a TODO sequence, or the previous state
24414 : in a TODO_TYP set.  But you can specify another task here.
24415 : alternatively, set the :REPEAT_TO_STATE: property of the entry.
24417 ** org-ascii-bullets =(funcall (function (closure (t...=
24418    :PROPERTIES:
24419    :CUSTOM_ID: org-ascii-bullets
24420    :END:
24422 - *Type:* (list (cons :tag "Bullet chara...
24423 - *Since:* Emacs version 24.4
24424 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
24425 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-bullets][Find modifications in git logs]]
24427 : Bullet characters for headlines converted to lists in ASCII export.
24429 : Alist whose key is a symbol among `ascii', `latin1' and `utf-8'
24430 : and whose value is a list of characters.
24432 : The first character is used for the first level considered as low
24433 : level, and so on.  If there are more levels than characters given
24434 : here, the list will be repeated.
24436 : Note that this variable doesn't affect plain lists
24437 : representation.
24439 ** org-clock-persist-file =(funcall (function (closure (t...=
24440    :PROPERTIES:
24441    :CUSTOM_ID: org-clock-persist-file
24442    :END:
24444 - *Type:* string
24445 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
24446 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-persist-file][Find modifications in git logs]]
24448 : File to save clock data to.
24450 ** org-id-include-domain =(funcall (function (closure (t...=
24451    :PROPERTIES:
24452    :CUSTOM_ID: org-id-include-domain
24453    :END:
24455 - *Type:* boolean
24456 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
24457 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-include-domain][Find modifications in git logs]]
24459 : Non-nil means add the domain name to new IDs.
24460 : This ensures global uniqueness of IDs, and is also suggested by
24461 : RFC 2445 in combination with RFC 822.  This is only relevant if
24462 : `org-id-method' is `org'.  When uuidgen is used, the domain will never
24463 : be added.
24464 : The default is to not use this because we have no really good way to get
24465 : the true domain, and Org entries will normally not be shared with enough
24466 : people to make this necessary.
24468 ** org-columns-skip-archived-trees =(funcall (function (closure (t...=
24469    :PROPERTIES:
24470    :CUSTOM_ID: org-columns-skip-archived-trees
24471    :END:
24473 - *Type:* boolean
24474 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24475 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-skip-archived-trees][Find modifications in git logs]]
24477 : Non-nil means ignore archived trees when creating column view.
24479 ** org-table-exit-follow-field-mode-when-leaving-table =(funcall (function (closure (o...=
24480    :PROPERTIES:
24481    :CUSTOM_ID: org-table-exit-follow-field-mode-when-leaving-table
24482    :END:
24484 - *Type:* boolean
24485 - *Since:* Emacs version 24.1
24486 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
24487 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-exit-follow-field-mode-when-leaving-table][Find modifications in git logs]]
24489 : Non-nil means automatically exit the follow mode.
24490 : When nil, the follow mode will stay on and be active in any table
24491 : the cursor enters.  Since the table follow filed mode messes with the
24492 : window configuration, it is not recommended to set this variable to nil,
24493 : except maybe locally in a special file that has mostly tables with long
24494 : fields.
24496 ** org-checkbox-hierarchical-statistics =(funcall (function (closure (o...=
24497    :PROPERTIES:
24498    :CUSTOM_ID: org-checkbox-hierarchical-statistics
24499    :END:
24501 - *Type:* boolean
24502 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
24503 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-checkbox-hierarchical-statistics][Find modifications in git logs]]
24505 : Non-nil means checkbox statistics counts only the state of direct children.
24506 : When nil, all boxes below the cookie are counted.
24507 : This can be set to nil on a per-node basis using a COOKIE_DATA property
24508 : with the word "recursive" in the value.
24510 ** org-agenda-diary-sexp-prefix =nil=
24511    :PROPERTIES:
24512    :CUSTOM_ID: org-agenda-diary-sexp-prefix
24513    :END:
24515 - *Type:* (choice (const :tag "None" nil...
24516 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24517 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-diary-sexp-prefix][Find modifications in git logs]]
24519 : A regexp that matches part of a diary sexp entry
24520 : which should be treated as scheduling/deadline information in
24521 : `org-agenda'.
24523 : For example, you can use this to extract the `diary-remind-message' from
24524 : `diary-remind' entries.
24526 ** org-edit-fixed-width-region-mode =(funcall (function (closure (t...=
24527    :PROPERTIES:
24528    :CUSTOM_ID: org-edit-fixed-width-region-mode
24529    :END:
24531 - *Type:* (choice (const artist-mode) (c...
24532 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
24533 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-fixed-width-region-mode][Find modifications in git logs]]
24535 : The mode that should be used to edit fixed-width regions.
24536 : These are the regions where each line starts with a colon.
24538 ** org-agenda-day-face-function =nil=
24539    :PROPERTIES:
24540    :CUSTOM_ID: org-agenda-day-face-function
24541    :END:
24543 - *Type:* (choice (const nil) (function)...
24544 - *Since:* Emacs version 24.1
24545 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24546 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-day-face-function][Find modifications in git logs]]
24548 : Function called to determine what face should be used to display a day.
24549 : The only argument passed to that function is the day.  It should
24550 : returns a face, or nil if does not want to specify a face and let
24551 : the normal rules apply.
24553 ** org-sparse-tree-default-date-type =(funcall (function (closure (t...=
24554    :PROPERTIES:
24555    :CUSTOM_ID: org-sparse-tree-default-date-type
24556    :END:
24558 - *Type:* (choice (const :tag "Scheduled...
24559 - *Since:* Emacs version 26.1
24560 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24561 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sparse-tree-default-date-type][Find modifications in git logs]]
24563 : The default date type when building a sparse tree.
24564 : When this is nil, a date is a scheduled or a deadline timestamp.
24565 : Otherwise, these types are allowed:
24567 :         all: all timestamps
24568 :      active: only active timestamps (<...>)
24569 :    inactive: only inactive timestamps ([...])
24570 :   scheduled: only scheduled timestamps
24571 :    deadline: only deadline timestamps
24573 ** org-export-with-clocks =(funcall (function (closure (t...=
24574    :PROPERTIES:
24575    :CUSTOM_ID: org-export-with-clocks
24576    :END:
24578 - *Type:* boolean
24579 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
24580 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-clocks][Find modifications in git logs]]
24582 : Non-nil means export CLOCK keywords.
24583 : This option can also be set with the OPTIONS keyword,
24584 : e.g. "c:t".
24586 ** org-clock-idle-time =(funcall (function (closure (t...=
24587    :PROPERTIES:
24588    :CUSTOM_ID: org-clock-idle-time
24589    :END:
24591 - *Type:* (choice (const :tag "Never" ni...
24592 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
24593 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-idle-time][Find modifications in git logs]]
24595 : When non-nil, resolve open clocks if the user is idle more than X minutes.
24597 ** org-html-table-caption-above =(funcall (function (closure (h...=
24598    :PROPERTIES:
24599    :CUSTOM_ID: org-html-table-caption-above
24600    :END:
24602 - *Type:* boolean
24603 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24604 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-caption-above][Find modifications in git logs]]
24606 : When non-nil, place caption string at the beginning of the table.
24607 : Otherwise, place it near the end.
24609 ** org-clock-persist-query-resume =(funcall (function (closure (t...=
24610    :PROPERTIES:
24611    :CUSTOM_ID: org-clock-persist-query-resume
24612    :END:
24614 - *Type:* boolean
24615 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
24616 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-persist-query-resume][Find modifications in git logs]]
24618 : When non-nil, ask before resuming any stored clock during load.
24620 ** org-mobile-files-exclude-regexp =(funcall (function (closure (t...=
24621    :PROPERTIES:
24622    :CUSTOM_ID: org-mobile-files-exclude-regexp
24623    :END:
24625 - *Type:* regexp
24626 - *Since:* Emacs version 24.1
24627 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
24628 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-files-exclude-regexp][Find modifications in git logs]]
24630 : A regexp to exclude files from `org-mobile-files'.
24632 ** org-clone-delete-id =(funcall (function (closure (f...=
24633    :PROPERTIES:
24634    :CUSTOM_ID: org-clone-delete-id
24635    :END:
24637 - *Type:* boolean
24638 - *Since:* Emacs version 24.1
24639 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24640 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clone-delete-id][Find modifications in git logs]]
24642 : Remove ID property of clones of a subtree.
24643 : When non-nil, clones of a subtree don't inherit the ID property.
24644 : Otherwise they inherit the ID property with a new unique
24645 : identifier.
24647 ** org-agenda-restriction-lock-highlight-subtree =t=
24648    :PROPERTIES:
24649    :CUSTOM_ID: org-agenda-restriction-lock-highlight-subtree
24650    :END:
24652 - *Type:* boolean
24653 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
24654 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-restriction-lock-highlight-subtree][Find modifications in git logs]]
24656 : Non-nil means highlight the whole subtree when restriction is active.
24657 : Otherwise only highlight the headline.  Highlighting the whole subtree is
24658 : useful to ensure no edits happen beyond the restricted region.
24660 ** org-export-with-creator =(funcall (function (closure (t...=
24661    :PROPERTIES:
24662    :CUSTOM_ID: org-export-with-creator
24663    :END:
24665 - *Type:* boolean
24666 - *Since:* Emacs version 26.1
24667 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
24668 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-creator][Find modifications in git logs]]
24670 : Non-nil means the postamble should contain a creator sentence.
24672 : The sentence can be set in `org-export-creator-string', which
24673 : see.
24675 : This option can also be set with the OPTIONS keyword, e.g.,
24676 : "creator:t".
24678 ** org-latex-bib-compiler =(funcall (function (closure (t...=
24679    :PROPERTIES:
24680    :CUSTOM_ID: org-latex-bib-compiler
24681    :END:
24683 - *Type:* (choice (const :tag "BibTeX" "...
24684 - *Since:* Emacs version 26.1
24685 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
24686 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-bib-compiler][Find modifications in git logs]]
24688 : Command to process a LaTeX file's bibliography.
24690 : The shorthand %bib in `org-latex-pdf-process' is replaced with
24691 : this value.
24693 : A better approach is to use a compiler suit such as `latexmk'.
24695 ** org-cycle-global-at-bob =(funcall (function (closure (f...=
24696    :PROPERTIES:
24697    :CUSTOM_ID: org-cycle-global-at-bob
24698    :END:
24700 - *Type:* boolean
24701 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24702 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-global-at-bob][Find modifications in git logs]]
24704 : Cycle globally if cursor is at beginning of buffer and not at a headline.
24706 : This makes it possible to do global cycling without having to use `S-TAB'
24707 : or `\[universal-argument] TAB'.  For this special case to work, the first line of the buffer
24708 : must not be a headline -- it may be empty or some other text.
24710 : When used in this way, `org-cycle-hook' is disabled temporarily to make
24711 : sure the cursor stays at the beginning of the buffer.
24713 : When this option is nil, don't do anything special at the beginning of
24714 : the buffer.
24716 ** org-babel-clojure-sync-nrepl-timeout =(funcall (function (closure (t...=
24717    :PROPERTIES:
24718    :CUSTOM_ID: org-babel-clojure-sync-nrepl-timeout
24719    :END:
24721 - *Type:* integer
24722 - *Since:* Emacs version 26.1
24723 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-clojure.el][ob-clojure.el]]
24724 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-clojure-sync-nrepl-timeout][Find modifications in git logs]]
24726 : Timeout value, in seconds, of a Clojure sync call.
24727 : If the value is nil, timeout is disabled.
24729 ** orgstruct-heading-prefix-regexp =(funcall (function (closure (o...=
24730    :PROPERTIES:
24731    :CUSTOM_ID: orgstruct-heading-prefix-regexp
24732    :END:
24734 - *Type:* regexp
24735 - *Since:* Emacs version 24.4
24736 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24737 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-heading-prefix-regexp][Find modifications in git logs]]
24739 : Regexp that matches the custom prefix of Org headlines in
24740 : orgstruct(++)-mode.
24742 ** org-html-footnote-separator =(funcall (function (closure (h...=
24743    :PROPERTIES:
24744    :CUSTOM_ID: org-html-footnote-separator
24745    :END:
24747 - *Type:* string
24748 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24749 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-footnote-separator][Find modifications in git logs]]
24751 : Text used to separate footnotes.
24753 ** org-confirm-babel-evaluate =(funcall (function (closure (t...=
24754    :PROPERTIES:
24755    :CUSTOM_ID: org-confirm-babel-evaluate
24756    :END:
24758 - *Type:* (choice boolean function)
24759 - *Since:* Emacs version 24.1
24760 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
24761 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-confirm-babel-evaluate][Find modifications in git logs]]
24763 : Confirm before evaluation.
24764 : \<org-mode-map>Require confirmation before interactively evaluating code
24765 : blocks in Org buffers.  The default value of this variable is t,
24766 : meaning confirmation is required for any code block evaluation.
24767 : This variable can be set to nil to inhibit any future
24768 : confirmation requests.  This variable can also be set to a
24769 : function which takes two arguments the language of the code block
24770 : and the body of the code block.  Such a function should then
24771 : return a non-nil value if the user should be prompted for
24772 : execution or nil if no prompt is required.
24774 : Warning: Disabling confirmation may result in accidental
24775 : evaluation of potentially harmful code.  It may be advisable
24776 : remove code block execution from `\[org-ctrl-c-ctrl-c]' as further protection
24777 : against accidental code block evaluation.  The
24778 : `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to
24779 : remove code block execution from the `\[org-ctrl-c-ctrl-c]' keybinding.
24781 ** org-latex-listings-langs =(funcall (function (closure (t...=
24782    :PROPERTIES:
24783    :CUSTOM_ID: org-latex-listings-langs
24784    :END:
24786 - *Type:* (repeat (list (symbol :tag "Ma...
24787 - *Since:* Emacs version 24.4
24788 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
24789 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-listings-langs][Find modifications in git logs]]
24791 : Alist mapping languages to their listing language counterpart.
24792 : The key is a symbol, the major mode symbol without the "-mode".
24793 : The value is the string that should be inserted as the language
24794 : parameter for the listings package.  If the mode name and the
24795 : listings name are the same, the language does not need an entry
24796 : in this list - but it does not hurt if it is present.
24798 ** org-html-infojs-options =(funcall (function (closure (h...=
24799    :PROPERTIES:
24800    :CUSTOM_ID: org-html-infojs-options
24801    :END:
24803 - *Type:* (set :greedy t :inline t (cons...
24804 - *Since:* Emacs version 24.4
24805 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
24806 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-infojs-options][Find modifications in git logs]]
24808 : Options settings for the INFOJS JavaScript.
24809 : Each of the options must have an entry in `org-html-infojs-opts-table'.
24810 : The value can either be a string that will be passed to the script, or
24811 : a property.  This property is then assumed to be a property that is defined
24812 : by the Export/Publishing setup of Org.
24813 : The `sdepth' and `tdepth' parameters can also be set to "max", which
24814 : means to use the maximum value consistent with other options.
24816 ** org-agenda-text-search-extra-files =(funcall (function (closure (f...=
24817    :PROPERTIES:
24818    :CUSTOM_ID: org-agenda-text-search-extra-files
24819    :END:
24821 - *Type:* (set :greedy t (const :tag "Ag...
24822 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24823 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-text-search-extra-files][Find modifications in git logs]]
24825 : List of extra files to be searched by text search commands.
24826 : These files will be searched in addition to the agenda files by the
24827 : commands `org-search-view' (`\[org-agenda] s') and `org-occur-in-agenda-files'.
24828 : Note that these files will only be searched for text search commands,
24829 : not for the other agenda views like todo lists, tag searches or the weekly
24830 : agenda.  This variable is intended to list notes and possibly archive files
24831 : that should also be searched by these two commands.
24832 : In fact, if the first element in the list is the symbol `agenda-archives',
24833 : then all archive files of all agenda files will be added to the search
24834 : scope.
24836 ** org-special-ctrl-a/e =(funcall (function (closure (f...=
24837    :PROPERTIES:
24838    :CUSTOM_ID: org-special-ctrl-a/e
24839    :END:
24841 - *Type:* (choice (const :tag "off" nil)...
24842 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24843 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-special-ctrl-a/e][Find modifications in git logs]]
24845 : Non-nil means `C-a' and `C-e' behave specially in headlines and items.
24847 : When t, `C-a' will bring back the cursor to the beginning of the
24848 : headline text, i.e. after the stars and after a possible TODO
24849 : keyword.  In an item, this will be the position after bullet and
24850 : check-box, if any.  When the cursor is already at that position,
24851 : another `C-a' will bring it to the beginning of the line.
24853 : `C-e' will jump to the end of the headline, ignoring the presence
24854 : of tags in the headline.  A second `C-e' will then jump to the
24855 : true end of the line, after any tags.  This also means that, when
24856 : this variable is non-nil, `C-e' also will never jump beyond the
24857 : end of the heading of a folded section, i.e. not after the
24858 : ellipses.
24860 : When set to the symbol `reversed', the first `C-a' or `C-e' works
24861 : normally, going to the true line boundary first.  Only a directly
24862 : following, identical keypress will bring the cursor to the
24863 : special positions.
24865 : This may also be a cons cell where the behavior for `C-a' and
24866 : `C-e' is set separately.
24868 ** org-list-two-spaces-after-bullet-regexp =(funcall (function (closure (o...=
24869    :PROPERTIES:
24870    :CUSTOM_ID: org-list-two-spaces-after-bullet-regexp
24871    :END:
24873 - *Type:* (choice (const :tag "never" ni...
24874 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
24875 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-two-spaces-after-bullet-regexp][Find modifications in git logs]]
24877 : A regular expression matching bullets that should have 2 spaces after them.
24878 : When nil, no bullet will have two spaces after them.  When
24879 : a string, it will be used as a regular expression.  When the
24880 : bullet type of a list is changed, the new bullet type will be
24881 : matched against this regexp.  If it matches, there will be two
24882 : spaces instead of one after the bullet in each item of the list.
24884 ** org-koma-letter-class-option-file ="NF"=
24885    :PROPERTIES:
24886    :CUSTOM_ID: org-koma-letter-class-option-file
24887    :END:
24889 - *Type:* string
24890 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
24891 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-class-option-file][Find modifications in git logs]]
24893 : Letter Class Option File.
24894 : This option can also be set with the LCO keyword.
24896 ** org-latex-image-default-height =(funcall (function (closure (t...=
24897    :PROPERTIES:
24898    :CUSTOM_ID: org-latex-image-default-height
24899    :END:
24901 - *Type:* string
24902 - *Since:* Emacs version 24.4
24903 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
24904 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-image-default-height][Find modifications in git logs]]
24906 : Default height for images.
24907 : This value will not be used if a width is provided, or if the
24908 : image is wrapped within a "figure" or "wrapfigure"
24909 : environment.
24911 ** org-cycle-include-plain-lists =(funcall (function (closure (o...=
24912    :PROPERTIES:
24913    :CUSTOM_ID: org-cycle-include-plain-lists
24914    :END:
24916 - *Type:* (choice (const :tag "Never" ni...
24917 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
24918 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-include-plain-lists][Find modifications in git logs]]
24920 : When t, make TAB cycle visibility on plain list items.
24921 : Cycling plain lists works only when the cursor is on a plain list
24922 : item.  When the cursor is on an outline heading, plain lists are
24923 : treated as text.  This is the most stable way of handling this,
24924 : which is why it is the default.
24926 : When this is the symbol `integrate', then integrate plain list
24927 : items when cycling, as if they were children of outline headings.
24929 : This setting can lead to strange effects when switching visibility
24930 : to `children', because the first "child" in a subtree decides
24931 : what children should be listed.  If that first "child" is a
24932 : plain list item with an implied large level number, all true
24933 : children and grand children of the outline heading will be
24934 : exposed in a children' view.
24936 ** org-latex-link-with-unknown-path-format =(funcall (function (closure (t...=
24937    :PROPERTIES:
24938    :CUSTOM_ID: org-latex-link-with-unknown-path-format
24939    :END:
24941 - *Type:* string
24942 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
24943 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-link-with-unknown-path-format][Find modifications in git logs]]
24945 : Format string for links with unknown path type.
24947 ** org-feed-retrieve-method =(funcall (function (closure (t...=
24948    :PROPERTIES:
24949    :CUSTOM_ID: org-feed-retrieve-method
24950    :END:
24952 - *Type:* (choice (const :tag "Internall...
24953 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
24954 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-retrieve-method][Find modifications in git logs]]
24956 : The method to be used to retrieve a feed URL.
24957 : This can be `curl' or `wget' to call these external programs, or it can be
24958 : an Emacs Lisp function that will return a buffer containing the content
24959 : of the file pointed to by the URL.
24961 ** org-group-tags =(funcall (function (closure (t...=
24962    :PROPERTIES:
24963    :CUSTOM_ID: org-group-tags
24964    :END:
24966 - *Type:* boolean
24967 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
24968 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-group-tags][Find modifications in git logs]]
24970 : When non-nil (the default), use group tags.
24971 : This can be turned on/off through `org-toggle-tags-groups'.
24973 ** org-ascii-quote-margin =(funcall (function (closure (t...=
24974    :PROPERTIES:
24975    :CUSTOM_ID: org-ascii-quote-margin
24976    :END:
24978 - *Type:* integer
24979 - *Since:* Emacs version 24.4
24980 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
24981 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-quote-margin][Find modifications in git logs]]
24983 : Width of margin used for quoting text, in characters.
24984 : This margin is applied on both sides of the text.
24986 ** org-odt-display-outline-level =(funcall (function (closure (h...=
24987    :PROPERTIES:
24988    :CUSTOM_ID: org-odt-display-outline-level
24989    :END:
24991 - *Type:* integer
24992 - *Since:* Emacs version 24.4
24993 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
24994 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-display-outline-level][Find modifications in git logs]]
24996 : Outline levels considered for enumerating captioned entities.
24998 ** org-use-last-clock-out-time-as-effective-time =(funcall (function (closure (f...=
24999    :PROPERTIES:
25000    :CUSTOM_ID: org-use-last-clock-out-time-as-effective-time
25001    :END:
25003 - *Type:* boolean
25004 - *Since:* Emacs version 24.4
25005 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25006 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-last-clock-out-time-as-effective-time][Find modifications in git logs]]
25008 : When non-nil, use the last clock out time for `org-todo'.
25009 : Note that this option has precedence over the combined use of
25010 : `org-use-effective-time' and `org-extend-today-until'.
25012 ** org-effort-durations =(funcall (function (closure (o...=
25013    :PROPERTIES:
25014    :CUSTOM_ID: org-effort-durations
25015    :END:
25017 - *Type:* (alist :key-type (string :tag ...
25018 - *Since:* Emacs version 26.1
25019 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25020 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-effort-durations][Find modifications in git logs]]
25022 : Conversion factor to minutes for an effort modifier.
25024 : Each entry has the form (MODIFIER . MINUTES).
25026 : In an effort string, a number followed by MODIFIER is multiplied
25027 : by the specified number of MINUTES to obtain an effort in
25028 : minutes.
25030 : For example, if the value of this variable is (("hours" . 60)), then an
25031 : effort string "2hours" is equivalent to 120 minutes.
25033 ** org-babel-exp-code-template =(funcall (function (closure (t...=
25034    :PROPERTIES:
25035    :CUSTOM_ID: org-babel-exp-code-template
25036    :END:
25038 - *Type:* string
25039 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
25040 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-code-template][Find modifications in git logs]]
25042 : Template used to export the body of code blocks.
25043 : This template may be customized to include additional information
25044 : such as the code block name, or the values of particular header
25045 : arguments.  The template is filled out using `org-fill-template',
25046 : and the following %keys may be used.
25048 :  lang ------ the language of the code block
25049 :  name ------ the name of the code block
25050 :  body ------ the body of the code block
25051 :  switches -- the switches associated to the code block
25052 :  flags ----- the flags passed to the code block
25054 : In addition to the keys mentioned above, every header argument
25055 : defined for the code block may be used as a key and will be
25056 : replaced with its value.
25058 ** org-log-done =(funcall (function (closure (f...=
25059    :PROPERTIES:
25060    :CUSTOM_ID: org-log-done
25061    :END:
25063 - *Type:* (choice (const :tag "No loggin...
25064 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25065 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-done][Find modifications in git logs]]
25067 : Information to record when a task moves to the DONE state.
25069 : Possible values are:
25071 : nil     Don't add anything, just change the keyword
25072 : time    Add a time stamp to the task
25073 : note    Prompt for a note and add it with template `org-log-note-headings'
25075 : This option can also be set with on a per-file-basis with
25077 :    #+STARTUP: nologdone
25078 :    #+STARTUP: logdone
25079 :    #+STARTUP: lognotedone
25081 : You can have local logging settings for a subtree by setting the LOGGING
25082 : property to one or more of these keywords.
25084 ** org-agenda-todo-list-sublevels =t=
25085    :PROPERTIES:
25086    :CUSTOM_ID: org-agenda-todo-list-sublevels
25087    :END:
25089 - *Type:* boolean
25090 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25091 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-list-sublevels][Find modifications in git logs]]
25093 : Non-nil means check also the sublevels of a TODO entry for TODO entries.
25094 : When nil, the sublevels of a TODO entry are not checked, resulting in
25095 : potentially much shorter TODO lists.
25097 ** org-man-source-highlight-langs =(funcall (function (closure (o...=
25098    :PROPERTIES:
25099    :CUSTOM_ID: org-man-source-highlight-langs
25100    :END:
25102 - *Type:* (repeat (list (symbol :tag "Ma...
25103 - *Since:* Emacs version 24.4
25104 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
25105 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-source-highlight-langs][Find modifications in git logs]]
25107 : Alist mapping languages to their listing language counterpart.
25108 : The key is a symbol, the major mode symbol without the "-mode".
25109 : The value is the string that should be inserted as the language
25110 : parameter for the listings package.  If the mode name and the
25111 : listings name are the same, the language does not need an entry
25112 : in this list - but it does not hurt if it is present.
25114 ** org-archive-save-context-info =(funcall (function (closure (t...=
25115    :PROPERTIES:
25116    :CUSTOM_ID: org-archive-save-context-info
25117    :END:
25119 - *Type:* (set :greedy t (const :tag "Ti...
25120 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
25121 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-save-context-info][Find modifications in git logs]]
25123 : Parts of context info that should be stored as properties when archiving.
25124 : When a subtree is moved to an archive file, it loses information given by
25125 : context, like inherited tags, the category, and possibly also the TODO
25126 : state (depending on the variable `org-archive-mark-done').
25127 : This variable can be a list of any of the following symbols:
25129 : time       The time of archiving.
25130 : file       The file where the entry originates.
25131 : ltags      The local tags, in the headline of the subtree.
25132 : itags      The tags the subtree inherits from further up the hierarchy.
25133 : todo       The pre-archive TODO state.
25134 : category   The category, taken from file name or #+CATEGORY lines.
25135 : olpath     The outline path to the item.  These are all headlines above
25136 :            the current item, separated by /, like a file path.
25138 : For each symbol present in the list, a property will be created in
25139 : the archived entry, with a prefix "ARCHIVE_", to remember this
25140 : information.
25142 ** org-babel-tangle-uncomment-comments =(funcall (function (closure (t...=
25143    :PROPERTIES:
25144    :CUSTOM_ID: org-babel-tangle-uncomment-comments
25145    :END:
25147 - *Type:* boolean
25148 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
25149 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-uncomment-comments][Find modifications in git logs]]
25151 : Inhibits automatic commenting and addition of trailing newline
25152 : of tangle comments.  Use `org-babel-tangle-comment-format-beg'
25153 : and `org-babel-tangle-comment-format-end' to customize the format
25154 : of tangled comments.
25156 ** org-babel-groovy-command =(funcall (function (closure (t...=
25157    :PROPERTIES:
25158    :CUSTOM_ID: org-babel-groovy-command
25159    :END:
25161 - *Type:* string
25162 - *Since:* Emacs version 24.3
25163 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-groovy.el][ob-groovy.el]]
25164 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-groovy-command][Find modifications in git logs]]
25166 : Name of the command to use for executing Groovy code.
25167 : May be either a command in the path, like groovy
25168 : or an absolute path name, like /usr/local/bin/groovy
25169 : parameters may be used, like groovy -v
25171 ** org-attach-method =(funcall (function (closure (t...=
25172    :PROPERTIES:
25173    :CUSTOM_ID: org-attach-method
25174    :END:
25176 - *Type:* (choice (const :tag "Copy" cp)...
25177 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
25178 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-method][Find modifications in git logs]]
25180 : The preferred method to attach a file.
25181 : Allowed values are:
25183 : mv    rename the file to move it into the attachment directory
25184 : cp    copy the file
25185 : ln    create a hard link.  Note that this is not supported
25186 :       on all systems, and then the result is not defined.
25187 : lns   create a symbol link.  Note that this is not supported
25188 :       on all systems, and then the result is not defined.
25190 ** org-html-table-default-attributes =(funcall (function (closure (h...=
25191    :PROPERTIES:
25192    :CUSTOM_ID: org-html-table-default-attributes
25193    :END:
25195 - *Type:* (plist :key-type (symbol :tag ...
25196 - *Since:* Emacs version 24.4
25197 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
25198 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-default-attributes][Find modifications in git logs]]
25200 : Default attributes and values which will be used in table tags.
25201 : This is a plist where attributes are symbols, starting with
25202 : colons, and values are strings.
25204 : When exporting to HTML5, these values will be disregarded.
25206 ** org-attach-directory =(funcall (function (closure (t...=
25207    :PROPERTIES:
25208    :CUSTOM_ID: org-attach-directory
25209    :END:
25211 - *Type:* directory
25212 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
25213 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-directory][Find modifications in git logs]]
25215 : The directory where attachments are stored.
25216 : If this is a relative path, it will be interpreted relative to the directory
25217 : where the Org file lives.
25219 ** org-descriptive-links =(funcall (function (closure (f...=
25220    :PROPERTIES:
25221    :CUSTOM_ID: org-descriptive-links
25222    :END:
25224 - *Type:* boolean
25225 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25226 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-descriptive-links][Find modifications in git logs]]
25228 : Non-nil means Org will display descriptive links.
25229 : E.g. [[https://orgmode.org][Org website]] will be displayed as
25230 : "Org Website", hiding the link itself and just displaying its
25231 : description.  When set to nil, Org will display the full links
25232 : literally.
25234 : You can interactively set the value of this variable by calling
25235 : `org-toggle-link-display' or from the menu Org>Hyperlinks menu.
25237 ** org-plantuml-jar-path =(funcall (function (closure (t...=
25238    :PROPERTIES:
25239    :CUSTOM_ID: org-plantuml-jar-path
25240    :END:
25242 - *Type:* string
25243 - *Since:* Emacs version 24.1
25244 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-plantuml.el][ob-plantuml.el]]
25245 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plantuml-jar-path][Find modifications in git logs]]
25247 : Path to the plantuml.jar file.
25249 ** org-indent-boundary-char =(funcall (function (closure (t...=
25250    :PROPERTIES:
25251    :CUSTOM_ID: org-indent-boundary-char
25252    :END:
25254 - *Type:* character
25255 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
25256 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-boundary-char][Find modifications in git logs]]
25258 : The end of the virtual indentation strings, a single-character string.
25259 : The default is just a space, but if you wish, you can use "|" or so.
25260 : This can be useful on a terminal window - under a windowing system,
25261 : it may be prettier to customize the `org-indent' face.
25263 ** org-modules =(funcall (function (closure (f...=
25264    :PROPERTIES:
25265    :CUSTOM_ID: org-modules
25266    :END:
25268 - *Type:* (set :greedy t (const :tag "  ...
25269 - *Since:* Emacs version 24.4
25270 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25271 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-modules][Find modifications in git logs]]
25273 : Modules that should always be loaded together with org.el.
25275 : If a description starts with <C>, the file is not part of Emacs
25276 : and loading it will require that you have downloaded and properly
25277 : installed the Org mode distribution.
25279 : You can also use this system to load external packages (i.e. neither Org
25280 : core modules, nor modules from the CONTRIB directory).  Just add symbols
25281 : to the end of the list.  If the package is called org-xyz.el, then you need
25282 : to add the symbol `xyz', and the package must have a call to:
25284 :    (provide \='org-xyz)
25286 : For export specific modules, see also `org-export-backends'.
25288 ** org-default-priority =(funcall (function (closure (f...=
25289    :PROPERTIES:
25290    :CUSTOM_ID: org-default-priority
25291    :END:
25293 - *Type:* character
25294 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25295 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-default-priority][Find modifications in git logs]]
25297 : The default priority of TODO items.
25298 : This is the priority an item gets if no explicit priority is given.
25299 : When starting to cycle on an empty priority the first step in the cycle
25300 : depends on `org-priority-start-cycle-with-default'.  The resulting first
25301 : step priority must not exceed the range from `org-highest-priority' to
25302 : `org-lowest-priority' which means that `org-default-priority' has to be
25303 : in this range exclusive or inclusive the range boundaries.  Else the
25304 : first step refuses to set the default and the second will fall back
25305 : to (depending on the command used) the highest or lowest priority.
25307 ** org-icalendar-date-time-format =(funcall (function (closure (t...=
25308    :PROPERTIES:
25309    :CUSTOM_ID: org-icalendar-date-time-format
25310    :END:
25312 - *Type:* (choice (const :tag "Local tim...
25313 - *Since:* Emacs version 24.1
25314 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
25315 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-date-time-format][Find modifications in git logs]]
25317 : Format-string for exporting icalendar DATE-TIME.
25319 : See `format-time-string' for a full documentation.  The only
25320 : difference is that `org-icalendar-timezone' is used for %Z.
25322 : Interesting value are:
25323 :  - ":%Y%m%dT%H%M%S" for local time
25324 :  - ";TZID=%Z:%Y%m%dT%H%M%S" for local time with explicit timezone
25325 :  - ":%Y%m%dT%H%M%SZ" for time expressed in Universal Time
25327 ** org-beamer-outline-frame-options =(funcall (function (closure (t...=
25328    :PROPERTIES:
25329    :CUSTOM_ID: org-beamer-outline-frame-options
25330    :END:
25332 - *Type:* (string :tag "Outline frame op...
25333 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
25334 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-outline-frame-options][Find modifications in git logs]]
25336 : Outline frame options appended after \begin{frame}.
25337 : You might want to put e.g. "allowframebreaks=0.9" here.
25339 ** org-html-link-use-abs-url =(funcall (function (closure (h...=
25340    :PROPERTIES:
25341    :CUSTOM_ID: org-html-link-use-abs-url
25342    :END:
25344 - *Type:* boolean
25345 - *Since:* Emacs version 24.4
25346 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
25347 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-link-use-abs-url][Find modifications in git logs]]
25349 : Should we prepend relative links with HTML_LINK_HOME?
25351 ** org-catch-invisible-edits =(funcall (function (closure (f...=
25352    :PROPERTIES:
25353    :CUSTOM_ID: org-catch-invisible-edits
25354    :END:
25356 - *Type:* (choice (const :tag "Do not ch...
25357 - *Since:* Emacs version 24.1
25358 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25359 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-catch-invisible-edits][Find modifications in git logs]]
25361 : Check if in invisible region before inserting or deleting a character.
25362 : Valid values are:
25364 : nil              Do not check, so just do invisible edits.
25365 : error            Throw an error and do nothing.
25366 : show             Make point visible, and do the requested edit.
25367 : show-and-error   Make point visible, then throw an error and abort the edit.
25368 : smart            Make point visible, and do insertion/deletion if it is
25369 :                  adjacent to visible text and the change feels predictable.
25370 :                  Never delete a previously invisible character or add in the
25371 :                  middle or right after an invisible region.  Basically, this
25372 :                  allows insertion and backward-delete right before ellipses.
25373 :                  FIXME: maybe in this case we should not even show?
25375 ** org-agenda-view-columns-initially =nil=
25376    :PROPERTIES:
25377    :CUSTOM_ID: org-agenda-view-columns-initially
25378    :END:
25380 - *Type:* boolean
25381 - *Since:* Emacs version 26.1
25382 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25383 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-view-columns-initially][Find modifications in git logs]]
25385 : When non-nil, switch to columns view right after creating the agenda.
25387 ** org-fontify-emphasized-text =(funcall (function (closure (f...=
25388    :PROPERTIES:
25389    :CUSTOM_ID: org-fontify-emphasized-text
25390    :END:
25392 - *Type:* boolean
25393 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25394 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fontify-emphasized-text][Find modifications in git logs]]
25396 : Non-nil means fontify *bold*, /italic/ and _underlined_ text.
25397 : Changing this variable requires a restart of Emacs to take effect.
25399 ** org-confirm-shell-link-not-regexp =(funcall (function (closure (f...=
25400    :PROPERTIES:
25401    :CUSTOM_ID: org-confirm-shell-link-not-regexp
25402    :END:
25404 - *Type:* regexp
25405 - *Since:* Emacs version 24.1
25406 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25407 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-confirm-shell-link-not-regexp][Find modifications in git logs]]
25409 : A regexp to skip confirmation for shell links.
25411 ** org-id-extra-files =(funcall (function (closure (t...=
25412    :PROPERTIES:
25413    :CUSTOM_ID: org-id-extra-files
25414    :END:
25416 - *Type:* (choice (symbol :tag "Variable...
25417 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
25418 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-extra-files][Find modifications in git logs]]
25420 : Files to be searched for IDs, besides the agenda files.
25421 : When Org reparses files to remake the list of files and IDs it is tracking,
25422 : it will normally scan the agenda files, the archives related to agenda files,
25423 : any files that are listed as ID containing in the current register, and
25424 : any Org file currently visited by Emacs.
25425 : You can list additional files here.
25426 : This variable is only relevant when `org-id-track-globally' is set.
25428 ** org-export-initial-scope =(funcall (function (closure (t...=
25429    :PROPERTIES:
25430    :CUSTOM_ID: org-export-initial-scope
25431    :END:
25433 - *Type:* (choice (const :tag "Export cu...
25434 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
25435 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-initial-scope][Find modifications in git logs]]
25437 : The initial scope when exporting with `org-export-dispatch'.
25438 : This variable can be either set to `buffer' or `subtree'.
25440 ** org-use-speed-commands =(funcall (function (closure (f...=
25441    :PROPERTIES:
25442    :CUSTOM_ID: org-use-speed-commands
25443    :END:
25445 - *Type:* (choice (const :tag "Never" ni...
25446 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25447 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-speed-commands][Find modifications in git logs]]
25449 : Non-nil means activate single letter commands at beginning of a headline.
25450 : This may also be a function to test for appropriate locations where speed
25451 : commands should be active.
25453 : For example, to activate speed commands when the point is on any
25454 : star at the beginning of the headline, you can do this:
25456 :   (setq org-use-speed-commands
25457 :       (lambda () (and (looking-at org-outline-regexp) (looking-back "^\**"))))
25459 ** org-agenda-skip-comment-trees =t=
25460    :PROPERTIES:
25461    :CUSTOM_ID: org-agenda-skip-comment-trees
25462    :END:
25464 - *Type:* boolean
25465 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25466 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-comment-trees][Find modifications in git logs]]
25468 : Non-nil means skip trees that start with the COMMENT keyword.
25469 : When nil, these trees are also scanned by agenda commands.
25471 ** org-latex-default-packages-alist =(funcall (function (closure (f...=
25472    :PROPERTIES:
25473    :CUSTOM_ID: org-latex-default-packages-alist
25474    :END:
25476 - *Type:* (repeat (choice (list :tag "op...
25477 - *Since:* Emacs version 26.1
25478 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25479 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-packages-alist][Find modifications in git logs]]
25481 : Alist of default packages to be inserted in the header.
25483 : Change this only if one of the packages here causes an
25484 : incompatibility with another package you are using.
25486 : The packages in this list are needed by one part or another of
25487 : Org mode to function properly:
25489 : - inputenc, fontenc:  for basic font and character selection
25490 : - graphicx: for including images
25491 : - grffile: allow periods and spaces in graphics file names
25492 : - longtable: For multipage tables
25493 : - wrapfig: for figure placement
25494 : - rotating: for sideways figures and tables
25495 : - ulem: for underline and strike-through
25496 : - amsmath: for subscript and superscript and math environments
25497 : - textcomp, amssymb: for various symbols used
25498 :   for interpreting the entities in `org-entities'.  You can skip
25499 :   some of these packages if you don't use any of their symbols.
25500 : - capt-of: for captions outside of floats
25501 : - hyperref: for cross references
25503 : Therefore you should not modify this variable unless you know
25504 : what you are doing.  The one reason to change it anyway is that
25505 : you might be loading some other package that conflicts with one
25506 : of the default packages.  Each element is either a cell or
25507 : a string.
25509 : A cell is of the format
25511 :   ("options" "package" SNIPPET-FLAG COMPILERS)
25513 : If SNIPPET-FLAG is non-nil, the package also needs to be included
25514 : when compiling LaTeX snippets into images for inclusion into
25515 : non-LaTeX output.  COMPILERS is a list of compilers that should
25516 : include the package, see `org-latex-compiler'.  If the document
25517 : compiler is not in the list, and the list is non-nil, the package
25518 : will not be inserted in the final document.
25520 : A string will be inserted as-is in the header of the document.
25522 ** org-export-with-email =(funcall (function (closure (t...=
25523    :PROPERTIES:
25524    :CUSTOM_ID: org-export-with-email
25525    :END:
25527 - *Type:* boolean
25528 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
25529 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-email][Find modifications in git logs]]
25531 : Non-nil means insert author email into the exported file.
25532 : This option can also be set with the OPTIONS keyword,
25533 : e.g. "email:t".
25535 ** org-rss-extension ="xml"=
25536    :PROPERTIES:
25537    :CUSTOM_ID: org-rss-extension
25538    :END:
25540 - *Type:* string
25541 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]]
25542 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-extension][Find modifications in git logs]]
25544 : File extension for the RSS 2.0 feed.
25546 ** org-bibtex-export-arbitrary-fields =(funcall (function (closure (t...=
25547    :PROPERTIES:
25548    :CUSTOM_ID: org-bibtex-export-arbitrary-fields
25549    :END:
25551 - *Type:* boolean
25552 - *Since:* Emacs version 24.1
25553 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
25554 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-export-arbitrary-fields][Find modifications in git logs]]
25556 : When converting to bibtex allow fields not defined in `org-bibtex-fields'.
25557 : This only has effect if `org-bibtex-prefix' is defined, so as to
25558 : ensure that other org-properties, such as CATEGORY or LOGGING are
25559 : not placed in the exported bibtex entry.
25561 ** org-agenda-persistent-marks =nil=
25562    :PROPERTIES:
25563    :CUSTOM_ID: org-agenda-persistent-marks
25564    :END:
25566 - *Type:* boolean
25567 - *Since:* Emacs version 24.1
25568 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25569 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-persistent-marks][Find modifications in git logs]]
25571 : Non-nil means marked items will stay marked after a bulk action.
25572 : You can toggle this interactively by typing `p' when prompted for a
25573 : bulk action.
25575 ** org-latex-inputenc-alist =(funcall (function (closure (t...=
25576    :PROPERTIES:
25577    :CUSTOM_ID: org-latex-inputenc-alist
25578    :END:
25580 - *Type:* (repeat (cons (string :tag "De...
25581 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
25582 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-inputenc-alist][Find modifications in git logs]]
25584 : Alist of inputenc coding system names, and what should really be used.
25585 : For example, adding an entry
25587 :       ("utf8" . "utf8x")
25589 : will cause \usepackage[utf8x]{inputenc} to be used for buffers that
25590 : are written as utf8 files.
25592 ** org-scheduled-past-days =10000=
25593    :PROPERTIES:
25594    :CUSTOM_ID: org-scheduled-past-days
25595    :END:
25597 - *Type:* integer
25598 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25599 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-scheduled-past-days][Find modifications in git logs]]
25601 : Number of days to continue listing scheduled items not marked DONE.
25602 : When an item is scheduled on a date, it shows up in the agenda on
25603 : this day and will be listed until it is marked done or for the
25604 : number of days given here.
25606 ** org-attach-annex-auto-get =(funcall (function (closure (t...=
25607    :PROPERTIES:
25608    :CUSTOM_ID: org-attach-annex-auto-get
25609    :END:
25611 - *Type:* (choice (const :tag "confirm w...
25612 - *Since:* Emacs version 26.1
25613 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
25614 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-annex-auto-get][Find modifications in git logs]]
25616 : Confirmation preference for automatically getting annex files.
25617 : If \='ask, prompt using `y-or-n-p'.  If t, always get.  If nil, never get.
25619 ** org-format-latex-options =(funcall (function (closure (f...=
25620    :PROPERTIES:
25621    :CUSTOM_ID: org-format-latex-options
25622    :END:
25624 - *Type:* plist
25625 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25626 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-format-latex-options][Find modifications in git logs]]
25628 : Options for creating images from LaTeX fragments.
25629 : This is a property list with the following properties:
25630 : :foreground  the foreground color for images embedded in Emacs, e.g. "Black".
25631 :              `default' means use the foreground of the default face.
25632 :              `auto' means use the foreground from the text face.
25633 : :background  the background color, or "Transparent".
25634 :              `default' means use the background of the default face.
25635 :              `auto' means use the background from the text face.
25636 : :scale       a scaling factor for the size of the images, to get more pixels
25637 : :html-foreground, :html-background, :html-scale
25638 :              the same numbers for HTML export.
25639 : :matchers    a list indicating which matchers should be used to
25640 :              find LaTeX fragments.  Valid members of this list are:
25641 :              "begin" find environments
25642 :              "$1"    find single characters surrounded by $.$
25643 :              "$"     find math expressions surrounded by $...$
25644 :              "$$"    find math expressions surrounded by $$....$$
25645 :              "\("    find math expressions surrounded by \(...\)
25646 :              "\=\["    find math expressions surrounded by \=\[...\]
25648 ** org-babel-lisp-eval-fn =(funcall (function (closure (t...=
25649    :PROPERTIES:
25650    :CUSTOM_ID: org-babel-lisp-eval-fn
25651    :END:
25653 - *Type:* function
25654 - *Since:* Emacs version 26.1
25655 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lisp.el][ob-lisp.el]]
25656 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lisp-eval-fn][Find modifications in git logs]]
25658 : The function to be called to evaluate code on the Lisp side.
25659 : Valid values include `slime-eval' and `sly-eval'.
25661 ** org-latex-compiler-file-string =(funcall (function (closure (t...=
25662    :PROPERTIES:
25663    :CUSTOM_ID: org-latex-compiler-file-string
25664    :END:
25666 - *Type:* (choice (const :tag "Comment" ...
25667 - *Since:* Emacs version 26.1
25668 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
25669 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-compiler-file-string][Find modifications in git logs]]
25671 : LaTeX compiler format-string.
25672 : See also `org-latex-compiler'.
25674 ** org-texinfo-logfiles-extensions =(funcall (function (closure (t...=
25675    :PROPERTIES:
25676    :CUSTOM_ID: org-texinfo-logfiles-extensions
25677    :END:
25679 - *Type:* (repeat (string :tag "Extensio...
25680 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
25681 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-logfiles-extensions][Find modifications in git logs]]
25683 : The list of file extensions to consider as Texinfo logfiles.
25684 : The logfiles will be remove if `org-texinfo-remove-logfiles' is
25685 : non-nil.
25687 ** org-export-global-macros =(funcall (function (closure (t...=
25688    :PROPERTIES:
25689    :CUSTOM_ID: org-export-global-macros
25690    :END:
25692 - *Type:* (repeat (cons (string :tag "Na...
25693 - *Since:* Emacs version 26.1
25694 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
25695 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-global-macros][Find modifications in git logs]]
25697 : Alist between macro names and expansion templates.
25699 : This variable defines macro expansion templates available
25700 : globally.  Associations follow the pattern
25702 :   (NAME . TEMPLATE)
25704 : where NAME is a string beginning with a letter and consisting of
25705 : alphanumeric characters only.
25707 : TEMPLATE is the string to which the macro is going to be
25708 : expanded.  Inside, "$1", "$2"... are place-holders for
25709 : macro's arguments.  Moreover, if the template starts with
25710 : "(eval", it will be parsed as an Elisp expression and evaluated
25711 : accordingly.
25713 ** org-ascii-table-widen-columns =(funcall (function (closure (t...=
25714    :PROPERTIES:
25715    :CUSTOM_ID: org-ascii-table-widen-columns
25716    :END:
25718 - *Type:* boolean
25719 - *Since:* Emacs version 24.4
25720 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
25721 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-table-widen-columns][Find modifications in git logs]]
25723 : Non-nil means widen narrowed columns for export.
25724 : When nil, narrowed columns will look in ASCII export just like in
25725 : Org mode, i.e. with "=>" as ellipsis.
25727 ** org-agenda-confirm-kill =1=
25728    :PROPERTIES:
25729    :CUSTOM_ID: org-agenda-confirm-kill
25730    :END:
25732 - *Type:* (choice (const :tag "Never" ni...
25733 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25734 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-confirm-kill][Find modifications in git logs]]
25736 : When set, remote killing from the agenda buffer needs confirmation.
25737 : When t, a confirmation is always needed.  When a number N, confirmation is
25738 : only needed when the text to be killed contains more than N non-white lines.
25740 ** org-habit-today-glyph =(funcall (function (closure (t...=
25741    :PROPERTIES:
25742    :CUSTOM_ID: org-habit-today-glyph
25743    :END:
25745 - *Type:* character
25746 - *Since:* Emacs version 24.1
25747 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
25748 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-today-glyph][Find modifications in git logs]]
25750 : Glyph character used to identify today.
25752 ** org-mobile-files =(funcall (function (closure (t...=
25753    :PROPERTIES:
25754    :CUSTOM_ID: org-mobile-files
25755    :END:
25757 - *Type:* (list :greedy t (option (const...
25758 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
25759 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-files][Find modifications in git logs]]
25761 : Files to be staged for MobileOrg.
25762 : This is basically a list of files and directories.  Files will be staged
25763 : directly.  Directories will be search for files with the extension `.org'.
25764 : In addition to this, the list may also contain the following symbols:
25766 : org-agenda-files
25767 :      This means include the complete, unrestricted list of files given in
25768 :      the variable `org-agenda-files'.
25769 : org-agenda-text-search-extra-files
25770 :      Include the files given in the variable
25771 :      `org-agenda-text-search-extra-files'
25773 ** org-babel-java-command =(funcall (function (closure (t...=
25774    :PROPERTIES:
25775    :CUSTOM_ID: org-babel-java-command
25776    :END:
25778 - *Type:* string
25779 - *Since:* Emacs version 24.3
25780 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-java.el][ob-java.el]]
25781 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-java-command][Find modifications in git logs]]
25783 : Name of the java command.
25784 : May be either a command in the path, like java
25785 : or an absolute path name, like /usr/local/bin/java
25786 : parameters may be used, like java -verbose
25788 ** org-tab-follows-link =(funcall (function (closure (f...=
25789    :PROPERTIES:
25790    :CUSTOM_ID: org-tab-follows-link
25791    :END:
25793 - *Type:* boolean
25794 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25795 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-follows-link][Find modifications in git logs]]
25797 : Non-nil means on links TAB will follow the link.
25798 : Needs to be set before org.el is loaded.
25799 : This really should not be used, it does not make sense, and the
25800 : implementation is bad.
25802 ** org-enable-priority-commands =(funcall (function (closure (f...=
25803    :PROPERTIES:
25804    :CUSTOM_ID: org-enable-priority-commands
25805    :END:
25807 - *Type:* boolean
25808 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25809 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-enable-priority-commands][Find modifications in git logs]]
25811 : Non-nil means priority commands are active.
25812 : When nil, these commands will be disabled, so that you never accidentally
25813 : set a priority.
25815 ** org-babel-java-compiler =(funcall (function (closure (t...=
25816    :PROPERTIES:
25817    :CUSTOM_ID: org-babel-java-compiler
25818    :END:
25820 - *Type:* string
25821 - *Since:* Emacs version 24.3
25822 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-java.el][ob-java.el]]
25823 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-java-compiler][Find modifications in git logs]]
25825 : Name of the java compiler.
25826 : May be either a command in the path, like javac
25827 : or an absolute path name, like /usr/local/bin/javac
25828 : parameters may be used, like javac -verbose
25830 ** org-indent-indentation-per-level =(funcall (function (closure (t...=
25831    :PROPERTIES:
25832    :CUSTOM_ID: org-indent-indentation-per-level
25833    :END:
25835 - *Type:* integer
25836 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
25837 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-indentation-per-level][Find modifications in git logs]]
25839 : Indentation per level in number of characters.
25841 ** org-odt-with-latex =(funcall (function (closure (h...=
25842    :PROPERTIES:
25843    :CUSTOM_ID: org-odt-with-latex
25844    :END:
25846 - *Type:* (choice (const :tag "Do not pr...
25847 - *Since:* Emacs version 24.4
25848 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
25849 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-with-latex][Find modifications in git logs]]
25851 : Non-nil means process LaTeX math snippets.
25853 : When set, the exporter will process LaTeX environments and
25854 : fragments.
25856 : This option can also be set with the +OPTIONS line,
25857 : e.g. "tex:mathjax".  Allowed values are:
25859 : nil            Ignore math snippets.
25860 : `verbatim'     Keep everything in verbatim
25861 : `dvipng'       Process the LaTeX fragments to images.  This will also
25862 :                include processing of non-math environments.
25863 : `imagemagick'  Convert the LaTeX fragments to pdf files and use
25864 :                imagemagick to convert pdf files to png files.
25865 : `mathjax'      Do MathJax preprocessing and arrange for MathJax.js to
25866 :                be loaded.
25867 : t              Synonym for `mathjax'.
25869 ** org-habit-show-habits =(funcall (function (closure (t...=
25870    :PROPERTIES:
25871    :CUSTOM_ID: org-habit-show-habits
25872    :END:
25874 - *Type:* boolean
25875 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
25876 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-show-habits][Find modifications in git logs]]
25878 : If non-nil, show habits in agenda buffers.
25880 ** org-agenda-weekend-days =(quote (6 0))=
25881    :PROPERTIES:
25882    :CUSTOM_ID: org-agenda-weekend-days
25883    :END:
25885 - *Type:* (set :greedy t (const :tag "Mo...
25886 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25887 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-weekend-days][Find modifications in git logs]]
25889 : Which days are weekend?
25890 : These days get the special face `org-agenda-date-weekend' in the agenda
25891 : and timeline buffers.
25893 ** org-habit-preceding-days =(funcall (function (closure (t...=
25894    :PROPERTIES:
25895    :CUSTOM_ID: org-habit-preceding-days
25896    :END:
25898 - *Type:* integer
25899 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]]
25900 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-preceding-days][Find modifications in git logs]]
25902 : Number of days before today to appear in consistency graphs.
25904 ** org-texinfo-coding-system =(funcall (function (closure (t...=
25905    :PROPERTIES:
25906    :CUSTOM_ID: org-texinfo-coding-system
25907    :END:
25909 - *Type:* coding-system
25910 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
25911 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-coding-system][Find modifications in git logs]]
25913 : Default document encoding for Texinfo output.
25915 : If nil it will default to `buffer-file-coding-system'.
25917 ** org-yank-adjusted-subtrees =(funcall (function (closure (f...=
25918    :PROPERTIES:
25919    :CUSTOM_ID: org-yank-adjusted-subtrees
25920    :END:
25922 - *Type:* boolean
25923 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
25924 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-yank-adjusted-subtrees][Find modifications in git logs]]
25926 : Non-nil means when yanking subtrees, adjust the level.
25927 : With this setting, `org-paste-subtree' is used to insert the subtree, see
25928 : this function for details.
25930 ** org-id-locations-file =(funcall (function (closure (t...=
25931    :PROPERTIES:
25932    :CUSTOM_ID: org-id-locations-file
25933    :END:
25935 - *Type:* file
25936 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
25937 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-locations-file][Find modifications in git logs]]
25939 : The file for remembering in which file an ID was defined.
25940 : This variable is only relevant when `org-id-track-globally' is set.
25942 ** org-agenda-deadline-leaders =(quote ("Deadline:  " "In %3d ...=
25943    :PROPERTIES:
25944    :CUSTOM_ID: org-agenda-deadline-leaders
25945    :END:
25947 - *Type:* (list (string :tag "Deadline t...
25948 - *Since:* Emacs version 24.4
25949 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
25950 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-deadline-leaders][Find modifications in git logs]]
25952 : Text preceding deadline items in the agenda view.
25953 : This is a list with three strings.  The first applies when the item has its
25954 : deadline on the current day.  The second applies when the deadline is in the
25955 : future, the third one when it is in the past.  The strings may contain %d
25956 : to capture the number of days.
25958 ** org-clock-goto-before-context =(funcall (function (closure (t...=
25959    :PROPERTIES:
25960    :CUSTOM_ID: org-clock-goto-before-context
25961    :END:
25963 - *Type:* integer
25964 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
25965 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto-before-context][Find modifications in git logs]]
25967 : Number of lines of context to display before currently clocked-in entry.
25968 : This applies when using `org-clock-goto'.
25970 ** org-html-head-extra =(funcall (function (closure (h...=
25971    :PROPERTIES:
25972    :CUSTOM_ID: org-html-head-extra
25973    :END:
25975 - *Type:* string
25976 - *Since:* Emacs version 24.4
25977 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
25978 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-head-extra][Find modifications in git logs]]
25980 : More head information to add in the HTML output.
25982 : You can set this on a per-file basis using #+HTML_HEAD_EXTRA:,
25983 : or for publication projects using the :html-head-extra property.
25985 ** org-babel-latex-htlatex =(funcall (function (closure (t...=
25986    :PROPERTIES:
25987    :CUSTOM_ID: org-babel-latex-htlatex
25988    :END:
25990 - *Type:* string
25991 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-latex.el][ob-latex.el]]
25992 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-latex-htlatex][Find modifications in git logs]]
25994 : The htlatex command to enable conversion of latex to SVG or HTML.
25996 ** org-latex-table-scientific-notation =(funcall (function (closure (t...=
25997    :PROPERTIES:
25998    :CUSTOM_ID: org-latex-table-scientific-notation
25999    :END:
26001 - *Type:* (choice (string :tag "Format s...
26002 - *Since:* Emacs version 24.4
26003 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
26004 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-table-scientific-notation][Find modifications in git logs]]
26006 : Format string to display numbers in scientific notation.
26007 : The format should have "%s" twice, for mantissa and exponent
26008 : (i.e., "%s\\times10^{%s}").
26010 : When nil, no transformation is made.
26012 ** org-texinfo-format-inlinetask-function =(funcall (function (closure (t...=
26013    :PROPERTIES:
26014    :CUSTOM_ID: org-texinfo-format-inlinetask-function
26015    :END:
26017 - *Type:* function
26018 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
26019 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-format-inlinetask-function][Find modifications in git logs]]
26021 : Function called to format an inlinetask in Texinfo code.
26023 : The function must accept six parameters:
26024 :   TODO      the todo keyword, as a string
26025 :   TODO-TYPE the todo type, a symbol among `todo', `done' and nil.
26026 :   PRIORITY  the inlinetask priority, as a string
26027 :   NAME      the inlinetask name, as a string.
26028 :   TAGS      the inlinetask tags, as a list of strings.
26029 :   CONTENTS  the contents of the inlinetask, as a string.
26031 : The function should return the string to be exported.
26033 ** org-koma-letter-place =""=
26034    :PROPERTIES:
26035    :CUSTOM_ID: org-koma-letter-place
26036    :END:
26038 - *Type:* string
26039 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
26040 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-place][Find modifications in git logs]]
26042 : Place from which the letter is sent, as a string.
26043 : This option can also be set with the PLACE keyword.
26045 ** org-sparse-tree-open-archived-trees =(funcall (function (closure (t...=
26046    :PROPERTIES:
26047    :CUSTOM_ID: org-sparse-tree-open-archived-trees
26048    :END:
26050 - *Type:* boolean
26051 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26052 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sparse-tree-open-archived-trees][Find modifications in git logs]]
26054 : Non-nil means sparse tree construction shows matches in archived trees.
26055 : When nil, matches in these trees are highlighted, but the trees are kept in
26056 : collapsed state.
26058 ** org-attach-commit =(funcall (function (closure (t...=
26059    :PROPERTIES:
26060    :CUSTOM_ID: org-attach-commit
26061    :END:
26063 - *Type:* boolean
26064 - *Since:* Emacs version 26.1
26065 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
26066 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-commit][Find modifications in git logs]]
26068 : If non-nil commit attachments with git.
26069 : This is only done if the Org file is in a git repository.
26071 ** org-todo-keyword-faces =(funcall (function (closure (t...=
26072    :PROPERTIES:
26073    :CUSTOM_ID: org-todo-keyword-faces
26074    :END:
26076 - *Type:* (repeat (cons (string :tag "Ke...
26077 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
26078 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-keyword-faces][Find modifications in git logs]]
26080 : Faces for specific TODO keywords.
26081 : This is a list of cons cells, with TODO keywords in the car
26082 : and faces in the cdr.  The face can be a symbol, a color
26083 : as a string (in which case the rest is inherited from the `org-todo' face),
26084 : or a property list of attributes, like
26085 :    (:foreground "blue" :weight bold :underline t).
26086 : If it is a color string, the variable `org-faces-easy-properties'
26087 : determines if it is a foreground or a background color.
26089 ** org-agenda-search-view-force-full-words =nil=
26090    :PROPERTIES:
26091    :CUSTOM_ID: org-agenda-search-view-force-full-words
26092    :END:
26094 - *Type:* boolean
26095 - *Since:* Emacs version 24.1
26096 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26097 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-search-view-force-full-words][Find modifications in git logs]]
26099 : Non-nil means, search words must be matches as complete words.
26100 : When nil, they may also match part of a word.
26102 ** org-icalendar-timezone =(funcall (function (closure (t...=
26103    :PROPERTIES:
26104    :CUSTOM_ID: org-icalendar-timezone
26105    :END:
26107 - *Type:* (choice (const :tag "Unspecifi...
26108 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
26109 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-timezone][Find modifications in git logs]]
26111 : The time zone string for iCalendar export.
26112 : When nil or the empty string, use output
26113 : from (current-time-zone).
26115 ** org-open-directory-means-index-dot-org =(funcall (function (closure (f...=
26116    :PROPERTIES:
26117    :CUSTOM_ID: org-open-directory-means-index-dot-org
26118    :END:
26120 - *Type:* boolean
26121 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26122 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-directory-means-index-dot-org][Find modifications in git logs]]
26124 : Non-nil means a link to a directory really means to index.org.
26125 : When nil, following a directory link will run dired or open a finder/explorer
26126 : window on that directory.
26128 ** org-footnote-fill-after-inline-note-extraction =(funcall (function (closure (t...=
26129    :PROPERTIES:
26130    :CUSTOM_ID: org-footnote-fill-after-inline-note-extraction
26131    :END:
26133 - *Type:* boolean
26134 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
26135 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-fill-after-inline-note-extraction][Find modifications in git logs]]
26137 : Non-nil means fill paragraphs after extracting footnotes.
26138 : When extracting inline footnotes, the lengths of lines can change a lot.
26139 : When this option is set, paragraphs from which an inline footnote has been
26140 : extracted will be filled again.
26142 ** org-calendar-insert-diary-entry-key =(funcall (function (closure (f...=
26143    :PROPERTIES:
26144    :CUSTOM_ID: org-calendar-insert-diary-entry-key
26145    :END:
26147 - *Type:* sexp
26148 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26149 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-insert-diary-entry-key][Find modifications in git logs]]
26151 : The key to be installed in `calendar-mode-map' for adding diary entries.
26152 : This option is irrelevant until `org-agenda-diary-file' has been configured
26153 : to point to an Org file.  When that is the case, the command
26154 : `org-agenda-diary-entry' will be bound to the key given here, by default
26155 : `i'.  In the calendar, `i' normally adds entries to `diary-file'.  So
26156 : if you want to continue doing this, you need to change this to a different
26157 : key.
26159 ** org-beamer-frame-level =(funcall (function (closure (t...=
26160    :PROPERTIES:
26161    :CUSTOM_ID: org-beamer-frame-level
26162    :END:
26164 - *Type:* integer
26165 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
26166 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-frame-level][Find modifications in git logs]]
26168 : The level at which headlines become frames.
26170 : Headlines at a lower level will be translated into a sectioning
26171 : structure.  At a higher level, they will be translated into
26172 : blocks.
26174 : If a headline with a "BEAMER_env" property set to "frame" is
26175 : found within a tree, its level locally overrides this number.
26177 : This variable has no effect on headlines with the "BEAMER_env"
26178 : property set to either "ignoreheading", "appendix", or
26179 : "note", which will respectively, be invisible, become an
26180 : appendix or a note.
26182 : This integer is relative to the minimal level of a headline
26183 : within the parse tree, defined as 1.
26185 ** org-latex-prefer-user-labels =(funcall (function (closure (t...=
26186    :PROPERTIES:
26187    :CUSTOM_ID: org-latex-prefer-user-labels
26188    :END:
26190 - *Type:* boolean
26191 - *Since:* Emacs version 26.1
26192 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
26193 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-prefer-user-labels][Find modifications in git logs]]
26195 : Use user-provided labels instead of internal ones when non-nil.
26197 : When this variable is non-nil, Org will use the value of
26198 : CUSTOM_ID property, NAME keyword or Org target as the key for the
26199 : \label commands generated.
26201 : By default, Org generates its own internal labels during LaTeX
26202 : export.  This process ensures that the \label keys are unique
26203 : and valid, but it means the keys are not available in advance of
26204 : the export process.
26206 : Setting this variable gives you control over how Org generates
26207 : labels during LaTeX export, so that you may know their keys in
26208 : advance.  One reason to do this is that it allows you to refer to
26209 : various elements using a single label both in Org's link syntax
26210 : and in embedded LaTeX code.
26212 : For example, when this variable is non-nil, a headline like this:
26214 :   ** Some section
26215 :      :PROPERTIES:
26216 :      :CUSTOM_ID: sec:foo
26217 :      :END:
26218 :   This is section [[#sec:foo]].
26219 :   #+BEGIN_EXPORT latex
26220 :   And this is still section \ref{sec:foo}.
26221 :   #+END_EXPORT
26223 : will be exported to LaTeX as:
26225 :   \subsection{Some section}
26226 :   \label{sec:foo}
26227 :   This is section \ref{sec:foo}.
26228 :   And this is still section \ref{sec:foo}.
26230 : Note, however, that setting this variable introduces a limitation
26231 : on the possible values for CUSTOM_ID and NAME.  When this
26232 : variable is non-nil, Org passes their value to \label unchanged.
26233 : You are responsible for ensuring that the value is a valid LaTeX
26234 : \label key, and that no other \label commands with the same key
26235 : appear elsewhere in your document.  (Keys may contain letters,
26236 : numbers, and the following punctuation: '_' '.'  '-' ':'.)  There
26237 : are no such limitations on CUSTOM_ID and NAME when this variable
26238 : is nil.
26240 : For headlines that do not define the CUSTOM_ID property or
26241 : elements without a NAME, Org will continue to use its default
26242 : labeling scheme to generate labels and resolve links into proper
26243 : references.
26245 ** org-html-klipse-css =(funcall (function (closure (h...=
26246    :PROPERTIES:
26247    :CUSTOM_ID: org-html-klipse-css
26248    :END:
26250 - *Type:* string
26251 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
26252 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-klipse-css][Find modifications in git logs]]
26254 : Location of the codemirror CSS file for use with klipse.
26256 ** org-export-with-tasks =(funcall (function (closure (t...=
26257    :PROPERTIES:
26258    :CUSTOM_ID: org-export-with-tasks
26259    :END:
26261 - *Type:* (choice (const :tag "All tasks...
26262 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
26263 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-tasks][Find modifications in git logs]]
26265 : Non-nil means include TODO items for export.
26267 : This may have the following values:
26268 : t                    include tasks independent of state.
26269 : `todo'               include only tasks that are not yet done.
26270 : `done'               include only tasks that are already done.
26271 : nil                  ignore all tasks.
26272 : list of keywords     include tasks with these keywords.
26274 : This option can also be set with the OPTIONS keyword,
26275 : e.g. "tasks:nil".
26277 ** org-mouse-1-follows-link =(funcall (function (closure (f...=
26278    :PROPERTIES:
26279    :CUSTOM_ID: org-mouse-1-follows-link
26280    :END:
26282 - *Type:* (choice (const :tag "A double ...
26283 - *Since:* Emacs version 24.4
26284 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26285 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-1-follows-link][Find modifications in git logs]]
26287 : Non-nil means mouse-1 on a link will follow the link.
26288 : A longer mouse click will still set point.  Needs to be set
26289 : before org.el is loaded.
26291 ** org-file-apps =(funcall (function (closure (f...=
26292    :PROPERTIES:
26293    :CUSTOM_ID: org-file-apps
26294    :END:
26296 - *Type:* (repeat (cons (choice :value "...
26297 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26298 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-file-apps][Find modifications in git logs]]
26300 : External applications for opening `file:path' items in a document.
26301 : \<org-mode-map>
26302 : Org mode uses system defaults for different file types, but
26303 : you can use this variable to set the application for a given file
26304 : extension.  The entries in this list are cons cells where the car identifies
26305 : files and the cdr the corresponding command.
26307 : Possible values for the file identifier are:
26309 :  "string"    A string as a file identifier can be interpreted in different
26310 :                ways, depending on its contents:
26312 :                - Alphanumeric characters only:
26313 :                  Match links with this file extension.
26314 :                  Example: ("pdf" . "evince %s")
26315 :                           to open PDFs with evince.
26317 :                - Regular expression: Match links where the
26318 :                  filename matches the regexp.  If you want to
26319 :                  use groups here, use shy groups.
26321 :                  Example: ("\\.x?html\\\='" . "firefox %s")
26322 :                           ("\\(?:xhtml\\|html\\)\\\='" . "firefox %s")
26323 :                           to open *.html and *.xhtml with firefox.
26325 :                - Regular expression which contains (non-shy) groups:
26326 :                  Match links where the whole link, including "::", and
26327 :                  anything after that, matches the regexp.
26328 :                  In a custom command string, %1, %2, etc. are replaced with
26329 :                  the parts of the link that were matched by the groups.
26330 :                  For backwards compatibility, if a command string is given
26331 :                  that does not use any of the group matches, this case is
26332 :                  handled identically to the second one (i.e. match against
26333 :                  file name only).
26334 :                  In a custom function, you can access the group matches with
26335 :                  (match-string n link).
26337 :                  Example: ("\\.pdf::\\(\\d+\\)\\\='" . "evince -p %1 %s")
26338 :                      to open [[file:document.pdf::5]] with evince at page 5.
26340 :  `directory'   Matches a directory
26341 :  `remote'      Matches a remote file, accessible through tramp or efs.
26342 :                Remote files most likely should be visited through Emacs
26343 :                because external applications cannot handle such paths.
26344 : `auto-mode'    Matches files that are matched by any entry in `auto-mode-alist',
26345 :                so all files Emacs knows how to handle.  Using this with
26346 :                command `emacs' will open most files in Emacs.  Beware that this
26347 :                will also open html files inside Emacs, unless you add
26348 :                ("html" . default) to the list as well.
26349 :  `system'      The system command to open files, like `open' on Windows
26350 :                and macOS, and mailcap under GNU/Linux.  This is the command
26351 :                that will be selected if you call `org-open-at-point' with a
26352 :                double prefix argument (`\[universal-argument] \[universal-argument] \[org-open-at-point]').
26353 :  t             Default for files not matched by any of the other options.
26355 : Possible values for the command are:
26357 :  `emacs'       The file will be visited by the current Emacs process.
26358 :  `default'     Use the default application for this file type, which is the
26359 :                association for t in the list, most likely in the system-specific
26360 :                part.  This can be used to overrule an unwanted setting in the
26361 :                system-specific variable.
26362 :  `system'      Use the system command for opening files, like "open".
26363 :                This command is specified by the entry whose car is `system'.
26364 :                Most likely, the system-specific version of this variable
26365 :                does define this command, but you can overrule/replace it
26366 :                here.
26367 : `mailcap'      Use command specified in the mailcaps.
26368 :  string        A command to be executed by a shell; %s will be replaced
26369 :                by the path to the file.
26370 :  function      A Lisp function, which will be called with two arguments:
26371 :                the file path and the original link string, without the
26372 :                "file:" prefix.
26374 : For more examples, see the system specific constants
26375 : `org-file-apps-defaults-macosx'
26376 : `org-file-apps-defaults-windowsnt'
26377 : `org-file-apps-defaults-gnu'.
26379 ** org-level-color-stars-only =(funcall (function (closure (f...=
26380    :PROPERTIES:
26381    :CUSTOM_ID: org-level-color-stars-only
26382    :END:
26384 - *Type:* boolean
26385 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26386 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-level-color-stars-only][Find modifications in git logs]]
26388 : Non-nil means fontify only the stars in each headline.
26389 : When nil, the entire headline is fontified.
26390 : Changing it requires restart of `font-lock-mode' to become effective
26391 : also in regions already fontified.
26393 ** org-agenda-use-tag-inheritance =(quote (todo search timeline a...=
26394    :PROPERTIES:
26395    :CUSTOM_ID: org-agenda-use-tag-inheritance
26396    :END:
26398 - *Type:* (choice (const :tag "Use tag i...
26399 - *Since:* Emacs version 24.3
26400 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26401 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-use-tag-inheritance][Find modifications in git logs]]
26403 : List of agenda view types where to use tag inheritance.
26405 : In tags/tags-todo/tags-tree agenda views, tag inheritance is
26406 : controlled by `org-use-tag-inheritance'.  In other agenda types,
26407 : `org-use-tag-inheritance' is not used for the selection of the
26408 : agenda entries.  Still, you may want the agenda to be aware of
26409 : the inherited tags anyway, e.g. for later tag filtering.
26411 : Allowed value are `todo', `search', `timeline' and `agenda'.
26413 : This variable has no effect if `org-agenda-show-inherited-tags'
26414 : is set to `always'.  In that case, the agenda is aware of those
26415 : tags.
26417 : The default value sets tags in every agenda type.  Setting this
26418 : option to nil will speed up non-tags agenda view a lot.
26420 ** org-extend-today-until =(funcall (function (closure (f...=
26421    :PROPERTIES:
26422    :CUSTOM_ID: org-extend-today-until
26423    :END:
26425 - *Type:* integer
26426 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26427 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-extend-today-until][Find modifications in git logs]]
26429 : The hour when your day really ends.  Must be an integer.
26430 : This has influence for the following applications:
26431 : - When switching the agenda to "today".  It it is still earlier than
26432 :   the time given here, the day recognized as TODAY is actually yesterday.
26433 : - When a date is read from the user and it is still before the time given
26434 :   here, the current date and time will be assumed to be yesterday, 23:59.
26435 :   Also, timestamps inserted in capture templates follow this rule.
26437 : IMPORTANT:  This is a feature whose implementation is and likely will
26438 : remain incomplete.  Really, it is only here because past midnight seems to
26439 : be the favorite working time of John Wiegley :-)
26441 ** org-outline-path-complete-in-steps =(funcall (function (closure (f...=
26442    :PROPERTIES:
26443    :CUSTOM_ID: org-outline-path-complete-in-steps
26444    :END:
26446 - *Type:* boolean
26447 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26448 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-outline-path-complete-in-steps][Find modifications in git logs]]
26450 : Non-nil means complete the outline path in hierarchical steps.
26451 : When Org uses the refile interface to select an outline path (see
26452 : `org-refile-use-outline-path'), the completion of the path can be
26453 : done in a single go, or it can be done in steps down the headline
26454 : hierarchy.  Going in steps is probably the best if you do not use
26455 : a special completion package like `ido' or `icicles'.  However,
26456 : when using these packages, going in one step can be very fast,
26457 : while still showing the whole path to the entry.
26459 ** org-odt-content-template-file =(funcall (function (closure (h...=
26460    :PROPERTIES:
26461    :CUSTOM_ID: org-odt-content-template-file
26462    :END:
26464 - *Type:* (choice (const nil) (file))
26465 - *Since:* Emacs version 24.3
26466 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
26467 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-content-template-file][Find modifications in git logs]]
26469 : Template file for "content.xml".
26470 : The exporter embeds the exported content just before
26471 : "</office:text>" element.
26473 : If unspecified, the file named "OrgOdtContentTemplate.xml"
26474 : under `org-odt-styles-dir' is used.
26476 ** org-log-repeat =(funcall (function (closure (f...=
26477    :PROPERTIES:
26478    :CUSTOM_ID: org-log-repeat
26479    :END:
26481 - *Type:* (choice (const :tag "Don't for...
26482 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26483 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-repeat][Find modifications in git logs]]
26485 : Non-nil means record moving through the DONE state when triggering repeat.
26486 : An auto-repeating task is immediately switched back to TODO when
26487 : marked DONE.  If you are not logging state changes (by adding "@"
26488 : or "!" to the TODO keyword definition), or set `org-log-done' to
26489 : record a closing note, there will be no record of the task moving
26490 : through DONE.  This variable forces taking a note anyway.
26492 : nil     Don't force a record
26493 : time    Record a time stamp
26494 : note    Prompt for a note and add it with template `org-log-note-headings'
26496 : This option can also be set with on a per-file-basis with
26498 :    #+STARTUP: nologrepeat
26499 :    #+STARTUP: logrepeat
26500 :    #+STARTUP: lognoterepeat
26502 : You can have local logging settings for a subtree by setting the LOGGING
26503 : property to one or more of these keywords.
26505 ** org-html-table-row-close-tag =(funcall (function (closure (h...=
26506    :PROPERTIES:
26507    :CUSTOM_ID: org-html-table-row-close-tag
26508    :END:
26510 - *Type:* (choice :tag "Closing tag" (st...
26511 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
26512 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-row-close-tag][Find modifications in git logs]]
26514 : The closing tag for table rows.
26515 : This is customizable so that alignment options can be specified.
26516 : Instead of strings, this can be a Lisp function that will be
26517 : evaluated for each row in order to construct the table row tags.
26519 : See documentation of `org-html-table-row-open-tag'.
26521 ** org-latex-image-default-option =(funcall (function (closure (t...=
26522    :PROPERTIES:
26523    :CUSTOM_ID: org-latex-image-default-option
26524    :END:
26526 - *Type:* string
26527 - *Since:* Emacs version 24.4
26528 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
26529 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-image-default-option][Find modifications in git logs]]
26531 : Default option for images.
26533 ** org-latex-format-drawer-function =(funcall (function (closure (t...=
26534    :PROPERTIES:
26535    :CUSTOM_ID: org-latex-format-drawer-function
26536    :END:
26538 - *Type:* function
26539 - *Since:* Emacs version 24.4
26540 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
26541 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-format-drawer-function][Find modifications in git logs]]
26543 : Function called to format a drawer in LaTeX code.
26545 : The function must accept two parameters:
26546 :   NAME      the drawer name, like "LOGBOOK"
26547 :   CONTENTS  the contents of the drawer.
26549 : The function should return the string to be exported.
26551 : The default function simply returns the value of CONTENTS.
26553 ** org-agenda-with-colors =t=
26554    :PROPERTIES:
26555    :CUSTOM_ID: org-agenda-with-colors
26556    :END:
26558 - *Type:* boolean
26559 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26560 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-with-colors][Find modifications in git logs]]
26562 : Non-nil means use colors in agenda views.
26564 ** org-agenda-start-with-clockreport-mode =nil=
26565    :PROPERTIES:
26566    :CUSTOM_ID: org-agenda-start-with-clockreport-mode
26567    :END:
26569 - *Type:* boolean
26570 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26571 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-with-clockreport-mode][Find modifications in git logs]]
26573 : The initial value of clockreport-mode in a newly created agenda window.
26575 ** org-self-insert-cluster-for-undo =(funcall (function (closure (f...=
26576    :PROPERTIES:
26577    :CUSTOM_ID: org-self-insert-cluster-for-undo
26578    :END:
26580 - *Type:* boolean
26581 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26582 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-self-insert-cluster-for-undo][Find modifications in git logs]]
26584 : Non-nil means cluster self-insert commands for undo when possible.
26585 : If this is set, then, like in the Emacs command loop, 20 consecutive
26586 : characters will be undone together.
26587 : This is configurable, because there is some impact on typing performance.
26589 ** org-edit-src-persistent-message =(funcall (function (closure (t...=
26590    :PROPERTIES:
26591    :CUSTOM_ID: org-edit-src-persistent-message
26592    :END:
26594 - *Type:* boolean
26595 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
26596 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-persistent-message][Find modifications in git logs]]
26598 : Non-nil means show persistent exit help message while editing src examples.
26599 : The message is shown in the header-line, which will be created in the
26600 : first line of the window showing the editing buffer.
26602 ** org-protocol-data-separator =(funcall (function (closure (t...=
26603    :PROPERTIES:
26604    :CUSTOM_ID: org-protocol-data-separator
26605    :END:
26607 - *Type:* string
26608 - *Since:* Emacs version 24.4
26609 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]]
26610 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-data-separator][Find modifications in git logs]]
26612 : The default data separator to use.
26613 : This should be a single regexp string.
26615 ** org-agenda-add-entry-text-maxlines =0=
26616    :PROPERTIES:
26617    :CUSTOM_ID: org-agenda-add-entry-text-maxlines
26618    :END:
26620 - *Type:* integer
26621 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26622 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-add-entry-text-maxlines][Find modifications in git logs]]
26624 : Maximum number of entry text lines to be added to agenda.
26625 : This is only relevant when `org-agenda-add-entry-text' is part of
26626 : `org-agenda-before-write-hook', which is the default.
26627 : When this is 0, nothing will happen.  When it is greater than 0, it
26628 : specifies the maximum number of lines that will be added for each entry
26629 : that is listed in the agenda view.
26631 : Note that this variable is not used during display, only when exporting
26632 : the agenda.  For agenda display, see the variables `org-agenda-entry-text-mode'
26633 : and `org-agenda-entry-text-maxlines'.
26635 ** org-texinfo-default-class =(funcall (function (closure (t...=
26636    :PROPERTIES:
26637    :CUSTOM_ID: org-texinfo-default-class
26638    :END:
26640 - *Type:* (string :tag "Texinfo class")
26641 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
26642 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-default-class][Find modifications in git logs]]
26644 : The default Texinfo class.
26646 ** org-agenda-custom-commands-contexts =nil=
26647    :PROPERTIES:
26648    :CUSTOM_ID: org-agenda-custom-commands-contexts
26649    :END:
26651 - *Type:* (repeat (list :tag "Rule" (str...
26652 - *Since:* Emacs version 24.3
26653 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
26654 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-custom-commands-contexts][Find modifications in git logs]]
26656 : Alist of custom agenda keys and contextual rules.
26658 : For example, if you have a custom agenda command "p" and you
26659 : want this command to be accessible only from plain text files,
26660 : use this:
26662 :    \='(("p" ((in-file . "\\.txt\\'"))))
26664 : Here are the available contexts definitions:
26666 :       in-file: command displayed only in matching files
26667 :       in-mode: command displayed only in matching modes
26668 :   not-in-file: command not displayed in matching files
26669 :   not-in-mode: command not displayed in matching modes
26670 :     in-buffer: command displayed only in matching buffers
26671 : not-in-buffer: command not displayed in matching buffers
26672 :    [function]: a custom function taking no argument
26674 : If you define several checks, the agenda command will be
26675 : accessible if there is at least one valid check.
26677 : You can also bind a key to another agenda custom command
26678 : depending on contextual rules.
26680 :     \='(("p" "q" ((in-file . "\\.txt\\'"))))
26682 : Here it means: in .txt files, use "p" as the key for the
26683 : agenda command otherwise associated with "q".  (The command
26684 : originally associated with "q" is not displayed to avoid
26685 : duplicates.)
26687 ** org-id-link-to-org-use-id =(funcall (function (closure (t...=
26688    :PROPERTIES:
26689    :CUSTOM_ID: org-id-link-to-org-use-id
26690    :END:
26692 - *Type:* (choice (const :tag "Create ID...
26693 - *Since:* Emacs version 24.3
26694 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]]
26695 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-link-to-org-use-id][Find modifications in git logs]]
26697 : Non-nil means storing a link to an Org file will use entry IDs.
26698 : \<org-mode-map>
26699 : The variable can have the following values:
26701 : t     Create an ID if needed to make a link to the current entry.
26703 : create-if-interactive
26704 :       If `org-store-link' is called directly (interactively, as a user
26705 :       command), do create an ID to support the link.  But when doing the
26706 :       job for capture, only use the ID if it already exists.  The
26707 :       purpose of this setting is to avoid proliferation of unwanted
26708 :       IDs, just because you happen to be in an Org file when you
26709 :       call `org-capture' that automatically and preemptively creates a
26710 :       link.  If you do want to get an ID link in a capture template to
26711 :       an entry not having an ID, create it first by explicitly creating
26712 :       a link to it, using `\[org-store-link]' first.
26714 : create-if-interactive-and-no-custom-id
26715 :       Like create-if-interactive, but do not create an ID if there is
26716 :       a CUSTOM_ID property defined in the entry.
26718 : use-existing
26719 :       Use existing ID, do not create one.
26721 : nil   Never use an ID to make a link, instead link using a text search for
26722 :       the headline text.
26724 ** org-tags-match-list-sublevels =(funcall (function (closure (f...=
26725    :PROPERTIES:
26726    :CUSTOM_ID: org-tags-match-list-sublevels
26727    :END:
26729 - *Type:* (choice (const :tag "No, don't...
26730 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26731 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-match-list-sublevels][Find modifications in git logs]]
26733 : Non-nil means list also sublevels of headlines matching a search.
26734 : This variable applies to tags/property searches, and also to stuck
26735 : projects because this search is based on a tags match as well.
26737 : When set to the symbol `indented', sublevels are indented with
26738 : leading dots.
26740 : Because of tag inheritance (see variable `org-use-tag-inheritance'),
26741 : the sublevels of a headline matching a tag search often also match
26742 : the same search.  Listing all of them can create very long lists.
26743 : Setting this variable to nil causes subtrees of a match to be skipped.
26745 : This variable is semi-obsolete and probably should always be true.  It
26746 : is better to limit inheritance to certain tags using the variables
26747 : `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'.
26749 ** org-footnote-section =(funcall (function (closure (t...=
26750    :PROPERTIES:
26751    :CUSTOM_ID: org-footnote-section
26752    :END:
26754 - *Type:* (choice (string :tag "Collect ...
26755 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]]
26756 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-section][Find modifications in git logs]]
26758 : Outline heading containing footnote definitions.
26760 : This can be nil, to place footnotes locally at the end of the
26761 : current outline node.  If can also be the name of a special
26762 : outline heading under which footnotes should be put.
26764 : This variable defines the place where Org puts the definition
26765 : automatically, i.e. when creating the footnote, and when sorting
26766 : the notes.  However, by hand you may place definitions
26767 : *anywhere*.
26769 : If this is a string, during export, all subtrees starting with
26770 : this heading will be ignored.
26772 : If you don't use the customize interface to change this variable,
26773 : you will need to run the following command after the change:
26775 :   `\[universal-argument] \[org-element-cache-reset]'
26777 ** org-feed-alist =(funcall (function (closure (t...=
26778    :PROPERTIES:
26779    :CUSTOM_ID: org-feed-alist
26780    :END:
26782 - *Type:* (repeat (list :value ("" "http...
26783 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]]
26784 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-alist][Find modifications in git logs]]
26786 : Alist specifying RSS feeds that should create inputs for Org.
26787 : Each entry in this list specified an RSS feed tat should be queried
26788 : to create inbox items in Org.  Each entry is a list with the following items:
26790 : name         a custom name for this feed
26791 : URL          the Feed URL
26792 : file         the target Org file where entries should be listed, when
26793 :              nil the target becomes the current buffer (may be an
26794 :              indirect buffer) each time the feed update is invoked
26795 : headline     the headline under which entries should be listed
26797 : Additional arguments can be given using keyword-value pairs.  Many of these
26798 : specify functions that receive one or a list of "entries" as their single
26799 : argument.  An entry is a property list that describes a feed item.  The
26800 : property list has properties for each field in the item, for example `:title'
26801 : for the `<title>' field and `:pubDate' for the publication date.  In addition,
26802 : it contains the following properties:
26804 : `:item-full-text'   the full text in the <item> tag
26805 : `:guid-permalink'   t when the guid property is a permalink
26807 : Here are the keyword-value pair allows in `org-feed-alist'.
26809 : :drawer drawer-name
26810 :      The name of the drawer for storing feed information.  The default is
26811 :      "FEEDSTATUS".  Using different drawers for different feeds allows
26812 :      several feeds to target the same inbox heading.
26814 : :filter filter-function
26815 :      A function to select interesting entries in the feed.  It gets a single
26816 :      entry as parameter.  It should return the entry if it is relevant, or
26817 :      nil if it is not.
26819 : :template template-string
26820 :      The default action on new items in the feed is to add them as children
26821 :      under the headline for the feed.  The template describes how the entry
26822 :      should be formatted.  If not given, it defaults to
26823 :      `org-feed-default-template'.
26825 : :formatter formatter-function
26826 :      Instead of relying on a template, you may specify a function to format
26827 :      the outline node to be inserted as a child.  This function gets passed
26828 :      a property list describing a single feed item, and it should return a
26829 :      string that is a properly formatted Org outline node of level 1.
26831 : :new-handler function
26832 :      If adding new items as children to the outline is not what you want
26833 :      to do with new items, define a handler function that is called with
26834 :      a list of all new items in the feed, each one represented as a property
26835 :      list.  The handler should do what needs to be done, and org-feed will
26836 :      mark all items given to this handler as "handled", i.e. they will not
26837 :      be passed to this handler again in future readings of the feed.
26838 :      When the handler is called, point will be at the feed headline.
26840 : :changed-handler function
26841 :      This function gets passed a list of all entries that have been
26842 :      handled before, but are now still in the feed and have *changed*
26843 :      since last handled (as evidenced by a different sha1 hash).
26844 :      When the handler is called, point will be at the feed headline.
26846 : :parse-feed function
26847 :      This function gets passed a buffer, and should return a list
26848 :      of entries, each being a property list containing the
26849 :      `:guid' and `:item-full-text' keys.  The default is
26850 :      `org-feed-parse-rss-feed'; `org-feed-parse-atom-feed' is an
26851 :      alternative.
26853 : :parse-entry function
26854 :      This function gets passed an entry as returned by the parse-feed
26855 :      function, and should return the entry with interesting properties added.
26856 :      The default is `org-feed-parse-rss-entry'; `org-feed-parse-atom-entry'
26857 :      is an alternative.
26859 ** org-ascii-inner-margin =(funcall (function (closure (t...=
26860    :PROPERTIES:
26861    :CUSTOM_ID: org-ascii-inner-margin
26862    :END:
26864 - *Type:* integer
26865 - *Since:* Emacs version 24.4
26866 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
26867 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-inner-margin][Find modifications in git logs]]
26869 : Width of the inner margin, in number of characters.
26870 : Inner margin is applied between each headline.
26872 ** org-odt-convert-capabilities =(funcall (function (closure (h...=
26873    :PROPERTIES:
26874    :CUSTOM_ID: org-odt-convert-capabilities
26875    :END:
26877 - *Type:* (choice (const :tag "None" nil...
26878 - *Since:* Emacs version 24.1
26879 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
26880 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert-capabilities][Find modifications in git logs]]
26882 : Specify input and output formats of `org-odt-convert-process'.
26883 : More correctly, specify the set of input and output formats that
26884 : the user is actually interested in.
26886 : This variable is an alist where each element is of the
26887 : form (DOCUMENT-CLASS INPUT-FMT-LIST OUTPUT-FMT-ALIST).
26888 : INPUT-FMT-LIST is a list of INPUT-FMTs.  OUTPUT-FMT-ALIST is an
26889 : alist where each element is of the form (OUTPUT-FMT
26890 : OUTPUT-FILE-EXTENSION EXTRA-OPTIONS).
26892 : The variable is interpreted as follows:
26893 : `org-odt-convert-process' can take any document that is in
26894 : INPUT-FMT-LIST and produce any document that is in the
26895 : OUTPUT-FMT-LIST.  A document converted to OUTPUT-FMT will have
26896 : OUTPUT-FILE-EXTENSION as the file name extension.  OUTPUT-FMT
26897 : serves dual purposes:
26898 : - It is used for populating completion candidates during
26899 :   `org-odt-convert' commands.
26900 : - It is used as the value of "%f" specifier in
26901 :   `org-odt-convert-process'.
26903 : EXTRA-OPTIONS is used as the value of "%x" specifier in
26904 : `org-odt-convert-process'.
26906 : DOCUMENT-CLASS is used to group a set of file formats in
26907 : INPUT-FMT-LIST in to a single class.
26909 : Note that this variable inherently captures how LibreOffice based
26910 : converters work.  LibreOffice maps documents of various formats
26911 : to classes like Text, Web, Spreadsheet, Presentation etc and
26912 : allow document of a given class (irrespective of its source
26913 : format) to be converted to any of the export formats associated
26914 : with that class.
26916 : See default setting of this variable for an typical
26917 : configuration.
26919 ** org-koma-letter-phone-number =""=
26920    :PROPERTIES:
26921    :CUSTOM_ID: org-koma-letter-phone-number
26922    :END:
26924 - *Type:* string
26925 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
26926 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-phone-number][Find modifications in git logs]]
26928 : Sender's phone number, as a string.
26929 : This option can also be set with the PHONE_NUMBER keyword.
26931 ** org-link-search-must-match-exact-headline =(funcall (function (closure (f...=
26932    :PROPERTIES:
26933    :CUSTOM_ID: org-link-search-must-match-exact-headline
26934    :END:
26936 - *Type:* (choice (const :tag "Use fuzzy...
26937 - *Since:* Emacs version 24.1
26938 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26939 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-search-must-match-exact-headline][Find modifications in git logs]]
26941 : Non-nil means internal fuzzy links can only match headlines.
26943 : When nil, the a fuzzy link may point to a target or a named
26944 : construct in the document.  When set to the special value
26945 : `query-to-create', offer to create a new headline when none
26946 : matched.
26948 : Spaces and statistics cookies are ignored during heading searches.
26950 ** org-html-preamble-format =(funcall (function (closure (h...=
26951    :PROPERTIES:
26952    :CUSTOM_ID: org-html-preamble-format
26953    :END:
26955 - *Type:* (repeat (list (string :tag "La...
26956 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
26957 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-preamble-format][Find modifications in git logs]]
26959 : Alist of languages and format strings for the HTML preamble.
26961 : The first element of each list is the language code, as used for
26962 : the LANGUAGE keyword.  See `org-export-default-language'.
26964 : The second element of each list is a format string to format the
26965 : preamble itself.  This format string can contain these elements:
26967 :   %t stands for the title.
26968 :   %s stands for the subtitle.
26969 :   %a stands for the author's name.
26970 :   %e stands for the author's email.
26971 :   %d stands for the date.
26972 :   %c will be replaced by `org-html-creator-string'.
26973 :   %v will be replaced by `org-html-validation-link'.
26974 :   %T will be replaced by the export time.
26975 :   %C will be replaced by the last modification time.
26977 : If you need to use a "%" character, you need to escape it
26978 : like that: "%%".
26980 : See the default value of `org-html-postamble-format' for an
26981 : example.
26983 ** org-insert-mode-line-in-empty-file =(funcall (function (closure (f...=
26984    :PROPERTIES:
26985    :CUSTOM_ID: org-insert-mode-line-in-empty-file
26986    :END:
26988 - *Type:* boolean
26989 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
26990 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-mode-line-in-empty-file][Find modifications in git logs]]
26992 : Non-nil means insert the first line setting Org mode in empty files.
26993 : When the function `org-mode' is called interactively in an empty file, this
26994 : normally means that the file name does not automatically trigger Org mode.
26995 : To ensure that the file will always be in Org mode in the future, a
26996 : line enforcing Org mode will be inserted into the buffer, if this option
26997 : has been set.
26999 ** org-table-formula-constants =(funcall (function (closure (o...=
27000    :PROPERTIES:
27001    :CUSTOM_ID: org-table-formula-constants
27002    :END:
27004 - *Type:* (repeat (cons (string :tag "na...
27005 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
27006 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-constants][Find modifications in git logs]]
27008 : Alist with constant names and values, for use in table formulas.
27009 : The car of each element is a name of a constant, without the `$' before it.
27010 : The cdr is the value as a string.  For example, if you'd like to use the
27011 : speed of light in a formula, you would configure
27013 :   (setq org-table-formula-constants \='(("c" . "299792458.")))
27015 : and then use it in an equation like `$1*$c'.
27017 : Constants can also be defined on a per-file basis using a line like
27019 : #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
27021 ** org-texinfo-table-scientific-notation =(funcall (function (closure (t...=
27022    :PROPERTIES:
27023    :CUSTOM_ID: org-texinfo-table-scientific-notation
27024    :END:
27026 - *Type:* (choice (string :tag "Format s...
27027 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]]
27028 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-table-scientific-notation][Find modifications in git logs]]
27030 : Format string to display numbers in scientific notation.
27032 : The format should have "%s" twice, for mantissa and exponent
27033 : (i.e. "%s\\times10^{%s}").
27035 : When nil, no transformation is made.
27037 ** org-reverse-note-order =(funcall (function (closure (f...=
27038    :PROPERTIES:
27039    :CUSTOM_ID: org-reverse-note-order
27040    :END:
27042 - *Type:* (choice (const :tag "Reverse a...
27043 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27044 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reverse-note-order][Find modifications in git logs]]
27046 : Non-nil means store new notes at the beginning of a file or entry.
27047 : When nil, new notes will be filed to the end of a file or entry.
27048 : This can also be a list with cons cells of regular expressions that
27049 : are matched against file names, and values.
27051 ** org-cycle-open-archived-trees =(funcall (function (closure (t...=
27052    :PROPERTIES:
27053    :CUSTOM_ID: org-cycle-open-archived-trees
27054    :END:
27056 - *Type:* boolean
27057 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27058 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-open-archived-trees][Find modifications in git logs]]
27060 : Non-nil means `org-cycle' will open archived trees.
27061 : An archived tree is a tree marked with the tag ARCHIVE.
27062 : When nil, archived trees will stay folded.  You can still open them with
27063 : normal outline commands like `show-all', but not with the cycling commands.
27065 ** org-goto-max-level =(funcall (function (closure (f...=
27066    :PROPERTIES:
27067    :CUSTOM_ID: org-goto-max-level
27068    :END:
27070 - *Type:* integer
27071 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27072 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-max-level][Find modifications in git logs]]
27074 : Maximum target level when running `org-goto' with refile interface.
27076 ** org-agenda-diary-file =(funcall (function (closure (f...=
27077    :PROPERTIES:
27078    :CUSTOM_ID: org-agenda-diary-file
27079    :END:
27081 - *Type:* (choice (const :tag "The stand...
27082 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27083 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-diary-file][Find modifications in git logs]]
27085 : File to which to add new entries with the `i' key in agenda and calendar.
27086 : When this is the symbol `diary-file', the functionality in the Emacs
27087 : calendar will be used to add entries to the `diary-file'.  But when this
27088 : points to a file, `org-agenda-diary-entry' will be used instead.
27090 ** org-babel-js-cmd =(funcall (function (closure (t...=
27091    :PROPERTIES:
27092    :CUSTOM_ID: org-babel-js-cmd
27093    :END:
27095 - *Type:* string
27096 - *Since:* Emacs version 24.1
27097 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-js.el][ob-js.el]]
27098 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-js-cmd][Find modifications in git logs]]
27100 : Name of command used to evaluate js blocks.
27102 ** org-agenda-cmp-user-defined =nil=
27103    :PROPERTIES:
27104    :CUSTOM_ID: org-agenda-cmp-user-defined
27105    :END:
27107 - *Type:* symbol
27108 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27109 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-cmp-user-defined][Find modifications in git logs]]
27111 : A function to define the comparison `user-defined'.
27112 : This function must receive two arguments, agenda entry a and b.
27113 : If a>b, return +1.  If a<b, return -1.  If they are equal as seen by
27114 : the user comparison, return nil.
27115 : When this is defined, you can make `user-defined-up' and `user-defined-down'
27116 : part of an agenda sorting strategy.
27118 ** org-ascii-links-to-notes =(funcall (function (closure (t...=
27119    :PROPERTIES:
27120    :CUSTOM_ID: org-ascii-links-to-notes
27121    :END:
27123 - *Type:* boolean
27124 - *Since:* Emacs version 24.4
27125 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
27126 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-links-to-notes][Find modifications in git logs]]
27128 : Non-nil means convert links to notes before the next headline.
27129 : When nil, the link will be exported in place.  If the line
27130 : becomes long in this way, it will be wrapped.
27132 ** org-html-extension =(funcall (function (closure (h...=
27133    :PROPERTIES:
27134    :CUSTOM_ID: org-html-extension
27135    :END:
27137 - *Type:* string
27138 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
27139 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-extension][Find modifications in git logs]]
27141 : The extension for exported HTML files.
27143 ** org-latex-default-figure-position =(funcall (function (closure (t...=
27144    :PROPERTIES:
27145    :CUSTOM_ID: org-latex-default-figure-position
27146    :END:
27148 - *Type:* string
27149 - *Since:* Emacs version 26.1
27150 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
27151 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-figure-position][Find modifications in git logs]]
27153 : Default position for LaTeX figures.
27155 ** org-latex-inline-image-rules =(funcall (function (closure (t...=
27156    :PROPERTIES:
27157    :CUSTOM_ID: org-latex-inline-image-rules
27158    :END:
27160 - *Type:* (alist :key-type (string :tag ...
27161 - *Since:* Emacs version 24.4
27162 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
27163 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-inline-image-rules][Find modifications in git logs]]
27165 : Rules characterizing image files that can be inlined into LaTeX.
27167 : A rule consists in an association whose key is the type of link
27168 : to consider, and value is a regexp that will be matched against
27169 : link's path.
27171 : Note that, by default, the image extension *actually* allowed
27172 : depend on the way the LaTeX file is processed.  When used with
27173 : pdflatex, pdf, jpg and png images are OK.  When processing
27174 : through dvi to Postscript, only ps and eps are allowed.  The
27175 : default we use here encompasses both.
27177 ** org-agenda-insert-diary-strategy =(quote date-tree)=
27178    :PROPERTIES:
27179    :CUSTOM_ID: org-agenda-insert-diary-strategy
27180    :END:
27182 - *Type:* (choice (const :tag "first in ...
27183 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27184 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-insert-diary-strategy][Find modifications in git logs]]
27186 : Where in `org-agenda-diary-file' should new entries be added?
27187 : Valid values:
27189 : date-tree         in the date tree, as first child of the date
27190 : date-tree-last    in the date tree, as last child of the date
27191 : top-level         as top-level entries at the end of the file.
27193 ** org-publish-list-skipped-files =(funcall (function (closure (t...=
27194    :PROPERTIES:
27195    :CUSTOM_ID: org-publish-list-skipped-files
27196    :END:
27198 - *Type:* boolean
27199 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
27200 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-list-skipped-files][Find modifications in git logs]]
27202 : Non-nil means show message about files *not* published.
27204 ** org-link-parameters =(funcall (function (closure (f...=
27205    :PROPERTIES:
27206    :CUSTOM_ID: org-link-parameters
27207    :END:
27209 - *Type:* (alist :tag "Link display para...
27210 - *Since:* Emacs version 26.1
27211 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27212 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-parameters][Find modifications in git logs]]
27214 : An alist of properties that defines all the links in Org mode.
27215 : The key in each association is a string of the link type.
27216 : Subsequent optional elements make up a p-list of link properties.
27218 : :follow - A function that takes the link path as an argument.
27220 : :export - A function that takes the link path, description and
27221 : export-backend as arguments.
27223 : :store - A function responsible for storing the link.  See the
27224 : function `org-store-link-functions'.
27226 : :complete - A function that inserts a link with completion.  The
27227 : function takes one optional prefix arg.
27229 : :face - A face for the link, or a function that returns a face.
27230 : The function takes one argument which is the link path.  The
27231 : default face is `org-link'.
27233 : :mouse-face - The mouse-face. The default is `highlight'.
27235 : :display - `full' will not fold the link in descriptive
27236 : display.  Default is `org-link'.
27238 : :help-echo - A string or function that takes (window object position)
27239 : as arguments and returns a string.
27241 : :keymap - A keymap that is active on the link.  The default is
27242 : `org-mouse-map'.
27244 : :htmlize-link - A function for the htmlize-link.  Defaults
27245 : to (list :uri "type:path")
27247 : :activate-func - A function to run at the end of font-lock
27248 : activation.  The function must accept (link-start link-end path bracketp)
27249 : as arguments.
27251 ** org-read-date-force-compatible-dates =(funcall (function (closure (f...=
27252    :PROPERTIES:
27253    :CUSTOM_ID: org-read-date-force-compatible-dates
27254    :END:
27256 - *Type:* boolean
27257 - *Since:* Emacs version 24.1
27258 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27259 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-force-compatible-dates][Find modifications in git logs]]
27261 : Should date/time prompt force dates that are guaranteed to work in Emacs?
27263 : Depending on the system Emacs is running on, certain dates cannot
27264 : be represented with the type used internally to represent time.
27265 : Dates between 1970-1-1 and 2038-1-1 can always be represented
27266 : correctly.  Some systems allow for earlier dates, some for later,
27267 : some for both.  One way to find out it to insert any date into an
27268 : Org buffer, putting the cursor on the year and hitting S-up and
27269 : S-down to test the range.
27271 : When this variable is set to t, the date/time prompt will not let
27272 : you specify dates outside the 1970-2037 range, so it is certain that
27273 : these dates will work in whatever version of Emacs you are
27274 : running, and also that you can move a file from one Emacs implementation
27275 : to another.  WHenever Org is forcing the year for you, it will display
27276 : a message and beep.
27278 : When this variable is nil, Org will check if the date is
27279 : representable in the specific Emacs implementation you are using.
27280 : If not, it will force a year, usually the current year, and beep
27281 : to remind you.  Currently this setting is not recommended because
27282 : the likelihood that you will open your Org files in an Emacs that
27283 : has limited date range is not negligible.
27285 : A workaround for this problem is to use diary sexp dates for time
27286 : stamps outside of this range.
27288 ** org-agenda-jump-prefer-future =(funcall (function (closure (f...=
27289    :PROPERTIES:
27290    :CUSTOM_ID: org-agenda-jump-prefer-future
27291    :END:
27293 - *Type:* (choice (const :tag "Use org-r...
27294 - *Since:* Emacs version 24.1
27295 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27296 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-jump-prefer-future][Find modifications in git logs]]
27298 : Should the agenda jump command prefer the future for incomplete dates?
27299 : The default is to do the same as configured in `org-read-date-prefer-future'.
27300 : But you can also set a deviating value here.
27301 : This may t or nil, or the symbol `org-read-date-prefer-future'.
27303 ** org-ascii-table-keep-all-vertical-lines =(funcall (function (closure (t...=
27304    :PROPERTIES:
27305    :CUSTOM_ID: org-ascii-table-keep-all-vertical-lines
27306    :END:
27308 - *Type:* boolean
27309 - *Since:* Emacs version 24.4
27310 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
27311 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-table-keep-all-vertical-lines][Find modifications in git logs]]
27313 : Non-nil means keep all vertical lines in ASCII tables.
27314 : When nil, vertical lines will be removed except for those needed
27315 : for column grouping.
27317 ** org-publish-sitemap-sort-files =(funcall (function (closure (t...=
27318    :PROPERTIES:
27319    :CUSTOM_ID: org-publish-sitemap-sort-files
27320    :END:
27322 - *Type:* symbol
27323 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
27324 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-sitemap-sort-files][Find modifications in git logs]]
27326 : Method to sort files in site-maps.
27327 : Possible values are `alphabetically', `chronologically',
27328 : `anti-chronologically' and nil.
27330 : If `alphabetically', files will be sorted alphabetically.  If
27331 : `chronologically', files will be sorted with older modification
27332 : time first.  If `anti-chronologically', files will be sorted with
27333 : newer modification time first.  nil won't sort files.
27335 : You can overwrite this default per project in your
27336 : `org-publish-project-alist', using `:sitemap-sort-files'.
27338 ** org-agenda-start-with-log-mode =nil=
27339    :PROPERTIES:
27340    :CUSTOM_ID: org-agenda-start-with-log-mode
27341    :END:
27343 - *Type:* (choice (const :tag "Don't sho...
27344 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27345 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-with-log-mode][Find modifications in git logs]]
27347 : The initial value of log-mode in a newly created agenda window.
27348 : See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
27349 : explanations on the possible values.
27351 ** org-startup-with-latex-preview =(funcall (function (closure (f...=
27352    :PROPERTIES:
27353    :CUSTOM_ID: org-startup-with-latex-preview
27354    :END:
27356 - *Type:* boolean
27357 - *Since:* Emacs version 24.4
27358 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27359 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-startup-with-latex-preview][Find modifications in git logs]]
27361 : Non-nil means preview LaTeX fragments when loading a new Org file.
27363 : This can also be configured on a per-file basis by adding one of
27364 : the following lines anywhere in the buffer:
27365 :    #+STARTUP: latexpreview
27366 :    #+STARTUP: nolatexpreview
27368 ** org-agenda-query-register =111=
27369    :PROPERTIES:
27370    :CUSTOM_ID: org-agenda-query-register
27371    :END:
27373 - *Type:* character
27374 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27375 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-query-register][Find modifications in git logs]]
27377 : The register holding the current query string.
27378 : The purpose of this is that if you construct a query string interactively,
27379 : you can then use it to define a custom command.
27381 ** org-ascii-global-margin =(funcall (function (closure (t...=
27382    :PROPERTIES:
27383    :CUSTOM_ID: org-ascii-global-margin
27384    :END:
27386 - *Type:* integer
27387 - *Since:* Emacs version 24.4
27388 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
27389 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-global-margin][Find modifications in git logs]]
27391 : Width of the left margin, in number of characters.
27393 ** org-agenda-columns-add-appointments-to-effort-sum =nil=
27394    :PROPERTIES:
27395    :CUSTOM_ID: org-agenda-columns-add-appointments-to-effort-sum
27396    :END:
27398 - *Type:* boolean
27399 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27400 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-columns-add-appointments-to-effort-sum][Find modifications in git logs]]
27402 : Non-nil means the duration of an appointment will add to day effort.
27403 : The property to which appointment durations will be added is the one given
27404 : in the option `org-effort-property'.  If an appointment does not have
27405 : an end time, `org-agenda-default-appointment-duration' will be used.  If that
27406 : is not set, an appointment without end time will not contribute to the time
27407 : estimate.
27409 ** org-image-actual-width =(funcall (function (closure (o...=
27410    :PROPERTIES:
27411    :CUSTOM_ID: org-image-actual-width
27412    :END:
27414 - *Type:* (choice (const :tag "Use the i...
27415 - *Since:* Emacs version 24.4
27416 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27417 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-image-actual-width][Find modifications in git logs]]
27419 : Should we use the actual width of images when inlining them?
27421 : When set to t, always use the image width.
27423 : When set to a number, use imagemagick (when available) to set
27424 : the image's width to this value.
27426 : When set to a number in a list, try to get the width from any
27427 : #+ATTR.* keyword if it matches a width specification like
27429 :   #+ATTR_HTML: :width 300px
27431 : and fall back on that number if none is found.
27433 : When set to nil, try to get the width from an #+ATTR.* keyword
27434 : and fall back on the original width if none is found.
27436 : This requires Emacs >= 24.1, build with imagemagick support.
27438 ** org-odt-convert-processes =(funcall (function (closure (h...=
27439    :PROPERTIES:
27440    :CUSTOM_ID: org-odt-convert-processes
27441    :END:
27443 - *Type:* (choice (const :tag "None" nil...
27444 - *Since:* Emacs version 24.1
27445 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
27446 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert-processes][Find modifications in git logs]]
27448 : Specify a list of document converters and their usage.
27449 : The converters in this list are offered as choices while
27450 : customizing `org-odt-convert-process'.
27452 : This variable is a list where each element is of the
27453 : form (CONVERTER-NAME CONVERTER-CMD).  CONVERTER-NAME is the name
27454 : of the converter.  CONVERTER-CMD is the shell command for the
27455 : converter and can contain format specifiers.  These format
27456 : specifiers are interpreted as below:
27458 : %i input file name in full
27459 : %I input file name as a URL
27460 : %f format of the output file
27461 : %o output file name in full
27462 : %O output file name as a URL
27463 : %d output dir in full
27464 : %D output dir as a URL.
27465 : %x extra options as set in `org-odt-convert-capabilities'.
27467 ** org-tags-exclude-from-inheritance =(funcall (function (closure (f...=
27468    :PROPERTIES:
27469    :CUSTOM_ID: org-tags-exclude-from-inheritance
27470    :END:
27472 - *Type:* (repeat (string :tag "Tag"))
27473 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27474 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-exclude-from-inheritance][Find modifications in git logs]]
27476 : List of tags that should never be inherited.
27477 : This is a way to exclude a few tags from inheritance.  For way to do
27478 : the opposite, to actively allow inheritance for selected tags,
27479 : see the variable `org-use-tag-inheritance'.
27481 ** org-agenda-todo-ignore-time-comparison-use-seconds =nil=
27482    :PROPERTIES:
27483    :CUSTOM_ID: org-agenda-todo-ignore-time-comparison-use-seconds
27484    :END:
27486 - *Type:* (choice (const :tag "Compare t...
27487 - *Since:* Emacs version 24.4
27488 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27489 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-time-comparison-use-seconds][Find modifications in git logs]]
27491 : Time unit to use when possibly ignoring an agenda item.
27493 : See the docstring of various `org-agenda-todo-ignore-*' options.
27494 : The default is to compare time stamps using days.  An item is thus
27495 : considered to be in the future if it is at least one day after today.
27496 : Non-nil means to compare time stamps using seconds.  An item is then
27497 : considered future if it has a time value later than current time.
27499 ** org-export-with-date =(funcall (function (closure (t...=
27500    :PROPERTIES:
27501    :CUSTOM_ID: org-export-with-date
27502    :END:
27504 - *Type:* boolean
27505 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
27506 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-date][Find modifications in git logs]]
27508 : Non-nil means insert date in the exported document.
27509 : This option can also be set with the OPTIONS keyword,
27510 : e.g. "date:nil".
27512 ** org-export-backends =(funcall (function (closure (f...=
27513    :PROPERTIES:
27514    :CUSTOM_ID: org-export-backends
27515    :END:
27517 - *Type:* (set :greedy t (const :tag "  ...
27518 - *Since:* Emacs version 26.1
27519 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27520 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-backends][Find modifications in git logs]]
27522 : List of export back-ends that should be always available.
27524 : If a description starts with <C>, the file is not part of Emacs
27525 : and loading it will require that you have downloaded and properly
27526 : installed the Org mode distribution.
27528 : Unlike to `org-modules', libraries in this list will not be
27529 : loaded along with Org, but only once the export framework is
27530 : needed.
27532 : This variable needs to be set before org.el is loaded.  If you
27533 : need to make a change while Emacs is running, use the customize
27534 : interface or run the following code, where VAL stands for the new
27535 : value of the variable, after updating it:
27537 :   (progn
27538 :     (setq org-export-registered-backends
27539 :           (cl-remove-if-not
27540 :            (lambda (backend)
27541 :              (let ((name (org-export-backend-name backend)))
27542 :                (or (memq name val)
27543 :                    (catch \='parentp
27544 :                      (dolist (b val)
27545 :                        (and (org-export-derived-backend-p b name)
27546 :                             (throw \='parentp t)))))))
27547 :            org-export-registered-backends))
27548 :     (let ((new-list (mapcar #\='org-export-backend-name
27549 :                             org-export-registered-backends)))
27550 :       (dolist (backend val)
27551 :         (cond
27552 :          ((not (load (format "ox-%s" backend) t t))
27553 :           (message "Problems while trying to load export back-end \=`%s\='"
27554 :                    backend))
27555 :          ((not (memq backend new-list)) (push backend new-list))))
27556 :       (set-default \='org-export-backends new-list)))
27558 : Adding a back-end to this list will also pull the back-end it
27559 : depends on, if any.
27561 ** org-publish-project-alist =(funcall (function (closure (t...=
27562    :PROPERTIES:
27563    :CUSTOM_ID: org-publish-project-alist
27564    :END:
27566 - *Type:* alist
27567 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]]
27568 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-project-alist][Find modifications in git logs]]
27570 : Association list to control publishing behavior.
27571 : \<org-mode-map>
27572 : Each element of the alist is a publishing project.  The car of
27573 : each element is a string, uniquely identifying the project.  The
27574 : cdr of each element is in one of the following forms:
27576 : 1. A well-formed property list with an even number of elements,
27577 :    alternating keys and values, specifying parameters for the
27578 :    publishing process.
27580 :      (:property value :property value ... )
27582 : 2. A meta-project definition, specifying of a list of
27583 :    sub-projects:
27585 :      (:components ("project-1" "project-2" ...))
27587 : When the CDR of an element of org-publish-project-alist is in
27588 : this second form, the elements of the list after `:components'
27589 : are taken to be components of the project, which group together
27590 : files requiring different publishing options.  When you publish
27591 : such a project with `\[org-publish]', the components all publish.
27593 : When a property is given a value in `org-publish-project-alist',
27594 : its setting overrides the value of the corresponding user
27595 : variable (if any) during publishing.  However, options set within
27596 : a file override everything.
27598 : Most properties are optional, but some should always be set:
27600 :   `:base-directory'
27602 :     Directory containing publishing source files.
27604 :   `:base-extension'
27606 :     Extension (without the dot!) of source files.  This can be
27607 :     a regular expression.  If not given, "org" will be used as
27608 :     default extension.  If it is `any', include all the files,
27609 :     even without extension.
27611 :   `:publishing-directory'
27613 :     Directory (possibly remote) where output files will be
27614 :     published.
27616 : If `:recursive' is non-nil files in sub-directories of
27617 : `:base-directory' are considered.
27619 : The `:exclude' property may be used to prevent certain files from
27620 : being published.  Its value may be a string or regexp matching
27621 : file names you don't want to be published.
27623 : The `:include' property may be used to include extra files.  Its
27624 : value may be a list of filenames to include.  The filenames are
27625 : considered relative to the base directory.
27627 : When both `:include' and `:exclude' properties are given values,
27628 : the exclusion step happens first.
27630 : One special property controls which back-end function to use for
27631 : publishing files in the project.  This can be used to extend the
27632 : set of file types publishable by `org-publish', as well as the
27633 : set of output formats.
27635 :   `:publishing-function'
27637 :     Function to publish file.  Each back-end may define its
27638 :     own (i.e. `org-latex-publish-to-pdf',
27639 :     `org-html-publish-to-html').  May be a list of functions, in
27640 :     which case each function in the list is invoked in turn.
27642 : Another property allows you to insert code that prepares
27643 : a project for publishing.  For example, you could call GNU Make
27644 : on a certain makefile, to ensure published files are built up to
27645 : date.
27647 :   `:preparation-function'
27649 :     Function to be called before publishing this project.  This
27650 :     may also be a list of functions.  Preparation functions are
27651 :     called with the project properties list as their sole
27652 :     argument.
27654 :   `:completion-function'
27656 :     Function to be called after publishing this project.  This
27657 :     may also be a list of functions.  Completion functions are
27658 :     called with the project properties list as their sole
27659 :     argument.
27661 : Some properties control details of the Org publishing process,
27662 : and are equivalent to the corresponding user variables listed in
27663 : the right column.  Back-end specific properties may also be
27664 : included.  See the back-end documentation for more information.
27666 :   :author                   `user-full-name'
27667 :   :creator                  `org-export-creator-string'
27668 :   :email                    `user-mail-address'
27669 :   :exclude-tags             `org-export-exclude-tags'
27670 :   :headline-levels          `org-export-headline-levels'
27671 :   :language                 `org-export-default-language'
27672 :   :preserve-breaks          `org-export-preserve-breaks'
27673 :   :section-numbers          `org-export-with-section-numbers'
27674 :   :select-tags              `org-export-select-tags'
27675 :   :time-stamp-file          `org-export-time-stamp-file'
27676 :   :with-archived-trees      `org-export-with-archived-trees'
27677 :   :with-author              `org-export-with-author'
27678 :   :with-creator             `org-export-with-creator'
27679 :   :with-date                `org-export-with-date'
27680 :   :with-drawers             `org-export-with-drawers'
27681 :   :with-email               `org-export-with-email'
27682 :   :with-emphasize           `org-export-with-emphasize'
27683 :   :with-entities            `org-export-with-entities'
27684 :   :with-fixed-width         `org-export-with-fixed-width'
27685 :   :with-footnotes           `org-export-with-footnotes'
27686 :   :with-inlinetasks         `org-export-with-inlinetasks'
27687 :   :with-latex               `org-export-with-latex'
27688 :   :with-planning            `org-export-with-planning'
27689 :   :with-priority            `org-export-with-priority'
27690 :   :with-properties          `org-export-with-properties'
27691 :   :with-smart-quotes        `org-export-with-smart-quotes'
27692 :   :with-special-strings     `org-export-with-special-strings'
27693 :   :with-statistics-cookies' `org-export-with-statistics-cookies'
27694 :   :with-sub-superscript     `org-export-with-sub-superscripts'
27695 :   :with-toc                 `org-export-with-toc'
27696 :   :with-tables              `org-export-with-tables'
27697 :   :with-tags                `org-export-with-tags'
27698 :   :with-tasks               `org-export-with-tasks'
27699 :   :with-timestamps          `org-export-with-timestamps'
27700 :   :with-title               `org-export-with-title'
27701 :   :with-todo-keywords       `org-export-with-todo-keywords'
27703 : The following properties may be used to control publishing of
27704 : a site-map of files or summary page for a given project.
27706 :   `:auto-sitemap'
27708 :     Whether to publish a site-map during
27709 :     `org-publish-current-project' or `org-publish-all'.
27711 :   `:sitemap-filename'
27713 :     Filename for output of site-map.  Defaults to "sitemap.org".
27715 :   `:sitemap-title'
27717 :     Title of site-map page.  Defaults to name of file.
27719 :   `:sitemap-style'
27721 :     Can be `list' (site-map is just an itemized list of the
27722 :     titles of the files involved) or `tree' (the directory
27723 :     structure of the source files is reflected in the site-map).
27724 :     Defaults to `tree'.
27726 :   `:sitemap-format-entry'
27728 :     Plugin function used to format entries in the site-map.  It
27729 :     is called with three arguments: the file or directory name
27730 :     relative to base directory, the site map style and the
27731 :     current project.  It has to return a string.
27733 :     Defaults to `org-publish-sitemap-default-entry', which turns
27734 :     file names into links and use document titles as
27735 :     descriptions.  For specific formatting needs, one can use
27736 :     `org-publish-find-date', `org-publish-find-title' and
27737 :     `org-publish-find-property', to retrieve additional
27738 :     information about published documents.
27740 :   `:sitemap-function'
27742 :     Plugin function to use for generation of site-map.  It is
27743 :     called with two arguments: the title of the site-map, as
27744 :     a string, and a representation of the files involved in the
27745 :     project, as returned by `org-list-to-lisp'.  The latter can
27746 :     further be transformed using `org-list-to-generic',
27747 :     `org-list-to-subtree' and alike.  It has to return a string.
27749 :     Defaults to `org-publish-sitemap-default', which generates
27750 :     a plain list of links to all files in the project.
27752 : If you create a site-map file, adjust the sorting like this:
27754 :   `:sitemap-sort-folders'
27756 :     Where folders should appear in the site-map.  Set this to
27757 :     `first' or `last' to display folders first or last,
27758 :     respectively.  When set to `ignore' (default), folders are
27759 :     ignored altogether.  Any other value will mix files and
27760 :     folders.  This variable has no effect when site-map style is
27761 :     `tree'.
27763 :   `:sitemap-sort-files'
27765 :     The site map is normally sorted alphabetically.  You can
27766 :     change this behavior setting this to `anti-chronologically',
27767 :     `chronologically', or nil.
27769 :   `:sitemap-ignore-case'
27771 :     Should sorting be case-sensitive?  Default nil.
27773 : The following property control the creation of a concept index.
27775 :   `:makeindex'
27777 :     Create a concept index.  The file containing the index has to
27778 :     be called "theindex.org".  If it doesn't exist in the
27779 :     project, it will be generated.  Contents of the index are
27780 :     stored in the file "theindex.inc", which can be included in
27781 :     "theindex.org".
27783 : Other properties affecting publication.
27785 :   `:body-only'
27787 :     Set this to t to publish only the body of the documents.
27789 ** org-ascii-charset =(funcall (function (closure (t...=
27790    :PROPERTIES:
27791    :CUSTOM_ID: org-ascii-charset
27792    :END:
27794 - *Type:* (choice (const :tag "ASCII" as...
27795 - *Since:* Emacs version 24.4
27796 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
27797 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-charset][Find modifications in git logs]]
27799 : The charset allowed to represent various elements and objects.
27800 : Possible values are:
27801 : `ascii'    Only use plain ASCII characters
27802 : `latin1'   Include Latin-1 characters
27803 : `utf-8'    Use all UTF-8 characters
27805 ** org-agenda-inactive-leader ="["=
27806    :PROPERTIES:
27807    :CUSTOM_ID: org-agenda-inactive-leader
27808    :END:
27810 - *Type:* string
27811 - *Since:* Emacs version 24.1
27812 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27813 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-inactive-leader][Find modifications in git logs]]
27815 : Text preceding item pulled into the agenda by inactive time stamps.
27816 : These entries are added to the agenda when pressing "[".
27818 ** org-html-head =(funcall (function (closure (h...=
27819    :PROPERTIES:
27820    :CUSTOM_ID: org-html-head
27821    :END:
27823 - *Type:* string
27824 - *Since:* Emacs version 24.4
27825 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
27826 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-head][Find modifications in git logs]]
27828 : Org-wide head definitions for exported HTML files.
27830 : This variable can contain the full HTML structure to provide a
27831 : style, including the surrounding HTML tags.  You can consider
27832 : including definitions for the following classes: title, todo,
27833 : done, timestamp, timestamp-kwd, tag, target.
27835 : For example, a valid value would be:
27837 :    <style type="text/css">
27838 :     <![CDATA[
27839 :        p { font-weight: normal; color: gray; }
27840 :        h1 { color: black; }
27841 :       .title { text-align: center; }
27842 :       .todo, .timestamp-kwd { color: red; }
27843 :       .done { color: green; }
27844 :     ]]>
27845 :    </style>
27847 : If you want to refer to an external style, use something like
27849 :    <link rel="stylesheet" type="text/css" href="mystyles.css" />
27851 : As the value of this option simply gets inserted into the HTML
27852 : <head> header, you can use it to add any arbitrary text to the
27853 : header.
27855 : You can set this on a per-file basis using #+HTML_HEAD:,
27856 : or for publication projects using the :html-head property.
27858 ** org-agenda-custom-commands =(quote (("n" "Agenda and all T...=
27859    :PROPERTIES:
27860    :CUSTOM_ID: org-agenda-custom-commands
27861    :END:
27863 - *Type:* (repeat (choice :value ("x" "D...
27864 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27865 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-custom-commands][Find modifications in git logs]]
27867 : Custom commands for the agenda.
27868 : \<org-mode-map>
27869 : These commands will be offered on the splash screen displayed by the
27870 : agenda dispatcher `\[org-agenda]'.  Each entry is a list like this:
27872 :    (key desc type match settings files)
27874 : key      The key (one or more characters as a string) to be associated
27875 :          with the command.
27876 : desc     A description of the command, when omitted or nil, a default
27877 :          description is built using MATCH.
27878 : type     The command type, any of the following symbols:
27879 :           agenda      The daily/weekly agenda.
27880 :           todo        Entries with a specific TODO keyword, in all agenda files.
27881 :           search      Entries containing search words entry or headline.
27882 :           tags        Tags/Property/TODO match in all agenda files.
27883 :           tags-todo   Tags/P/T match in all agenda files, TODO entries only.
27884 :           todo-tree   Sparse tree of specific TODO keyword in *current* file.
27885 :           tags-tree   Sparse tree with all tags matches in *current* file.
27886 :           occur-tree  Occur sparse tree for *current* file.
27887 :           ...         A user-defined function.
27888 : match    What to search for:
27889 :           - a single keyword for TODO keyword searches
27890 :           - a tags match expression for tags searches
27891 :           - a word search expression for text searches.
27892 :           - a regular expression for occur searches
27893 :           For all other commands, this should be the empty string.
27894 : settings  A list of option settings, similar to that in a let form, so like
27895 :           this: ((opt1 val1) (opt2 val2) ...).   The values will be
27896 :           evaluated at the moment of execution, so quote them when needed.
27897 : files     A list of files to write the produced agenda buffer to with
27898 :           the command `org-store-agenda-views'.
27899 :           If a file name ends in ".html", an HTML version of the buffer
27900 :           is written out.  If it ends in ".ps", a postscript version is
27901 :           produced.  Otherwise, only the plain text is written to the file.
27903 : You can also define a set of commands, to create a composite agenda buffer.
27904 : In this case, an entry looks like this:
27906 :   (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
27908 : where
27910 : desc   A description string to be displayed in the dispatcher menu.
27911 : cmd    An agenda command, similar to the above.  However, tree commands
27912 :        are not allowed, but instead you can get agenda and global todo list.
27913 :        So valid commands for a set are:
27914 :        (agenda "" settings)
27915 :        (alltodo "" settings)
27916 :        (stuck "" settings)
27917 :        (todo "match" settings files)
27918 :        (search "match" settings files)
27919 :        (tags "match" settings files)
27920 :        (tags-todo "match" settings files)
27922 : Each command can carry a list of options, and another set of options can be
27923 : given for the whole set of commands.  Individual command options take
27924 : precedence over the general options.
27926 : When using several characters as key to a command, the first characters
27927 : are prefix commands.  For the dispatcher to display useful information, you
27928 : should provide a description for the prefix, like
27930 :  (setq org-agenda-custom-commands
27931 :    \='(("h" . "HOME + Name tag searches") ; describe prefix "h"
27932 :      ("hl" tags "+HOME+Lisa")
27933 :      ("hp" tags "+HOME+Peter")
27934 :      ("hk" tags "+HOME+Kim")))
27936 ** org-fast-tag-selection-single-key =(funcall (function (closure (f...=
27937    :PROPERTIES:
27938    :CUSTOM_ID: org-fast-tag-selection-single-key
27939    :END:
27941 - *Type:* (choice (const :tag "No" nil) ...
27942 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27943 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fast-tag-selection-single-key][Find modifications in git logs]]
27945 : Non-nil means fast tag selection exits after first change.
27946 : When nil, you have to press RET to exit it.
27947 : During fast tag selection, you can toggle this flag with `C-c'.
27948 : This variable can also have the value `expert'.  In this case, the window
27949 : displaying the tags menu is not even shown, until you press C-c again.
27951 ** org-html-divs =(funcall (function (closure (h...=
27952    :PROPERTIES:
27953    :CUSTOM_ID: org-html-divs
27954    :END:
27956 - *Type:* (list :greedy t (list :tag "Pr...
27957 - *Since:* Emacs version 24.4
27958 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
27959 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-divs][Find modifications in git logs]]
27961 : Alist of the three section elements for HTML export.
27962 : The car of each entry is one of `preamble', `content' or `postamble'.
27963 : The cdrs of each entry are the ELEMENT_TYPE and ID for each
27964 : section of the exported document.
27966 : Note that changing the default will prevent you from using
27967 : org-info.js for your website.
27969 ** org-speed-commands-user =(funcall (function (closure (f...=
27970    :PROPERTIES:
27971    :CUSTOM_ID: org-speed-commands-user
27972    :END:
27974 - *Type:* (repeat :value ("k" . ignore) ...
27975 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
27976 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-commands-user][Find modifications in git logs]]
27978 : Alist of additional speed commands.
27979 : This list will be checked before `org-speed-commands-default'
27980 : when the variable `org-use-speed-commands' is non-nil
27981 : and when the cursor is at the beginning of a headline.
27982 : The car if each entry is a string with a single letter, which must
27983 : be assigned to `self-insert-command' in the global map.
27984 : The cdr is either a command to be called interactively, a function
27985 : to be called, or a form to be evaluated.
27986 : An entry that is just a list with a single string will be interpreted
27987 : as a descriptive headline that will be added when listing the speed
27988 : commands in the Help buffer using the `?' speed command.
27990 ** org-agenda-search-view-always-boolean =nil=
27991    :PROPERTIES:
27992    :CUSTOM_ID: org-agenda-search-view-always-boolean
27993    :END:
27995 - *Type:* boolean
27996 - *Since:* Emacs version 24.1
27997 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
27998 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-search-view-always-boolean][Find modifications in git logs]]
28000 : Non-nil means the search string is interpreted as individual parts.
28002 : The search string for search view can either be interpreted as a phrase,
28003 : or as a list of snippets that define a boolean search for a number of
28004 : strings.
28006 : When this is non-nil, the string will be split on whitespace, and each
28007 : snippet will be searched individually, and all must match in order to
28008 : select an entry.  A snippet is then a single string of non-white
28009 : characters, or a string in double quotes, or a regexp in {} braces.
28010 : If a snippet is preceded by "-", the snippet must *not* match.
28011 : "+" is syntactic sugar for positive selection.  Each snippet may
28012 : be found as a full word or a partial word, but see the variable
28013 : `org-agenda-search-view-force-full-words'.
28015 : When this is nil, search will look for the entire search phrase as one,
28016 : with each space character matching any amount of whitespace, including
28017 : line breaks.
28019 : Even when this is nil, you can still switch to Boolean search dynamically
28020 : by preceding the first snippet with "+" or "-".  If the first snippet
28021 : is a regexp marked with braces like "{abc}", this will also switch to
28022 : boolean search.
28024 ** org-refile-use-cache =(funcall (function (closure (f...=
28025    :PROPERTIES:
28026    :CUSTOM_ID: org-refile-use-cache
28027    :END:
28029 - *Type:* boolean
28030 - *Since:* Emacs version 24.1
28031 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
28032 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-use-cache][Find modifications in git logs]]
28034 : Non-nil means cache refile targets to speed up the process.
28035 : \<org-mode-map>The cache for a particular file will be updated automatically when
28036 : the buffer has been killed, or when any of the marker used for flagging
28037 : refile targets no longer points at a live buffer.
28038 : If you have added new entries to a buffer that might themselves be targets,
28039 : you need to clear the cache manually by pressing `C-0 \[org-refile]' or,
28040 : if you find that easier, `\[universal-argument] \[universal-argument] \[universal-argument] \[org-refile]'.
28042 ** org-hierarchical-todo-statistics =(funcall (function (closure (f...=
28043    :PROPERTIES:
28044    :CUSTOM_ID: org-hierarchical-todo-statistics
28045    :END:
28047 - *Type:* boolean
28048 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
28049 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hierarchical-todo-statistics][Find modifications in git logs]]
28051 : Non-nil means TODO statistics covers just direct children.
28052 : When nil, all entries in the subtree are considered.
28053 : This has only an effect if `org-provide-todo-statistics' is set.
28054 : To set this to nil for only a single subtree, use a COOKIE_DATA
28055 : property and include the word "recursive" into the value.
28057 ** org-beamer-environments-extra =(funcall (function (closure (t...=
28058    :PROPERTIES:
28059    :CUSTOM_ID: org-beamer-environments-extra
28060    :END:
28062 - *Type:* (repeat (list (string :tag "En...
28063 - *Since:* Emacs version 24.4
28064 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]]
28065 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-environments-extra][Find modifications in git logs]]
28067 : Environments triggered by tags in Beamer export.
28068 : Each entry has 4 elements:
28070 : name    Name of the environment
28071 : key     Selection key for `org-beamer-select-environment'
28072 : open    The opening template for the environment, with the following escapes
28073 :         %a   the action/overlay specification
28074 :         %A   the default action/overlay specification
28075 :         %R   the raw BEAMER_act value
28076 :         %o   the options argument, with square brackets
28077 :         %O   the raw BEAMER_opt value
28078 :         %h   the headline text
28079 :         %r   the raw headline text (i.e. without any processing)
28080 :         %H   if there is headline text, that raw text in {} braces
28081 :         %U   if there is headline text, that raw text in [] brackets
28082 : close   The closing string of the environment.
28084 ** org-confirm-elisp-link-function =(funcall (function (closure (f...=
28085    :PROPERTIES:
28086    :CUSTOM_ID: org-confirm-elisp-link-function
28087    :END:
28089 - *Type:* (choice (const :tag "with yes-...
28090 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
28091 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-confirm-elisp-link-function][Find modifications in git logs]]
28093 : Non-nil means ask for confirmation before executing Emacs Lisp links.
28094 : Elisp links can be dangerous: just think about a link
28096 :      [[elisp:(shell-command "rm -rf ~/*")][Google Search]]
28098 : This link would show up in your Org document as "Google Search",
28099 : but really it would remove your entire home directory.
28100 : Therefore we advise against setting this variable to nil.
28101 : Just change it to `y-or-n-p' if you want to confirm with a
28102 : single keystroke rather than having to type "yes".
28104 ** org-babel-lilypond-commands =(funcall (function (closure (t...=
28105    :PROPERTIES:
28106    :CUSTOM_ID: org-babel-lilypond-commands
28107    :END:
28109 - *Type:* (list (string :tag "Lilypond  ...
28110 - *Since:* Emacs version 24.3
28111 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]]
28112 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-commands][Find modifications in git logs]]
28114 : Commands to run lilypond and view or play the results.
28115 : These should be executables that take a filename as an argument.
28116 : On some system it is possible to specify the filename directly
28117 : and the viewer or player will be determined from the file type;
28118 : you can leave the string empty on this case.
28120 ** org-babel-ocaml-command =(funcall (function (closure (t...=
28121    :PROPERTIES:
28122    :CUSTOM_ID: org-babel-ocaml-command
28123    :END:
28125 - *Type:* string
28126 - *Since:* Emacs version 24.4
28127 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ocaml.el][ob-ocaml.el]]
28128 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-ocaml-command][Find modifications in git logs]]
28130 : Name of the command for executing Ocaml code.
28132 ** org-show-context-detail =(funcall (function (closure (f...=
28133    :PROPERTIES:
28134    :CUSTOM_ID: org-show-context-detail
28135    :END:
28137 - *Type:* (choice (const :tag "Canonical...
28138 - *Since:* Emacs version 26.1
28139 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
28140 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-context-detail][Find modifications in git logs]]
28142 : Alist between context and visibility span when revealing a location.
28144 : \<org-mode-map>Some actions may move point into invisible
28145 : locations.  As a consequence, Org always expose a neighborhood
28146 : around point.  How much is shown depends on the initial action,
28147 : or context.  Valid contexts are
28149 :   agenda         when exposing an entry from the agenda
28150 :   org-goto       when using the command `org-goto' (`\[org-goto]')
28151 :   occur-tree     when using the command `org-occur' (`\[org-sparse-tree] /')
28152 :   tags-tree      when constructing a sparse tree based on tags matches
28153 :   link-search    when exposing search matches associated with a link
28154 :   mark-goto      when exposing the jump goal of a mark
28155 :   bookmark-jump  when exposing a bookmark location
28156 :   isearch        when exiting from an incremental search
28157 :   default        default for all contexts not set explicitly
28159 : Allowed visibility spans are
28161 :   minimal        show current headline; if point is not on headline,
28162 :                  also show entry
28164 :   local          show current headline, entry and next headline
28166 :   ancestors      show current headline and its direct ancestors; if
28167 :                  point is not on headline, also show entry
28169 :   lineage        show current headline, its direct ancestors and all
28170 :                  their children; if point is not on headline, also show
28171 :                  entry and first child
28173 :   tree           show current headline, its direct ancestors and all
28174 :                  their children; if point is not on headline, also show
28175 :                  entry and all children
28177 :   canonical      show current headline, its direct ancestors along with
28178 :                  their entries and children; if point is not located on
28179 :                  the headline, also show current entry and all children
28181 : As special cases, a nil or t value means show all contexts in
28182 : `minimal' or `canonical' view, respectively.
28184 : Some views can make displayed information very compact, but also
28185 : make it harder to edit the location of the match.  In such
28186 : a case, use the command `org-reveal' (`\[org-reveal]') to show
28187 : more context.
28189 ** org-from-is-user-regexp =(funcall (function (closure (f...=
28190    :PROPERTIES:
28191    :CUSTOM_ID: org-from-is-user-regexp
28192    :END:
28194 - *Type:* regexp
28195 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
28196 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-from-is-user-regexp][Find modifications in git logs]]
28198 : Regexp matched against the "From:" header of an email or usenet message.
28199 : It should match if the message is from the user him/herself.
28201 ** org-timer-display =(funcall (function (closure (t...=
28202    :PROPERTIES:
28203    :CUSTOM_ID: org-timer-display
28204    :END:
28206 - *Type:* (choice (const :tag "Mode line...
28207 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]]
28208 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-display][Find modifications in git logs]]
28210 : Define where running timer is displayed, if at all.
28211 : When a timer is running, Org can display it in the mode line
28212 : and/or frame title.  Allowed values are:
28214 : both         displays in both mode line and frame title
28215 : mode-line    displays only in mode line (default)
28216 : frame-title  displays only in frame title
28217 : nil          current timer is not displayed
28219 ** org-clock-display-default-range =(funcall (function (closure (t...=
28220    :PROPERTIES:
28221    :CUSTOM_ID: org-clock-display-default-range
28222    :END:
28224 - *Type:* (choice (const today) (const y...
28225 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
28226 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-display-default-range][Find modifications in git logs]]
28228 : Default range when displaying clocks with `org-clock-display'.
28230 ** org-attach-auto-tag =(funcall (function (closure (t...=
28231    :PROPERTIES:
28232    :CUSTOM_ID: org-attach-auto-tag
28233    :END:
28235 - *Type:* (choice (const :tag "None" nil...
28236 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
28237 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-auto-tag][Find modifications in git logs]]
28239 : Tag that will be triggered automatically when an entry has an attachment.
28241 ** org-agenda-clockreport-parameter-plist =(quote (:link t :maxlevel 2))=
28242    :PROPERTIES:
28243    :CUSTOM_ID: org-agenda-clockreport-parameter-plist
28244    :END:
28246 - *Type:* plist
28247 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
28248 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clockreport-parameter-plist][Find modifications in git logs]]
28250 : Property list with parameters for the clocktable in clockreport mode.
28251 : This is the display mode that shows a clock table in the daily/weekly
28252 : agenda, the properties for this dynamic block can be set here.
28253 : The usual clocktable parameters are allowed here, but you cannot set
28254 : the properties :name, :tstart, :tend, :block, and :scope - these will
28255 : be overwritten to make sure the content accurately reflects the
28256 : current display in the agenda.
28258 ** org-man-pdf-process =(funcall (function (closure (o...=
28259    :PROPERTIES:
28260    :CUSTOM_ID: org-man-pdf-process
28261    :END:
28263 - *Type:* (choice (repeat :tag "Shell co...
28264 - *Since:* Emacs version 24.4
28265 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]]
28266 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-pdf-process][Find modifications in git logs]]
28268 : Commands to process a Man file to a PDF file.
28270 : This is a list of strings, each of them will be given to the
28271 : shell as a command.  %f in the command will be replaced by the
28272 : relative file name, %F by the absolute file name, %b by the file
28273 : base name (i.e. without directory and extension parts), %o by the
28274 : base directory of the file and %O by the absolute file name of
28275 : the output file.
28277 : By default, Org uses 3 runs of to do the processing.
28279 : Alternatively, this may be a Lisp function that does the
28280 : processing.  This function should accept the file name as
28281 : its single argument.
28283 ** org-export-with-planning =(funcall (function (closure (t...=
28284    :PROPERTIES:
28285    :CUSTOM_ID: org-export-with-planning
28286    :END:
28288 - *Type:* boolean
28289 - *Since:* Emacs version 24.4
28290 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
28291 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-planning][Find modifications in git logs]]
28293 : Non-nil means include planning info in export.
28295 : Planning info is the line containing either SCHEDULED:,
28296 : DEADLINE:, CLOSED: time-stamps, or a combination of them.
28298 : This option can also be set with the OPTIONS keyword,
28299 : e.g. "p:t".
28301 ** org-fontify-quote-and-verse-blocks =(funcall (function (closure (t...=
28302    :PROPERTIES:
28303    :CUSTOM_ID: org-fontify-quote-and-verse-blocks
28304    :END:
28306 - *Type:* boolean
28307 - *Since:* Emacs version 24.1
28308 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-faces.el][org-faces.el]]
28309 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fontify-quote-and-verse-blocks][Find modifications in git logs]]
28311 : Non-nil means, add a special face to #+begin_quote and #+begin_verse block.
28312 : When nil, format these as normal Org.  This is the default, because the
28313 : content of these blocks will still be treated as Org syntax.
28315 ** org-html-footnotes-section =(funcall (function (closure (h...=
28316    :PROPERTIES:
28317    :CUSTOM_ID: org-html-footnotes-section
28318    :END:
28320 - *Type:* string
28321 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
28322 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-footnotes-section][Find modifications in git logs]]
28324 : Format for the footnotes section.
28325 : Should contain a two instances of %s.  The first will be replaced with the
28326 : language-specific word for "Footnotes", the second one will be replaced
28327 : by the footnotes themselves.
28329 ** org-agenda-max-effort =nil=
28330    :PROPERTIES:
28331    :CUSTOM_ID: org-agenda-max-effort
28332    :END:
28334 - *Type:* (choice (symbol :tag "No limit...
28335 - *Since:* Emacs version 24.4
28336 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
28337 - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-effort][Find modifications in git logs]]
28339 : Maximum cumulated effort duration for the agenda.
28340 : This can be nil (no limit) or a number of minutes (as an integer)
28341 : or an alist of agenda types with an associated number of minutes
28342 : to limit entries to in this type.