#+TITLE: Documentation for Org hooks, commands and options #+AUTHOR: Bastien #+DESCRIPTION: List of all hooks, commands and options #+KEYWORDS: Org hooks, commands and options #+OPTIONS: H:3 num:nil toc:t \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc #+HTML_LINK_UP: index.html #+HTML_LINK_HOME: https://orgmode.org/worg/ # This file is released by its authors and contributors under the GNU # Free Documentation license v1.3 or later, code examples are released # under the GNU General Public License v3 or later. * Definitions This page lists *all hooks, commands and options* of Org 9.0.9. - *Hooks* :: are options containing functions to be run before or after a function. For example, =org-mode-hook= can contain a list of functions to be called after org-mode is turned on. - *Commands* :: are interactive functions that the user can run with =M-x command RET=. Most commands have an associated keybinding, indicated here. Users can bind command to his preferred keybinding. - *Options* :: are variables that the user can set through the =customize= interface. Calling =M-x customize-variable RET= then completing over available options will open the custom interface, which makes it easy to set an option. These are the main "internals" that the user may want to know about, and we list them here for further reference. E.g. You can safely create links to =https://orgmode.org/worg/doc.html#org-agenda= to refer to the documentation of the =org-agenda= command. On top of these symbols, there are other non-interactive /functions/ and /variables/. You can get more documentation about them with =C-h f org- TAB= and =C-h v org- TAB= respectively. * Hooks :PROPERTIES: :CUSTOM_ID: hooks :END: ** org-checkbox-statistics-hook =nil= :PROPERTIES: :CUSTOM_ID: org-checkbox-statistics-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-checkbox-statistics-hook][Find modifications in git logs]] : Hook that is run whenever Org thinks checkbox statistics should be updated. : This hook runs even if checkbox rule in : `org-list-automatic-rules' does not apply, so it can be used to : implement alternative ways of collecting statistics : information. ** org-todo-setup-filter-hook =nil= :PROPERTIES: :CUSTOM_ID: org-todo-setup-filter-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-setup-filter-hook][Find modifications in git logs]] : Hook for functions that pre-filter todo specs. : Each function takes a todo spec and returns either nil or the spec : transformed into canonical form. ** org-timer-continue-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-continue-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-continue-hook][Find modifications in git logs]] : Hook run after relative or countdown timer is continued. ** org-clock-in-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-in-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-hook][Find modifications in git logs]] : Hook run when starting the clock. ** org-clock-before-select-task-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-before-select-task-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[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]] : Hook called in task selection just before prompting the user. ** org-property-allowed-value-functions =nil= :PROPERTIES: :CUSTOM_ID: org-beamer-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-allowed-value-functions][Find modifications in git logs]] : Hook for functions supplying allowed values for a specific property. : The functions must take a single argument, the name of the property, and : return a flat list of allowed values. If ":ETC" is one of : the values, this means that these values are intended as defaults for : completion, but that other values should be allowed too. : The functions must return nil if they are not responsible for this : property. ** org-after-todo-state-change-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-after-todo-state-change-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook which is run after the state of a TODO item was changed. : The new state (a string with a TODO keyword, or nil) is available in the : Lisp variable `org-state'. ** org-capture-prepare-finalize-hook =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-capture-prepare-finalize-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-prepare-finalize-hook][Find modifications in git logs]] : Hook that is run before the finalization starts. : The capture buffer is current and still narrowed. ** org-timer-stop-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-stop-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-stop-hook][Find modifications in git logs]] : Hook run before relative or countdown timer is stopped. ** org-metaleft-hook =nil= :PROPERTIES: :CUSTOM_ID: org-metaleft-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaleft-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-left'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-export-filter-bold-functions =nil= :PROPERTIES: :CUSTOM_ID: orgstruct-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-bold-functions][Find modifications in git logs]] : List of functions applied to transcoded bold text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-before-parsing-hook =nil= :PROPERTIES: :CUSTOM_ID: org-indent-mode-on-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-before-parsing-hook][Find modifications in git logs]] : Hook run before parsing an export buffer. : : This is run after include keywords and macros have been expanded : and Babel code blocks executed, on a copy of the original buffer : being exported. Visibility and narrowing are preserved. Point : is at the beginning of the buffer. : : Every function in this hook will be called with one argument: the : back-end currently used, as a symbol. ** org-feed-before-adding-hook =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-feed-before-adding-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-before-adding-hook][Find modifications in git logs]] : Hook that is run before adding new feed items to a file. : You might want to commit the file in its current state to version control, : for example. ** org-export-filter-diary-sexp-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-diary-sexp-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded diary-sexp. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-after-todo-statistics-hook =nil= :PROPERTIES: :CUSTOM_ID: org-after-todo-statistics-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-todo-statistics-hook][Find modifications in git logs]] : Hook that is called after a TODO statistics cookie has been updated. : Each function is called with two arguments: the number of not-done entries : and the number of done entries. : : For example, the following function, when added to this hook, will switch : an entry to DONE when all children are done, and back to TODO when new : entries are set to a TODO status. Note that this hook is only called : when there is a statistics cookie in the headline! : : (defun org-summary-todo (n-done n-not-done) : "Switch entry to DONE when all subentries are done, to TODO otherwise." : (let (org-log-done org-log-states) ; turn off logging : (org-todo (if (= n-not-done 0) "DONE" "TODO")))) : ** org-export-filter-export-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-export-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded export-block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-babel-after-execute-hook =nil= :PROPERTIES: :CUSTOM_ID: org-babel-after-execute-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-after-execute-hook][Find modifications in git logs]] : Hook for functions to be called after `org-babel-execute-src-block' ** org-icalendar-after-save-hook =nil= :PROPERTIES: :CUSTOM_ID: org-icalendar-after-save-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-after-save-hook][Find modifications in git logs]] : Hook run after an iCalendar file has been saved. : This hook is run with the name of the file as argument. A good : way to use this is to tell a desktop calendar application to : re-read the iCalendar file. ** org-metaright-hook =nil= :PROPERTIES: :CUSTOM_ID: org-metaright-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaright-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-right'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-cycle-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-cycle-hook :END: - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-hook][Find modifications in git logs]] : Hook that is run after `org-cycle' has changed the buffer visibility. : The function(s) in this hook must accept a single argument which indicates : the new state that was set by the most recent `org-cycle' command. The : argument is a symbol. After a global state change, it can have the values : `overview', `contents', or `all'. After a local state change, it can have : the values `folded', `children', or `subtree'. ** org-export-filter-subscript-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-subscript-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-subscript-functions][Find modifications in git logs]] : List of functions applied to a transcoded subscript. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-entity-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-entity-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-entity-functions][Find modifications in git logs]] : List of functions applied to a transcoded entity. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-after-sorting-entries-or-items-hook =nil= :PROPERTIES: :CUSTOM_ID: org-after-sorting-entries-or-items-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook that is run after a bunch of entries or items have been sorted. : When children are sorted, the cursor is in the parent line when this : hook gets called. When a region or a plain list is sorted, the cursor : will be in the first entry of the sorted region/list. ** org-timer-done-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-done-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-done-hook][Find modifications in git logs]] : Hook run after countdown timer reaches zero. ** org-shiftmetaup-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftmetaup-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaup-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-S-up'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-tab-after-check-for-table-hook =nil= :PROPERTIES: :CUSTOM_ID: org-tab-after-check-for-table-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook for functions to attach themselves to TAB. : See `org-ctrl-c-ctrl-c-hook' for more information. : This hook runs after it has been established that the cursor is not in a : table, but before checking if the cursor is in a headline or if global cycling : should be done. : If any function in this hook returns t, not other actions like visibility : cycling will be done. ** org-open-at-point-functions =nil= :PROPERTIES: :CUSTOM_ID: org-open-at-point-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point-functions][Find modifications in git logs]] : Hook that is run when following a link at point. : : Functions in this hook must return t if they identify and follow : a link at point. If they don't find anything interesting at point, : they must return nil. ** org-property-changed-functions =nil= :PROPERTIES: :CUSTOM_ID: org-property-changed-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-changed-functions][Find modifications in git logs]] : Hook called when the value of a property has changed. : Each hook function should accept two arguments, the name of the property : and the new value. ** orgstruct-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: orgstruct-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `orgstruct-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-mobile-pre-push-hook =nil= :PROPERTIES: :CUSTOM_ID: org-mobile-pre-push-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pre-push-hook][Find modifications in git logs]] : Hook run before running `org-mobile-push'. : This could be used to clean up `org-mobile-directory', for example to : remove files that used to be included in the agenda but no longer are. : The presence of such files would not really be a problem, but after time : they may accumulate. ** org-export-filter-link-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-link-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-link-functions][Find modifications in git logs]] : List of functions applied to a transcoded link. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-shiftright-final-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftright-final-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftright-final-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-right'. : This one runs after all other options except shift-select have been excluded. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-capture-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-capture-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `org-capture-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-mobile-post-pull-hook =nil= :PROPERTIES: :CUSTOM_ID: org-src-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-post-pull-hook][Find modifications in git logs]] : Hook run after running `org-mobile-pull', only if new items were found. : If Emacs does not have direct write access to the WebDAV directory used : by the mobile device, this hook should be used to copy the emptied : capture file `mobileorg.org' back to the WebDAV directory, for example : using `rsync' or `scp'. ** org-table-follow-field-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-table-follow-field-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Hook run after entering or leaving `org-table-follow-field-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-export-filter-underline-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-underline-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-underline-functions][Find modifications in git logs]] : List of functions applied to transcoded underline text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-target-functions =nil= :PROPERTIES: :CUSTOM_ID: org-capture-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-target-functions][Find modifications in git logs]] : List of functions applied to a transcoded target. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-shiftdown-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftdown-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-down'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-ctrl-c-ctrl-c-final-hook =nil= :PROPERTIES: :CUSTOM_ID: org-ctrl-c-ctrl-c-final-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook for functions attaching themselves to `C-c C-c'. : : This can be used to add additional functionality to the C-c C-c : key which executes context-dependent commands. This hook is run : after any other test, while `org-ctrl-c-ctrl-c-hook' is run : before the first test. : : Each function will be called with no arguments. The function : must check if the context is appropriate for it to act. If yes, : it should do its thing and then return a non-nil value. If the : context is wrong, just do nothing and return nil. ** org-archive-hook =nil= :PROPERTIES: :CUSTOM_ID: org-archive-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-hook][Find modifications in git logs]] : Hook run after successfully archiving a subtree. : Hook functions are called with point on the subtree in the : original file. At this stage, the subtree has been added to the : archive location, but not yet deleted from the original file. ** org-shiftleft-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftleft-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-left'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-todo-get-default-hook =nil= :PROPERTIES: :CUSTOM_ID: org-todo-get-default-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-get-default-hook][Find modifications in git logs]] : Hook for functions that get a default item for todo. : Each function takes arguments (NEW-MARK OLD-MARK) and returns either : nil or a string to be used for the todo mark. ** org-export-filter-body-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-body-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-body-functions][Find modifications in git logs]] : List of functions applied to transcoded body. : Each filter is called with three arguments: a string which : contains no Org syntax, the back-end, as a symbol, and the : communication channel, as a plist. It must return a string or : nil. ** org-clock-cancel-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-cancel-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-cancel-hook][Find modifications in git logs]] : Hook run when canceling the current clock. ** org-open-link-functions =nil= :PROPERTIES: :CUSTOM_ID: org-open-link-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-link-functions][Find modifications in git logs]] : Hook for functions finding a plain text link. : These functions must take a single argument, the link content. : They will be called for links that look like [[link text][description]] : when LINK TEXT does not have a protocol like "http:" and does not look : like a filename (e.g. "./blue.png"). : : These functions will be called *before* Org attempts to resolve the : link by doing text searches in the current buffer - so if you want a : link "[[target]]" to still find "<>", your function should : handle this as a special case. : : When the function does handle the link, it must return a non-nil value. : If it decides that it is not responsible for this link, it must return : nil to indicate that that Org can continue with other options like : exact and fuzzy text search. ** org-export-filter-code-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-code-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-code-functions][Find modifications in git logs]] : List of functions applied to transcoded code text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-shiftmetaright-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftmetaright-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaright-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-S-right'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-export-filter-keyword-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-keyword-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-keyword-functions][Find modifications in git logs]] : List of functions applied to a transcoded keyword. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-paragraph-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-paragraph-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-paragraph-functions][Find modifications in git logs]] : List of functions applied to a transcoded paragraph. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-horizontal-rule-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-horizontal-rule-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded horizontal-rule. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-property-drawer-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-property-drawer-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded property-drawer. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-shiftup-final-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftup-final-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup-final-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-up'. : This one runs after all other options except shift-select have been excluded. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-export-filter-inline-src-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-inline-src-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded inline-src-block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-stack-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: orgtbl-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-mode-hook][Find modifications in git logs]] : Hook run after entering Org-Stack mode. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-shiftright-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftright-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftright-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-right'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-agenda-before-write-hook =(quote (org-agenda-add-entry-t...= :PROPERTIES: :CUSTOM_ID: org-agenda-before-write-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-before-write-hook][Find modifications in git logs]] : Hook run in a temporary buffer before writing the agenda to an export file. : A useful function for this hook is `org-agenda-add-entry-text'. ** org-export-filter-italic-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-italic-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-italic-functions][Find modifications in git logs]] : List of functions applied to transcoded italic text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-babel-pre-tangle-hook =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-pre-tangle-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-pre-tangle-hook][Find modifications in git logs]] : Hook run at the beginning of `org-babel-tangle'. ** org-export-filter-plain-text-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-plain-text-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to plain text. : Each filter is called with three arguments: a string which : contains no Org syntax, the back-end, as a symbol, and the : communication channel, as a plist. It must return a string or : nil. ** org-agenda-after-show-hook =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-after-show-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-after-show-hook][Find modifications in git logs]] : Normal hook run after an item has been shown from the agenda. : Point is in the buffer where the item originated. ** org-timer-start-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-start-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-start-hook][Find modifications in git logs]] : Hook run after relative timer is started. ** org-shiftleft-final-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftleft-final-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft-final-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-left'. : This one runs after all other options except shift-select have been excluded. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-agenda-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-mode-hook][Find modifications in git logs]] : Hook run after `org-agenda-mode' is turned on. : The buffer is still writable when this hook is called. ** org-occur-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-occur-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-hook][Find modifications in git logs]] : Hook that is run after `org-occur' has constructed a sparse tree. : This can be used to recenter the window to show as much of the structure : as possible. ** org-agenda-cleanup-fancy-diary-hook =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-cleanup-fancy-diary-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Hook run when the fancy diary buffer is cleaned up. ** org-export-filter-item-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-item-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-item-functions][Find modifications in git logs]] : List of functions applied to a transcoded item. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-inlinetask-functions =nil= :PROPERTIES: :CUSTOM_ID: org-table-follow-field-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-inlinetask-functions][Find modifications in git logs]] : List of functions applied to a transcoded inlinetask. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-mode-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-capture-mode-on-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode-hook][Find modifications in git logs]] : Hook run after entering Org mode. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-clock-in-prepare-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-in-prepare-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-prepare-hook][Find modifications in git logs]] : Hook run when preparing the clock. : This hook is run before anything happens to the task that : you want to clock in. For example, you can use this hook : to add an effort property. ** org-export-filter-headline-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-headline-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-headline-functions][Find modifications in git logs]] : List of functions applied to a transcoded headline. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-timer-set-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-set-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-set-hook][Find modifications in git logs]] : Hook run after countdown timer is set. ** org-export-filter-table-cell-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-table-cell-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded table-cell. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-speed-command-hook =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-speed-command-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-command-hook][Find modifications in git logs]] : Hook for activating speed commands at strategic locations. : Hook functions are called in sequence until a valid handler is : found. : : Each hook takes a single argument, a user-pressed command key : which is also a `self-insert-command' from the global map. : : Within the hook, examine the cursor position and the command key : and return nil or a valid handler as appropriate. Handler could : be one of an interactive command, a function, or a form. : : Set `org-use-speed-commands' to non-nil value to enable this : hook. The default setting is `org-speed-command-activate'. ** org-metaup-hook =nil= :PROPERTIES: :CUSTOM_ID: org-metaup-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaup-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-up'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-ctrl-c-ctrl-c-hook =nil= :PROPERTIES: :CUSTOM_ID: org-ctrl-c-ctrl-c-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook for functions attaching themselves to `C-c C-c'. : : This can be used to add additional functionality to the C-c C-c : key which executes context-dependent commands. This hook is run : before any other test, while `org-ctrl-c-ctrl-c-final-hook' is : run after the last test. : : Each function will be called with no arguments. The function : must check if the context is appropriate for it to act. If yes, : it should do its thing and then return a non-nil value. If the : context is wrong, just do nothing and return nil. ** orgtbl-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: orgtbl-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `orgtbl-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-load-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-load-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-load-hook][Find modifications in git logs]] : Hook that is run after org.el has been loaded. ** org-todo-statistics-hook =nil= :PROPERTIES: :CUSTOM_ID: org-todo-statistics-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-statistics-hook][Find modifications in git logs]] : Hook that is run whenever Org thinks TODO statistics should be updated. : This hook runs even if there is no statistics cookie present, in which case : `org-after-todo-statistics-hook' would not run. ** org-pre-cycle-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-pre-cycle-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-pre-cycle-hook][Find modifications in git logs]] : Hook that is run before visibility cycling is happening. : The function(s) in this hook must accept a single argument which indicates : the new state that will be set right after running this hook. The : argument is a symbol. Before a global state change, it can have the values : `overview', `content', or `all'. Before a local state change, it can have : the values `folded', `children', or `subtree'. ** org-export-filter-planning-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-planning-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-planning-functions][Find modifications in git logs]] : List of functions applied to a transcoded planning. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-options-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-options-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-options-functions][Find modifications in git logs]] : List of functions applied to the export options. : Each filter is called with two arguments: the export options, as : a plist, and the back-end, as a symbol. It must return : a property list containing export options. ** orgstruct-setup-hook =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-cdlatex-mode-off-hook :END: - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-setup-hook][Find modifications in git logs]] : Hook run after orgstruct-mode-map is filled. ** org-capture-after-finalize-hook =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-capture-after-finalize-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-after-finalize-hook][Find modifications in git logs]] : Hook that is run right after a capture process is finalized. : Suitable for window cleanup. ** org-mobile-before-process-capture-hook =nil= :PROPERTIES: :CUSTOM_ID: org-mobile-before-process-capture-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[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]] : Hook that is run after content was moved to `org-mobile-inbox-for-pull'. : The inbox file is visited by the current buffer, and the buffer is : narrowed to the newly captured data. ** org-export-filter-statistics-cookie-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-statistics-cookie-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded statistics-cookie. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-dynamic-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-dynamic-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded dynamic-block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-quote-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-quote-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded quote block. : Each filter is called with three arguments: the transcoded quote : data, as a string, the back-end, as a symbol, and the : communication channel, as a plist. It must return a string or : nil. ** org-mobile-post-push-hook =nil= :PROPERTIES: :CUSTOM_ID: org-mobile-post-push-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-post-push-hook][Find modifications in git logs]] : Hook run after running `org-mobile-push'. : If Emacs does not have direct write access to the WebDAV directory used : by the mobile device, this hook should be used to copy all files from the : local staging directory `org-mobile-directory' to the WebDAV directory, : for example using `rsync' or `scp'. ** org-export-before-processing-hook =nil= :PROPERTIES: :CUSTOM_ID: org-export-before-processing-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-before-processing-hook][Find modifications in git logs]] : Hook run at the beginning of the export process. : : This is run before include keywords and macros are expanded and : Babel code blocks executed, on a copy of the original buffer : being exported. Visibility and narrowing are preserved. Point : is at the beginning of the buffer. : : Every function in this hook will be called with one argument: the : back-end currently used, as a symbol. ** org-export-filter-clock-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-clock-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-clock-functions][Find modifications in git logs]] : List of functions applied to a transcoded clock. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-superscript-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-superscript-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-superscript-functions][Find modifications in git logs]] : List of functions applied to a transcoded superscript. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-verbatim-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-verbatim-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-verbatim-functions][Find modifications in git logs]] : List of functions applied to transcoded verbatim text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-radio-target-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-radio-target-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded radio-target. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-footnote-definition-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-footnote-definition-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded footnote-definition. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-cdlatex-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-cdlatex-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `org-cdlatex-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-export-filter-center-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-center-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded center block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-plain-list-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-plain-list-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded plain-list. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-strike-through-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-strike-through-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to transcoded strike-through text. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-parse-tree-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-parse-tree-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to the parsed tree. : Each filter is called with three arguments: the parse tree, as : returned by `org-element-parse-buffer', the back-end, as : a symbol, and the communication channel, as a plist. It must : return the modified parse tree to transcode. ** org-publish-after-publishing-hook =nil= :PROPERTIES: :CUSTOM_ID: org-publish-after-publishing-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-after-publishing-hook][Find modifications in git logs]] : Hook run each time a file is published. : Every function in this hook will be called with two arguments: : the name of the original file and the name of the file : produced. ** org-clock-out-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-out-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-hook][Find modifications in git logs]] : Hook run when stopping the current clock. ** org-follow-link-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-cdlatex-mode-on-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-follow-link-hook][Find modifications in git logs]] : Hook that is run after a link has been followed. ** org-metareturn-hook =nil= :PROPERTIES: :CUSTOM_ID: org-metareturn-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metareturn-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-RET'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-after-demote-entry-hook =nil= :PROPERTIES: :CUSTOM_ID: org-after-demote-entry-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-demote-entry-hook][Find modifications in git logs]] : Hook run after an entry has been demoted. : The cursor will be at the beginning of the entry. : When a subtree is being demoted, the hook will be called for each node. ** org-shiftdown-final-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftdown-final-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown-final-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-down'. : This one runs after all other options except shift-select have been excluded. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-export-filter-table-row-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-table-row-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded table-row. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-beamer-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-beamer-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `org-beamer-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-after-promote-entry-hook =nil= :PROPERTIES: :CUSTOM_ID: org-store-link-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-promote-entry-hook][Find modifications in git logs]] : Hook run after an entry has been promoted. : The cursor will be at the beginning of the entry. : When a subtree is being promoted, the hook will be called for each node. ** org-after-tags-change-hook =nil= :PROPERTIES: :CUSTOM_ID: org-after-tags-change-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-tags-change-hook][Find modifications in git logs]] : Hook that is run after the tags in a line have changed. ** org-after-refile-insert-hook =nil= :PROPERTIES: :CUSTOM_ID: org-after-refile-insert-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-after-refile-insert-hook][Find modifications in git logs]] : Hook run after `org-refile' has inserted its stuff at the new location. : Note that this is still *before* the stuff will be removed from : the *old* location. ** org-export-filter-drawer-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-drawer-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-drawer-functions][Find modifications in git logs]] : List of functions applied to a transcoded drawer. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-example-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-indent-mode-off-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded example-block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-capture-before-finalize-hook =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-capture-before-finalize-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-before-finalize-hook][Find modifications in git logs]] : Hook that is run right before a capture process is finalized. : The capture buffer is still current when this hook runs and it is : widened to the entire buffer. ** org-execute-file-search-functions =nil= :PROPERTIES: :CUSTOM_ID: org-execute-file-search-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-execute-file-search-functions][Find modifications in git logs]] : List of functions to execute a file search triggered by a link. : : Functions added to this hook must accept a single argument, the : search string that was part of the file link, the part after the : double colon. The function must first check if it would like to : handle this search, for example by checking the `major-mode' or : the file extension. If it decides not to handle this search, it : should just return nil to give other functions a chance. If it : does handle the search, it must return a non-nil value to keep : other functions from trying. : : Each function can access the current prefix argument through the : variable `current-prefix-arg'. Note that a single prefix is used : to force opening a link in Emacs, so it may be good to only use a : numeric or double prefix to guide the search function. : : In case this is needed, a function in this hook can also restore : the window configuration before `org-open-at-point' was called using: : : (set-window-configuration org-window-config-before-follow-link) ** org-export-filter-export-snippet-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-export-snippet-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded export-snippet. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-timer-pause-hook =nil= :PROPERTIES: :CUSTOM_ID: org-timer-pause-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-pause-hook][Find modifications in git logs]] : Hook run before relative or countdown timer is paused. ** org-agenda-bulk-custom-functions =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-custom-functions :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-custom-functions][Find modifications in git logs]] : Alist of characters and custom functions for bulk actions. : For example, this value makes those two functions available: : : \='((?R set-category) : (?C bulk-cut)) : : With selected entries in an agenda buffer, `B R' will call : the custom function `set-category' on the selected entries. : Note that functions in this alist don't need to be quoted. ** org-export-filter-babel-call-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-babel-call-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded babel-call. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-reveal-start-hook =nil= :PROPERTIES: :CUSTOM_ID: org-reveal-start-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reveal-start-hook][Find modifications in git logs]] : Hook run before revealing a location. ** org-export-filter-latex-fragment-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-latex-fragment-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded latex-fragment. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-latex-environment-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-latex-environment-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded latex-environment. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-tab-after-check-for-cycling-hook =nil= :PROPERTIES: :CUSTOM_ID: org-tab-after-check-for-cycling-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook for functions to attach themselves to TAB. : See `org-ctrl-c-ctrl-c-hook' for more information. : This hook runs after it has been established that not table field motion and : not visibility should be done because of current context. This is probably : the place where a package like yasnippets can hook in. ** org-log-buffer-setup-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-log-buffer-setup-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-buffer-setup-hook][Find modifications in git logs]] : Hook that is run after an Org log buffer is created. ** org-babel-tangle-body-hook =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-tangle-body-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-body-hook][Find modifications in git logs]] : Hook run over the contents of each code block body. ** org-export-filter-timestamp-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-timestamp-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-timestamp-functions][Find modifications in git logs]] : List of functions applied to a transcoded timestamp. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-fixed-width-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-fixed-width-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded fixed-width. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-insert-heading-hook =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-insert-heading-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-hook][Find modifications in git logs]] : Hook being run after inserting a new heading. ** org-shiftmetadown-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftmetadown-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetadown-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-S-down'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-shiftup-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftup-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `S-up'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-shiftmetaleft-hook =nil= :PROPERTIES: :CUSTOM_ID: org-shiftmetaleft-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaleft-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-S-left'. : See `org-ctrl-c-ctrl-c-hook' for more information. ** org-lint--report-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-lint--report-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--report-mode-hook][Find modifications in git logs]] : Hook run after entering OrgLint mode. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-ctags-open-link-functions =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-ctags-open-link-functions :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-open-link-functions][Find modifications in git logs]] : List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS when ORG-CTAGS is active. ** org-babel-post-tangle-hook =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-post-tangle-hook :END: - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-post-tangle-hook][Find modifications in git logs]] : Hook run in code files tangled by `org-babel-tangle'. ** org-tab-first-hook =nil= :PROPERTIES: :CUSTOM_ID: org-tab-first-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tab-first-hook][Find modifications in git logs]] : Hook for functions to attach themselves to TAB. : See `org-ctrl-c-ctrl-c-hook' for more information. : This hook runs as the first action when TAB is pressed, even before : `org-cycle' messes around with the `outline-regexp' to cater for : inline tasks and plain list item folding. : If any function in this hook returns t, any other actions that : would have been caused by TAB (such as table field motion or visibility : cycling) will not occur. ** org-agenda-finalize-hook =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-finalize-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-finalize-hook][Find modifications in git logs]] : Hook run just before displaying an agenda buffer. : The buffer is still writable when the hook is called. : : You can modify some of the buffer substrings but you should be : extra careful not to modify the text properties of the agenda : headlines as the agenda display heavily relies on them. ** org-clock-goto-hook =nil= :PROPERTIES: :CUSTOM_ID: org-clock-goto-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto-hook][Find modifications in git logs]] : Hook run when selecting the currently clocked-in entry. ** orgtbl-after-send-table-hook =nil= :PROPERTIES: :CUSTOM_ID: orgtbl-after-send-table-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-after-send-table-hook][Find modifications in git logs]] : Hook for functions attaching to `C-c C-c', if the table is sent. : This can be used to add additional functionality after the table is sent : to the receiver position, otherwise, if table is not sent, the functions : are not run. ** org-export-filter-footnote-reference-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-footnote-reference-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded footnote-reference. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-line-break-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-line-break-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded line-break. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-inline-babel-call-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-inline-babel-call-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded inline-babel-call. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-font-lock-set-keywords-hook =nil= :PROPERTIES: :CUSTOM_ID: org-font-lock-set-keywords-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Functions that can manipulate `org-font-lock-extra-keywords'. : This is called after `org-font-lock-extra-keywords' is defined, but before : it is installed to be used by font lock. This can be useful if something : needs to be inserted at a specific position in the font-lock sequence. ** org-mobile-pre-pull-hook =nil= :PROPERTIES: :CUSTOM_ID: org-mobile-pre-pull-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pre-pull-hook][Find modifications in git logs]] : Hook run before executing `org-mobile-pull'. : If Emacs does not have direct write access to the WebDAV directory used : by the mobile device, this hook should be used to copy the capture file : `mobileorg.org' from the WebDAV location to the local staging : directory `org-mobile-directory'. ** org-font-lock-hook =nil= :PROPERTIES: :CUSTOM_ID: org-font-lock-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-font-lock-hook][Find modifications in git logs]] : Functions to be called for special font lock stuff. ** org-export-filter-final-output-functions =nil= :PROPERTIES: :CUSTOM_ID: orgstruct-mode-on-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to the transcoded string. : Each filter is called with three arguments: the full transcoded : string, the back-end, as a symbol, and the communication channel, : as a plist. It must return a string that will be used as the : final export output. ** org-indent-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-indent-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `org-indent-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-export-filter-special-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-special-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded special block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-table-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-table-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-table-functions][Find modifications in git logs]] : List of functions applied to a transcoded table. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-feed-after-adding-hook =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-feed-after-adding-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-after-adding-hook][Find modifications in git logs]] : Hook that is run after new items have been added to a file. : Depending on `org-feed-save-after-adding', the buffer will already : have been saved. ** org-trigger-hook =nil= :PROPERTIES: :CUSTOM_ID: org-trigger-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-trigger-hook][Find modifications in git logs]] : Hook for functions that are triggered by a state change. : : Each function gets as its single argument a property list with at : least the following elements: : : (:type type-of-change :position pos-at-entry-start : :from old-state :to new-state) : : Depending on the type, more properties may be present. : : This mechanism is currently implemented for: : : TODO state changes : ------------------ : :type todo-state-change : :from previous state (keyword as a string), or nil, or a symbol : `todo' or `done', to indicate the general type of state. : :to new state, like in :from ** org-blocker-hook =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-apply-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-blocker-hook][Find modifications in git logs]] : Hook for functions that are allowed to block a state change. : : Functions in this hook should not modify the buffer. : Each function gets as its single argument a property list, : see `org-trigger-hook' for more information about this list. : : If any of the functions in this hook returns nil, the state change : is blocked. ** org-export-filter-src-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-src-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded src-block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-tab-before-tab-emulation-hook =nil= :PROPERTIES: :CUSTOM_ID: org-babel-J-interleave-echos-except-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Hook for functions to attach themselves to TAB. : See `org-ctrl-c-ctrl-c-hook' for more information. : This hook runs after every other options for TAB have been exhausted, but : before indentation and insertion takes place. ** org-export-filter-node-property-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-node-property-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded node-property. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-agenda-entry-text-cleanup-hook =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-entry-text-cleanup-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Hook that is run after basic cleanup of entry text to be shown in agenda. : This cleanup is done in a temporary buffer, so the function may inspect and : change the entire buffer. : Some default stuff like drawers and scheduling/deadline dates will already : have been removed when this is called, as will any matches for regular : expressions listed in `org-agenda-entry-text-exclude-regexps'. ** org-create-file-search-functions =nil= :PROPERTIES: :CUSTOM_ID: org-create-file-search-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-file-search-functions][Find modifications in git logs]] : List of functions to construct the right search string for a file link. : These functions are called in turn with point at the location to : which the link should point. : : A function in the hook should first test if it would like to : handle this file type, for example by checking the `major-mode' : or the file extension. If it decides not to handle this file, it : should just return nil to give other functions a chance. If it : does handle the file, it must return the search string to be used : when following the link. The search string will be part of the : file link, given after a double colon, and `org-open-at-point' : will automatically search for it. If special measures must be : taken to make the search successful, another function should be : added to the companion hook `org-execute-file-search-functions', : which see. : : A function in this hook may also use `setq' to set the variable : `description' to provide a suggestion for the descriptive text to : be used for this link when it gets inserted into an Org buffer : with \[org-insert-link]. ** org-src-mode-hook =nil= :PROPERTIES: :CUSTOM_ID: org-src-mode-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-mode-hook][Find modifications in git logs]] : Hook run after entering or leaving `org-src-mode'. : No problems result if this variable is not bound. : `add-hook' automatically binds it. (This is true for all hook variables.) ** org-export-filter-section-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-section-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-filter-section-functions][Find modifications in git logs]] : List of functions applied to a transcoded section. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-export-filter-verse-block-functions =nil= :PROPERTIES: :CUSTOM_ID: org-export-filter-verse-block-functions :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[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]] : List of functions applied to a transcoded verse block. : Each filter is called with three arguments: the transcoded data, : as a string, the back-end, as a symbol, and the communication : channel, as a plist. It must return a string or nil. ** org-metadown-hook =nil= :PROPERTIES: :CUSTOM_ID: org-metadown-hook :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metadown-hook][Find modifications in git logs]] : Hook for functions attaching themselves to `M-down'. : See `org-ctrl-c-ctrl-c-hook' for more information. * Commands :PROPERTIES: :CUSTOM_ID: commands :END: ** org-agenda-previous-date-line =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-previous-date-line :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-date-line][Find modifications in git logs]] : Jump to the previous line indicating a date in agenda buffer. ** org-table-previous-field :PROPERTIES: :CUSTOM_ID: org-table-previous-field :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-previous-field][Find modifications in git logs]] : Go to the previous field in the table. : Before doing so, re-align the table if necessary. ** org-time-stamp-inactive =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-time-stamp-inactive :END: - *Access:* ~C-c !, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp-inactive][Find modifications in git logs]] : Insert an inactive time stamp. : An inactive time stamp is enclosed in square brackets instead of angle : brackets. It is inactive in the sense that it does not trigger agenda entries, : does not link to the calendar and cannot be changed with the S-cursor keys. : So these are more for recording a certain time/date. ** org-edit-latex-environment :PROPERTIES: :CUSTOM_ID: org-edit-latex-environment :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-latex-environment][Find modifications in git logs]] : Edit LaTeX environment at point. : : The LaTeX environment is copied into a new buffer. Major mode is : set to the one associated to "latex" in ‘org-src-lang-modes’, : or to ‘latex-mode’ if there is none. : : When done, exit with ‘C-c '’. The edited text will then replace : the LaTeX environment in the Org mode buffer. ** org-table-move-column-left :PROPERTIES: :CUSTOM_ID: org-table-move-column-left :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-column-left][Find modifications in git logs]] : Move column to the left. ** org-switchb =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-switchb :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-switchb][Find modifications in git logs]] : Switch between Org buffers. : : With ‘C-u’ prefix, restrict available buffers to files. : : With ‘C-u C-u’ prefix, restrict available buffers to agenda files. ** org-do-demote :PROPERTIES: :CUSTOM_ID: org-do-demote :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-do-demote][Find modifications in git logs]] : Demote the current heading lower down the tree. : If the region is active in ‘transient-mark-mode’, demote all : headings in the region. ** org-attach-reveal =(&optional if-exists)= :PROPERTIES: :CUSTOM_ID: org-attach-reveal :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-reveal][Find modifications in git logs]] : Show the attachment directory of the current task. : This will attempt to use an external program to show the directory. ** org-lint--show-source :PROPERTIES: :CUSTOM_ID: org-lint--show-source :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--show-source][Find modifications in git logs]] : Show source line that generated the report at point. ** org-toggle-archive-tag =(&optional find-done)= :PROPERTIES: :CUSTOM_ID: org-toggle-archive-tag :END: - *Access:* ~C-c C-x a, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-archive-tag][Find modifications in git logs]] : Toggle the archive tag for the current headline. : With prefix ARG, check all children of current headline and offer tagging : the children that do not contain any open TODO items. ** org-plot/collect-options =(&optional params)= :PROPERTIES: :CUSTOM_ID: org-plot/collect-options :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/collect-options][Find modifications in git logs]] : Collect options from an org-plot ‘#+Plot:’ line. : Accepts an optional property list PARAMS, to which the options : will be added. Returns the resulting property list. ** org-babel-lob-ingest =(&optional file)= :PROPERTIES: :CUSTOM_ID: org-babel-lob-ingest :END: - *Access:* ~C-c C-v i~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lob.el][ob-lob.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lob-ingest][Find modifications in git logs]] : Add all named source blocks defined in FILE to ‘org-babel-library-of-babel’. ** org-columns-delete :PROPERTIES: :CUSTOM_ID: org-columns-delete :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-delete][Find modifications in git logs]] : Delete the column at point from columns view. ** org-beginning-of-item :PROPERTIES: :CUSTOM_ID: org-beginning-of-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-item][Find modifications in git logs]] : Go to the beginning of the current item. : Throw an error when not in a list. ** org-property-action :PROPERTIES: :CUSTOM_ID: org-property-action :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-action][Find modifications in git logs]] : Do an action on properties. ** org-eww-copy-for-org-mode :PROPERTIES: :CUSTOM_ID: org-eww-copy-for-org-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-eww.el][org-eww.el]] - [[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]] : Copy current buffer content or active region with ‘org-mode’ style links. : This will encode ‘link-title’ and ‘link-location’ with : ‘org-make-link-string’, and insert the transformed test into the kill ring, : so that it can be yanked into an Org mode buffer with links working correctly. : : Further lines starting with a star get quoted with a comma to keep : the structure of the Org file. ** org-drag-line-backward =(arg)= :PROPERTIES: :CUSTOM_ID: org-drag-line-backward :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-line-backward][Find modifications in git logs]] : Drag the line at point ARG lines backward. ** org-agenda-filter-by-top-headline =(strip)= :PROPERTIES: :CUSTOM_ID: org-agenda-filter-by-top-headline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Keep only those lines that are descendants from the same top headline. : The top headline is that of the current line. ** org-cdlatex-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-cdlatex-mode :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-mode][Find modifications in git logs]] : Toggle the minor ‘org-cdlatex-mode’. : This mode supports entering LaTeX environment and math in LaTeX fragments : in Org mode. : key binding : --- ------- : : C-c Prefix Command : ' org-cdlatex-math-modify : ^ .. _ org-cdlatex-underscore-caret : ` cdlatex-math-symbol : : C-c { org-cdlatex-environment-indent : : ** org-babel-examplify-region =(beg end &optional results-switches inline)= :PROPERTIES: :CUSTOM_ID: org-babel-examplify-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-examplify-region][Find modifications in git logs]] : Comment out region using the inline ‘==’ or ‘: ’ org example quote. ** org-agenda-undo :PROPERTIES: :CUSTOM_ID: org-agenda-undo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-undo][Find modifications in git logs]] : Undo a remote editing step in the agenda. : This undoes changes both in the agenda buffer and in the remote buffer : that have been changed along. ** org-end-of-item :PROPERTIES: :CUSTOM_ID: org-end-of-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-item][Find modifications in git logs]] : Go to the end of the current item. : Throw an error when not in a list. ** org-timer-set-timer =(&optional opt)= :PROPERTIES: :CUSTOM_ID: org-timer-set-timer :END: - *Access:* ~C-c C-x ;~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-set-timer][Find modifications in git logs]] : Prompt for a duration in minutes or hh:mm:ss and set a timer. : : If ‘org-timer-default-timer’ is not "0", suggest this value as : the default duration for the timer. If a timer is already set, : prompt the user if she wants to replace it. : : Called with a numeric prefix argument, use this numeric value as : the duration of the timer in minutes. : : Called with a ‘C-u’ prefix arguments, use ‘org-timer-default-timer’ : without prompting the user for a duration. : : With two ‘C-u’ prefix arguments, use ‘org-timer-default-timer’ : without prompting the user for a duration and automatically : replace any running timer. : : By default, the timer duration will be set to the number of : minutes in the Effort property, if any. You can ignore this by : using three ‘C-u’ prefix arguments. ** org-md-export-as-markdown =(&optional async subtreep visible-only)= :PROPERTIES: :CUSTOM_ID: org-md-export-as-markdown :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-export-as-markdown][Find modifications in git logs]] : Export current buffer to a Markdown buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : Export is done in a buffer named "*Org MD Export*", which will : be displayed when ‘org-export-show-temporary-export-buffer’ is : non-nil. ** org-agenda-clockreport-mode :PROPERTIES: :CUSTOM_ID: org-agenda-clockreport-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clockreport-mode][Find modifications in git logs]] : Toggle clocktable mode in an agenda buffer. ** org-shiftcontrolright :PROPERTIES: :CUSTOM_ID: org-shiftcontrolright :END: - *Access:* ~, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftcontrolright][Find modifications in git logs]] : Switch to next TODO set. ** org-schedule =(arg &optional time)= :PROPERTIES: :CUSTOM_ID: org-schedule :END: - *Access:* ~C-c C-s, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-schedule][Find modifications in git logs]] : Insert the SCHEDULED: string with a timestamp to schedule a TODO item. : With one universal prefix argument, remove any scheduling date from the item. : With two universal prefix arguments, prompt for a delay cookie. : With argument TIME, scheduled at the corresponding date. TIME can : either be an Org date like "2011-07-24" or a delta like "+2d". ** org-agenda-set-effort :PROPERTIES: :CUSTOM_ID: org-agenda-set-effort :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-effort][Find modifications in git logs]] : Set the effort property for the current headline. ** org-table-fedit-abort :PROPERTIES: :CUSTOM_ID: org-table-fedit-abort :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-abort][Find modifications in git logs]] : Abort editing formulas, without installing the changes. ** org-agenda-toggle-deadlines :PROPERTIES: :CUSTOM_ID: org-agenda-toggle-deadlines :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-deadlines][Find modifications in git logs]] : Toggle inclusion of entries with a deadline in an agenda buffer. ** org-babel-screen-test :PROPERTIES: :CUSTOM_ID: org-babel-screen-test :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-screen.el][ob-screen.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-screen-test][Find modifications in git logs]] : Test if the default setup works. : The terminal should shortly flicker. ** org-agenda-execute =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-execute :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-execute][Find modifications in git logs]] : Execute another agenda command, keeping same window. : So this is just a shortcut for ‘C-c a’, available : in the agenda. ** org-convert-to-odd-levels :PROPERTIES: :CUSTOM_ID: org-convert-to-odd-levels :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-convert-to-odd-levels][Find modifications in git logs]] : Convert an Org file with all levels allowed to one with odd levels. : This will leave level 1 alone, convert level 2 to level 3, level 3 to : level 5 etc. ** org-table-convert :PROPERTIES: :CUSTOM_ID: org-table-convert :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-convert][Find modifications in git logs]] : Convert from ‘org-mode’ table to table.el and back. : Obviously, this only works within limits. When an Org table is converted : to table.el, all horizontal separator lines get lost, because table.el uses : these as cell boundaries and has no notion of horizontal lines. A table.el : table can be converted to an Org table only if it does not do row or column : spanning. Multiline cells will become multiple cells. Beware, Org mode : does not test if the table can be successfully converted - it blindly : applies a recipe that works for simple tables. ** org-table-create-or-convert-from-region =(arg)= :PROPERTIES: :CUSTOM_ID: org-table-create-or-convert-from-region :END: - *Access:* ~C-c |~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Convert region to table, or create an empty table. : If there is an active region, convert it to a table, using the function : ‘org-table-convert-region’. See the documentation of that function : to learn how the prefix argument is interpreted to determine the field : separator. : If there is no such region, create an empty table with ‘org-table-create’. ** org-plot/gnuplot-to-grid-data =(table data-file params)= :PROPERTIES: :CUSTOM_ID: org-plot/gnuplot-to-grid-data :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]] - [[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]] : Export the data in TABLE to DATA-FILE for gnuplot. : This means in a format appropriate for grid plotting by gnuplot. : PARAMS specifies which columns of TABLE should be plotted as independent : and dependant variables. ** org-columns-set-tags-or-toggle =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-columns-set-tags-or-toggle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[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]] : Toggle checkbox at point, or set tags for current headline. ** org-table-delete-column :PROPERTIES: :CUSTOM_ID: org-table-delete-column :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-delete-column][Find modifications in git logs]] : Delete a column from the table. ** org-agenda-show-clocking-issues :PROPERTIES: :CUSTOM_ID: org-agenda-show-clocking-issues :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-clocking-issues][Find modifications in git logs]] : Add overlays, showing issues with clocking. : See also the user option ‘org-agenda-clock-consistency-checks’. ** org-babel-tangle =(&optional arg target-file lang)= :PROPERTIES: :CUSTOM_ID: org-babel-tangle :END: - *Access:* ~C-c C-v t, C-c C-v C-t~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle][Find modifications in git logs]] : Write code blocks to source-specific files. : Extract the bodies of all source code blocks from the current : file into their own source-specific files. : With one universal prefix argument, only tangle the block at point. : When two universal prefix arguments, only tangle blocks for the : tangle file of the block at point. : Optional argument TARGET-FILE can be used to specify a default : export file for all source blocks. Optional argument LANG can be : used to limit the exported source code blocks by language. ** org-babel-shell-initialize :PROPERTIES: :CUSTOM_ID: org-babel-shell-initialize :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-shell.el][ob-shell.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-shell-initialize][Find modifications in git logs]] : Define execution functions associated to shell names. : This function has to be called whenever ‘org-babel-shell-names’ : is modified outside the Customize interface. ** org-agenda-archive-default-with-confirmation :PROPERTIES: :CUSTOM_ID: org-agenda-archive-default-with-confirmation :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Archive the entry or subtree belonging to the current agenda entry. ** org-agenda-remove-restriction-lock =(&optional noupdate)= :PROPERTIES: :CUSTOM_ID: org-agenda-remove-restriction-lock :END: - *Access:* ~C-c C-x >~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-restriction-lock][Find modifications in git logs]] : Remove the agenda restriction lock. ** org-icalendar-export-to-ics =(&optional async subtreep visible-only body-only)= :PROPERTIES: :CUSTOM_ID: org-icalendar-export-to-ics :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-export-to-ics][Find modifications in git logs]] : Export current buffer to an iCalendar file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "BEGIN:VCALENDAR" and "END:VCALENDAR". : : Return ICS file name. ** org-bibtex =(filename)= :PROPERTIES: :CUSTOM_ID: org-bibtex :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex][Find modifications in git logs]] : Export each headline in the current file to a bibtex entry. : Headlines are exported using ‘org-bibtex-headline’. ** org-table-blank-field :PROPERTIES: :CUSTOM_ID: org-table-blank-field :END: - *Access:* ~C-c SPC, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-blank-field][Find modifications in git logs]] : Blank the current table field or active region. ** org-src-associate-babel-session =(info)= :PROPERTIES: :CUSTOM_ID: org-src-associate-babel-session :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-associate-babel-session][Find modifications in git logs]] : Associate edit buffer with comint session. ** org-ctrl-c-minus :PROPERTIES: :CUSTOM_ID: org-ctrl-c-minus :END: - *Access:* ~C-c -, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-minus][Find modifications in git logs]] : Insert separator line in table or modify bullet status of line. : Also turns a plain line or a region of lines into list items. : Calls ‘org-table-insert-hline’, ‘org-toggle-item’, or : ‘org-cycle-list-bullet’, depending on context. ** org-update-checkbox-count =(&optional all)= :PROPERTIES: :CUSTOM_ID: org-update-checkbox-count :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-checkbox-count][Find modifications in git logs]] : Update the checkbox statistics in the current section. : : This will find all statistic cookies like [57%] and [6/12] and : update them with the current numbers. : : With optional prefix argument ALL, do this for the whole buffer. ** org-agenda-redo =(&optional all)= :PROPERTIES: :CUSTOM_ID: org-agenda-redo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-redo][Find modifications in git logs]] : Rebuild possibly ALL agenda view(s) in the current buffer. ** org-agenda-show-tags :PROPERTIES: :CUSTOM_ID: org-agenda-show-tags :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-tags][Find modifications in git logs]] : Show the tags applicable to the current item. ** org-agenda-manipulate-query-add-re :PROPERTIES: :CUSTOM_ID: org-agenda-manipulate-query-add-re :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Manipulate the query by adding a search regexp with positive selection. : Positive selection means the regexp must match for selection of an entry. ** org-attach-sync :PROPERTIES: :CUSTOM_ID: org-attach-sync :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-sync][Find modifications in git logs]] : Synchronize the current tasks with its attachments. : This can be used after files have been added externally. ** org-babel-view-src-block-info :PROPERTIES: :CUSTOM_ID: org-babel-view-src-block-info :END: - *Access:* ~C-c C-v I, C-c C-v TAB~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Display information on the current source block. : This includes header arguments, language and name, and is largely : a window into the ‘org-babel-get-src-block-info’ function. ** org-table-current-column :PROPERTIES: :CUSTOM_ID: org-table-current-column :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-current-column][Find modifications in git logs]] : Find out which column we are in. ** org-toggle-tags-groups :PROPERTIES: :CUSTOM_ID: org-toggle-tags-groups :END: - *Access:* ~C-c C-x q~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-tags-groups][Find modifications in git logs]] : Toggle support for group tags. : Support for group tags is controlled by the option : ‘org-group-tags’, which is non-nil by default. ** org-agenda-quit :PROPERTIES: :CUSTOM_ID: org-agenda-quit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-quit][Find modifications in git logs]] : Exit the agenda. : : When ‘org-agenda-sticky’ is non-nil, bury the agenda buffer : instead of killing it. : : When ‘org-agenda-restore-windows-after-quit’ is non-nil, restore : the pre-agenda window configuration. : : When column view is active, exit column view instead of the : agenda. ** org-timer-stop :PROPERTIES: :CUSTOM_ID: org-timer-stop :END: - *Access:* ~C-c C-x _~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-stop][Find modifications in git logs]] : Stop the relative or countdown timer. ** org-babel-insert-header-arg =(&optional header-arg value)= :PROPERTIES: :CUSTOM_ID: org-babel-insert-header-arg :END: - *Access:* ~C-c C-v j, C-c C-v C-j~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-insert-header-arg][Find modifications in git logs]] : Insert a header argument selecting from lists of common args and values. ** org-clock-cancel :PROPERTIES: :CUSTOM_ID: org-clock-cancel :END: - *Access:* ~C-c C-x C-q, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-cancel][Find modifications in git logs]] : Cancel the running clock by removing the start timestamp. ** org-agenda-log-mode =(&optional special)= :PROPERTIES: :CUSTOM_ID: org-agenda-log-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-log-mode][Find modifications in git logs]] : Toggle log mode in an agenda buffer. : : With argument SPECIAL, show all possible log items, not only the ones : configured in ‘org-agenda-log-mode-items’. : : With a ‘C-u C-u’ prefix, show *only* log items, nothing else. ** org-reset-checkbox-state-subtree :PROPERTIES: :CUSTOM_ID: org-reset-checkbox-state-subtree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reset-checkbox-state-subtree][Find modifications in git logs]] : Reset all checkboxes in an entry subtree. ** org-property-next-allowed-value =(&optional previous)= :PROPERTIES: :CUSTOM_ID: org-property-next-allowed-value :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-next-allowed-value][Find modifications in git logs]] : Switch to the next allowed value for this property. ** orgtbl-insert-radio-table :PROPERTIES: :CUSTOM_ID: orgtbl-insert-radio-table :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-insert-radio-table][Find modifications in git logs]] : Insert a radio table template appropriate for this major mode. ** org-table-insert-hline =(&optional above)= :PROPERTIES: :CUSTOM_ID: org-table-insert-hline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-hline][Find modifications in git logs]] : Insert a horizontal-line below the current line into the table. : With prefix ABOVE, insert above the current line. ** org-todo =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-todo :END: - *Access:* ~C-c C-t, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo][Find modifications in git logs]] : Change the TODO state of an item. : : The state of an item is given by a keyword at the start of the heading, : like : *** TODO Write paper : *** DONE Call mom : : The different keywords are specified in the variable ‘org-todo-keywords’. : By default the available states are "TODO" and "DONE". So, for this : example: when the item starts with TODO, it is changed to DONE. : When it starts with DONE, the DONE is removed. And when neither TODO nor : DONE are present, add TODO at the beginning of the heading. : : With ‘C-u’ prefix ARG, use completion to determine the new state. : With numeric prefix ARG, switch to that state. : With a ‘C-u C-u’ prefix, switch to the next set of TODO keywords (nextset). : With a ‘C-u C-u C-u’ prefix, circumvent any state blocking. : With a numeric prefix arg of 0, inhibit note taking for the change. : With a numeric prefix arg of -1, cancel repeater to allow marking as DONE. : : When called through ELisp, arg is also interpreted in the following way: : ‘none’ -> empty state : "" -> switch to empty state : ‘done’ -> switch to DONE : ‘nextset’ -> switch to the next set of keywords : ‘previousset’ -> switch to the previous set of keywords : "WAITING" -> switch to the specified keyword, but only if it : really is a member of ‘org-todo-keywords’. ** org-set-tags-to =(data)= :PROPERTIES: :CUSTOM_ID: org-set-tags-to :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-tags-to][Find modifications in git logs]] : Set the tags of the current entry to DATA, replacing the current tags. : DATA may be a tags string like :aa:bb:cc:, or a list of tags. : If DATA is nil or the empty string, any tags will be removed. ** org-agenda-goto-date =(span)= :PROPERTIES: :CUSTOM_ID: org-agenda-goto-date :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-date][Find modifications in git logs]] : Jump to DATE in agenda. ** org-preview-latex-fragment =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-preview-latex-fragment :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-fragment][Find modifications in git logs]] : Preview the LaTeX fragment at point, or all locally or globally. : : If the cursor is on a LaTeX fragment, create the image and overlay : it over the source code, if there is none. Remove it otherwise. : If there is no fragment at point, display all fragments in the : current section. : : With prefix ARG, preview or clear image for all fragments in the : current subtree or in the whole buffer when used before the first : headline. With a prefix ARG ‘C-u C-u’ preview or clear images : for all fragments in the buffer. ** org-table-fedit-menu =(event)= :PROPERTIES: :CUSTOM_ID: org-table-fedit-menu :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-menu][Find modifications in git logs]] : Org Edit Formulas Menu ** org-table-move-row-down :PROPERTIES: :CUSTOM_ID: org-table-move-row-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-row-down][Find modifications in git logs]] : Move table row down. ** org-archive-set-tag :PROPERTIES: :CUSTOM_ID: org-archive-set-tag :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-set-tag][Find modifications in git logs]] : Set the ARCHIVE tag. ** org-info =(&optional node)= :PROPERTIES: :CUSTOM_ID: org-info :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-info][Find modifications in git logs]] : Read documentation for Org in the info system. : With optional NODE, go directly to that node. ** org-goto-right :PROPERTIES: :CUSTOM_ID: org-goto-right :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-right][Find modifications in git logs]] : Finish ‘org-goto’ by going to the new location. ** org-sort-list =(&optional with-case sorting-type getkey-func compare-func interactive?)= :PROPERTIES: :CUSTOM_ID: org-sort-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort-list][Find modifications in git logs]] : Sort list items. : The cursor may be at any item of the list that should be sorted. : Sublists are not sorted. Checkboxes, if any, are ignored. : : Sorting can be alphabetically, numerically, by date/time as given : by a time stamp, by a property or by priority. : : Comparing entries ignores case by default. However, with an : optional argument WITH-CASE, the sorting considers case as well. : : The command prompts for the sorting type unless it has been given : to the function through the SORTING-TYPE argument, which needs to : be a character, (?n ?N ?a ?A ?t ?T ?f ?F ?x ?X). Here is the : detailed meaning of each character: : : n Numerically, by converting the beginning of the item to a number. : a Alphabetically. Only the first line of item is checked. : t By date/time, either the first active time stamp in the entry, if : any, or by the first inactive one. In a timer list, sort the timers. : x By "checked" status of a check list. : : Capital letters will reverse the sort order. : : If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies : a function to be called with point at the beginning of the : record. It must return a value that is compatible with COMPARE-FUNC, : the function used to compare entries. : : Sorting is done against the visible part of the headlines, it : ignores hidden links. : : A non-nil value for INTERACTIVE? is used to signal that this : function is being called interactively. ** org-agenda-clock-in =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-clock-in :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-in][Find modifications in git logs]] : Start the clock on the currently selected item. ** org-metaup =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-metaup :END: - *Access:* ~, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaup][Find modifications in git logs]] : Move subtree up or move table row up. : Calls ‘org-move-subtree-up’ or ‘org-table-move-row’ or : ‘org-move-item-up’, depending on context. See the individual commands : for more information. ** org-indent-line :PROPERTIES: :CUSTOM_ID: org-indent-line :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-line][Find modifications in git logs]] : Indent line depending on context. : : Indentation is done according to the following rules: : : - Footnote definitions, diary sexps, headlines and inline tasks : have to start at column 0. : : - On the very first line of an element, consider, in order, the : next rules until one matches: : : 1. If there’s a sibling element before, ignoring footnote : definitions and inline tasks, indent like its first line. : : 2. If element has a parent, indent like its contents. More : precisely, if parent is an item, indent after the : description part, if any, or the bullet (see : ‘org-list-description-max-indent’). Else, indent like : parent’s first line. : : 3. Otherwise, indent relatively to current level, if : ‘org-adapt-indentation’ is non-nil, or to left margin. : : - On a blank line at the end of an element, indent according to : the type of the element. More precisely : : 1. If element is a plain list, an item, or a footnote : definition, indent like the very last element within. : : 2. If element is a paragraph, indent like its last non blank : line. : : 3. Otherwise, indent like its very first line. : : - In the code part of a source block, use language major mode : to indent current line if ‘org-src-tab-acts-natively’ is : non-nil. If it is nil, do nothing. : : - Otherwise, indent like the first non-blank line above. : : The function doesn’t indent an item as it could break the whole : list structure. Instead, use ‘’ or ‘’. : : Also align node properties according to ‘org-property-format’. ** org-agenda-show-the-flagging-note :PROPERTIES: :CUSTOM_ID: org-agenda-show-the-flagging-note :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Display the flagging note in the other window. : When called a second time in direct sequence, offer to remove the FLAGGING : tag and (if present) the flagging note. ** org-agenda-entry-text-show :PROPERTIES: :CUSTOM_ID: org-agenda-entry-text-show :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-show][Find modifications in git logs]] : Add entry context for all agenda lines. ** org-date-from-calendar :PROPERTIES: :CUSTOM_ID: org-date-from-calendar :END: - *Access:* ~C-c <, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-date-from-calendar][Find modifications in git logs]] : Insert time stamp corresponding to cursor date in *Calendar* buffer. : If there is already a time stamp at the cursor position, update it. ** org-insert-drawer =(&optional arg drawer)= :PROPERTIES: :CUSTOM_ID: org-insert-drawer :END: - *Access:* ~C-c C-x d~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-drawer][Find modifications in git logs]] : Insert a drawer at point. : : When optional argument ARG is non-nil, insert a property drawer. : : Optional argument DRAWER, when non-nil, is a string representing : drawer’s name. Otherwise, the user is prompted for a name. : : If a region is active, insert the drawer around that region : instead. : : Point is left between drawer’s boundaries. ** org-ctags-find-tag =(name)= :PROPERTIES: :CUSTOM_ID: org-ctags-find-tag :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-find-tag][Find modifications in git logs]] : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS. : Look for a tag called ‘NAME’ in the current TAGS table. If it is found, : visit the file and location where the tag is found. ** org-agenda-year-view =(&optional year)= :PROPERTIES: :CUSTOM_ID: org-agenda-year-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-year-view][Find modifications in git logs]] : Switch to yearly view for agenda. : With argument YEAR, switch to that year. Years ranging from 70 : years ago to 30 years in the future can also be written as : 2-digit years. ** org-babel-result-hide-all :PROPERTIES: :CUSTOM_ID: org-babel-result-hide-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-result-hide-all][Find modifications in git logs]] : Fold all results in the current buffer. ** org-columns-open-link =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-columns-open-link :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-open-link][Find modifications in git logs]] ** org-add-note :PROPERTIES: :CUSTOM_ID: org-add-note :END: - *Access:* ~C-c C-z~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-add-note][Find modifications in git logs]] : Add a note to the current entry. : This is done in the same way as adding a state change note. ** org-table-fedit-lisp-indent :PROPERTIES: :CUSTOM_ID: org-table-fedit-lisp-indent :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-lisp-indent][Find modifications in git logs]] : Pretty-print and re-indent Lisp expressions in the Formula Editor. ** org-agenda-set-restriction-lock =(&optional type)= :PROPERTIES: :CUSTOM_ID: org-agenda-set-restriction-lock :END: - *Access:* ~ , C-c C-x <~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-restriction-lock][Find modifications in git logs]] : Set restriction lock for agenda, to current subtree or file. : Restriction will be the file if TYPE is ‘file’, or if type is the : universal prefix '(4), or if the cursor is before the first headline : in the file. Otherwise, restriction will be to the current subtree. ** org-agenda-todo-yesterday =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-todo-yesterday :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-yesterday][Find modifications in git logs]] : Like ‘org-agenda-todo’ but the time of change will be 23:59 of yesterday. ** org-agenda-date-later =(arg &optional what)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-later :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later][Find modifications in git logs]] : Change the date of this item to ARG day(s) later. ** org-cycle-list-bullet =(&optional which)= :PROPERTIES: :CUSTOM_ID: org-cycle-list-bullet :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-list-bullet][Find modifications in git logs]] : Cycle through the different itemize/enumerate bullets. : This cycle the entire list level through the sequence: : : ‘-’ -> ‘+’ -> ‘*’ -> ‘1.’ -> ‘1)’ : : If WHICH is a valid string, use that as the new bullet. If WHICH : is an integer, 0 means ‘-’, 1 means ‘+’ etc. If WHICH is : ‘previous’, cycle backwards. ** org-beamer-select-environment :PROPERTIES: :CUSTOM_ID: org-beamer-select-environment :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-select-environment][Find modifications in git logs]] : Select the environment to be used by beamer for this entry. : While this uses (for convenience) a tag selection interface, the : result of this command will be that the BEAMER_env *property* of : the entry is set. : : In addition to this, the command will also set a tag as a visual : aid, but the tag does not have any semantic meaning. ** org-babel-lilypond-toggle-html-generation :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-toggle-html-generation :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[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]] : Toggle whether html will be generated by compilation. ** org-bibtex-read-file =(file)= :PROPERTIES: :CUSTOM_ID: org-bibtex-read-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-read-file][Find modifications in git logs]] : Read FILE with ‘org-bibtex-read-buffer’. ** org-hide-block-toggle =(&optional force)= :PROPERTIES: :CUSTOM_ID: org-hide-block-toggle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-toggle][Find modifications in git logs]] : Toggle the visibility of the current block. : When optional argument FORCE is ‘off’, make block visible. If it : is non-nil, hide it unconditionally. Throw an error when not at : a block. Return a non-nil value when toggling is successful. ** orgstruct-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: orgstruct-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-mode][Find modifications in git logs]] : Toggle the minor mode ‘orgstruct-mode’. : This mode is for using Org mode structure commands in other : modes. The following keys behave as if Org mode were active, if : the cursor is on a headline, or on a plain list item (both as : defined by Org mode). ** org-timer-show-remaining-time :PROPERTIES: :CUSTOM_ID: org-timer-show-remaining-time :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-show-remaining-time][Find modifications in git logs]] : Display the remaining time before the timer ends. ** org-bibtex-import-from-file =(file)= :PROPERTIES: :CUSTOM_ID: org-bibtex-import-from-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-import-from-file][Find modifications in git logs]] : Read bibtex entries from FILE and insert as Org headlines after point. ** org-toggle-custom-properties-visibility :PROPERTIES: :CUSTOM_ID: org-toggle-custom-properties-visibility :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-custom-properties-visibility][Find modifications in git logs]] : Display or hide properties in ‘org-custom-properties’. ** org-overview :PROPERTIES: :CUSTOM_ID: org-overview :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-overview][Find modifications in git logs]] : Switch to overview mode, showing only top-level headlines. : This shows all headlines with a level equal or greater than the level : of the first headline in the buffer. This is important, because if the : first headline is not level one, then (hide-sublevels 1) gives confusing : results. ** org-agenda-date-earlier =(arg &optional what)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-earlier :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier][Find modifications in git logs]] : Change the date of this item to ARG day(s) earlier. ** org-show-entry :PROPERTIES: :CUSTOM_ID: org-show-entry :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-entry][Find modifications in git logs]] : Show the body directly following this heading. : Show the heading too, if it is currently invisible. ** org-babel-execute-src-block-maybe :PROPERTIES: :CUSTOM_ID: org-babel-execute-src-block-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Conditionally execute a source block. : Detect if this is context for a Babel src-block and if so : then run ‘org-babel-execute-src-block’. ** org-beamer-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-beamer-export-as-latex :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-export-as-latex][Find modifications in git logs]] : Export current buffer as a Beamer buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{document}" and "\end{document}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Export is done in a buffer named "*Org BEAMER Export*", which : will be displayed when ‘org-export-show-temporary-export-buffer’ : is non-nil. ** orgtbl-send-table =(&optional maybe)= :PROPERTIES: :CUSTOM_ID: orgtbl-send-table :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-send-table][Find modifications in git logs]] : Send a transformed version of table at point to the receiver position. : With argument MAYBE, fail quietly if no transformation is defined : for this table. ** org-toggle-time-stamp-overlays :PROPERTIES: :CUSTOM_ID: org-toggle-time-stamp-overlays :END: - *Access:* ~C-c C-x C-t, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-time-stamp-overlays][Find modifications in git logs]] : Toggle the use of custom time stamp formats. ** org-agenda-priority-up :PROPERTIES: :CUSTOM_ID: org-agenda-priority-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority-up][Find modifications in git logs]] : Increase the priority of line at point, also in Org file. ** org-edit-src-code =(&optional code edit-buffer-name)= :PROPERTIES: :CUSTOM_ID: org-edit-src-code :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-code][Find modifications in git logs]] : Edit the source or example block at point. : : The code is copied to a separate buffer and the appropriate mode : is turned on. When done, exit with ‘C-c '’. This will remove the : original code in the Org buffer, and replace it with the edited : version. See ‘org-src-window-setup’ to configure the display of : windows containing the Org buffer and the code buffer. : : When optional argument CODE is a string, edit it in a dedicated : buffer instead. : : When optional argument EDIT-BUFFER-NAME is non-nil, use it as the : name of the sub-editing buffer. ** org-org-menu =(event)= :PROPERTIES: :CUSTOM_ID: org-org-menu :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-menu][Find modifications in git logs]] : Org menu ** org-show-children =(&optional level)= :PROPERTIES: :CUSTOM_ID: org-show-children :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-children][Find modifications in git logs]] : Show all direct subheadings of this heading. : Prefix arg LEVEL is how many levels below the current level : should be shown. Default is enough to cause the following : heading to appear. ** org-ctrl-c-star :PROPERTIES: :CUSTOM_ID: org-ctrl-c-star :END: - *Access:* ~C-c *~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-star][Find modifications in git logs]] : Compute table, or change heading status of lines. : Calls ‘org-table-recalculate’ or ‘org-toggle-heading’, : depending on context. ** org-self-insert-command =(N)= :PROPERTIES: :CUSTOM_ID: org-self-insert-command :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-self-insert-command][Find modifications in git logs]] : Like ‘self-insert-command’, use overwrite-mode for whitespace in tables. : If the cursor is in a table looking at whitespace, the whitespace is : overwritten, and the table is not marked as requiring realignment. ** org-agenda-goto-calendar :PROPERTIES: :CUSTOM_ID: org-agenda-goto-calendar :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-calendar][Find modifications in git logs]] : Open the Emacs calendar with the date at the cursor. ** org-backward-element :PROPERTIES: :CUSTOM_ID: org-backward-element :END: - *Access:* ~M-{~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-element][Find modifications in git logs]] : Move backward by one element. : Move to the previous element at the same level, when possible. ** org-mobile-apply =(&optional beg end)= :PROPERTIES: :CUSTOM_ID: org-mobile-apply :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-apply][Find modifications in git logs]] : Apply all change requests in the current buffer. : If BEG and END are given, only do this in that region. ** org-speed-move-safe =(cmd)= :PROPERTIES: :CUSTOM_ID: org-speed-move-safe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-move-safe][Find modifications in git logs]] : Execute CMD, but make sure that the cursor always ends up in a headline. : If not, return to the original position and throw an error. ** org-html-export-as-html =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-html-export-as-html :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-export-as-html][Find modifications in git logs]] : Export current buffer to an HTML buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "" and "" tags. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Export is done in a buffer named "*Org HTML Export*", which : will be displayed when ‘org-export-show-temporary-export-buffer’ : is non-nil. ** org-agenda-day-view =(&optional day-of-month)= :PROPERTIES: :CUSTOM_ID: org-agenda-day-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-day-view][Find modifications in git logs]] : Switch to daily view for agenda. : With argument DAY-OF-MONTH, switch to that day of the month. ** org-refile =(&optional arg default-buffer rfloc msg)= :PROPERTIES: :CUSTOM_ID: org-refile :END: - *Access:* ~C-c C-w, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile][Find modifications in git logs]] : Move the entry or entries at point to another heading. : : The list of target headings is compiled using the information in : ‘org-refile-targets’, which see. : : At the target location, the entry is filed as a subitem of the : target heading. Depending on ‘org-reverse-note-order’, the new : subitem will either be the first or the last subitem. : : If there is an active region, all entries in that region will be : refiled. However, the region must fulfill the requirement that : the first heading sets the top-level of the moved text. : : With a ‘C-u’ ARG, the command will only visit the target location : and not actually move anything. : : With a prefix ‘C-u C-u’, go to the location where the last : refiling operation has put the subtree. : : With a numeric prefix argument of ‘2’, refile to the running clock. : : With a numeric prefix argument of ‘3’, emulate ‘org-refile-keep’ : being set to t and copy to the target location, don’t move it. : Beware that keeping refiled entries may result in duplicated ID : properties. : : RFLOC can be a refile location obtained in a different way. : : MSG is a string to replace "Refile" in the default prompt with : another verb. E.g. ‘org-copy’ sets this parameter to "Copy". : : See also ‘org-refile-use-outline-path’. : : If you are using target caching (see ‘org-refile-use-cache’), you : have to clear the target cache in order to find new targets. : This can be done with a ‘0’ prefix (‘C-0 C-c C-w’) or a triple : prefix argument (‘C-u C-u C-u C-c C-w’). ** org-clock-display =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-clock-display :END: - *Access:* ~C-c C-x C-d, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-display][Find modifications in git logs]] : Show subtree times in the entire buffer. : : By default, show the total time for the range defined in : ‘org-clock-display-default-range’. With ‘C-u’ prefix, show : the total time for today instead. : : With ‘C-u C-u’ prefix, use a custom range, entered at prompt. : : With ‘C-u C-u C-u’ prefix, display the total time in the : echo area. : : Use ‘M-x org-clock-remove-overlays’ to remove the subtree times. ** org-return =(&optional indent)= :PROPERTIES: :CUSTOM_ID: org-return :END: - *Access:* ~RET, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-return][Find modifications in git logs]] : Goto next table row or insert a newline. : : Calls ‘org-table-next-row’ or ‘newline’, depending on context. : : When optional INDENT argument is non-nil, call : ‘newline-and-indent’ instead of ‘newline’. : : When ‘org-return-follows-link’ is non-nil and point is on : a timestamp or a link, call ‘org-open-at-point’. However, it : will not happen if point is in a table or on a "dead" : object (e.g., within a comment). In these case, you need to use : ‘org-open-at-point’ directly. ** org-feed-show-raw-feed =(feed)= :PROPERTIES: :CUSTOM_ID: org-feed-show-raw-feed :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-show-raw-feed][Find modifications in git logs]] : Show the raw feed buffer of a feed. ** org-attach-open-in-emacs :PROPERTIES: :CUSTOM_ID: org-attach-open-in-emacs :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-open-in-emacs][Find modifications in git logs]] : Open attachment, force opening in Emacs. : See ‘org-attach-open’. ** org-agenda-filter-remove-all :PROPERTIES: :CUSTOM_ID: org-agenda-filter-remove-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-remove-all][Find modifications in git logs]] : Remove all filters from the current agenda buffer. ** org-babel-expand-src-block =(&optional _arg info params)= :PROPERTIES: :CUSTOM_ID: org-babel-expand-src-block :END: - *Access:* ~C-c C-v v, C-c C-v C-v~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-expand-src-block][Find modifications in git logs]] : Expand the current source code block. : Expand according to the source code block’s header : arguments and pop open the results in a preview buffer. ** org-ctags-all-tags-in-current-tags-table :PROPERTIES: :CUSTOM_ID: org-ctags-all-tags-in-current-tags-table :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[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]] : Read all tags defined in the active TAGS file, into a list of strings. : Return the list. ** org-table-fedit-ref-right :PROPERTIES: :CUSTOM_ID: org-table-fedit-ref-right :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-right][Find modifications in git logs]] : Shift the reference at point one field to the right. ** org-toggle-latex-fragment =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-toggle-latex-fragment :END: - *Access:* ~C-c C-x C-l~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-latex-fragment][Find modifications in git logs]] : Preview the LaTeX fragment at point, or all locally or globally. : : If the cursor is on a LaTeX fragment, create the image and overlay : it over the source code, if there is none. Remove it otherwise. : If there is no fragment at point, display all fragments in the : current section. : : With prefix ARG, preview or clear image for all fragments in the : current subtree or in the whole buffer when used before the first : headline. With a prefix ARG ‘C-u C-u’ preview or clear images : for all fragments in the buffer. ** org-agenda-filter-by-effort =(strip)= :PROPERTIES: :CUSTOM_ID: org-agenda-filter-by-effort :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-effort][Find modifications in git logs]] : Filter agenda entries by effort. : With no prefix argument, keep entries matching the effort condition. : With one prefix argument, filter out entries matching the condition. : With two prefix arguments, remove the effort filters. ** org-emphasize =(&optional char)= :PROPERTIES: :CUSTOM_ID: org-emphasize :END: - *Access:* ~C-c C-x C-f, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-emphasize][Find modifications in git logs]] : Insert or change an emphasis, i.e. a font like bold or italic. : If there is an active region, change that region to a new emphasis. : If there is no region, just insert the marker characters and position : the cursor between them. : CHAR should be the marker character. If it is a space, it means to : remove the emphasis of the selected region. : If CHAR is not given (for example in an interactive call) it will be : prompted for. ** org-columns-edit-value =(&optional key)= :PROPERTIES: :CUSTOM_ID: org-columns-edit-value :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-value][Find modifications in git logs]] : Edit the value of the property at point in column view. : Where possible, use the standard interface for changing this line. ** org-kill-line =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-kill-line :END: - *Access:* ~C-k~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-kill-line][Find modifications in git logs]] : Kill line, to tags or end of line. ** org-capture-kill :PROPERTIES: :CUSTOM_ID: org-capture-kill :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-kill][Find modifications in git logs]] : Abort the current capture process. ** org-drag-line-forward =(arg)= :PROPERTIES: :CUSTOM_ID: org-drag-line-forward :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-line-forward][Find modifications in git logs]] : Drag the line at point ARG lines forward. ** org-mobile-pull :PROPERTIES: :CUSTOM_ID: org-mobile-pull :END: - *Access:* ~ , C-c C-x RET g~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-pull][Find modifications in git logs]] : Pull the contents of ‘org-mobile-capture-file’ and integrate them. : Apply all flagged actions, flag entries to be flagged and then call an : agenda view showing the flagged items. ** org-agenda-set-property :PROPERTIES: :CUSTOM_ID: org-agenda-set-property :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-property][Find modifications in git logs]] : Set a property for the current headline. ** org-table-move-column-right :PROPERTIES: :CUSTOM_ID: org-table-move-column-right :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-column-right][Find modifications in git logs]] : Move column to the right. ** org-agenda-redo-all =(&optional exhaustive)= :PROPERTIES: :CUSTOM_ID: org-agenda-redo-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-redo-all][Find modifications in git logs]] : Rebuild all agenda views in the current buffer. : With a prefix argument, do so in all agenda buffers. ** org-toggle-checkbox =(&optional toggle-presence)= :PROPERTIES: :CUSTOM_ID: org-toggle-checkbox :END: - *Access:* ~C-c C-x C-b~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-checkbox][Find modifications in git logs]] : Toggle the checkbox in the current line. : With prefix arg TOGGLE-PRESENCE, add or remove checkboxes. With : double prefix, set checkbox to [-]. : : When there is an active region, toggle status or presence of the : first checkbox there, and make every item inside have the same : status or presence, respectively. : : If the cursor is in a headline, apply this to all checkbox items : in the text below the heading, taking as reference the first item : in subtree, ignoring drawers. ** org-mobile-push :PROPERTIES: :CUSTOM_ID: org-mobile-push :END: - *Access:* ~ , C-c C-x RET p~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-push][Find modifications in git logs]] : Push the current state of Org affairs to the target directory. : This will create the index file, copy all agenda files there, and also : create all custom agenda views, for upload to the mobile phone. ** org-mark-subtree =(&optional up)= :PROPERTIES: :CUSTOM_ID: org-mark-subtree :END: - *Access:* ~C-c @~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-subtree][Find modifications in git logs]] : Mark the current subtree. : This puts point at the start of the current subtree, and mark at : the end. If a numeric prefix UP is given, move up into the : hierarchy of headlines by UP levels before marking the subtree. ** org-publish-all =(&optional force async)= :PROPERTIES: :CUSTOM_ID: org-publish-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-all][Find modifications in git logs]] : Publish all projects. : With prefix argument FORCE, remove all files in the timestamp : directory and force publishing all projects. With a non-nil : optional argument ASYNC, publishing will be done asynchronously, : in another process. ** org-set-property-and-value =(use-last)= :PROPERTIES: :CUSTOM_ID: org-set-property-and-value :END: - *Access:* ~C-c C-x P~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-property-and-value][Find modifications in git logs]] : Allow to set [PROPERTY]: [value] direction from prompt. : When use-default, don’t even ask, just use the last : "[PROPERTY]: [value]" string from the history. ** org-timer-pause-or-continue =(&optional stop)= :PROPERTIES: :CUSTOM_ID: org-timer-pause-or-continue :END: - *Access:* ~C-c C-x ,, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-pause-or-continue][Find modifications in git logs]] : Pause or continue the relative or countdown timer. : With prefix arg STOP, stop it entirely. ** org-mode :PROPERTIES: :CUSTOM_ID: org-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode][Find modifications in git logs]] : Outline-based notes management and organizer, alias : "Carsten’s outline-mode for keeping track of everything." : : Org mode develops organizational tasks around a NOTES file which : contains information about projects as plain text. Org mode is : implemented on top of Outline mode, which is ideal to keep the content : of large files well structured. It supports ToDo items, deadlines and : time stamps, which magically appear in the diary listing of the Emacs : calendar. Tables are easily created with a built-in table editor. : Plain text URL-like links connect to websites, emails (VM), Usenet : messages (Gnus), BBDB entries, and any files related to the project. : For printing and sharing of notes, an Org file (or a part of it) : can be exported as a structured ASCII or HTML file. : : The following commands are available: : : key binding : --- ------- : : C-a org-beginning-of-line : C-c Prefix Command : C-e org-end-of-line : TAB org-cycle : C-j org-return-indent : C-k org-kill-line : RET org-return : C-y org-yank : ESC Prefix Command : | org-force-self-insert : C-# org-table-rotate-recalc-marks : C-' org-cycle-agenda-files : C-, org-cycle-agenda-files : org-decrease-number-at-point : org-increase-number-at-point : org-shiftcontroldown : org-shiftcontrolleft : org-insert-todo-heading-respect-content : org-shiftcontrolright : org-shiftcontrolup : org-insert-heading-respect-content : org-force-cycle-archived : org-shiftmetadown : org-shiftmetaleft : org-insert-todo-heading : org-shiftmetaright : org-shiftmetaup : org-metadown : org-metaleft : org-meta-return : org-metaright : org-metaup : org-shiftdown : org-shifttab : org-shiftleft : org-mouse-yank-link : org-table-copy-down : org-shiftright : org-shifttab : org-shiftup : org-shifttab : org-mouse-down-mouse : org-mouse-yank-link : org-mouse-show-context-menu : Prefix Command : org-cycle : : C-M-i pcomplete : C-M-t org-transpose-element : M-^ org-delete-indentation : M-a org-backward-sentence : M-e org-forward-sentence : M-h org-mark-element : M-{ org-backward-element : M-} org-forward-element : : C-c C-a org-attach : C-c C-b org-backward-heading-same-level : C-c C-c org-ctrl-c-ctrl-c : C-c C-d org-deadline : C-c C-e org-export-dispatch : C-c C-f org-forward-heading-same-level : C-c C-j org-goto : C-c C-k org-kill-note-or-show-branches : C-c C-l org-insert-link : C-c RET org-ctrl-c-ret : C-c C-o org-open-at-point : C-c C-q org-set-tags-command : C-c C-r org-reveal : C-c C-s org-schedule : C-c C-t org-todo : C-c C-v Prefix Command : C-c C-w org-refile : C-c C-x Prefix Command : C-c C-y org-evaluate-time-range : C-c C-z org-add-note : C-c ESC Prefix Command : C-c C-^ org-up-element : C-c C-_ org-down-element : C-c SPC org-table-blank-field : C-c ! org-time-stamp-inactive : C-c " Prefix Command : C-c # org-update-statistics-cookies : C-c $ org-archive-subtree : C-c % org-mark-ring-push : C-c & org-mark-ring-goto : C-c ' org-edit-special : C-c * org-ctrl-c-star : C-c + org-table-sum : C-c , org-priority : C-c - org-ctrl-c-minus : C-c . org-time-stamp : C-c / org-sparse-tree : C-c : org-toggle-fixed-width : C-c ; org-toggle-comment : C-c < org-date-from-calendar : C-c = org-table-eval-formula : C-c > org-goto-calendar : C-c ? org-table-field-info : C-c @ org-mark-subtree : C-c [ org-agenda-file-to-front : C-c \ org-match-sparse-tree : C-c ] org-remove-file : C-c ^ org-sort : C-c ` org-table-edit-field : C-c { org-table-toggle-formula-debugger : C-c | org-table-create-or-convert-from-region : C-c } org-table-toggle-coordinate-overlays : C-c ~ org-table-create-with-table.el : C-c C-* org-list-make-subtree : : org-backward-paragraph : org-comment-dwim : org-delete-backward-char : org-delete-char : org-fill-paragraph : org-forward-paragraph : org-open-line : : org-backward-heading-same-level : org-demote-subtree : : org-forward-heading-same-level : : org-ctrl-c-ret : org-mark-subtree : : org-next-visible-heading : : org-previous-visible-heading : org-promote-subtree : : org-kill-note-or-show-branches : org-show-subtree : org-self-insert-command : org-show-children : org-transpose-words : : C-c C-a outline-show-all : (that binding is currently shadowed by another mode) : C-c C-b outline-backward-same-level : (that binding is currently shadowed by another mode) : C-c C-c outline-hide-entry : (that binding is currently shadowed by another mode) : C-c C-d outline-hide-subtree : (that binding is currently shadowed by another mode) : C-c C-e outline-show-entry : (that binding is currently shadowed by another mode) : C-c C-f outline-forward-same-level : (that binding is currently shadowed by another mode) : C-c TAB outline-show-children : C-c C-k outline-show-branches : (that binding is currently shadowed by another mode) : C-c C-l outline-hide-leaves : (that binding is currently shadowed by another mode) : C-c RET outline-insert-heading : (that binding is currently shadowed by another mode) : C-c C-n outline-next-visible-heading : C-c C-o outline-hide-other : (that binding is currently shadowed by another mode) : C-c C-p outline-previous-visible-heading : C-c C-q outline-hide-sublevels : (that binding is currently shadowed by another mode) : C-c C-s outline-show-subtree : (that binding is currently shadowed by another mode) : C-c C-t outline-hide-body : (that binding is currently shadowed by another mode) : C-c C-u outline-up-heading : C-c C-v outline-move-subtree-down : (that binding is currently shadowed by another mode) : C-c C-^ outline-move-subtree-up : (that binding is currently shadowed by another mode) : C-c @ outline-mark-subtree : (that binding is currently shadowed by another mode) : C-c C-< outline-promote : C-c C-> outline-demote : : C-M-i ispell-complete-word : (that binding is currently shadowed by another mode) : : C-c " a orgtbl-ascii-plot : C-c " g org-plot/gnuplot : : C-c C-M-l org-insert-all-links : C-c M-b org-previous-block : C-c M-f org-next-block : C-c M-l org-insert-last-stored-link : C-c M-w org-copy : : C-c C-v C-a org-babel-sha1-hash : C-c C-v C-b org-babel-execute-buffer : C-c C-v C-c org-babel-check-src-block : C-c C-v C-d org-babel-demarcate-block : C-c C-v C-e org-babel-execute-maybe : C-c C-v C-f org-babel-tangle-file : C-c C-v TAB org-babel-view-src-block-info : C-c C-v C-j org-babel-insert-header-arg : C-c C-v C-l org-babel-load-in-session : C-c C-v C-n org-babel-next-src-block : C-c C-v C-o org-babel-open-src-block-result : C-c C-v C-p org-babel-previous-src-block : C-c C-v C-r org-babel-goto-named-result : C-c C-v C-s org-babel-execute-subtree : C-c C-v C-t org-babel-tangle : C-c C-v C-u org-babel-goto-src-block-head : C-c C-v C-v org-babel-expand-src-block : C-c C-v C-x org-babel-do-key-sequence-in-edit-buffer : C-c C-v C-z org-babel-switch-to-session : C-c C-v ESC Prefix Command : C-c C-v I org-babel-view-src-block-info : C-c C-v a org-babel-sha1-hash : C-c C-v b org-babel-execute-buffer : C-c C-v c org-babel-check-src-block : C-c C-v d org-babel-demarcate-block : C-c C-v e org-babel-execute-maybe : C-c C-v f org-babel-tangle-file : C-c C-v g org-babel-goto-named-src-block : C-c C-v h org-babel-describe-bindings : C-c C-v i org-babel-lob-ingest : C-c C-v j org-babel-insert-header-arg : C-c C-v k org-babel-remove-result-one-or-many : C-c C-v l org-babel-load-in-session : C-c C-v n org-babel-next-src-block : C-c C-v o org-babel-open-src-block-result : C-c C-v p org-babel-previous-src-block : C-c C-v r org-babel-goto-named-result : C-c C-v s org-babel-execute-subtree : C-c C-v t org-babel-tangle : C-c C-v u org-babel-goto-src-block-head : C-c C-v v org-babel-expand-src-block : C-c C-v x org-babel-do-key-sequence-in-edit-buffer : C-c C-v z org-babel-switch-to-session-with-code : : C-c C-x C-a org-archive-subtree-default : C-c C-x C-b org-toggle-checkbox : C-c C-x C-c org-columns : C-c C-x C-d org-clock-display : C-c C-x C-f org-emphasize : C-c C-x TAB org-clock-in : C-c C-x C-j org-clock-goto : C-c C-x C-l org-toggle-latex-fragment : C-c C-x RET Prefix Command : C-c C-x C-n org-next-link : C-c C-x C-o org-clock-out : C-c C-x C-p org-previous-link : C-c C-x C-q org-clock-cancel : C-c C-x C-r org-clock-report : C-c C-x C-s org-archive-subtree : C-c C-x C-t org-toggle-time-stamp-overlays : C-c C-x C-u org-dblock-update : C-c C-x C-v org-toggle-inline-images : C-c C-x C-w org-cut-special : C-c C-x C-x org-clock-in-last : C-c C-x C-y org-paste-special : C-c C-x C-z org-resolve-clocks : C-c C-x ESC Prefix Command : C-c C-x ! org-reload : C-c C-x , org-timer-pause-or-continue : C-c C-x - org-timer-item : C-c C-x . org-timer : C-c C-x 0 org-timer-start : C-c C-x ; org-timer-set-timer : C-c C-x < org-agenda-set-restriction-lock : C-c C-x > org-agenda-remove-restriction-lock : C-c C-x A org-archive-to-archive-sibling : C-c C-x E org-inc-effort : C-c C-x G org-feed-goto-inbox : C-c C-x P org-set-property-and-value : C-c C-x [ org-reftex-citation : C-c C-x \ org-toggle-pretty-entities : C-c C-x _ org-timer-stop : C-c C-x a org-toggle-archive-tag : C-c C-x b org-tree-to-indirect-buffer : C-c C-x c org-clone-subtree-with-time-shift : C-c C-x d org-insert-drawer : C-c C-x e org-set-effort : C-c C-x f org-footnote-action : C-c C-x g org-feed-update-all : C-c C-x i org-columns-insert-dblock : C-c C-x o org-toggle-ordered-property : C-c C-x p org-set-property : C-c C-x q org-toggle-tags-groups : C-c C-x v org-copy-visible : : C-c C-v C-M-h org-babel-mark-block : : C-c C-x C-M-v org-redisplay-inline-images : C-c C-x M-w org-copy-special : : C-c C-x RET g org-mobile-pull : C-c C-x RET p org-mobile-push : : : : In addition to any hooks its parent mode ‘outline-mode’ might have run, : this mode runs the hook ‘org-mode-hook’, as the final or penultimate step : during initialization. ** org-babel-lilypond-tangle :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-tangle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lilypond-tangle][Find modifications in git logs]] : ob-lilypond specific tangle, attempts to invoke : =ly-execute-tangled-ly= if tangle is successful. Also passes : specific arguments to =org-babel-tangle= ** org-goto-local-auto-isearch :PROPERTIES: :CUSTOM_ID: org-goto-local-auto-isearch :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-local-auto-isearch][Find modifications in git logs]] : Start isearch. ** org-backward-sentence =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-backward-sentence :END: - *Access:* ~M-a~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-sentence][Find modifications in git logs]] : Go to beginning of sentence, or beginning of table field. : This will call ‘backward-sentence’ or ‘org-table-beginning-of-field’, : depending on context. ** org-beamer-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-beamer-export-to-pdf :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-export-to-pdf][Find modifications in git logs]] : Export current buffer as a Beamer presentation (PDF). : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{document}" and "\end{document}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return PDF file’s name. ** org-store-agenda-views =(&rest parameters)= :PROPERTIES: :CUSTOM_ID: org-store-agenda-views :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-store-agenda-views][Find modifications in git logs]] : Store agenda views. ** org-babel-load-file =(file &optional compile)= :PROPERTIES: :CUSTOM_ID: org-babel-load-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-file][Find modifications in git logs]] : Load Emacs Lisp source code blocks in the Org FILE. : This function exports the source code using ‘org-babel-tangle’ : and then loads the resulting file using ‘load-file’. With prefix : arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp : file to byte-code before it is loaded. ** org-columns =(&optional global columns-fmt-string)= :PROPERTIES: :CUSTOM_ID: org-columns :END: - *Access:* ~C-c C-x C-c, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns][Find modifications in git logs]] : Turn on column view on an Org mode file. : : Column view applies to the whole buffer if point is before the : first headline. Otherwise, it applies to the first ancestor : setting "COLUMNS" property. If there is none, it defaults to : the current headline. With a ‘C-u’ prefix argument, turn on column : view for the whole buffer unconditionally. : : When COLUMNS-FMT-STRING is non-nil, use it as the column format. ** org-check-before-date =(d)= :PROPERTIES: :CUSTOM_ID: org-check-before-date :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-before-date][Find modifications in git logs]] : Check if there are deadlines or scheduled entries before date D. ** org-agenda-drag-line-backward =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-drag-line-backward :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-drag-line-backward][Find modifications in git logs]] : Drag an agenda line backward by ARG lines. ** org-yank =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-yank :END: - *Access:* ~C-y~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-yank][Find modifications in git logs]] : Yank. If the kill is a subtree, treat it specially. : This command will look at the current kill and check if is a single : subtree, or a series of subtrees[1]. If it passes the test, and if the : cursor is at the beginning of a line or after the stars of a currently : empty headline, then the yank is handled specially. How exactly depends : on the value of the following variables. : : ‘org-yank-folded-subtrees’ : By default, this variable is non-nil, which results in : subtree(s) being folded after insertion, except if doing so : would swallow text after the yanked text. : : ‘org-yank-adjusted-subtrees’ : When non-nil (the default value is nil), the subtree will be : promoted or demoted in order to fit into the local outline tree : structure, which means that the level will be adjusted so that it : becomes the smaller one of the two *visible* surrounding headings. : : Any prefix to this command will cause ‘yank’ to be called directly with : no special treatment. In particular, a simple ‘C-u’ prefix will just : plainly yank the text as it is. : : [1] The test checks if the first non-white line is a heading : and if there are no other headings with fewer stars. ** org-agenda-toggle-time-grid :PROPERTIES: :CUSTOM_ID: org-agenda-toggle-time-grid :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-time-grid][Find modifications in git logs]] : Toggle time grid in an agenda buffer. ** org-agenda-todo-previousset :PROPERTIES: :CUSTOM_ID: org-agenda-todo-previousset :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-previousset][Find modifications in git logs]] : Switch TODO entry to previous sequence. ** org-agenda-priority-down :PROPERTIES: :CUSTOM_ID: org-agenda-priority-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority-down][Find modifications in git logs]] : Decrease the priority of line at point, also in Org file. ** org-insert-link =(&optional complete-file link-location default-description)= :PROPERTIES: :CUSTOM_ID: org-insert-link :END: - *Access:* ~C-c C-l, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-link][Find modifications in git logs]] : Insert a link. At the prompt, enter the link. : : Completion can be used to insert any of the link protocol prefixes in use. : : The history can be used to select a link previously stored with : ‘org-store-link’. When the empty string is entered (i.e. if you just : press ‘RET’ at the prompt), the link defaults to the most recently : stored link. As ‘SPC’ triggers completion in the minibuffer, you need to : use ‘M-SPC’ or ‘C-q SPC’ to force the insertion of a space character. : : You will also be prompted for a description, and if one is given, it will : be displayed in the buffer instead of the link. : : If there is already a link at point, this command will allow you to edit : link and description parts. : : With a ‘C-u’ prefix, prompts for a file to link to. The file name can be : selected using completion. The path to the file will be relative to the : current directory if the file is in the current directory or a subdirectory. : Otherwise, the link will be the absolute path as completed in the minibuffer : (i.e. normally ~/path/to/file). You can configure this behavior using the : option ‘org-link-file-path-type’. : : With a ‘C-u C-u’ prefix, enforce an absolute path even if the file is in : the current directory or below. : : A ‘C-u C-u C-u’ prefix negates ‘org-keep-stored-link-after-insertion’. : : If ‘org-make-link-description-function’ is non-nil, this function will be : called with the link target, and the result will be the default : link description. : : If the LINK-LOCATION parameter is non-nil, this value will be used as : the link location instead of reading one interactively. : : If the DEFAULT-DESCRIPTION parameter is non-nil, this value will be used : as the default description. ** org-display-outline-path =(&optional file current separator just-return-string)= :PROPERTIES: :CUSTOM_ID: org-display-outline-path :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-outline-path][Find modifications in git logs]] : Display the current outline path in the echo area. : : If FILE is non-nil, prepend the output with the file name. : If CURRENT is non-nil, append the current heading to the output. : SEPARATOR is passed through to ‘org-format-outline-path’. It separates : the different parts of the path and defaults to "/". : If JUST-RETURN-STRING is non-nil, return a string, don’t display a message. ** org-timer-change-times-in-region =(beg end delta)= :PROPERTIES: :CUSTOM_ID: org-timer-change-times-in-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[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]] : Change all h:mm:ss time in region by a DELTA. ** org-indent-block :PROPERTIES: :CUSTOM_ID: org-indent-block :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-block][Find modifications in git logs]] : Indent the block at point. ** org-latex-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-latex-export-to-pdf :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-export-to-pdf][Find modifications in git logs]] : Export current buffer to LaTeX then process through to PDF. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{document}" and "\end{document}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return PDF file’s name. ** org-timestamp-up-day =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-timestamp-up-day :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-up-day][Find modifications in git logs]] : Increase the date in the time stamp by one day. : With prefix ARG, change that many days. ** org-copy-special :PROPERTIES: :CUSTOM_ID: org-copy-special :END: - *Access:* ~ , , C-c C-x M-w~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-special][Find modifications in git logs]] : Copy region in table or copy current subtree. : Calls ‘org-table-copy-region’ or ‘org-copy-subtree’, depending on : context. See the individual commands for more information. ** org-paste-subtree =(&optional level tree for-yank remove)= :PROPERTIES: :CUSTOM_ID: org-paste-subtree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-paste-subtree][Find modifications in git logs]] : Paste the clipboard as a subtree, with modification of headline level. : The entire subtree is promoted or demoted in order to match a new headline : level. : : If the cursor is at the beginning of a headline, the same level as : that headline is used to paste the tree. : : If not, the new level is derived from the *visible* headings : before and after the insertion point, and taken to be the inferior headline : level of the two. So if the previous visible heading is level 3 and the : next is level 4 (or vice versa), level 4 will be used for insertion. : This makes sure that the subtree remains an independent subtree and does : not swallow low level entries. : : You can also force a different level, either by using a numeric prefix : argument, or by inserting the heading marker by hand. For example, if the : cursor is after "*****", then the tree will be shifted to level 5. : : If optional TREE is given, use this text instead of the kill ring. : : When FOR-YANK is set, this is called by ‘org-yank’. In this case, do not : move back over whitespace before inserting, and move point to the end of : the inserted text when done. : : When REMOVE is non-nil, remove the subtree from the clipboard. ** org-agenda-holidays :PROPERTIES: :CUSTOM_ID: org-agenda-holidays :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-holidays][Find modifications in git logs]] : Display the holidays for the 3 months around the cursor date. ** org-version =(&optional here full message)= :PROPERTIES: :CUSTOM_ID: org-version :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-version][Find modifications in git logs]] : Show the Org version. : Interactively, or when MESSAGE is non-nil, show it in echo area. : With prefix argument, or when HERE is non-nil, insert it at point. : In non-interactive uses, a reduced version string is output unless : FULL is given. ** org-hide-block-toggle-maybe :PROPERTIES: :CUSTOM_ID: org-hide-block-toggle-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-toggle-maybe][Find modifications in git logs]] : Toggle visibility of block at point. : Unlike to ‘org-hide-block-toggle’, this function does not throw : an error. Return a non-nil value when toggling is successful. ** org-publish-current-file =(&optional force async)= :PROPERTIES: :CUSTOM_ID: org-publish-current-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-current-file][Find modifications in git logs]] : Publish the current file. : With prefix argument FORCE, force publish the file. When : optional argument ASYNC is non-nil, publishing will be done : asynchronously, in another process. ** org-next-link =(&optional search-backward)= :PROPERTIES: :CUSTOM_ID: org-next-link :END: - *Access:* ~C-c C-x C-n, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-link][Find modifications in git logs]] : Move forward to the next link. : If the link is in hidden text, expose it. ** org-clock-goto =(&optional select)= :PROPERTIES: :CUSTOM_ID: org-clock-goto :END: - *Access:* ~C-c C-x C-j, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-goto][Find modifications in git logs]] : Go to the currently clocked-in entry, or to the most recently clocked one. : With prefix arg SELECT, offer recently clocked tasks for selection. ** org-babel-do-key-sequence-in-edit-buffer =(key)= :PROPERTIES: :CUSTOM_ID: org-babel-do-key-sequence-in-edit-buffer :END: - *Access:* ~C-c C-v x, C-c C-v C-x~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Read key sequence and execute the command in edit buffer. : Enter a key sequence to be executed in the language major-mode : edit buffer. For example, TAB will alter the contents of the : Org code block according to the effect of TAB in the language : major mode buffer. For languages that support interactive : sessions, this can be used to send code from the Org buffer : to the session for evaluation using the native major mode : evaluation mechanisms. ** org-hide-block-all :PROPERTIES: :CUSTOM_ID: org-hide-block-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-block-all][Find modifications in git logs]] : Fold all blocks in the current buffer. ** org-promote-subtree :PROPERTIES: :CUSTOM_ID: org-promote-subtree :END: - *Access:* ~C-c C-<~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-promote-subtree][Find modifications in git logs]] : Promote the entire subtree. : See also ‘org-promote’. ** org-babel-execute-maybe :PROPERTIES: :CUSTOM_ID: org-babel-execute-maybe :END: - *Access:* ~C-c C-v C-e, C-c C-v e~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-maybe][Find modifications in git logs]] ** org-clock-in =(&optional select start-time)= :PROPERTIES: :CUSTOM_ID: org-clock-in :END: - *Access:* ~C-c C-x TAB, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in][Find modifications in git logs]] : Start the clock on the current item. : : If necessary, clock-out of the currently active clock. : : With a ‘C-u’ prefix argument SELECT, offer a list of recently clocked : tasks to clock into. : : When SELECT is ‘C-u C-u’, clock into the current task and mark it as : the default task, a special task that will always be offered in the : clocking selection, associated with the letter ‘d’. : : When SELECT is ‘C-u C-u C-u’, clock in by using the last clock-out : time as the start time. See ‘org-clock-continuously’ to make this : the default behavior. ** org-do-promote :PROPERTIES: :CUSTOM_ID: org-do-promote :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-do-promote][Find modifications in git logs]] : Promote the current heading higher up the tree. : If the region is active in ‘transient-mark-mode’, promote all : headings in the region. ** org-agenda-drag-line-forward =(arg &optional backward)= :PROPERTIES: :CUSTOM_ID: org-agenda-drag-line-forward :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-drag-line-forward][Find modifications in git logs]] : Drag an agenda line forward by ARG lines. : When the optional argument ‘backward’ is non-nil, move backward. ** org-inc-effort :PROPERTIES: :CUSTOM_ID: org-inc-effort :END: - *Access:* ~C-c C-x E~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inc-effort][Find modifications in git logs]] : Increment the value of the effort property in the current entry. ** org-indent-to-column =(column &optional minimum)= :PROPERTIES: :CUSTOM_ID: org-indent-to-column :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-to-column][Find modifications in git logs]] : Indent from point with tabs and spaces until COLUMN is reached. : Optional second argument MINIMUM says always do at least MINIMUM spaces : even if that goes past COLUMN; by default, MINIMUM is zero. : : The return value is COLUMN. : : (fn COLUMN &optional MINIMUM) ** org-agenda-kill :PROPERTIES: :CUSTOM_ID: org-agenda-kill :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-kill][Find modifications in git logs]] : Kill the entry or subtree belonging to the current agenda entry. ** org-protocol-create =(&optional project-plist)= :PROPERTIES: :CUSTOM_ID: org-protocol-create :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-create][Find modifications in git logs]] : Create a new org-protocol project interactively. : An org-protocol project is an entry in : ‘org-protocol-project-alist’ which is used by : ‘org-protocol-open-source’. Optionally use PROJECT-PLIST to : initialize the defaults for this project. If PROJECT-PLIST is : the cdr of an element in ‘org-publish-project-alist’, reuse : :base-directory, :html-extension and :base-extension. ** org-odt-export-as-odf =(latex-frag &optional odf-file)= :PROPERTIES: :CUSTOM_ID: org-odt-export-as-odf :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-export-as-odf][Find modifications in git logs]] : Export LATEX-FRAG as OpenDocument formula file ODF-FILE. : Use ‘org-create-math-formula’ to convert LATEX-FRAG first to : MathML. When invoked as an interactive command, use : ‘org-latex-regexps’ to infer LATEX-FRAG from currently active : region. If no LaTeX fragments are found, prompt for it. Push : MathML source to kill ring depending on the value of : ‘org-export-copy-to-kill-ring’. ** org-footnote-new :PROPERTIES: :CUSTOM_ID: org-footnote-new :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-new][Find modifications in git logs]] : Insert a new footnote. : This command prompts for a label. If this is a label referencing an : existing label, only insert the label. If the footnote label is empty : or new, let the user edit the definition of the footnote. ** org-edit-src-save :PROPERTIES: :CUSTOM_ID: org-edit-src-save :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-save][Find modifications in git logs]] : Save parent buffer with current state source-code buffer. ** org-inlinetask-insert-task =(&optional no-state)= :PROPERTIES: :CUSTOM_ID: org-inlinetask-insert-task :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-insert-task][Find modifications in git logs]] : Insert an inline task. : If prefix arg NO-STATE is set, ignore ‘org-inlinetask-default-state’. ** org-lint--ignore-checker :PROPERTIES: :CUSTOM_ID: org-lint--ignore-checker :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--ignore-checker][Find modifications in git logs]] : Ignore all reports from checker that generated the report at point. : Checker will also be ignored in all subsequent reports. ** org-table-import =(file arg)= :PROPERTIES: :CUSTOM_ID: org-table-import :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-import][Find modifications in git logs]] : Import FILE as a table. : The file is assumed to be tab-separated. Such files can be produced by most : spreadsheet and database applications. If no tabs (at least one per line) : are found, lines will be split on whitespace into fields. ** org-babel-next-src-block =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-babel-next-src-block :END: - *Access:* ~C-c C-v C-n, C-c C-v n~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-next-src-block][Find modifications in git logs]] : Jump to the next source block. : With optional prefix argument ARG, jump forward ARG many source blocks. ** org-submit-bug-report :PROPERTIES: :CUSTOM_ID: org-submit-bug-report :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-submit-bug-report][Find modifications in git logs]] : Submit a bug report on Org via mail. : : Don’t hesitate to report any problems or inaccurate documentation. : : If you don’t have setup sending mail from (X)Emacs, please copy the : output buffer into your mail program, as it gives us important : information about your Org version and configuration. ** org-agenda-convert-date :PROPERTIES: :CUSTOM_ID: org-agenda-convert-date :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-convert-date][Find modifications in git logs]] ** org-shiftmetaup =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-shiftmetaup :END: - *Access:* ~, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaup][Find modifications in git logs]] : Drag the line at point up. : In a table, kill the current row. : On a clock timestamp, update the value of the timestamp like ‘S-’ : but also adjust the previous clocked item in the clock history. : Everywhere else, drag the line at point up. ** org-babel-hash-at-point =(&optional point)= :PROPERTIES: :CUSTOM_ID: org-babel-hash-at-point :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hash-at-point][Find modifications in git logs]] : Return the value of the hash at POINT. : The hash is also added as the last element of the kill ring. : This can be called with ‘C-c C-c’. ** org-footnote-renumber-fn:N :PROPERTIES: :CUSTOM_ID: org-footnote-renumber-fn:N :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-renumber-fn:N][Find modifications in git logs]] : Order numbered footnotes into a sequence in the document. ** org-babel-pop-to-session-maybe :PROPERTIES: :CUSTOM_ID: org-babel-pop-to-session-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Conditionally pop to a session. : Detect if this is context for a org-babel src-block and if so : then run ‘org-babel-switch-to-session’. ** org-agenda-goto =(&optional highlight)= :PROPERTIES: :CUSTOM_ID: org-agenda-goto :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto][Find modifications in git logs]] : Go to the entry at point in the corresponding Org file. ** org-mouse-show-overview :PROPERTIES: :CUSTOM_ID: org-mouse-show-overview :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-show-overview][Find modifications in git logs]] : Change visibility of current org buffer to first-level headlines only. ** org-agenda-switch-to =(&optional delete-other-windows)= :PROPERTIES: :CUSTOM_ID: org-agenda-switch-to :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-switch-to][Find modifications in git logs]] : Go to the Org mode file which contains the item at point. : When optional argument DELETE-OTHER-WINDOWS is non-nil, the : displayed Org file fills the frame. ** org-babel-goto-named-src-block =(name)= :PROPERTIES: :CUSTOM_ID: org-babel-goto-named-src-block :END: - *Access:* ~C-c C-v g~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Go to a named source-code block. ** org-org-export-as-org =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-org-export-as-org :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-org.el][ox-org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-org-export-as-org][Find modifications in git logs]] : Export current buffer to an Org buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, strip document : keywords from output. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Export is done in a buffer named "*Org ORG Export*", which will : be displayed when ‘org-export-show-temporary-export-buffer’ is : non-nil. ** org-export-stack-remove =(&optional source)= :PROPERTIES: :CUSTOM_ID: org-export-stack-remove :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-remove][Find modifications in git logs]] : Remove export results at point from stack. : If optional argument SOURCE is non-nil, remove it instead. ** org-table-fedit-ref-left :PROPERTIES: :CUSTOM_ID: org-table-fedit-ref-left :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-left][Find modifications in git logs]] : Shift the reference at point one field to the left. ** org-timer-start =(&optional offset)= :PROPERTIES: :CUSTOM_ID: org-timer-start :END: - *Access:* ~C-c C-x 0, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-start][Find modifications in git logs]] : Set the starting time for the relative timer to now. : When called with prefix argument OFFSET, prompt the user for an offset time, : with the default taken from a timer stamp at point, if any. : If OFFSET is a string or an integer, it is directly taken to be the offset : without user interaction. : When called with a double prefix arg, all timer strings in the active : region will be shifted by a specific amount. You will be prompted for : the amount, with the default to make the first timer string in : the region 0:00:00. ** org-agenda-todo-nextset :PROPERTIES: :CUSTOM_ID: org-agenda-todo-nextset :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-nextset][Find modifications in git logs]] : Switch TODO entry to next sequence. ** org-edit-fixed-width-region :PROPERTIES: :CUSTOM_ID: org-edit-fixed-width-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-fixed-width-region][Find modifications in git logs]] : Edit the fixed-width ASCII drawing at point. : : This must be a region where each line starts with a colon : followed by a space or a newline character. : : A new buffer is created and the fixed-width region is copied into : it, and the buffer is switched into the major mode defined in : ‘org-edit-fixed-width-region-mode’, which see. : : When done, exit with ‘C-c '’. The edited text will then replace : the area in the Org mode buffer. ** org-dblock-update =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-dblock-update :END: - *Access:* ~C-c C-x C-u~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-dblock-update][Find modifications in git logs]] : User command for updating dynamic blocks. : Update the dynamic block at point. With prefix ARG, update all dynamic : blocks in the buffer. ** org-capture-string =(string &optional keys)= :PROPERTIES: :CUSTOM_ID: org-capture-string :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-string][Find modifications in git logs]] : Capture STRING with the template selected by KEYS. ** org-clock-select-task =(&optional prompt)= :PROPERTIES: :CUSTOM_ID: org-clock-select-task :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-select-task][Find modifications in git logs]] : Select a task that was recently associated with clocking. ** org-rss-export-as-rss =(&optional async subtreep visible-only)= :PROPERTIES: :CUSTOM_ID: org-rss-export-as-rss :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-export-as-rss][Find modifications in git logs]] : Export current buffer to a RSS buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : Export is done in a buffer named "*Org RSS Export*", which will : be displayed when ‘org-export-show-temporary-export-buffer’ is : non-nil. ** org-babel-initiate-session =(&optional arg info)= :PROPERTIES: :CUSTOM_ID: org-babel-initiate-session :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-initiate-session][Find modifications in git logs]] : Initiate session for current code block. : If called with a prefix argument then resolve any variable : references in the header arguments and assign these variables in : the session. Copy the body of the code block to the kill ring. ** org-table-calc-current-TBLFM =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-table-calc-current-TBLFM :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-calc-current-TBLFM][Find modifications in git logs]] : Apply the #+TBLFM in the line at point to the table. ** org-table-fedit-ref-down :PROPERTIES: :CUSTOM_ID: org-table-fedit-ref-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-down][Find modifications in git logs]] : Shift the reference at point one row/hline down. ** org-clock-modify-effort-estimate =(&optional value)= :PROPERTIES: :CUSTOM_ID: org-clock-modify-effort-estimate :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-modify-effort-estimate][Find modifications in git logs]] : Add to or set the effort estimate of the item currently being clocked. : VALUE can be a number of minutes, or a string with format hh:mm or mm. : When the string starts with a + or a - sign, the current value of the effort : property will be changed by that amount. If the effort value is expressed : as an ‘org-effort-durations’ (e.g. "3h"), the modified value will be : converted to a hh:mm duration. : : This command will update the "Effort" property of the currently : clocked item, and the value displayed in the mode line. ** org-agenda-next-line :PROPERTIES: :CUSTOM_ID: org-agenda-next-line :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-line][Find modifications in git logs]] : Move cursor to the next line, and show if follow mode is active. ** org-previous-item :PROPERTIES: :CUSTOM_ID: org-previous-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-item][Find modifications in git logs]] : Move to the beginning of the previous item. : Throw an error when not in a list. Also throw an error when at : first item, unless ‘org-list-use-circular-motion’ is non-nil. ** org-ascii-export-as-ascii =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-ascii-export-as-ascii :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-export-as-ascii][Find modifications in git logs]] : Export current buffer to a text buffer. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, strip title and : table of contents from output. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Export is done in a buffer named "*Org ASCII Export*", which : will be displayed when ‘org-export-show-temporary-export-buffer’ : is non-nil. ** org-redisplay-inline-images :PROPERTIES: :CUSTOM_ID: org-redisplay-inline-images :END: - *Access:* ~C-c C-x C-M-v~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-redisplay-inline-images][Find modifications in git logs]] : Refresh the display of inline images. ** org-agenda-toggle-archive-tag :PROPERTIES: :CUSTOM_ID: org-agenda-toggle-archive-tag :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-archive-tag][Find modifications in git logs]] : Toggle the archive tag for the current entry. ** org-agenda-capture =(&optional with-time)= :PROPERTIES: :CUSTOM_ID: org-agenda-capture :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-capture][Find modifications in git logs]] : Call ‘org-capture’ with the date at point. : With a ‘C-1’ prefix, use the HH:MM value at point (if any) or the : current HH:MM time. ** org-datetree-cleanup :PROPERTIES: :CUSTOM_ID: org-datetree-cleanup :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-datetree.el][org-datetree.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-datetree-cleanup][Find modifications in git logs]] : Make sure all entries in the current tree are under the correct date. : It may be useful to restrict the buffer to the applicable portion : before running this command, even though the command tries to be smart. ** org-agenda-date-earlier-hours =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-earlier-hours :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier-hours][Find modifications in git logs]] : Change the time of this item, in hour steps. ** org-agenda-date-later-minutes =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-later-minutes :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later-minutes][Find modifications in git logs]] : Change the time of this item, in units of ‘org-time-stamp-rounding-minutes’. ** org-table-rotate-recalc-marks =(&optional newchar)= :PROPERTIES: :CUSTOM_ID: org-table-rotate-recalc-marks :END: - *Access:* ~C-#, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-rotate-recalc-marks][Find modifications in git logs]] : Rotate the recalculation mark in the first column. : If in any row, the first field is not consistent with a mark, : insert a new column for the markers. : When there is an active region, change all the lines in the region, : after prompting for the marking character. : After each change, a message will be displayed indicating the meaning : of the new mark. ** org-drag-element-backward :PROPERTIES: :CUSTOM_ID: org-drag-element-backward :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-drag-element-backward][Find modifications in git logs]] : Move backward element at point. ** org-transpose-words :PROPERTIES: :CUSTOM_ID: org-transpose-words :END: - *Access:* ~M-t~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-transpose-words][Find modifications in git logs]] : Transpose words for Org. : This uses the ‘org-mode-transpose-word-syntax-table’ syntax : table, which interprets characters in ‘org-emphasis-alist’ as : word constituents. ** org-next-block =(arg &optional backward block-regexp)= :PROPERTIES: :CUSTOM_ID: org-next-block :END: - *Access:* ~C-c M-f~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-block][Find modifications in git logs]] : Jump to the next block. : : With a prefix argument ARG, jump forward ARG many blocks. : : When BACKWARD is non-nil, jump to the previous block. : : When BLOCK-REGEXP is non-nil, use this regexp to find blocks. : Match data is set according to this regexp when the function : returns. : : Return point at beginning of the opening line of found block. : Throw an error if no block is found. ** org-indent-indent-buffer :PROPERTIES: :CUSTOM_ID: org-indent-indent-buffer :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-indent-buffer][Find modifications in git logs]] : Add indentation properties to the accessible part of the buffer. ** org-babel-execute-src-block =(&optional arg info params)= :PROPERTIES: :CUSTOM_ID: org-babel-execute-src-block :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-src-block][Find modifications in git logs]] : Execute the current source code block. : Insert the results of execution into the buffer. Source code : execution and the collection and formatting of results can be : controlled through a variety of header arguments. : : With prefix argument ARG, force re-execution even if an existing : result cached in the buffer would otherwise have been returned. : : Optionally supply a value for INFO in the form returned by : ‘org-babel-get-src-block-info’. : : Optionally supply a value for PARAMS which will be merged with : the header arguments specified at the front of the source code : block. ** org-find-entry-with-id =(ident)= :PROPERTIES: :CUSTOM_ID: org-find-entry-with-id :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-find-entry-with-id][Find modifications in git logs]] : Locate the entry that contains the ID property with exact value IDENT. : IDENT can be a string, a symbol or a number, this function will search for : the string representation of it. : Return the position where this entry starts, or nil if there is no such entry. ** org-table-next-field :PROPERTIES: :CUSTOM_ID: org-table-next-field :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-next-field][Find modifications in git logs]] : Go to the next field in the current table, creating new lines as needed. : Before doing so, re-align the table if necessary. ** org-table-copy-down =(n)= :PROPERTIES: :CUSTOM_ID: org-table-copy-down :END: - *Access:* ~, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-down][Find modifications in git logs]] : Copy the value of the current field one row below. : : If the field at the cursor is empty, copy the content of the : nearest non-empty field above. With argument N, use the Nth : non-empty field. : : If the current field is not empty, it is copied down to the next : row, and the cursor is moved with it. Therefore, repeating this : command causes the column to be filled row-by-row. : : If the variable ‘org-table-copy-increment’ is non-nil and the : field is an integer or a timestamp, it will be incremented while : copying. By default, increment by the difference between the : value in the current field and the one in the field above. To : increment using a fixed integer, set ‘org-table-copy-increment’ : to a number. In the case of a timestamp, increment by days. ** org-agenda-cycle-show =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-agenda-cycle-show :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-cycle-show][Find modifications in git logs]] : Show the current entry in another window, with default settings. : : Default settings are taken from ‘org-show-context-detail’. When : use repeatedly in immediate succession, the remote entry will : cycle through visibility : : children -> subtree -> folded : : When called with a numeric prefix arg, that arg will be passed through to : ‘org-agenda-show-1’. For the interpretation of that argument, see the : docstring of ‘org-agenda-show-1’. ** org-agenda-archive :PROPERTIES: :CUSTOM_ID: org-agenda-archive :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive][Find modifications in git logs]] : Archive the entry or subtree belonging to the current agenda entry. ** org-babel-lob-execute-maybe :PROPERTIES: :CUSTOM_ID: org-babel-lob-execute-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lob.el][ob-lob.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lob-execute-maybe][Find modifications in git logs]] : Execute a Library of Babel source block, if appropriate. : Detect if this is context for a Library Of Babel source block and : if so then run the appropriate source block from the Library. ** org-timestamp-down =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-timestamp-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-down][Find modifications in git logs]] : Decrease the date item at the cursor by one. : If the cursor is on the year, change the year. If it is on the month, : the day or the time, change that. : With prefix ARG, change by that many units. ** org-agenda-next-date-line =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-next-date-line :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-date-line][Find modifications in git logs]] : Jump to the next line indicating a date in agenda buffer. ** org-agenda-show-and-scroll-up =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-show-and-scroll-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Display the Org file which contains the item at point. : : When called repeatedly, scroll the window that is displaying the buffer. : : With a ‘C-u’ prefix, use ‘org-show-entry’ instead of ‘outline-show-subtree’ : to display the item, so that drawers and logbooks stay folded. ** org-mouse-move-tree =(event)= :PROPERTIES: :CUSTOM_ID: org-mouse-move-tree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-move-tree][Find modifications in git logs]] ** org-timestamp-up =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-timestamp-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-up][Find modifications in git logs]] : Increase the date item at the cursor by one. : If the cursor is on the year, change the year. If it is on the month, : the day or the time, change that. : With prefix ARG, change by that many units. ** org-mouse-show-headlines :PROPERTIES: :CUSTOM_ID: org-mouse-show-headlines :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-show-headlines][Find modifications in git logs]] : Change the visibility of the current org buffer to only show headlines. ** org-publish =(project &optional force async)= :PROPERTIES: :CUSTOM_ID: org-publish :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish][Find modifications in git logs]] : Publish PROJECT. : : PROJECT is either a project name, as a string, or a project : alist (see ‘org-publish-project-alist’ variable). : : When optional argument FORCE is non-nil, force publishing all : files in PROJECT. With a non-nil optional argument ASYNC, : publishing will be done asynchronously, in another process. ** org-speedbar-set-agenda-restriction :PROPERTIES: :CUSTOM_ID: org-speedbar-set-agenda-restriction :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speedbar-set-agenda-restriction][Find modifications in git logs]] : Restrict future agenda commands to the location at point in speedbar. : To get rid of the restriction, use ‘C-c C-x >’. ** org-mark-ring-push =(&optional pos buffer)= :PROPERTIES: :CUSTOM_ID: org-mark-ring-push :END: - *Access:* ~C-c %~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-ring-push][Find modifications in git logs]] : Put the current position or POS into the mark ring and rotate it. ** org-mouse-timestamp-today =(&optional shift units)= :PROPERTIES: :CUSTOM_ID: org-mouse-timestamp-today :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-timestamp-today][Find modifications in git logs]] : Change the timestamp into SHIFT UNITS in the future. : : For the acceptable UNITS, see ‘org-timestamp-change’. ** org-shiftup =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-shiftup :END: - *Access:* ~, , <1 ... Later>~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftup][Find modifications in git logs]] : Increase item in timestamp or increase priority of current headline. : Calls ‘org-timestamp-up’ or ‘org-priority-up’, or ‘org-previous-item’, : depending on context. See the individual commands for more information. ** org-archive-to-archive-sibling :PROPERTIES: :CUSTOM_ID: org-archive-to-archive-sibling :END: - *Access:* ~C-c C-x A, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-to-archive-sibling][Find modifications in git logs]] : Archive the current heading by moving it under the archive sibling. : : The archive sibling is a sibling of the heading with the heading name : ‘org-archive-sibling-heading’ and an ‘org-archive-tag’ tag. If this : sibling does not exist, it will be created at the end of the subtree. : : Archiving time is retained in the ARCHIVE_TIME node property. ** org-publish-project =(project &optional force async)= :PROPERTIES: :CUSTOM_ID: org-publish-project :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-project][Find modifications in git logs]] : Publish PROJECT. : : PROJECT is either a project name, as a string, or a project : alist (see ‘org-publish-project-alist’ variable). : : When optional argument FORCE is non-nil, force publishing all : files in PROJECT. With a non-nil optional argument ASYNC, : publishing will be done asynchronously, in another process. ** org-table-convert-region =(beg0 end0 &optional separator)= :PROPERTIES: :CUSTOM_ID: org-table-convert-region :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-convert-region][Find modifications in git logs]] : Convert region to a table. : : The region goes from BEG0 to END0, but these borders will be moved : slightly, to make sure a beginning of line in the first line is included. : : SEPARATOR specifies the field separator in the lines. It can have the : following values: : : (4) Use the comma as a field separator : (16) Use a TAB as field separator : (64) Prompt for a regular expression as field separator : integer When a number, use that many spaces, or a TAB, as field separator : regexp When a regular expression, use it to match the separator : nil When nil, the command tries to be smart and figure out the : separator in the following way: : - when each line contains a TAB, assume TAB-separated material : - when each line contains a comma, assume CSV material : - else, assume one or more SPACE characters as separator. ** org-goto-left :PROPERTIES: :CUSTOM_ID: org-goto-left :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-left][Find modifications in git logs]] : Finish ‘org-goto’ by going to the new location. ** org-babel-goto-src-block-head :PROPERTIES: :CUSTOM_ID: org-babel-goto-src-block-head :END: - *Access:* ~C-c C-v C-u, C-c C-v u~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Go to the beginning of the current code block. ** org-down-element :PROPERTIES: :CUSTOM_ID: org-down-element :END: - *Access:* ~C-c C-_~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-down-element][Find modifications in git logs]] : Move to inner element. ** org-shiftmetaright :PROPERTIES: :CUSTOM_ID: org-shiftmetaright :END: - *Access:* ~, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftmetaright][Find modifications in git logs]] : Demote subtree or insert table column. : Calls ‘org-demote-subtree’, ‘org-indent-item-tree’, or : ‘org-table-insert-column’, depending on context. See the : individual commands for more information. ** org-edit-export-block :PROPERTIES: :CUSTOM_ID: org-edit-export-block :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-export-block][Find modifications in git logs]] : Edit export block at point. : : A new buffer is created and the block is copied into it, and the : buffer is switched into an appropriate major mode. See also : ‘org-src-lang-modes’. : : When done, exit with ‘C-c '’. The edited text will then replace : the area in the Org mode buffer. : : Throw an error when not at an export block. ** org-babel-remove-result =(&optional info keep-keyword)= :PROPERTIES: :CUSTOM_ID: org-babel-remove-result :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remove-result][Find modifications in git logs]] : Remove the result of the current source block. ** org-md-export-to-markdown =(&optional async subtreep visible-only)= :PROPERTIES: :CUSTOM_ID: org-md-export-to-markdown :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-export-to-markdown][Find modifications in git logs]] : Export current buffer to a Markdown file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : Return output file’s name. ** org-decrypt-entries :PROPERTIES: :CUSTOM_ID: org-decrypt-entries :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrypt-entries][Find modifications in git logs]] : Decrypt all entries in the current buffer. ** org-timer-item =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-timer-item :END: - *Access:* ~C-c C-x -, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-item][Find modifications in git logs]] : Insert a description-type item with the current timer value. ** org-clock-update-time-maybe :PROPERTIES: :CUSTOM_ID: org-clock-update-time-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-update-time-maybe][Find modifications in git logs]] : If this is a CLOCK line, update it and return t. : Otherwise, return nil. ** org-reftex-citation :PROPERTIES: :CUSTOM_ID: org-reftex-citation :END: - *Access:* ~C-c C-x [, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reftex-citation][Find modifications in git logs]] : Use reftex-citation to insert a citation into the buffer. : This looks for a line like : : #+BIBLIOGRAPHY: foo plain option:-d : : and derives from it that foo.bib is the bibliography file relevant : for this document. It then installs the necessary environment for RefTeX : to work in this buffer and calls ‘reftex-citation’ to insert a citation : into the buffer. : : Export of such citations to both LaTeX and HTML is handled by the contributed : package ox-bibtex by Taru Karttunen. ** org-speed-command-help :PROPERTIES: :CUSTOM_ID: org-speed-command-help :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-speed-command-help][Find modifications in git logs]] : Show the available speed commands. ** org-clock-report =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-clock-report :END: - *Access:* ~C-c C-x C-r, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-report][Find modifications in git logs]] : Create a table containing a report about clocked time. : If the cursor is inside an existing clocktable block, then the table : will be updated. If not, a new clocktable will be inserted. The scope : of the new clock will be subtree when called from within a subtree, and : file elsewhere. : : When called with a prefix argument, move to the first clock table in the : buffer and update it. ** orgtbl-ret :PROPERTIES: :CUSTOM_ID: orgtbl-ret :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ret][Find modifications in git logs]] : Justification and field motion for ‘orgtbl-mode’. ** org-activate-plain-links =(&rest ignore)= :PROPERTIES: :CUSTOM_ID: org-activate-plain-links :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-activate-plain-links][Find modifications in git logs]] : Do nothing and return nil. : This function accepts any number of arguments, but ignores them. : : (fn &rest IGNORE) ** org-attach-set-inherit :PROPERTIES: :CUSTOM_ID: org-attach-set-inherit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-set-inherit][Find modifications in git logs]] : Set the ATTACH_DIR_INHERIT property of the current entry. : The property defines the directory that is used for attachments : of the entry and any children that do not explicitly define (by setting : the ATTACH_DIR property) their own attachment directory. ** org-clock-mark-default-task :PROPERTIES: :CUSTOM_ID: org-clock-mark-default-task :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-mark-default-task][Find modifications in git logs]] : Mark current task as default task. ** org-agenda-later =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-later :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-later][Find modifications in git logs]] : Go forward in time by the current span. : With prefix ARG, go forward that many times the current span. ** org-feed-update =(feed &optional retrieve-only)= :PROPERTIES: :CUSTOM_ID: org-feed-update :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-update][Find modifications in git logs]] : Get inbox items from FEED. : FEED can be a string with an association in ‘org-feed-alist’, or : it can be a list structured like an entry in ‘org-feed-alist’. ** org-agenda-date-prompt =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-prompt :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-prompt][Find modifications in git logs]] : Change the date of this item. Date is prompted for, with default today. : The prefix ARG is passed to the ‘org-time-stamp’ command and can therefore : be used to request time specification in the time stamp. ** org-agenda-view-mode-dispatch :PROPERTIES: :CUSTOM_ID: org-agenda-view-mode-dispatch :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-view-mode-dispatch][Find modifications in git logs]] : Call one of the view mode commands. ** org-agenda-show-mouse =(ev)= :PROPERTIES: :CUSTOM_ID: org-agenda-show-mouse :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-mouse][Find modifications in git logs]] : Display the Org file which contains the item at the mouse click. ** org-agenda-remove-filter =(type)= :PROPERTIES: :CUSTOM_ID: org-agenda-remove-filter :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-remove-filter][Find modifications in git logs]] ** org-agenda-set-tags =(&optional tag onoff)= :PROPERTIES: :CUSTOM_ID: org-agenda-set-tags :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-set-tags][Find modifications in git logs]] : Set tags for the current headline. ** org-clock-remove-overlays =(&optional _beg _end noremove)= :PROPERTIES: :CUSTOM_ID: org-clock-remove-overlays :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-remove-overlays][Find modifications in git logs]] : Remove the occur highlights from the buffer. : If NOREMOVE is nil, remove this function from the : ‘before-change-functions’ in the current buffer. ** org-set-property =(property value)= :PROPERTIES: :CUSTOM_ID: org-set-property :END: - *Access:* ~C-c C-x p, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-property][Find modifications in git logs]] : In the current entry, set PROPERTY to VALUE. : : When called interactively, this will prompt for a property name, offering : completion on existing and default properties. And then it will prompt : for a value, offering completion either on allowed values (via an inherited : xxx_ALL property) or on existing values in other instances of this property : in the current file. : : Throw an error when trying to set a property with an invalid name. ** org-store-link =(arg)= :PROPERTIES: :CUSTOM_ID: org-store-link :END: - *Access:* ~ , C-c l~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-store-link][Find modifications in git logs]] : Store an org-link to the current location. : : This link is added to ‘org-stored-links’ and can later be inserted : into an Org buffer with ‘org-insert-link’ (‘C-c C-l’). : : For some link types, a ‘C-u’ prefix ARG is interpreted. A single : ‘C-u’ negates ‘org-context-in-file-links’ for file links or : ‘org-gnus-prefer-web-links’ for links to Usenet articles. : : A ‘C-u C-u’ prefix ARG forces skipping storing functions that are not : part of Org core. : : A ‘C-u C-u C-u’ prefix ARG forces storing a link for each line in the : active region. ** org-toggle-item =(arg)= :PROPERTIES: :CUSTOM_ID: org-toggle-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-item][Find modifications in git logs]] : Convert headings or normal lines to items, items to normal lines. : If there is no active region, only the current line is considered. : : If the first non blank line in the region is a headline, convert : all headlines to items, shifting text accordingly. : : If it is an item, convert all items to normal lines. : : If it is normal text, change region into a list of items. : With a prefix argument ARG, change the region in a single item. ** orgtbl-tab =(arg)= :PROPERTIES: :CUSTOM_ID: orgtbl-tab :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-tab][Find modifications in git logs]] : Justification and field motion for ‘orgtbl-mode’. ** org-table-insert-row =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-table-insert-row :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-row][Find modifications in git logs]] : Insert a new row above the current line into the table. : With prefix ARG, insert below the current line. ** org-agenda-show-1 =(&optional more)= :PROPERTIES: :CUSTOM_ID: org-agenda-show-1 :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-1][Find modifications in git logs]] : Display the Org file which contains the item at point. : The prefix arg selects the amount of information to display: : : 0 hide the subtree : 1 just show the entry according to defaults. : 2 show the children view : 3 show the subtree view : 4 show the entire subtree and any LOGBOOK drawers : 5 show the entire subtree and any drawers : With prefix argument FULL-ENTRY, make the entire entry visible : if it was hidden in the outline. ** orgstruct-error :PROPERTIES: :CUSTOM_ID: orgstruct-error :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct-error][Find modifications in git logs]] : Error when there is no default binding for a structure key. ** org-table-edit-formulas :PROPERTIES: :CUSTOM_ID: org-table-edit-formulas :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-edit-formulas][Find modifications in git logs]] : Edit the formulas of the current table in a separate buffer. ** org-escape-code-in-region =(beg end)= :PROPERTIES: :CUSTOM_ID: org-escape-code-in-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-escape-code-in-region][Find modifications in git logs]] : Escape lines between BEG and END. : Escaping happens when a line starts with "*", "#+", ",*" or : ",#+" by appending a comma to it. ** org-timer =(&optional restart no-insert)= :PROPERTIES: :CUSTOM_ID: org-timer :END: - *Access:* ~C-c C-x ., ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer][Find modifications in git logs]] : Insert a H:MM:SS string from the timer into the buffer. : The first time this command is used, the timer is started. : : When used with a ‘C-u’ prefix, force restarting the timer. : : When used with a ‘C-u C-u’ prefix, change all the timer strings : in the region by a fixed amount. This can be used to re-calibrate : a timer that was not started at the correct moment. : : If NO-INSERT is non-nil, return the string instead of inserting : it in the buffer. ** org-element-cache-reset =(&optional all)= :PROPERTIES: :CUSTOM_ID: org-element-cache-reset :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-element.el][org-element.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-element-cache-reset][Find modifications in git logs]] : Reset cache in current buffer. : When optional argument ALL is non-nil, reset cache in all Org : buffers. ** org-backward-paragraph :PROPERTIES: :CUSTOM_ID: org-backward-paragraph :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-paragraph][Find modifications in git logs]] : Move backward to start of previous paragraph or equivalent. : : The function moves point to the beginning of the current : structural element, which can be a paragraph, a table, a list : item, etc., or to the beginning of the previous visible one if : point is already there. It also provides some special moves for : convenience: : : - On an affiliated keyword, jump to the first one. : - On a table or a property drawer, move to its beginning. : - On a verse or source block, stop before blank lines. ** org-agenda-show =(&optional full-entry)= :PROPERTIES: :CUSTOM_ID: org-agenda-show :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show][Find modifications in git logs]] : Display the Org file which contains the item at point. : With prefix argument FULL-ENTRY, make the entire entry visible : if it was hidden in the outline. ** org-table-kill-row :PROPERTIES: :CUSTOM_ID: org-table-kill-row :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-kill-row][Find modifications in git logs]] : Delete the current row or horizontal line from the table. ** org-agenda-Quit :PROPERTIES: :CUSTOM_ID: org-agenda-Quit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-Quit][Find modifications in git logs]] : Exit the agenda, killing the agenda buffer. : Like ‘org-agenda-quit’, but kill the buffer even when : ‘org-agenda-sticky’ is non-nil. ** org-icalendar-combine-agenda-files =(&optional async)= :PROPERTIES: :CUSTOM_ID: org-icalendar-combine-agenda-files :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combine-agenda-files][Find modifications in git logs]] : Combine all agenda files into a single iCalendar file. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : The file is stored under the name chosen in : ‘org-icalendar-combined-agenda-file’. ** org-agenda-archive-default :PROPERTIES: :CUSTOM_ID: org-agenda-archive-default :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-default][Find modifications in git logs]] : Archive the entry or subtree belonging to the current agenda entry. ** org-agenda-kill-all-agenda-buffers :PROPERTIES: :CUSTOM_ID: org-agenda-kill-all-agenda-buffers :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Kill all buffers in ‘org-agenda-mode’. : This is used when toggling sticky agendas. ** org-agenda-bulk-action =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-action :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-action][Find modifications in git logs]] : Execute an remote-editing action on all marked entries. : The prefix arg is passed through to the command if possible. ** org-resolve-clocks =(&optional only-dangling-p prompt-fn last-valid)= :PROPERTIES: :CUSTOM_ID: org-resolve-clocks :END: - *Access:* ~C-c C-x C-z~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-resolve-clocks][Find modifications in git logs]] : Resolve all currently open Org clocks. : If ‘only-dangling-p’ is non-nil, only ask to resolve dangling : (i.e., not currently open and valid) clocks. ** org-babel-lilypond-toggle-midi-play :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-toggle-midi-play :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[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]] : Toggle whether midi will be played following a successful compilation. ** org-move-subtree-up =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-move-subtree-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-subtree-up][Find modifications in git logs]] : Move the current subtree up past ARG headlines of the same level. ** org-reveal =(&optional siblings)= :PROPERTIES: :CUSTOM_ID: org-reveal :END: - *Access:* ~C-c C-r, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reveal][Find modifications in git logs]] : Show current entry, hierarchy above it, and the following headline. : : This can be used to show a consistent set of context around : locations exposed with ‘org-show-context’. : : With optional argument SIBLINGS, on each level of the hierarchy all : siblings are shown. This repairs the tree structure to what it would : look like when opened with hierarchical calls to ‘org-cycle’. : : With a C-u C-u prefix, go to the parent and show the entire tree. ** org-export-dispatch =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-export-dispatch :END: - *Access:* ~C-c C-e, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-dispatch][Find modifications in git logs]] : Export dispatcher for Org mode. : : It provides an access to common export related tasks in a buffer. : Its interface comes in two flavors: standard and expert. : : While both share the same set of bindings, only the former : displays the valid keys associations in a dedicated buffer. : Scrolling (resp. line-wise motion) in this buffer is done with : SPC and DEL (resp. C-n and C-p) keys. : : Set variable ‘org-export-dispatch-use-expert-ui’ to switch to one : flavor or the other. : : When ARG is ‘C-u’, repeat the last export action, with the same : set of options used back then, on the current buffer. : : When ARG is ‘C-u C-u’, display the asynchronous export stack. ** org-table-overlay-coordinates :PROPERTIES: :CUSTOM_ID: org-table-overlay-coordinates :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-overlay-coordinates][Find modifications in git logs]] : Add overlays to the table at point, to show row/column coordinates. ** org-lint--jump-to-source :PROPERTIES: :CUSTOM_ID: org-lint--jump-to-source :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--jump-to-source][Find modifications in git logs]] : Move to source line that generated the report at point. ** org-columns-next-allowed-value =(&optional previous nth)= :PROPERTIES: :CUSTOM_ID: org-columns-next-allowed-value :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-next-allowed-value][Find modifications in git logs]] : Switch to the next allowed value for this column. : When PREVIOUS is set, go to the previous value. When NTH is : an integer, select that value. ** org-smart-reschedule =(quality)= :PROPERTIES: :CUSTOM_ID: org-smart-reschedule :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-learn.el][org-learn.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-smart-reschedule][Find modifications in git logs]] ** org-table-end-of-field =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-table-end-of-field :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-end-of-field][Find modifications in git logs]] : Move to the end of the current table field. : If already at or after the end, move to the end of the next table field. : With numeric argument N, move N-1 fields forward first. ** org-agenda-recenter =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-recenter :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-recenter][Find modifications in git logs]] : Display the Org file which contains the item at point and recenter. ** org-attach-delete-all =(&optional force)= :PROPERTIES: :CUSTOM_ID: org-attach-delete-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-delete-all][Find modifications in git logs]] : Delete all attachments from the current task. : This actually deletes the entire attachment directory. : A safer way is to open the directory in dired and delete from there. ** org-toggle-inline-images =(&optional include-linked)= :PROPERTIES: :CUSTOM_ID: org-toggle-inline-images :END: - *Access:* ~C-c C-x C-v~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-inline-images][Find modifications in git logs]] : Toggle the display of inline images. : INCLUDE-LINKED is passed to ‘org-display-inline-images’. ** org-columns-insert-dblock :PROPERTIES: :CUSTOM_ID: org-columns-insert-dblock :END: - *Access:* ~C-c C-x i, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-insert-dblock][Find modifications in git logs]] : Create a dynamic block capturing a column view table. ** org-feed-goto-inbox =(feed)= :PROPERTIES: :CUSTOM_ID: org-feed-goto-inbox :END: - *Access:* ~C-c C-x G, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-goto-inbox][Find modifications in git logs]] : Go to the inbox that captures the feed named FEED. ** org-decrease-number-at-point =(&optional inc)= :PROPERTIES: :CUSTOM_ID: org-decrease-number-at-point :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrease-number-at-point][Find modifications in git logs]] : Decrement the number at point. : With an optional prefix numeric argument INC, decrement using : this numeric value. ** org-edit-src-abort :PROPERTIES: :CUSTOM_ID: org-edit-src-abort :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-abort][Find modifications in git logs]] : Abort editing of the src code and return to the Org buffer. ** org-id-store-link :PROPERTIES: :CUSTOM_ID: org-id-store-link :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-store-link][Find modifications in git logs]] : Store a link to the current entry, using its ID. ** org-tags-sparse-tree =(&optional todo-only match)= :PROPERTIES: :CUSTOM_ID: org-tags-sparse-tree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-sparse-tree][Find modifications in git logs]] : Create a sparse tree according to tags string MATCH. : : MATCH is a string with match syntax. It can contain a selection : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and : TODO keywords ("TODO=\"WAITING\"") or a combination of : those. See the manual for details. : : If optional argument TODO-ONLY is non-nil, only select lines that : are also TODO tasks. ** org-agenda-bulk-toggle :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-toggle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-toggle][Find modifications in git logs]] : Toggle the mark at point for bulk action. ** org-ctrl-c-ret :PROPERTIES: :CUSTOM_ID: org-ctrl-c-ret :END: - *Access:* ~C-c RET~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ret][Find modifications in git logs]] : Call ‘org-table-hline-and-move’ or ‘org-insert-heading’ dep. on context. ** org-agenda-date-earlier-minutes =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-earlier-minutes :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-earlier-minutes][Find modifications in git logs]] : Change the time of this item, in units of ‘org-time-stamp-rounding-minutes’. ** org-agenda-bulk-mark-all :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-mark-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark-all][Find modifications in git logs]] : Mark all entries for future agenda bulk action. ** org-cancel-repeater :PROPERTIES: :CUSTOM_ID: org-cancel-repeater :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cancel-repeater][Find modifications in git logs]] : Cancel a repeater by setting its numeric value to zero. ** org-babel-lilypond-toggle-arrange-mode :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-toggle-arrange-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[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]] : Toggle whether in Arrange mode or Basic mode. ** org-footnote-goto-definition =(label &optional location)= :PROPERTIES: :CUSTOM_ID: org-footnote-goto-definition :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-goto-definition][Find modifications in git logs]] : Move point to the definition of the footnote LABEL. : : LOCATION, when non-nil specifies the buffer position of the : definition. : : Throw an error if there is no definition or if it cannot be : reached from current narrowed part of buffer. Return a non-nil : value if point was successfully moved. ** org-agenda-filter-by-regexp =(strip)= :PROPERTIES: :CUSTOM_ID: org-agenda-filter-by-regexp :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-regexp][Find modifications in git logs]] : Filter agenda entries by a regular expression. : Regexp filters are cumulative. : With no prefix argument, keep entries matching the regexp. : With one prefix argument, filter out entries matching the regexp. : With two prefix arguments, remove the regexp filters. ** org-agenda-fontify-priorities :PROPERTIES: :CUSTOM_ID: org-agenda-fontify-priorities :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-fontify-priorities][Find modifications in git logs]] : Make highest priority lines bold, and lowest italic. ** org-shiftright =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-shiftright :END: - *Access:* ~, , <1 Day Earlier>~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftleft][Find modifications in git logs]] : Cycle the thing at point or in the current line, depending on context. : Depending on context, this does one of the following: : : - switch a timestamp at point one day into the past : - on a headline, switch to the previous TODO keyword. : - on an item, switch entire list to the previous bullet type : - on a property line, switch to the previous allowed value : - on a clocktable definition line, move time block into the past ** org-time-stamp =(arg &optional inactive)= :PROPERTIES: :CUSTOM_ID: org-time-stamp :END: - *Access:* ~C-c ., ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp][Find modifications in git logs]] : Prompt for a date/time and insert a time stamp. : : If the user specifies a time like HH:MM or if this command is : called with at least one prefix argument, the time stamp contains : the date and the time. Otherwise, only the date is included. : : All parts of a date not specified by the user are filled in from : the timestamp at point, if any, or the current date/time : otherwise. : : If there is already a timestamp at the cursor, it is replaced. : : With two universal prefix arguments, insert an active timestamp : with the current time without prompting the user. : : When called from lisp, the timestamp is inactive if INACTIVE is : non-nil. ** org-ctags-create-tags =(&optional directory-name)= :PROPERTIES: :CUSTOM_ID: org-ctags-create-tags :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-create-tags][Find modifications in git logs]] : (Re)create tags file in the directory of the active buffer. : The file will contain tag definitions for all the files in the : directory and its subdirectories which are recognized by ctags. : This will include files ending in ‘.org’ as well as most other : source files (.C, .H, .EL, .LISP, etc). All the resulting tags : end up in one file, called TAGS, located in the directory. This : function may take several seconds to finish if the directory or : its subdirectories contain large numbers of taggable files. ** org-columns--display-here-title :PROPERTIES: :CUSTOM_ID: org-columns--display-here-title :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns--display-here-title][Find modifications in git logs]] : Overlay the newline before the current line with the table title. ** org-babel-switch-to-session =(&optional arg info)= :PROPERTIES: :CUSTOM_ID: org-babel-switch-to-session :END: - *Access:* ~C-c C-v C-z~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-switch-to-session][Find modifications in git logs]] : Switch to the session of the current code block. : Uses ‘org-babel-initiate-session’ to start the session. If called : with a prefix argument then this is passed on to : ‘org-babel-initiate-session’. ** org-sparse-tree =(&optional arg type)= :PROPERTIES: :CUSTOM_ID: org-sparse-tree :END: - *Access:* ~C-c /, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sparse-tree][Find modifications in git logs]] : Create a sparse tree, prompt for the details. : This command can create sparse trees. You first need to select the type : of match used to create the tree: : : t Show all TODO entries. : T Show entries with a specific TODO keyword. : m Show entries selected by a tags/property match. : p Enter a property name and its value (both with completion on existing : names/values) and show entries with that property. : r Show entries matching a regular expression (‘/’ can be used as well). : b Show deadlines and scheduled items before a date. : a Show deadlines and scheduled items after a date. : d Show deadlines due within ‘org-deadline-warning-days’. : D Show deadlines and scheduled items between a date range. ** org-capture =(&optional goto keys)= :PROPERTIES: :CUSTOM_ID: org-capture :END: - *Access:* ~C-c c~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture][Find modifications in git logs]] : Capture something. : : This will let you select a template from ‘org-capture-templates’, and : then file the newly captured information. The text is immediately : inserted at the target location, and an indirect buffer is shown where : you can edit it. Pressing ‘C-c C-c’ brings you back to the previous : state of Emacs, so that you can continue your work. : : When called interactively with a ‘C-u’ prefix argument GOTO, don’t : capture anything, just go to the file/headline where the selected : template stores its notes. : : With a ‘C-u C-u’ prefix argument, go to the last note stored. : : When called with a ‘C-0’ (zero) prefix, insert a template at point. : : When called with a ‘C-1’ (one) prefix, force prompting for a date when : a datetree entry is made. : : ELisp programs can set KEYS to a string associated with a template : in ‘org-capture-templates’. In this case, interactive selection : will be bypassed. : : If ‘org-capture-use-agenda-date’ is non-nil, capturing from the : agenda will use the date at point as the default date. Then, a : ‘C-1’ prefix will tell the capture process to use the HH:MM time : of the day at point (if any) or the current HH:MM time. ** org-forward-paragraph :PROPERTIES: :CUSTOM_ID: org-forward-paragraph :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-paragraph][Find modifications in git logs]] : Move forward to beginning of next paragraph or equivalent. : : The function moves point to the beginning of the next visible : structural element, which can be a paragraph, a table, a list : item, etc. It also provides some special moves for convenience: : : - On an affiliated keyword, jump to the beginning of the : relative element. : - On an item or a footnote definition, move to the second : element inside, if any. : - On a table or a property drawer, jump after it. : - On a verse or source block, stop after blank lines. ** org-protocol-create-for-org :PROPERTIES: :CUSTOM_ID: org-protocol-create-for-org :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-create-for-org][Find modifications in git logs]] : Create a Org protocol project for the current file’s project. : The visited file needs to be part of a publishing project in : ‘org-publish-project-alist’ for this to work. The function : delegates most of the work to ‘org-protocol-create’. ** org-agenda-open-link =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-open-link :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-open-link][Find modifications in git logs]] : Open the link(s) in the current entry, if any. : This looks for a link in the displayed line in the agenda. : It also looks at the text of the entry itself. ** org-edit-special =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-edit-special :END: - *Access:* ~C-c ', , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-special][Find modifications in git logs]] : Call a special editor for the element at point. : When at a table, call the formula editor with ‘org-table-edit-formulas’. : When in a source code block, call ‘org-edit-src-code’. : When in a fixed-width region, call ‘org-edit-fixed-width-region’. : When in an export block, call ‘org-edit-export-block’. : When in a LaTeX environment, call ‘org-edit-latex-environment’. : When at an #+INCLUDE keyword, visit the included file. : When at a footnote reference, call ‘org-edit-footnote-reference’ : On a link, call ‘ffap’ to visit the link at point. : Otherwise, return a user error. ** org-display-inline-images =(&optional include-linked refresh beg end)= :PROPERTIES: :CUSTOM_ID: org-display-inline-images :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-inline-images][Find modifications in git logs]] : Display inline images. : : An inline image is a link which follows either of these : conventions: : : 1. Its path is a file with an extension matching return value : from ‘image-file-name-regexp’ and it has no contents. : : 2. Its description consists in a single link of the previous : type. : : When optional argument INCLUDE-LINKED is non-nil, also links with : a text description part will be inlined. This can be nice for : a quick look at those images, but it does not reflect what : exported files will look like. : : When optional argument REFRESH is non-nil, refresh existing : images between BEG and END. This will create new image displays : only if necessary. BEG and END default to the buffer : boundaries. ** org-capture-goto-last-stored :PROPERTIES: :CUSTOM_ID: org-capture-goto-last-stored :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-goto-last-stored][Find modifications in git logs]] : Go to the location where the last capture note was stored. ** org-show-todo-tree =(arg)= :PROPERTIES: :CUSTOM_ID: org-show-todo-tree :END: - *Access:* ~ , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-todo-tree][Find modifications in git logs]] : Make a compact tree which shows all headlines marked with TODO. : The tree will show the lines where the regexp matches, and all higher : headlines above the match. : With a ‘C-u’ prefix, prompt for a regexp to match. : With a numeric prefix N, construct a sparse tree for the Nth element : of ‘org-todo-keywords-1’. ** org-shiftdown =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-shiftdown :END: - *Access:* ~, , <1 ... Earlier>~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shiftdown][Find modifications in git logs]] : Decrease item in timestamp or decrease priority of current headline. : Calls ‘org-timestamp-down’ or ‘org-priority-down’, or ‘org-next-item’ : depending on context. See the individual commands for more information. ** org-agenda-entry-text-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-entry-text-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-mode][Find modifications in git logs]] : Toggle entry text mode in an agenda buffer. ** org-find-file-at-mouse =(ev)= :PROPERTIES: :CUSTOM_ID: org-find-file-at-mouse :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-find-file-at-mouse][Find modifications in git logs]] : Open file link or URL at mouse. ** org-table-next-row :PROPERTIES: :CUSTOM_ID: org-table-next-row :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-next-row][Find modifications in git logs]] : Go to the next row (same column) in the current table. : Before doing so, re-align the table if necessary. ** org-goto =(&optional alternative-interface)= :PROPERTIES: :CUSTOM_ID: org-goto :END: - *Access:* ~C-c C-j, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto][Find modifications in git logs]] : Look up a different location in the current file, keeping current visibility. : : When you want look-up or go to a different location in a : document, the fastest way is often to fold the entire buffer and : then dive into the tree. This method has the disadvantage, that : the previous location will be folded, which may not be what you : want. : : This command works around this by showing a copy of the current : buffer in an indirect buffer, in overview mode. You can dive : into the tree in that copy, use org-occur and incremental search : to find a location. When pressing RET or ‘Q’, the command : returns to the original buffer in which the visibility is still : unchanged. After RET it will also jump to the location selected : in the indirect buffer and expose the headline hierarchy above. : : With a prefix argument, use the alternative interface: e.g., if : ‘org-goto-interface’ is ‘outline’ use ‘outline-path-completion’. ** org-agenda-goto-mouse =(ev)= :PROPERTIES: :CUSTOM_ID: org-agenda-goto-mouse :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-mouse][Find modifications in git logs]] : Go to the Org file which contains the item at the mouse click. ** org-feed-update-all :PROPERTIES: :CUSTOM_ID: org-feed-update-all :END: - *Access:* ~C-c C-x g, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-update-all][Find modifications in git logs]] : Get inbox items from all feeds in ‘org-feed-alist’. ** org-mouse-transform-to-outline :PROPERTIES: :CUSTOM_ID: org-mouse-transform-to-outline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-transform-to-outline][Find modifications in git logs]] ** org-insert-item =(&optional checkbox)= :PROPERTIES: :CUSTOM_ID: org-insert-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-item][Find modifications in git logs]] : Insert a new item at the current level. : If cursor is before first character after bullet of the item, the : new item will be created before the current one. : : If CHECKBOX is non-nil, add a checkbox next to the bullet. : : Return t when things worked, nil when we are not in an item, or : item is invisible. ** org-id-update-id-locations =(&optional files silent)= :PROPERTIES: :CUSTOM_ID: org-id-update-id-locations :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-update-id-locations][Find modifications in git logs]] : Scan relevant files for IDs. : Store the relation between files and corresponding IDs. : This will scan all agenda files, all associated archives, and all : files currently mentioned in ‘org-id-locations’. : When FILES is given, scan these files instead. ** org-id-get-create =(&optional force)= :PROPERTIES: :CUSTOM_ID: org-id-get-create :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-get-create][Find modifications in git logs]] : Create an ID for the current entry and return it. : If the entry already has an ID, just return it. : With optional argument FORCE, force the creation of a new ID. ** org-tags-view =(&optional todo-only match)= :PROPERTIES: :CUSTOM_ID: org-tags-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-view][Find modifications in git logs]] : Show all headlines for all ‘org-agenda-files’ matching a TAGS criterion. : The prefix arg TODO-ONLY limits the search to TODO entries. ** org-agenda-diary-entry :PROPERTIES: :CUSTOM_ID: org-agenda-diary-entry :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-diary-entry][Find modifications in git logs]] : Make a diary entry, like the ‘i’ command from the calendar. : All the standard commands work: block, weekly etc. : When ‘org-agenda-diary-file’ points to a file, : ‘org-agenda-diary-entry-in-org-file’ is called instead to create : entries in that Org file. ** org-insert-link-global :PROPERTIES: :CUSTOM_ID: org-insert-link-global :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-link-global][Find modifications in git logs]] : Insert a link like Org mode does. : This command can be called in any mode to insert a link in Org syntax. ** org-bibtex-create =(&optional arg nonew)= :PROPERTIES: :CUSTOM_ID: org-bibtex-create :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-create][Find modifications in git logs]] : Create a new entry at the given level. : With a prefix arg, query for optional fields as well. : If nonew is t, add data to the headline of the entry at point. ** org-table-create-with-table.el :PROPERTIES: :CUSTOM_ID: org-table-create-with-table.el :END: - *Access:* ~C-c ~, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Use the table.el package to insert a new table. : If there is already a table at point, convert between Org tables : and table.el tables. ** orgtbl-ascii-plot =(&optional ask)= :PROPERTIES: :CUSTOM_ID: orgtbl-ascii-plot :END: - *Access:* ~C-c " a, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ascii-plot][Find modifications in git logs]] : Draw an ASCII bar plot in a column. : : With cursor in a column containing numerical values, this function : will draw a plot in a new column. : : ASK, if given, is a numeric prefix to override the default 12 : characters width of the plot. ASK may also be the ‘C-u’ prefix, : which will prompt for the width. ** org-copy-visible =(beg end)= :PROPERTIES: :CUSTOM_ID: org-copy-visible :END: - *Access:* ~C-c C-x v, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-visible][Find modifications in git logs]] : Copy the visible parts of the region. ** org-next-item :PROPERTIES: :CUSTOM_ID: org-next-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-next-item][Find modifications in git logs]] : Move to the beginning of the next item. : Throw an error when not in a list. Also throw an error when at : last item, unless ‘org-list-use-circular-motion’ is non-nil. ** org-toggle-ordered-property :PROPERTIES: :CUSTOM_ID: org-toggle-ordered-property :END: - *Access:* ~C-c C-x o, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-ordered-property][Find modifications in git logs]] : Toggle the ORDERED property of the current entry. : For better visibility, you can track the value of this property with a tag. : See variable ‘org-track-ordered-property-with-tag’. ** org-babel-remove-result-one-or-many =(x)= :PROPERTIES: :CUSTOM_ID: org-babel-remove-result-one-or-many :END: - *Access:* ~C-c C-v k~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Remove the result of the current source block. : If called with a prefix argument, remove all result blocks : in the buffer. ** org-agenda-toggle-diary :PROPERTIES: :CUSTOM_ID: org-agenda-toggle-diary :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-toggle-diary][Find modifications in git logs]] : Toggle diary inclusion in an agenda buffer. ** org-compute-property-at-point :PROPERTIES: :CUSTOM_ID: org-compute-property-at-point :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-compute-property-at-point][Find modifications in git logs]] : Compute the property at point. : This looks for an enclosing column format, extracts the operator and : then applies it to the property in the column format’s scope. ** org-open-line =(n)= :PROPERTIES: :CUSTOM_ID: org-open-line :END: - *Access:* ~C-o, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-line][Find modifications in git logs]] : Insert a new row in tables, call ‘open-line’ elsewhere. : If ‘org-special-ctrl-o’ is nil, just call ‘open-line’ everywhere. : As a special case, when a document starts with a table, allow to : call ‘open-line’ on the very first character. ** org-insert-todo-heading-respect-content =(&optional force-state)= :PROPERTIES: :CUSTOM_ID: org-insert-todo-heading-respect-content :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Insert TODO heading with ‘org-insert-heading-respect-content’ set to t. ** org-columns-todo =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-columns-todo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-todo][Find modifications in git logs]] : Change the TODO state during column view. ** org-plot/goto-nearest-table :PROPERTIES: :CUSTOM_ID: org-plot/goto-nearest-table :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-plot.el][org-plot.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-plot/goto-nearest-table][Find modifications in git logs]] : Move the point forward to the beginning of nearest table. : Return value is the point at the beginning of the table. ** org-clock-jump-to-current-clock =(&optional effective-clock)= :PROPERTIES: :CUSTOM_ID: org-clock-jump-to-current-clock :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[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]] ** org-open-at-point =(&rest rest)= :PROPERTIES: :CUSTOM_ID: org-open-at-point :END: - *Access:* ~C-c C-o, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point][Find modifications in git logs]] : :around advice: ‘ad-Advice-org-open-at-point’ : : Open link, timestamp, footnote or tags at point. : : When point is on a link, follow it. Normally, files will be : opened by an appropriate application. If the optional prefix : argument ARG is non-nil, Emacs will visit the file. With : a double prefix argument, try to open outside of Emacs, in the : application the system uses for this file type. : : When point is on a timestamp, open the agenda at the day : specified. : : When point is a footnote definition, move to the first reference : found. If it is on a reference, move to the associated : definition. : : When point is on a headline, display a list of every link in the : entry, so it is possible to pick one, or all, of them. If point : is on a tag, call ‘org-tags-view’ instead. : : When optional argument REFERENCE-BUFFER is non-nil, it should : specify a buffer from where the link search should happen. This : is used internally by ‘org-open-link-from-string’. : : On top of syntactically correct links, this function will also : try to open links and time-stamps in comments, example : blocks... i.e., whenever point is on something looking like : a timestamp or a link. : : (fn &optional ARG REFERENCE-BUFFER) ** org-agenda-sunrise-sunset =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-sunrise-sunset :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-sunrise-sunset][Find modifications in git logs]] : Display sunrise and sunset for the cursor date. : Latitude and longitude can be specified with the variables : ‘calendar-latitude’ and ‘calendar-longitude’. When called with prefix : argument, latitude and longitude will be prompted for. ** org-remove-file =(&optional file)= :PROPERTIES: :CUSTOM_ID: org-remove-file :END: - *Access:* ~C-c ], ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-file][Find modifications in git logs]] : Remove current file from the list of files in variable ‘org-agenda-files’. : These are the files which are being checked for agenda entries. : Optional argument FILE means use this file instead of the current. ** org-table-fedit-line-up :PROPERTIES: :CUSTOM_ID: org-table-fedit-line-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-line-up][Find modifications in git logs]] : Move cursor one line up in the window showing the table. ** org-agenda-bulk-mark-regexp =(regexp)= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-mark-regexp :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark-regexp][Find modifications in git logs]] : Mark entries matching REGEXP for future agenda bulk action. ** org-mouse-move-tree-start =(_event)= :PROPERTIES: :CUSTOM_ID: org-mouse-move-tree-start :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-move-tree-start][Find modifications in git logs]] ** org-agenda-goto-today :PROPERTIES: :CUSTOM_ID: org-agenda-goto-today :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-goto-today][Find modifications in git logs]] : Go to today. ** org-table-fedit-ref-up :PROPERTIES: :CUSTOM_ID: org-table-fedit-ref-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-ref-up][Find modifications in git logs]] : Shift the reference at point one row/hline up. ** org-transpose-element :PROPERTIES: :CUSTOM_ID: org-transpose-element :END: - *Access:* ~C-M-t~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-transpose-element][Find modifications in git logs]] : Transpose current and previous elements, keeping blank lines between. : Point is moved after both elements. ** org-babel-tangle-jump-to-org :PROPERTIES: :CUSTOM_ID: org-babel-tangle-jump-to-org :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[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]] : Jump from a tangled code file to the related Org mode file. ** org-narrow-to-subtree :PROPERTIES: :CUSTOM_ID: org-narrow-to-subtree :END: - *Access:* ~C-x n s~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-subtree][Find modifications in git logs]] : Narrow buffer to the current subtree. ** org-agenda-prepare-buffers =(files)= :PROPERTIES: :CUSTOM_ID: org-agenda-prepare-buffers :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-prepare-buffers][Find modifications in git logs]] : Create buffers for all agenda files, protect archived trees and comments. ** org-toggle-link-display :PROPERTIES: :CUSTOM_ID: org-toggle-link-display :END: - *Access:* ~ , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-link-display][Find modifications in git logs]] : Toggle the literal or descriptive display of links. ** org-babel-haskell-export-to-lhs =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-babel-haskell-export-to-lhs :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-haskell.el][ob-haskell.el]] - [[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]] : Export to a .lhs file with all haskell code blocks escaped. : When called with a prefix argument the resulting : .lhs file will be exported to a .tex file. This function will : create two new files, base-name.lhs and base-name.tex where : base-name is the name of the current Org file. : : Note that all standard Babel literate programming : constructs (header arguments, no-web syntax etc...) are ignored. ** org-agenda-do-date-earlier =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-do-date-earlier :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-do-date-earlier][Find modifications in git logs]] ** org-toggle-timestamp-type :PROPERTIES: :CUSTOM_ID: org-toggle-timestamp-type :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-timestamp-type][Find modifications in git logs]] : Toggle the type ( or [inactive]) of a time stamp. ** org-table-toggle-formula-debugger :PROPERTIES: :CUSTOM_ID: org-table-toggle-formula-debugger :END: - *Access:* ~C-c {, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-toggle-formula-debugger][Find modifications in git logs]] : Toggle the formula debugger in tables. ** org-bibtex-read :PROPERTIES: :CUSTOM_ID: org-bibtex-read :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-read][Find modifications in git logs]] : Read a bibtex entry and save to ‘org-bibtex-entries’. : This uses ‘bibtex-parse-entry’. ** org-match-sparse-tree =(&optional todo-only match)= :PROPERTIES: :CUSTOM_ID: org-match-sparse-tree :END: - *Access:* ~C-c \, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-match-sparse-tree][Find modifications in git logs]] : Create a sparse tree according to tags string MATCH. : : MATCH is a string with match syntax. It can contain a selection : of tags ("+work+urgent-boss"), properties ("LEVEL>3"), and : TODO keywords ("TODO=\"WAITING\"") or a combination of : those. See the manual for details. : : If optional argument TODO-ONLY is non-nil, only select lines that : are also TODO tasks. ** org-show-priority :PROPERTIES: :CUSTOM_ID: org-show-priority :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-priority][Find modifications in git logs]] : Show the priority of the current item. : This priority is composed of the main priority given with the [#A] cookies, : and by additional input from the age of a schedules or deadline entry. ** org-agenda-previous-line :PROPERTIES: :CUSTOM_ID: org-agenda-previous-line :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-line][Find modifications in git logs]] : Move cursor to the previous line, and show if follow-mode is active. ** org-agenda-reset-view :PROPERTIES: :CUSTOM_ID: org-agenda-reset-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-reset-view][Find modifications in git logs]] : Switch to default view for agenda. ** org-table-sum =(&optional beg end nlast)= :PROPERTIES: :CUSTOM_ID: org-table-sum :END: - *Access:* ~C-c +, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-sum][Find modifications in git logs]] : Sum numbers in region of current table column. : The result will be displayed in the echo area, and will be available : as kill to be inserted with . : : If there is an active region, it is interpreted as a rectangle and all : numbers in that rectangle will be summed. If there is no active : region and point is located in a table column, sum all numbers in that : column. : : If at least one number looks like a time HH:MM or HH:MM:SS, all other : numbers are assumed to be times as well (in decimal hours) and the : numbers are added as such. : : If NLAST is a number, only the NLAST fields will actually be summed. ** org-koma-letter-export-as-latex =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-koma-letter-export-as-latex :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[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]] : Export current buffer as a KOMA Scrlttr2 letter. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting buffer should be accessible : through the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{letter}" and "\end{letter}". : : EXT-PLIST, when provided, is a proeprty list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Export is done in a buffer named "*Org KOMA-LETTER Export*". It : will be displayed if ‘org-export-show-temporary-export-buffer’ is : non-nil. ** org-babel-lilypond-toggle-pdf-display :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-toggle-pdf-display :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[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]] : Toggle whether pdf will be displayed following a successful compilation. ** org-babel-execute-subtree =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-babel-execute-subtree :END: - *Access:* ~C-c C-v s, C-c C-v C-s~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-subtree][Find modifications in git logs]] : Execute source code blocks in a subtree. : Call ‘org-babel-execute-src-block’ on every source block in : the current subtree. ** org-attach-attach-cp :PROPERTIES: :CUSTOM_ID: org-attach-attach-cp :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-cp][Find modifications in git logs]] : Attach a file by copying it. ** org-export-stack-mode :PROPERTIES: :CUSTOM_ID: org-export-stack-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-mode][Find modifications in git logs]] : Mode for displaying asynchronous export stack. : : Type ‘M-x org-export-stack’ to visualize the asynchronous export : stack. : : In an Org Export Stack buffer, use ‘RET’ to view export output : on current line, ‘d’ to remove it from the stack and ‘C’ to clear : stack completely. : : Removing entries in a stack buffer does not affect files : or buffers, only display. : : key binding : --- ------- : : TAB forward-button : RET org-export-stack-view : C-n next-line : C-p previous-line : ESC Prefix Command : SPC next-line : - negative-argument : 0 .. 9 digit-argument : < beginning-of-buffer : > end-of-buffer : ? describe-mode : C org-export-stack-clear : S tabulated-list-sort : d org-export-stack-remove : g revert-buffer : h describe-mode : n next-line : p previous-line : q quit-window : v org-export-stack-view : DEL previous-line : S-SPC scroll-down-command : backward-button : next-line : mouse-face : mouse-select-window : Prefix Command : previous-line : : C-M-i backward-button : : : : In addition to any hooks its parent mode ‘tabulated-list-mode’ might have run, : this mode runs the hook ‘org-export-stack-mode-hook’, as the final or penultimate step : during initialization. ** org-insert-heading-respect-content =(&optional invisible-ok)= :PROPERTIES: :CUSTOM_ID: org-insert-heading-respect-content :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-respect-content][Find modifications in git logs]] : Insert heading with ‘org-insert-heading-respect-content’ set to t. ** org-agenda-list-stuck-projects =(&rest ignore)= :PROPERTIES: :CUSTOM_ID: org-agenda-list-stuck-projects :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-list-stuck-projects][Find modifications in git logs]] : Create agenda view for projects that are stuck. : Stuck projects are project that have no next actions. For the definitions : of what a project is and how to check if it stuck, customize the variable : ‘org-stuck-projects’. ** org-cdlatex-math-modify =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-cdlatex-math-modify :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-math-modify][Find modifications in git logs]] : Execute ‘cdlatex-math-modify’ in LaTeX fragments. : Revert to the normal definition outside of these fragments. ** org-create-customize-menu :PROPERTIES: :CUSTOM_ID: org-create-customize-menu :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-customize-menu][Find modifications in git logs]] : Create a full customization menu for Org mode, insert it into the menu. ** org-table-create =(&optional size)= :PROPERTIES: :CUSTOM_ID: org-table-create :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-create][Find modifications in git logs]] : Query for a size and insert a table skeleton. : SIZE is a string Columns x Rows like for example "3x2". ** org-html-convert-region-to-html :PROPERTIES: :CUSTOM_ID: org-html-convert-region-to-html :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[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]] : Assume the current region has Org syntax, and convert it to HTML. : This can be used in any buffer. For example, you can write an : itemized list in Org syntax in an HTML buffer and use this command : to convert it. ** org-attach-attach-ln :PROPERTIES: :CUSTOM_ID: org-attach-attach-ln :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-ln][Find modifications in git logs]] : Attach a file by creating a hard link to it. : Beware that this does not work on systems that do not support hard links. : On some systems, this apparently does copy the file instead. ** org-html-htmlize-generate-css :PROPERTIES: :CUSTOM_ID: org-html-htmlize-generate-css :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-generate-css][Find modifications in git logs]] : Create the CSS for all font definitions in the current Emacs session. : Use this to create face definitions in your CSS style file that can then : be used by code snippets transformed by htmlize. : This command just produces a buffer that contains class definitions for all : faces used in the current Emacs session. You can copy and paste the ones you : need into your CSS file. : : If you then set ‘org-html-htmlize-output-type’ to ‘css’, calls : to the function ‘org-html-htmlize-region-for-paste’ will : produce code that uses these same face definitions. ** org-check-after-date =(d)= :PROPERTIES: :CUSTOM_ID: org-check-after-date :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-after-date][Find modifications in git logs]] : Check if there are deadlines or scheduled entries after date D. ** org-toggle-comment :PROPERTIES: :CUSTOM_ID: org-toggle-comment :END: - *Access:* ~C-c ;~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-comment][Find modifications in git logs]] : Change the COMMENT state of an entry. ** org-attach-attach-mv :PROPERTIES: :CUSTOM_ID: org-attach-attach-mv :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-mv][Find modifications in git logs]] : Attach a file by moving (renaming) it. ** org-remove-inline-images :PROPERTIES: :CUSTOM_ID: org-remove-inline-images :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-inline-images][Find modifications in git logs]] : Remove inline display of images. ** org-return-indent :PROPERTIES: :CUSTOM_ID: org-return-indent :END: - *Access:* ~C-j~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-return-indent][Find modifications in git logs]] : Goto next table row or insert a newline and indent. : Calls ‘org-table-next-row’ or ‘newline-and-indent’, depending on : context. See the individual commands for more information. ** org-delete-property-globally =(property)= :PROPERTIES: :CUSTOM_ID: org-delete-property-globally :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-property-globally][Find modifications in git logs]] : Remove PROPERTY globally, from all entries. : This function ignores narrowing, if any. ** org-table-fedit-scroll =(N)= :PROPERTIES: :CUSTOM_ID: org-table-fedit-scroll :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-scroll][Find modifications in git logs]] ** org-unindent-buffer :PROPERTIES: :CUSTOM_ID: org-unindent-buffer :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-unindent-buffer][Find modifications in git logs]] : Un-indent the visible part of the buffer. : Relative indentation (between items, inside blocks, etc.) isn’t : modified. ** orgtbl-ctrl-c-ctrl-c =(arg)= :PROPERTIES: :CUSTOM_ID: orgtbl-ctrl-c-ctrl-c :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-ctrl-c-ctrl-c][Find modifications in git logs]] : If the cursor is inside a table, realign the table. : If it is a table to be sent away to a receiver, do it. : With prefix arg, also recompute table. ** org-insert-subheading =(arg)= :PROPERTIES: :CUSTOM_ID: org-insert-subheading :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-subheading][Find modifications in git logs]] : Insert a new subheading and demote it. : Works for outline headings and for plain lists alike. ** org-agenda-earlier =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-earlier :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-earlier][Find modifications in git logs]] : Go backward in time by the current span. : With prefix ARG, go backward that many times the current span. ** org-attach-delete-one =(&optional file)= :PROPERTIES: :CUSTOM_ID: org-attach-delete-one :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-delete-one][Find modifications in git logs]] : Delete a single attachment. ** org-columns-content :PROPERTIES: :CUSTOM_ID: org-columns-content :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-content][Find modifications in git logs]] : Switch to contents view while in columns view. ** org-attach-attach-lns :PROPERTIES: :CUSTOM_ID: org-attach-attach-lns :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-attach-lns][Find modifications in git logs]] : Attach a file by creating a symbolic link to it. : : Beware that this does not work on systems that do not support symbolic links. : On some systems, this apparently does copy the file instead. ** org-agenda-manipulate-query-add :PROPERTIES: :CUSTOM_ID: org-agenda-manipulate-query-add :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-add][Find modifications in git logs]] : Manipulate the query by adding a search term with positive selection. : Positive selection means the term must be matched for selection of an entry. ** org-beginning-of-line =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-beginning-of-line :END: - *Access:* ~C-a~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-line][Find modifications in git logs]] : Go to the beginning of the current visible line. : : If this is a headline, and ‘org-special-ctrl-a/e’ is set, ignore : tags on the first attempt, and only move to after the tags when : the cursor is already beyond the end of the headline. : : With argument N not nil or 1, move forward N - 1 lines first. ** org-agenda-deadline =(arg &optional time)= :PROPERTIES: :CUSTOM_ID: org-agenda-deadline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-deadline][Find modifications in git logs]] : Schedule the item at point. : ARG is passed through to ‘org-deadline’. ** org-agenda-priority =(&optional force-direction)= :PROPERTIES: :CUSTOM_ID: org-agenda-priority :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-priority][Find modifications in git logs]] : Set the priority of line at point, also in Org file. : This changes the line at point, all other lines in the agenda referring to : the same tree node, and the headline of the tree node in the Org file. : Called with a universal prefix arg, show the priority instead of setting it. ** org-ascii-export-to-ascii =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-ascii-export-to-ascii :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-export-to-ascii][Find modifications in git logs]] : Export current buffer to a text file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, strip title and : table of contents from output. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return output file’s name. ** org-fill-paragraph =(&optional justify region)= :PROPERTIES: :CUSTOM_ID: org-fill-paragraph :END: - *Access:* ~M-q~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-fill-paragraph][Find modifications in git logs]] : Fill element at point, when applicable. : : This function only applies to comment blocks, comments, example : blocks and paragraphs. Also, as a special case, re-align table : when point is at one. : : For convenience, when point is at a plain list, an item or : a footnote definition, try to fill the first paragraph within. : : If JUSTIFY is non-nil (interactively, with prefix argument), : justify as well. If ‘sentence-end-double-space’ is non-nil, then : period followed by one space does not end a sentence, so don’t : break a line there. The variable ‘fill-column’ controls the : width for filling. : : The REGION argument is non-nil if called interactively; in that : case, if Transient Mark mode is enabled and the mark is active, : fill each of the elements in the active region, instead of just : filling the current element. ** org-publish-current-project =(&optional force async)= :PROPERTIES: :CUSTOM_ID: org-publish-current-project :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-current-project][Find modifications in git logs]] : Publish the project associated with the current file. : With a prefix argument, force publishing of all files in : the project. ** org-remove-occur-highlights =(&optional _beg _end noremove)= :PROPERTIES: :CUSTOM_ID: org-remove-occur-highlights :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-remove-occur-highlights][Find modifications in git logs]] : Remove the occur highlights from the buffer. : BEG and END are ignored. If NOREMOVE is nil, remove this function : from the ‘before-change-functions’ in the current buffer. ** org-agenda-next-item =(n)= :PROPERTIES: :CUSTOM_ID: org-agenda-next-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-next-item][Find modifications in git logs]] : Move cursor to next agenda item. ** org-previous-visible-heading =(arg)= :PROPERTIES: :CUSTOM_ID: org-previous-visible-heading :END: - *Access:* ~C-c C-p, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-visible-heading][Find modifications in git logs]] : Move to the previous visible heading. : : This function wraps ‘outline-previous-visible-heading’ with : ‘org-with-limited-levels’ in order to skip over inline tasks and : respect customization of ‘org-odd-levels-only’. ** org-babel-check-src-block :PROPERTIES: :CUSTOM_ID: org-babel-check-src-block :END: - *Access:* ~C-c C-v c, C-c C-v C-c~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-check-src-block][Find modifications in git logs]] : Check for misspelled header arguments in the current code block. ** org-increase-number-at-point =(&optional inc)= :PROPERTIES: :CUSTOM_ID: org-increase-number-at-point :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-increase-number-at-point][Find modifications in git logs]] : Increment the number at point. : With an optional prefix numeric argument INC, increment using : this numeric value. ** org-end-of-line =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-end-of-line :END: - *Access:* ~C-e~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-line][Find modifications in git logs]] : Go to the end of the line, but before ellipsis, if any. : : If this is a headline, and ‘org-special-ctrl-a/e’ is set, ignore : tags on the first attempt, and only move to after the tags when : the cursor is already beyond the end of the headline. : : With argument N not nil or 1, move forward N - 1 lines first. ** org-attach-set-directory :PROPERTIES: :CUSTOM_ID: org-attach-set-directory :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-set-directory][Find modifications in git logs]] : Set the ATTACH_DIR property of the current entry. : The property defines the directory that is used for attachments : of the entry. ** org-table-fedit-scroll-down =(N)= :PROPERTIES: :CUSTOM_ID: org-table-fedit-scroll-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-scroll-down][Find modifications in git logs]] ** orgtbl-error :PROPERTIES: :CUSTOM_ID: orgtbl-error :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-error][Find modifications in git logs]] : Error when there is no default binding for a table key. ** org-shifttab =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-shifttab :END: - *Access:* ~, , , , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-shifttab][Find modifications in git logs]] : Global visibility cycling or move to previous table field. : Call ‘org-table-previous-field’ within a table. : When ARG is nil, cycle globally through visibility states. : When ARG is a numeric prefix, show contents of this level. ** org-man-export-to-man =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-man-export-to-man :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-export-to-man][Find modifications in git logs]] : Export current buffer to a Man file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only the body : without any markers. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return output file’s name. ** org-capture-refile :PROPERTIES: :CUSTOM_ID: org-capture-refile :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-refile][Find modifications in git logs]] : Finalize the current capture and then refile the entry. : Refiling is done from the base buffer, because the indirect buffer is then : already gone. Any prefix argument will be passed to the refile command. ** org-decrypt-entry :PROPERTIES: :CUSTOM_ID: org-decrypt-entry :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decrypt-entry][Find modifications in git logs]] : Decrypt the content of the current headline. ** org-set-tags-command =(&optional arg just-align)= :PROPERTIES: :CUSTOM_ID: org-set-tags-command :END: - *Access:* ~C-c C-q, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-tags-command][Find modifications in git logs]] : Call the set-tags command for the current entry. ** org-edit-agenda-file-list :PROPERTIES: :CUSTOM_ID: org-edit-agenda-file-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-agenda-file-list][Find modifications in git logs]] : Edit the list of agenda files. : Depending on setup, this either uses customize to edit the variable : ‘org-agenda-files’, or it visits the file that is holding the list. In the : latter case, the buffer is set up in a way that saving it automatically kills : the buffer and restores the previous window configuration. ** org-babel-load-in-session =(&optional _arg info)= :PROPERTIES: :CUSTOM_ID: org-babel-load-in-session :END: - *Access:* ~C-c C-v l, C-c C-v C-l~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-in-session][Find modifications in git logs]] : Load the body of the current source-code block. : Evaluate the header arguments for the source block before : entering the session. After loading the body this pops open the : session. ** org-clock-menu :PROPERTIES: :CUSTOM_ID: org-clock-menu :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-menu][Find modifications in git logs]] ** org-columns-edit-attributes :PROPERTIES: :CUSTOM_ID: org-columns-edit-attributes :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-attributes][Find modifications in git logs]] : Edit the attributes of the current column. ** org-export-stack-clear :PROPERTIES: :CUSTOM_ID: org-export-stack-clear :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-clear][Find modifications in git logs]] : Remove all entries from export stack. ** org-revert-all-org-buffers :PROPERTIES: :CUSTOM_ID: org-revert-all-org-buffers :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-revert-all-org-buffers][Find modifications in git logs]] : Revert all Org buffers. : Prompt for confirmation when there are unsaved changes. : Be sure you know what you are doing before letting this function : overwrite your changes. : : This function is useful in a setup where one tracks org files : with a version control system, to revert on one machine after pulling : changes from another. I believe the procedure must be like this: : : 1. M-x org-save-all-org-buffers : 2. Pull changes from the other machine, resolve conflicts : 3. M-x org-revert-all-org-buffers ** org-table-move-row =(&optional up)= :PROPERTIES: :CUSTOM_ID: org-table-move-row :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-move-row][Find modifications in git logs]] : Move the current table line down. With arg UP, move it up. ** org-id-copy :PROPERTIES: :CUSTOM_ID: org-id-copy :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-copy][Find modifications in git logs]] : Copy the ID of the entry at point to the kill ring. : Create an ID if necessary. ** org-table-cut-region =(beg end)= :PROPERTIES: :CUSTOM_ID: org-table-cut-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-cut-region][Find modifications in git logs]] : Copy region in table to the clipboard and blank all relevant fields. : If there is no active region, use just the field at point. ** org-calendar-goto-agenda :PROPERTIES: :CUSTOM_ID: org-calendar-goto-agenda :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-goto-agenda][Find modifications in git logs]] : Compute the Org agenda for the calendar date displayed at the cursor. : This is a command that has to be installed in ‘calendar-mode-map’. ** org-capture-finalize =(&optional stay-with-capture)= :PROPERTIES: :CUSTOM_ID: org-capture-finalize :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-finalize][Find modifications in git logs]] : Finalize the capture process. : With prefix argument STAY-WITH-CAPTURE, jump to the location of the : captured item after finalizing. ** org-ctags-open-file =(name &optional title)= :PROPERTIES: :CUSTOM_ID: org-ctags-open-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-open-file][Find modifications in git logs]] : Visit or create a file called ‘NAME.org’, and insert a new topic. : The new topic will be titled NAME (or TITLE if supplied). ** org-refile-goto-last-stored :PROPERTIES: :CUSTOM_ID: org-refile-goto-last-stored :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-goto-last-stored][Find modifications in git logs]] : Go to the location where the last refile was stored. ** org-force-cycle-archived :PROPERTIES: :CUSTOM_ID: org-force-cycle-archived :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-force-cycle-archived][Find modifications in git logs]] : Cycle subtree even if it is archived. ** org-table-field-info =(_arg)= :PROPERTIES: :CUSTOM_ID: org-table-field-info :END: - *Access:* ~C-c ?~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-field-info][Find modifications in git logs]] : Show info about the current field, and highlight any reference at point. ** org-setup-comments-handling :PROPERTIES: :CUSTOM_ID: org-setup-comments-handling :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-setup-comments-handling][Find modifications in git logs]] ** org-priority-up :PROPERTIES: :CUSTOM_ID: org-priority-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority-up][Find modifications in git logs]] : Increase the priority of the current item. ** org-copy-subtree =(&optional n cut force-store-markers nosubtrees)= :PROPERTIES: :CUSTOM_ID: org-copy-subtree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-copy-subtree][Find modifications in git logs]] : Copy the current subtree it in the clipboard. : With prefix arg N, copy this many sequential subtrees. : This is a short-hand for marking the subtree and then copying it. : If CUT is non-nil, actually cut the subtree. : If FORCE-STORE-MARKERS is non-nil, store the relative locations : of some markers in the region, even if CUT is non-nil. This is : useful if the caller implements cut-and-paste as copy-then-paste-then-cut. ** org-caldav-delete-everything =(prefix)= :PROPERTIES: :CUSTOM_ID: org-caldav-delete-everything :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-caldav.el][org-caldav.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-caldav-delete-everything][Find modifications in git logs]] : Delete all events from Calendar and removes state file. : Again: This deletes all events in your calendar. So only do this : if you’re really sure. This has to be called with a prefix, just : so you don’t do it by accident. ** org-forward-element :PROPERTIES: :CUSTOM_ID: org-forward-element :END: - *Access:* ~M-}~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-element][Find modifications in git logs]] : Move forward by one element. : Move to the next element at the same level, when possible. ** org-open-at-point-global :PROPERTIES: :CUSTOM_ID: org-open-at-point-global :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-point-global][Find modifications in git logs]] : Follow a link or time-stamp like Org mode does. : This command can be called in any mode to follow an external link : or a time-stamp that has Org mode syntax. Its behavior is : undefined when called on internal links (e.g., fuzzy links). : Raise an error when there is nothing to follow. ** org-unescape-code-in-region =(beg end)= :PROPERTIES: :CUSTOM_ID: org-unescape-code-in-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-unescape-code-in-region][Find modifications in git logs]] : Un-escape lines between BEG and END. : Un-escaping happens by removing the first comma on lines starting : with ",*", ",#+", ",,*" and ",,#+". ** org-agenda-menu =(event)= :PROPERTIES: :CUSTOM_ID: org-agenda-menu :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-menu][Find modifications in git logs]] : Agenda menu ** org-cycle-agenda-files :PROPERTIES: :CUSTOM_ID: org-cycle-agenda-files :END: - *Access:* ~C-', C-,, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-agenda-files][Find modifications in git logs]] : Cycle through the files in ‘org-agenda-files’. : If the current buffer visits an agenda file, find the next one in the list. : If the current buffer does not, find the first agenda file. ** org-move-item-up :PROPERTIES: :CUSTOM_ID: org-move-item-up :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-item-up][Find modifications in git logs]] : Move the item at point up, i.e. swap with previous item. : Sub-items (items with larger indentation) are considered part of : the item, so this really moves item trees. ** org-babel-load-in-session-maybe :PROPERTIES: :CUSTOM_ID: org-babel-load-in-session-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Conditionally load a source block in a session. : Detect if this is context for a org-babel src-block and if so : then run ‘org-babel-load-in-session’. ** org-entities-create-table :PROPERTIES: :CUSTOM_ID: org-entities-create-table :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-entities.el][org-entities.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-entities-create-table][Find modifications in git logs]] : Create an Org mode table with all entities. ** org-toggle-sticky-agenda =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-toggle-sticky-agenda :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-sticky-agenda][Find modifications in git logs]] : Toggle ‘org-agenda-sticky’. ** org-insert-columns-dblock :PROPERTIES: :CUSTOM_ID: org-insert-columns-dblock :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-columns-dblock][Find modifications in git logs]] : Create a dynamic block capturing a column view table. ** org-man-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-man-export-to-pdf :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-export-to-pdf][Find modifications in git logs]] : Export current buffer to Groff then process through to PDF. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write between : markers. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return PDF file’s name. ** org-calendar-select-mouse =(ev)= :PROPERTIES: :CUSTOM_ID: org-calendar-select-mouse :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-calendar-select-mouse][Find modifications in git logs]] : Return to ‘org-read-date’ with the date currently selected. : This is used by ‘org-read-date’ in a temporary keymap for the calendar buffer. ** org-babel-previous-src-block =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-babel-previous-src-block :END: - *Access:* ~C-c C-v C-p, C-c C-v p~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-previous-src-block][Find modifications in git logs]] : Jump to the previous source block. : With optional prefix argument ARG, jump backward ARG many source blocks. ** org-edit-headline =(&optional heading)= :PROPERTIES: :CUSTOM_ID: org-edit-headline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-headline][Find modifications in git logs]] : Edit the current headline. : Set it to HEADING when provided. ** org-indent-region =(start end)= :PROPERTIES: :CUSTOM_ID: org-indent-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-region][Find modifications in git logs]] : Indent each non-blank line in the region. : Called from a program, START and END specify the region to : indent. The function will not indent contents of example blocks, : verse blocks and export blocks as leading white spaces are : assumed to be significant there. ** org-paste-special =(arg)= :PROPERTIES: :CUSTOM_ID: org-paste-special :END: - *Access:* ~C-c C-x C-y, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-paste-special][Find modifications in git logs]] : Paste rectangular region into table, or past subtree relative to level. : Calls ‘org-table-paste-rectangle’ or ‘org-paste-subtree’, depending on context. : See the individual commands for more information. ** org-toggle-fixed-width :PROPERTIES: :CUSTOM_ID: org-toggle-fixed-width :END: - *Access:* ~C-c :~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-toggle-fixed-width][Find modifications in git logs]] : Toggle fixed-width markup. : : Add or remove fixed-width markup on current line, whenever it : makes sense. Return an error otherwise. : : If a region is active and if it contains only fixed-width areas : or blank lines, remove all fixed-width markup in it. If the : region contains anything else, convert all non-fixed-width lines : to fixed-width ones. : : Blank lines at the end of the region are ignored unless the : region only contains such lines. ** org-columns-show-value :PROPERTIES: :CUSTOM_ID: org-columns-show-value :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-show-value][Find modifications in git logs]] : Show the full value of the property. ** org-metaright =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-metaright :END: - *Access:* ~, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaright][Find modifications in git logs]] : Demote heading, list item at point or move table column right. : : In front of a drawer or a block keyword, indent it correctly. : : Calls ‘org-do-demote’, ‘org-indent-item’, ‘org-table-move-column’, : ‘org-indent-drawer’ or ‘org-indent-block’ depending on context. : With no specific context, calls the Emacs default ‘forward-word’. : See the individual commands for more information. : : This function runs the hook ‘org-metaright-hook’ as a first step, : and returns at first non-nil value. ** org-mouse-insert-heading :PROPERTIES: :CUSTOM_ID: org-mouse-insert-heading :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-insert-heading][Find modifications in git logs]] : Insert a new heading, as ‘org-insert-heading’. : : If the point is at the :beginning (‘org-mouse-line-position’) of the line, : insert the new heading before the current line. Otherwise, insert it : after the current heading. ** org-table-eval-formula =(&optional arg equation suppress-align suppress-const suppress-store suppress-analysis)= :PROPERTIES: :CUSTOM_ID: org-table-eval-formula :END: - *Access:* ~C-c =, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-eval-formula][Find modifications in git logs]] : Replace the table field value at the cursor by the result of a calculation. : : In a table, this command replaces the value in the current field with the : result of a formula. It also installs the formula as the "current" column : formula, by storing it in a special line below the table. When called : with a ‘C-u’ prefix the formula is installed as a field formula. : : When called with a ‘C-u C-u’ prefix, insert the active equation for the field : back into the current field, so that it can be edited there. This is useful : in order to use ‘C-c ?’ to check the referenced fields. : : When called, the command first prompts for a formula, which is read in : the minibuffer. Previously entered formulas are available through the : history list, and the last used formula is offered as a default. : These stored formulas are adapted correctly when moving, inserting, or : deleting columns with the corresponding commands. : : The formula can be any algebraic expression understood by the Calc package. : For details, see the Org mode manual. : : This function can also be called from Lisp programs and offers : additional arguments: EQUATION can be the formula to apply. If this : argument is given, the user will not be prompted. : : SUPPRESS-ALIGN is used to speed-up recursive calls by by-passing : unnecessary aligns. : : SUPPRESS-CONST suppresses the interpretation of constants in the : formula, assuming that this has been done already outside the : function. : : SUPPRESS-STORE means the formula should not be stored, either : because it is already stored, or because it is a modified : equation that should not overwrite the stored one. : : SUPPRESS-ANALYSIS prevents analyzing the table and checking : location of point. ** org-babel-remove-inline-result =(&optional datum)= :PROPERTIES: :CUSTOM_ID: org-babel-remove-inline-result :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remove-inline-result][Find modifications in git logs]] : Remove the result of the current inline-src-block or babel call. : The result must be wrapped in a ‘results’ macro to be removed. : Leading white space is trimmed. ** org-babel-tangle-clean :PROPERTIES: :CUSTOM_ID: org-babel-tangle-clean :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-clean][Find modifications in git logs]] : Remove comments inserted by ‘org-babel-tangle’. : Call this function inside of a source-code file generated by : ‘org-babel-tangle’ to remove all comments inserted automatically : by ‘org-babel-tangle’. Warning, this comment removes any lines : containing constructs which resemble Org file links or noweb : references. ** org-table-copy-region =(beg end &optional cut)= :PROPERTIES: :CUSTOM_ID: org-table-copy-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-region][Find modifications in git logs]] : Copy rectangular region in table to clipboard. : A special clipboard is used which can only be accessed : with ‘org-table-paste-rectangle’. ** org-set-effort =(&optional value increment)= :PROPERTIES: :CUSTOM_ID: org-set-effort :END: - *Access:* ~C-c C-x e~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-set-effort][Find modifications in git logs]] : Set the effort property of the current entry. : With numerical prefix arg, use the nth allowed value, 0 stands for the : 10th allowed value. : : When INCREMENT is non-nil, set the property to the next allowed value. ** org-edit-table.el :PROPERTIES: :CUSTOM_ID: org-edit-table.el :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-table.el][Find modifications in git logs]] : Edit "table.el" table at point. : : A new buffer is created and the table is copied into it. Then : the table is recognized with ‘table-recognize’. When done : editing, exit with ‘C-c '’. The edited text will then replace : the area in the Org mode buffer. : : Throw an error when not at such a table. ** org-forward-heading-same-level =(arg &optional invisible-ok)= :PROPERTIES: :CUSTOM_ID: org-forward-heading-same-level :END: - *Access:* ~C-c C-f, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-heading-same-level][Find modifications in git logs]] : Move forward to the ARG’th subheading at same level as this one. : Stop at the first and last subheadings of a superior heading. : Normally this only looks at visible headings, but when INVISIBLE-OK is : non-nil it will also look at invisible ones. ** org-lint--report-mode :PROPERTIES: :CUSTOM_ID: org-lint--report-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--report-mode][Find modifications in git logs]] : Major mode used to display reports emitted during linting. : key binding : --- ------- : : TAB .. C-j org-lint--show-source : RET org-lint--jump-to-source : ESC Prefix Command : SPC scroll-up-command : - negative-argument : 0 .. 9 digit-argument : < beginning-of-buffer : > end-of-buffer : ? describe-mode : S tabulated-list-sort : g revert-buffer : h org-lint--hide-checker : i org-lint--ignore-checker : n next-line : p previous-line : q quit-window : DEL scroll-down-command : S-SPC scroll-down-command : backward-button : mouse-face : mouse-select-window : Prefix Command : : C-M-i backward-button : : : : In addition to any hooks its parent mode ‘tabulated-list-mode’ might have run, : this mode runs the hook ‘org-lint--report-mode-hook’, as the final or penultimate step : during initialization. ** org-mode-restart :PROPERTIES: :CUSTOM_ID: org-mode-restart :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mode-restart][Find modifications in git logs]] ** org-agenda =(&optional arg org-keys restriction)= :PROPERTIES: :CUSTOM_ID: org-agenda :END: - *Access:* ~ , C-c a~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda][Find modifications in git logs]] : Dispatch agenda commands to collect entries to the agenda buffer. : Prompts for a command to execute. Any prefix arg will be passed : on to the selected command. The default selections are: : : a Call ‘org-agenda-list’ to display the agenda for current day or week. : t Call ‘org-todo-list’ to display the global todo list. : T Call ‘org-todo-list’ to display the global todo list, select only : entries with a specific TODO keyword (the user gets a prompt). : m Call ‘org-tags-view’ to display headlines with tags matching : a condition (the user is prompted for the condition). : M Like ‘m’, but select only TODO entries, no ordinary headlines. : e Export views to associated files. : s Search entries for keywords. : S Search entries for keywords, only with TODO keywords. : / Multi occur across all agenda files and also files listed : in ‘org-agenda-text-search-extra-files’. : < Restrict agenda commands to buffer, subtree, or region. : Press several times to get the desired effect. : > Remove a previous restriction. : # List "stuck" projects. : ! Configure what "stuck" means. : C Configure custom agenda commands. : : More commands can be added by configuring the variable : ‘org-agenda-custom-commands’. In particular, specific tags and TODO keyword : searches can be pre-defined in this way. : : If the current buffer is in Org mode and visiting a file, you can also : first press ‘<’ once to indicate that the agenda should be temporarily : (until the next use of ‘C-c a’) restricted to the current file. : Pressing ‘<’ twice means to restrict to the current subtree or region : (if active). ** org-save-all-org-buffers :PROPERTIES: :CUSTOM_ID: org-save-all-org-buffers :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-save-all-org-buffers][Find modifications in git logs]] : Save all Org buffers without user confirmation. ** org-agenda-forward-block =(&optional backward)= :PROPERTIES: :CUSTOM_ID: org-agenda-forward-block :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-forward-block][Find modifications in git logs]] : Move forward by one agenda block. : When optional argument BACKWARD is set, go backward ** org-export-stack-refresh :PROPERTIES: :CUSTOM_ID: org-export-stack-refresh :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-refresh][Find modifications in git logs]] : Refresh the export stack. ** orgstruct++-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: orgstruct++-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgstruct++-mode][Find modifications in git logs]] : Toggle ‘orgstruct-mode’, the enhanced version of it. : In addition to setting orgstruct-mode, this also exports all : indentation and autofilling variables from Org mode into the : buffer. It will also recognize item context in multiline items. ** org-mobile-create-sumo-agenda :PROPERTIES: :CUSTOM_ID: org-mobile-create-sumo-agenda :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-create-sumo-agenda][Find modifications in git logs]] : Create a file that contains all custom agenda views. ** org-mouse-down-mouse =(event)= :PROPERTIES: :CUSTOM_ID: org-mouse-down-mouse :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-down-mouse][Find modifications in git logs]] ** org-move-subtree-down =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-move-subtree-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-move-subtree-down][Find modifications in git logs]] : Move the current subtree down past ARG headlines of the same level. ** org-update-radio-target-regexp :PROPERTIES: :CUSTOM_ID: org-update-radio-target-regexp :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-radio-target-regexp][Find modifications in git logs]] : Find all radio targets in this file and update the regular expression. : Also refresh fontification if needed. ** org-backward-heading-same-level =(arg &optional invisible-ok)= :PROPERTIES: :CUSTOM_ID: org-backward-heading-same-level :END: - *Access:* ~C-c C-b, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-backward-heading-same-level][Find modifications in git logs]] : Move backward to the ARG’th subheading at same level as this one. : Stop at the first and last subheadings of a superior heading. ** org-capture-goto-target =(&optional template-key)= :PROPERTIES: :CUSTOM_ID: org-capture-goto-target :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-goto-target][Find modifications in git logs]] : Go to the target location of a capture template. : The user is queried for the template. ** org-table-recalculate =(&optional all noalign)= :PROPERTIES: :CUSTOM_ID: org-table-recalculate :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-recalculate][Find modifications in git logs]] : Recalculate the current table line by applying all stored formulas. : : With prefix arg ALL, do this for all lines in the table. : : When called with a ‘C-u C-u’ prefix, or if ALL is the symbol ‘iterate’, : recompute the table until it no longer changes. : : If NOALIGN is not nil, do not re-align the table after the computations : are done. This is typically used internally to save time, if it is : known that the table will be realigned a little later anyway. ** org-ctags-get-filename-for-tag =(tag)= :PROPERTIES: :CUSTOM_ID: org-ctags-get-filename-for-tag :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[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]] : TAG is a string. Search the active TAGS file for a matching tag. : If the tag is found, return a list containing the filename, line number, and : buffer position where the tag is found. ** org-table-align :PROPERTIES: :CUSTOM_ID: org-table-align :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-align][Find modifications in git logs]] : Align the table at point by aligning all vertical bars. ** org-clock-timestamps-down =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-clock-timestamps-down :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-timestamps-down][Find modifications in git logs]] : Increase CLOCK timestamps at cursor. : Optional argument N tells to change by that many units. ** org-agenda-clock-cancel =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-clock-cancel :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-cancel][Find modifications in git logs]] : Cancel the currently running clock. ** org-open-link-from-string =(s &optional arg reference-buffer)= :PROPERTIES: :CUSTOM_ID: org-open-link-from-string :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-link-from-string][Find modifications in git logs]] : Open a link in the string S, as if it was in Org mode. ** org-change-tag-in-region =(beg end tag off)= :PROPERTIES: :CUSTOM_ID: org-change-tag-in-region :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-change-tag-in-region][Find modifications in git logs]] : Add or remove TAG for each entry in the region. : This works in the agenda, and also in an Org buffer. ** org-export-insert-default-template =(&optional backend subtreep)= :PROPERTIES: :CUSTOM_ID: org-export-insert-default-template :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-insert-default-template][Find modifications in git logs]] : Insert all export keywords with default values at beginning of line. : : BACKEND is a symbol referring to the name of a registered export : back-end, for which specific export options should be added to : the template, or ‘default’ for default template. When it is nil, : the user will be prompted for a category. : : If SUBTREEP is non-nil, export configuration will be set up : locally for the subtree through node properties. ** org-delete-property =(property)= :PROPERTIES: :CUSTOM_ID: org-delete-property :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-property][Find modifications in git logs]] : In the current entry, delete PROPERTY. ** org-require-autoloaded-modules :PROPERTIES: :CUSTOM_ID: org-require-autoloaded-modules :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-require-autoloaded-modules][Find modifications in git logs]] ** org-table-fedit-toggle-ref-type :PROPERTIES: :CUSTOM_ID: org-table-fedit-toggle-ref-type :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Convert all references in the buffer from B3 to @3$2 and back. ** org-agenda-todo =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-todo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo][Find modifications in git logs]] : Cycle TODO state of line at point, also in Org file. : This changes the line at point, all other lines in the agenda referring to : the same tree node, and the headline of the tree node in the Org file. ** org-table-hline-and-move =(&optional same-column)= :PROPERTIES: :CUSTOM_ID: org-table-hline-and-move :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-hline-and-move][Find modifications in git logs]] : Insert a hline and move to the row below that line. ** org-babel-switch-to-session-with-code =(&optional arg _info)= :PROPERTIES: :CUSTOM_ID: org-babel-switch-to-session-with-code :END: - *Access:* ~C-c C-v z~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Switch to code buffer and display session. ** org-table-insert-column :PROPERTIES: :CUSTOM_ID: org-table-insert-column :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-insert-column][Find modifications in git logs]] : Insert a new column into the table. ** org-archive-subtree-default :PROPERTIES: :CUSTOM_ID: org-archive-subtree-default :END: - *Access:* ~C-c C-x C-a, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree-default][Find modifications in git logs]] : Archive the current subtree with the default command. : This command is set with the variable ‘org-archive-default-command’. ** org-id-goto =(id)= :PROPERTIES: :CUSTOM_ID: org-id-goto :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-goto][Find modifications in git logs]] : Switch to the buffer containing the entry with id ID. : Move the cursor to that entry in that buffer. ** org-capture-import-remember-templates :PROPERTIES: :CUSTOM_ID: org-capture-import-remember-templates :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-import-remember-templates][Find modifications in git logs]] : Set ‘org-capture-templates’ to be similar to ‘org-remember-templates’. ** org-columns-new =(&optional spec &rest attributes)= :PROPERTIES: :CUSTOM_ID: org-columns-new :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-new][Find modifications in git logs]] : Insert a new column, to the left of the current column. : Interactively fill attributes for new column. When column format : specification SPEC is provided, edit it instead. : : When optional argument attributes can be a list of columns : specifications attributes to create the new column : non-interactively. See ‘org-columns-compile-format’ for : details. ** org-edit-inline-src-code :PROPERTIES: :CUSTOM_ID: org-edit-inline-src-code :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-inline-src-code][Find modifications in git logs]] : Edit inline source code at point. ** org-list-send-list =(&optional maybe)= :PROPERTIES: :CUSTOM_ID: org-list-send-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-send-list][Find modifications in git logs]] : Send a transformed version of this list to the receiver position. : With argument MAYBE, fail quietly if no transformation is defined : for this list. ** org-insert-last-stored-link =(arg)= :PROPERTIES: :CUSTOM_ID: org-insert-last-stored-link :END: - *Access:* ~C-c M-l~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-last-stored-link][Find modifications in git logs]] : Insert the last link stored in ‘org-stored-links’. ** org-babel-mark-block :PROPERTIES: :CUSTOM_ID: org-babel-mark-block :END: - *Access:* ~C-c C-v C-M-h~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-mark-block][Find modifications in git logs]] : Mark current src block. ** org-babel-describe-bindings :PROPERTIES: :CUSTOM_ID: org-babel-describe-bindings :END: - *Access:* ~C-c C-v h~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-keys.el][ob-keys.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-describe-bindings][Find modifications in git logs]] : Describe all keybindings behind ‘org-babel-key-prefix’. ** org-forward-sentence =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-forward-sentence :END: - *Access:* ~M-e~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-forward-sentence][Find modifications in git logs]] : Go to end of sentence, or end of table field. : This will call ‘forward-sentence’ or ‘org-table-end-of-field’, : depending on context. ** org-table-follow-field-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-table-follow-field-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-follow-field-mode][Find modifications in git logs]] : Minor mode to make the table field editor window follow the cursor. : When this mode is active, the field editor window will always show the : current field. The mode exits automatically when the cursor leaves the : table (but see ‘org-table-exit-follow-field-mode-when-leaving-table’). ** org-mark-ring-goto =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-mark-ring-goto :END: - *Access:* ~C-c &~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mark-ring-goto][Find modifications in git logs]] : Jump to the previous position in the mark ring. : With prefix arg N, jump back that many stored positions. When : called several times in succession, walk through the entire ring. : Org mode commands jumping to a different position in the current file, : or to another Org file, automatically push the old position onto the ring. ** org-table-iterate =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-table-iterate :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-iterate][Find modifications in git logs]] : Recalculate the table until it does not change anymore. : The maximum number of iterations is 10, but you can choose a different value : with the prefix ARG. ** org-agenda-week-view =(&optional iso-week)= :PROPERTIES: :CUSTOM_ID: org-agenda-week-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-week-view][Find modifications in git logs]] : Switch to weekly view for agenda. : With argument ISO-WEEK, switch to the corresponding ISO week. : If ISO-WEEK has more then 2 digits, only the last two encode : the week. Any digits before this encode a year. So 200712 : means week 12 of year 2007. Years ranging from 70 years ago : to 30 years in the future can also be written as 2-digit years. ** org-deadline =(arg &optional time)= :PROPERTIES: :CUSTOM_ID: org-deadline :END: - *Access:* ~C-c C-d, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-deadline][Find modifications in git logs]] : Insert the "DEADLINE:" string with a timestamp to make a deadline. : With one universal prefix argument, remove any deadline from the item. : With two universal prefix arguments, prompt for a warning delay. : With argument TIME, set the deadline at the corresponding date. TIME : can either be an Org date like "2011-07-24" or a delta like "+2d". ** org-priority =(&optional action _show)= :PROPERTIES: :CUSTOM_ID: org-priority :END: - *Access:* ~C-c ,, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-priority][Find modifications in git logs]] : Change the priority of an item. : ACTION can be ‘set’, ‘up’, ‘down’, or a character. ** org-agenda-file-to-front =(&optional to-end)= :PROPERTIES: :CUSTOM_ID: org-agenda-file-to-front :END: - *Access:* ~C-c [, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-file-to-front][Find modifications in git logs]] : Move/add the current file to the top of the agenda file list. : If the file is not present in the list, it is added to the front. If it is : present, it is moved there. With optional argument TO-END, add/move to the : end of the list. ** org-babel-expand-src-block-maybe :PROPERTIES: :CUSTOM_ID: org-babel-expand-src-block-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Conditionally expand a source block. : Detect if this is context for a org-babel src-block and if so : then run ‘org-babel-expand-src-block’. ** org-mouse-remove-match-and-spaces :PROPERTIES: :CUSTOM_ID: org-mouse-remove-match-and-spaces :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[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]] : Remove the match, make just one space around the point. ** org-comment-dwim =(_arg)= :PROPERTIES: :CUSTOM_ID: org-comment-dwim :END: - *Access:* ~M-;~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-comment-dwim][Find modifications in git logs]] : Call ‘comment-dwim’ within a source edit buffer if needed. ** org-beamer-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-beamer-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-mode][Find modifications in git logs]] : Support for editing Beamer oriented Org mode files. ** org-odt-export-as-odf-and-open :PROPERTIES: :CUSTOM_ID: org-odt-export-as-odf-and-open :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[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]] : Export LaTeX fragment as OpenDocument formula and immediately open it. : Use ‘org-odt-export-as-odf’ to read LaTeX fragment and OpenDocument : formula file. ** org-archive-subtree =(&optional find-done)= :PROPERTIES: :CUSTOM_ID: org-archive-subtree :END: - *Access:* ~C-c $, C-c C-x C-s, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-subtree][Find modifications in git logs]] : Move the current subtree to the archive. : The archive can be a certain top-level heading in the current : file, or in a different file. The tree will be moved to that : location, the subtree heading be marked DONE, and the current : time will be added. : : When called with a single prefix argument FIND-DONE, find whole : trees without any open TODO items and archive them (after getting : confirmation from the user). When called with a double prefix : argument, find whole trees with timestamps before today and : archive them (after getting confirmation from the user). If the : cursor is not at a headline when these commands are called, try : all level 1 trees. If the cursor is on a headline, only try the : direct children of this heading. ** org-capture-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-capture-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-mode][Find modifications in git logs]] : Minor mode for special key bindings in a capture buffer. : : Turning on this mode runs the normal hook ‘org-capture-mode-hook’. ** org-table-edit-field =(arg)= :PROPERTIES: :CUSTOM_ID: org-table-edit-field :END: - *Access:* ~C-c `, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-edit-field][Find modifications in git logs]] : Edit table field in a different window. : This is mainly useful for fields that contain hidden parts. : : When called with a ‘C-u’ prefix, just make the full field : visible so that it can be edited in place. : : When called with a ‘C-u C-u’ prefix, toggle ‘org-table-follow-field-mode’. ** org-mouse-end-headline :PROPERTIES: :CUSTOM_ID: org-mouse-end-headline :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-end-headline][Find modifications in git logs]] : Go to the end of current headline (ignoring tags). ** org-babel-exp-process-buffer :PROPERTIES: :CUSTOM_ID: org-babel-exp-process-buffer :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-exp-process-buffer][Find modifications in git logs]] : Execute all Babel blocks in current buffer. ** org-entities-help :PROPERTIES: :CUSTOM_ID: org-entities-help :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-entities.el][org-entities.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-entities-help][Find modifications in git logs]] : Create a Help buffer with all available entities. ** org-first-sibling-p :PROPERTIES: :CUSTOM_ID: org-first-sibling-p :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-first-sibling-p][Find modifications in git logs]] : Is this heading the first child of its parents? ** org-activate-angle-links =(&rest ignore)= :PROPERTIES: :CUSTOM_ID: org-activate-angle-links :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-activate-angle-links][Find modifications in git logs]] : Do nothing and return nil. : This function accepts any number of arguments, but ignores them. : : (fn &rest IGNORE) ** org-open-at-mouse =(ev)= :PROPERTIES: :CUSTOM_ID: org-open-at-mouse :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-open-at-mouse][Find modifications in git logs]] : Open file link or URL at mouse. : See the docstring of ‘org-open-file’ for details. ** org-check-dates-range =(start-date end-date)= :PROPERTIES: :CUSTOM_ID: org-check-dates-range :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-check-dates-range][Find modifications in git logs]] : Check for deadlines/scheduled entries between START-DATE and END-DATE. ** org-list-insert-radio-list :PROPERTIES: :CUSTOM_ID: org-list-insert-radio-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-insert-radio-list][Find modifications in git logs]] : Insert a radio list template appropriate for this major mode. ** org-kill-note-or-show-branches :PROPERTIES: :CUSTOM_ID: org-kill-note-or-show-branches :END: - *Access:* ~C-c C-k~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Abort storing current note, or call ‘outline-show-branches’. ** org-outdent-item-tree :PROPERTIES: :CUSTOM_ID: org-outdent-item-tree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-outdent-item-tree][Find modifications in git logs]] : Outdent a local list item including its children. : If a region is active, all items inside will be moved. ** org-agenda-set-restriction-lock-from-agenda =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-set-restriction-lock-from-agenda :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Set the restriction lock to the agenda item at point from within the agenda. : When called with a ‘C-u’ prefix, restrict to : the file which contains the item. : Argument ARG is the prefix argument. ** org-attach-open =(&optional in-emacs)= :PROPERTIES: :CUSTOM_ID: org-attach-open :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-open][Find modifications in git logs]] : Open an attachment of the current task. : If there are more than one attachment, you will be prompted for the file name. : This command will open the file using the settings in ‘org-file-apps’ : and in the system-specific variants of this variable. : If IN-EMACS is non-nil, force opening in Emacs. ** org-agenda-append-agenda :PROPERTIES: :CUSTOM_ID: org-agenda-append-agenda :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-append-agenda][Find modifications in git logs]] : Append another agenda view to the current one. : This function allows interactive building of block agendas. : Agenda views are separated by ‘org-agenda-block-separator’. ** org-table-beginning-of-field =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-table-beginning-of-field :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-beginning-of-field][Find modifications in git logs]] : Move to the beginning of the current table field. : If already at or before the beginning, move to the beginning of the : previous field. : With numeric argument N, move N-1 fields backward first. ** org-mobile-move-capture :PROPERTIES: :CUSTOM_ID: org-mobile-move-capture :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-move-capture][Find modifications in git logs]] : Move the contents of the capture file to the inbox file. : Return a marker to the location where the new content has been added. : If nothing new has been added, return nil. ** org-lint =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-lint :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint][Find modifications in git logs]] : Check current Org buffer for syntax mistakes. : : By default, run all checkers. With a ‘C-u’ prefix ARG, select one : category of checkers only. With a ‘C-u C-u’ prefix, run one precise : checker by its name. : : ARG can also be a list of checker names, as symbols, to run. ** org-latex-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-latex-export-to-latex :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-export-to-latex][Find modifications in git logs]] : Export current buffer to a LaTeX file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{document}" and "\end{document}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. ** org-agenda-fortnight-view =(&optional iso-week)= :PROPERTIES: :CUSTOM_ID: org-agenda-fortnight-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-fortnight-view][Find modifications in git logs]] : Switch to fortnightly view for agenda. : With argument ISO-WEEK, switch to the corresponding ISO week. : If ISO-WEEK has more then 2 digits, only the last two encode : the week. Any digits before this encode a year. So 200712 : means week 12 of year 2007. Years ranging from 70 years ago : to 30 years in the future can also be written as 2-digit years. ** org-todo-yesterday =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-todo-yesterday :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-yesterday][Find modifications in git logs]] : Like ‘org-todo’ but the time of change will be 23:59 of yesterday. ** org-sort =(&optional with-case)= :PROPERTIES: :CUSTOM_ID: org-sort :END: - *Access:* ~C-c ^, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-sort][Find modifications in git logs]] : Call ‘org-sort-entries’, ‘org-table-sort-lines’ or ‘org-sort-list’. : Optional argument WITH-CASE means sort case-sensitively. ** orgtbl-create-or-convert-from-region =(_arg)= :PROPERTIES: :CUSTOM_ID: orgtbl-create-or-convert-from-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Create table or convert region to table, if no conflicting binding. : This installs the table binding ‘C-c |’, but only if there is no : conflicting binding to this key outside orgtbl-mode. ** org-up-element :PROPERTIES: :CUSTOM_ID: org-up-element :END: - *Access:* ~C-c C-^~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-up-element][Find modifications in git logs]] : Move to upper element. ** org-footnote-action =(&optional special)= :PROPERTIES: :CUSTOM_ID: org-footnote-action :END: - *Access:* ~C-c C-x f, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-action][Find modifications in git logs]] : Do the right thing for footnotes. : : When at a footnote reference, jump to the definition. : : When at a definition, jump to the references if they exist, offer : to create them otherwise. : : When neither at definition or reference, create a new footnote, : interactively if possible. : : With prefix arg SPECIAL, or when no footnote can be created, : offer additional commands in a menu. ** org-texinfo-convert-region-to-texinfo :PROPERTIES: :CUSTOM_ID: org-texinfo-convert-region-to-texinfo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[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]] : Assume the current region has Org syntax, and convert it to Texinfo. : This can be used in any buffer. For example, you can write an : itemized list in Org syntax in an Texinfo buffer and use this : command to convert it. ** org-agenda-tree-to-indirect-buffer =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-tree-to-indirect-buffer :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Show the subtree corresponding to the current entry in an indirect buffer. : This calls the command ‘org-tree-to-indirect-buffer’ from the original buffer. : : With a numerical prefix ARG, go up to this level and then take that tree. : With a negative numeric ARG, go up by this number of levels. : : With a ‘C-u’ prefix, make a separate frame for this tree, i.e. don’t use : the dedicated frame. ** org-edit-src-exit :PROPERTIES: :CUSTOM_ID: org-edit-src-exit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-exit][Find modifications in git logs]] : Kill current sub-editing buffer and return to source buffer. ** org-bibtex-create-in-current-entry =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-bibtex-create-in-current-entry :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[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]] : Add bibliographical data to the current entry. : With a prefix arg, query for optional fields. ** org-agenda-bulk-remove-overlays =(&optional beg end)= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-remove-overlays :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-remove-overlays][Find modifications in git logs]] : Remove the mark overlays between BEG and END in the agenda buffer. : BEG and END default to the buffer limits. : : This only removes the overlays, it does not remove the markers : from the list in ‘org-agenda-bulk-marked-entries’. ** org-mouse-yank-link =(click)= :PROPERTIES: :CUSTOM_ID: org-mouse-yank-link :END: - *Access:* ~, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mouse.el][org-mouse.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mouse-yank-link][Find modifications in git logs]] ** org-metaleft =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-metaleft :END: - *Access:* ~, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metaleft][Find modifications in git logs]] : Promote heading, list item at point or move table column left. : : Calls ‘org-do-promote’, ‘org-outdent-item’ or ‘org-table-move-column’, : depending on context. With no specific context, calls the Emacs : default ‘backward-word’. See the individual commands for more : information. : : This function runs the hook ‘org-metaleft-hook’ as a first step, : and returns at first non-nil value. ** org-attach-new =(file)= :PROPERTIES: :CUSTOM_ID: org-attach-new :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-new][Find modifications in git logs]] : Create a new attachment FILE for the current task. : The attachment is created as an Emacs buffer. ** org-tbl-menu =(event)= :PROPERTIES: :CUSTOM_ID: org-tbl-menu :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tbl-menu][Find modifications in git logs]] : Tbl menu ** org-agenda-filter-by-category =(strip)= :PROPERTIES: :CUSTOM_ID: org-agenda-filter-by-category :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-category][Find modifications in git logs]] : Filter lines in the agenda buffer that have a specific category. : The category is that of the current line. : Without prefix argument, keep only the lines of that category. : With a prefix argument, exclude the lines of that category. : ** org-indent-drawer :PROPERTIES: :CUSTOM_ID: org-indent-drawer :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-drawer][Find modifications in git logs]] : Indent the drawer at point. ** org-agenda-filter-by-tag =(arg &optional char exclude)= :PROPERTIES: :CUSTOM_ID: org-agenda-filter-by-tag :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-filter-by-tag][Find modifications in git logs]] : Keep only those lines in the agenda buffer that have a specific tag. : : The tag is selected with its fast selection letter, as configured. : : With a ‘C-u’ prefix, exclude the agenda search. : : With a ‘C-u C-u’ prefix, filter the literal tag, i.e. don’t : filter on all its group members. : : A lisp caller can specify CHAR. EXCLUDE means that the new tag : should be used to exclude the search - the interactive user can : also press ‘-’ or ‘+’ to switch between filtering and excluding. ** org-babel-execute-buffer =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-babel-execute-buffer :END: - *Access:* ~C-c C-v b, C-c C-v C-b~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-execute-buffer][Find modifications in git logs]] : Execute source code blocks in a buffer. : Call ‘org-babel-execute-src-block’ on every source block in : the current buffer. ** org-table-toggle-coordinate-overlays :PROPERTIES: :CUSTOM_ID: org-table-toggle-coordinate-overlays :END: - *Access:* ~C-c }, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-toggle-coordinate-overlays][Find modifications in git logs]] : Toggle the display of Row/Column numbers in tables. ** org-agenda-follow-mode :PROPERTIES: :CUSTOM_ID: org-agenda-follow-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-follow-mode][Find modifications in git logs]] : Toggle follow mode in an agenda buffer. ** org-html-export-to-html =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-html-export-to-html :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-export-to-html][Find modifications in git logs]] : Export current buffer to a HTML file. : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "" and "" tags. : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return output file’s name. ** org-metadown =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-metadown :END: - *Access:* ~, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-metadown][Find modifications in git logs]] : Move subtree down or move table row down. : Calls ‘org-move-subtree-down’ or ‘org-table-move-row’ or : ‘org-move-item-down’, depending on context. See the individual : commands for more information. ** org-agenda-clock-out :PROPERTIES: :CUSTOM_ID: org-agenda-clock-out :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-clock-out][Find modifications in git logs]] : Stop the currently running clock. ** org-get-tags-at =(&optional pos local)= :PROPERTIES: :CUSTOM_ID: org-get-tags-at :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-get-tags-at][Find modifications in git logs]] : Get a list of all headline tags applicable at POS. : POS defaults to point. If tags are inherited, the list contains : the targets in the same sequence as the headlines appear, i.e. : the tags of the current headline come last. : When LOCAL is non-nil, only return tags from the current headline, : ignore inherited ones. ** org-agenda-do-date-later =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-do-date-later :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-do-date-later][Find modifications in git logs]] ** org-inlinetask-demote :PROPERTIES: :CUSTOM_ID: org-inlinetask-demote :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-demote][Find modifications in git logs]] : Demote the inline task at point. : If the task has an end part, also demote it. ** org-cdlatex-environment-indent =(&optional environment item)= :PROPERTIES: :CUSTOM_ID: org-cdlatex-environment-indent :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cdlatex-environment-indent][Find modifications in git logs]] : Execute ‘cdlatex-environment’ and indent the inserted environment. : : ENVIRONMENT and ITEM are passed to ‘cdlatex-environment’. : : The inserted environment is indented to current indentation : unless point is at the beginning of the line, in which the : environment remains unintended. ** org-reload =(&optional uncompiled)= :PROPERTIES: :CUSTOM_ID: org-reload :END: - *Access:* ~C-c C-x !, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-reload][Find modifications in git logs]] : Reload all org lisp files. : With prefix arg UNCOMPILED, load the uncompiled versions. ** org-insert-heading-after-current :PROPERTIES: :CUSTOM_ID: org-insert-heading-after-current :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-heading-after-current][Find modifications in git logs]] : Insert a new heading with same level as current, after current subtree. ** org-agenda-exit :PROPERTIES: :CUSTOM_ID: org-agenda-exit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-exit][Find modifications in git logs]] : Exit the agenda, killing Org buffers loaded by the agenda. : Like ‘org-agenda-Quit’, but kill any buffers that were created by : the agenda. Org buffers visited directly by the user will not be : touched. Also, exit the agenda even if it is in column view. ** org-babel-pop-to-session =(&optional arg info)= :PROPERTIES: :CUSTOM_ID: org-babel-pop-to-session :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-pop-to-session][Find modifications in git logs]] : Switch to the session of the current code block. : Uses ‘org-babel-initiate-session’ to start the session. If called : with a prefix argument then this is passed on to : ‘org-babel-initiate-session’. ** org-align-all-tags :PROPERTIES: :CUSTOM_ID: org-align-all-tags :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-align-all-tags][Find modifications in git logs]] : Align the tags in all headings. ** org-insert-all-links =(arg &optional pre post)= :PROPERTIES: :CUSTOM_ID: org-insert-all-links :END: - *Access:* ~C-c C-M-l~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-all-links][Find modifications in git logs]] : Insert all links in ‘org-stored-links’. : When a universal prefix, do not delete the links from ‘org-stored-links’. : When ‘ARG’ is a number, insert the last N link(s). : ‘PRE’ and ‘POST’ are optional arguments to define a string to : prepend or to append. ** org-clone-subtree-with-time-shift =(n &optional shift)= :PROPERTIES: :CUSTOM_ID: org-clone-subtree-with-time-shift :END: - *Access:* ~C-c C-x c, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Clone the task (subtree) at point N times. : The clones will be inserted as siblings. : : In interactive use, the user will be prompted for the number of : clones to be produced. If the entry has a timestamp, the user : will also be prompted for a time shift, which may be a repeater : as used in time stamps, for example ‘+3d’. To disable this, : you can call the function with a universal prefix argument. : : When a valid repeater is given and the entry contains any time : stamps, the clones will become a sequence in time, with time : stamps in the subtree shifted for each clone produced. If SHIFT : is nil or the empty string, time stamps will be left alone. The : ID property of the original subtree is removed. : : In each clone, all the CLOCK entries will be removed. This : prevents Org from considering that the clocked times overlap. : : If the original subtree did contain time stamps with a repeater, : the following will happen: : - the repeater will be removed in each clone : - an additional clone will be produced, with the current, unshifted : date(s) in the entry. : - the original entry will be placed *after* all the clones, with : repeater intact. : - the start days in the repeater in the original entry will be shifted : to past the last clone. : In this way you can spell out a number of instances of a repeating task, : and still retain the repeater to cover future instances of the task. : : As described above, N+1 clones are produced when the original : subtree has a repeater. Setting N to 0, then, can be used to : remove the repeater from a subtree and create a shifted clone : with the original repeater. ** org-narrow-to-block :PROPERTIES: :CUSTOM_ID: org-narrow-to-block :END: - *Access:* ~C-x n b~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-block][Find modifications in git logs]] : Narrow buffer to the current block. ** org-columns-get-format =(&optional fmt-string)= :PROPERTIES: :CUSTOM_ID: org-columns-get-format :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-get-format][Find modifications in git logs]] : Return columns format specifications. : When optional argument FMT-STRING is non-nil, use it as the : current specifications. This function also sets : ‘org-columns-current-fmt-compiled’ and : ‘org-columns-current-fmt’. ** org-agenda-mode :PROPERTIES: :CUSTOM_ID: org-agenda-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-mode][Find modifications in git logs]] : Mode for time-sorted view on action items in Org files. : : The following commands are available: : : key binding : --- ------- : : C-c Prefix Command : TAB org-agenda-goto : C-k org-agenda-kill : RET org-agenda-switch-to : C-n org-agenda-next-line : C-p org-agenda-previous-line : C-x Prefix Command : ESC Prefix Command : C-_ org-agenda-undo : SPC org-agenda-show-and-scroll-up : ! org-agenda-toggle-deadlines : # org-agenda-dim-blocked-tasks : $ org-agenda-archive : % org-agenda-bulk-mark-regexp : * org-agenda-bulk-mark-all : + org-agenda-priority-up : , org-agenda-priority : - org-agenda-priority-down : . org-agenda-goto-today : / org-agenda-filter-by-tag : 0 .. 9 digit-argument : : org-agenda-set-tags : ; org-timer-set-timer : < org-agenda-filter-by-category : = org-agenda-filter-by-regexp : > org-agenda-date-prompt : ? org-agenda-show-the-flagging-note : A org-agenda-append-agenda : B org-agenda-bulk-action : C org-agenda-convert-date : D org-agenda-toggle-diary : E org-agenda-entry-text-mode : F org-agenda-follow-mode : G org-agenda-toggle-time-grid : H org-agenda-holidays : I org-agenda-clock-in : J org-agenda-clock-goto : K org-habit-toggle-habits : L org-agenda-recenter : M org-agenda-phases-of-moon : N org-agenda-next-item : O org-agenda-clock-out : P org-agenda-previous-item : Q org-agenda-Quit : R org-agenda-clockreport-mode : S org-agenda-sunrise-sunset : T org-agenda-show-tags : U org-agenda-bulk-unmark-all : X org-agenda-clock-cancel : [ org-agenda-manipulate-query-add : ] org-agenda-manipulate-query-subtract : ^ org-agenda-filter-by-top-headline : _ org-agenda-filter-by-effort : a org-agenda-archive-default-with-confirmation : b org-agenda-earlier : c org-agenda-goto-calendar : d org-agenda-day-view : e org-agenda-set-effort : f org-agenda-later : g org-agenda-redo-all : h org-agenda-holidays : i org-agenda-diary-entry : j org-agenda-goto-date : k org-agenda-capture : l org-agenda-log-mode : m org-agenda-bulk-mark : n org-agenda-next-line : o delete-other-windows : p org-agenda-previous-line : q org-agenda-quit : r org-agenda-redo : s org-save-all-org-buffers : t org-agenda-todo : u org-agenda-bulk-unmark : v org-agenda-view-mode-dispatch : w org-agenda-week-view : x org-agenda-exit : y org-agenda-year-view : z org-agenda-add-note : { org-agenda-manipulate-query-add-re : | org-agenda-filter-remove-all : } org-agenda-manipulate-query-subtract-re : ~ org-agenda-limit-interactively : DEL org-agenda-show-scroll-down : C-/ org-agenda-undo : org-agenda-todo-previousset : org-agenda-todo-nextset : org-agenda-drag-line-forward : org-agenda-drag-line-backward : org-agenda-priority-down : org-agenda-do-date-earlier : org-agenda-do-date-later : org-agenda-priority-up : org-agenda-show-scroll-down : org-agenda-next-line : org-agenda-goto-mouse : org-agenda-show-mouse : Prefix Command : org-agenda-goto : org-agenda-undo : org-agenda-previous-line : : org-agenda-backward-block : org-agenda-forward-block : : M-* org-agenda-bulk-toggle-all : M-m org-agenda-bulk-toggle : : C-c C-a org-attach : C-c C-d org-agenda-deadline : C-c C-n org-agenda-next-date-line : C-c C-o org-agenda-open-link : C-c C-p org-agenda-previous-date-line : C-c C-q org-agenda-set-tags : C-c C-s org-agenda-schedule : C-c C-t org-agenda-todo : C-c C-w org-agenda-refile : C-c C-x Prefix Command : C-c C-z org-agenda-add-note : C-c $ org-agenda-archive : C-c , org-agenda-priority : : C-x C-s org-save-all-org-buffers : C-x C-w org-agenda-write : C-x u org-agenda-undo : : C-c C-x C-a org-agenda-archive-default : C-c C-x C-c org-agenda-columns : C-c C-x C-e org-clock-modify-effort-estimate : C-c C-x TAB org-agenda-clock-in : C-c C-x C-j org-clock-goto : C-c C-x RET Prefix Command : C-c C-x C-o org-agenda-clock-out : C-c C-x C-s org-agenda-archive : C-c C-x C-x org-agenda-clock-cancel : C-c C-x ! org-reload : C-c C-x < org-agenda-set-restriction-lock-from-agenda : C-c C-x > org-agenda-remove-restriction-lock : C-c C-x A org-agenda-archive-to-archive-sibling : C-c C-x a org-agenda-toggle-archive-tag : C-c C-x b org-agenda-tree-to-indirect-buffer : C-c C-x e org-agenda-set-effort : C-c C-x p org-agenda-set-property : C-c C-x org-agenda-priority-down : C-c C-x org-agenda-do-date-earlier : C-c C-x org-agenda-do-date-later : C-c C-x org-agenda-priority-up : : C-c C-x RET g org-mobile-pull : C-c C-x RET p org-mobile-push : : ** org-cycle =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-cycle :END: - *Access:* ~, TAB, , ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle][Find modifications in git logs]] : TAB-action and visibility cycling for Org mode. : : This is the command invoked in Org mode by the ‘TAB’ key. Its main : purpose is outline visibility cycling, but it also invokes other actions : in special contexts. : : When this function is called with a ‘C-u’ prefix, rotate the entire : buffer through 3 states (global cycling) : 1. OVERVIEW: Show only top-level headlines. : 2. CONTENTS: Show all headlines of all levels, but no body text. : 3. SHOW ALL: Show everything. : : With a ‘C-u C-u’ prefix argument, switch to the startup visibility, : determined by the variable ‘org-startup-folded’, and by any VISIBILITY : properties in the buffer. : : With a ‘C-u C-u C-u’ prefix argument, show the entire buffer, including : any drawers. : : When inside a table, re-align the table and move to the next field. : : When point is at the beginning of a headline, rotate the subtree started : by this line through 3 different states (local cycling) : 1. FOLDED: Only the main headline is shown. : 2. CHILDREN: The main headline and the direct children are shown. : From this state, you can move to one of the children : and zoom in further. : 3. SUBTREE: Show the entire subtree, including body text. : If there is no subtree, switch directly from CHILDREN to FOLDED. : : When point is at the beginning of an empty headline and the variable : ‘org-cycle-level-after-item/entry-creation’ is set, cycle the level : of the headline by demoting and promoting it to likely levels. This : speeds up creation document structure by pressing ‘TAB’ once or several : times right after creating a new headline. : : When there is a numeric prefix, go up to a heading with level ARG, do : a ‘show-subtree’ and return to the previous cursor position. If ARG : is negative, go up that many levels. : : When point is not at the beginning of a headline, execute the global : binding for ‘TAB’, which is re-indenting the line. See the option : ‘org-cycle-emulate-tab’ for details. : : As a special case, if point is at the beginning of the buffer and there is : no headline in line 1, this function will act as if called with prefix arg : (‘C-u TAB’, same as ‘S-TAB’) also when called without prefix arg, but only : if the variable ‘org-cycle-global-at-bob’ is t. ** org-dblock-write:amazon =(params)= :PROPERTIES: :CUSTOM_ID: org-dblock-write:amazon :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/emacs.el][emacs.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-dblock-write:amazon][Find modifications in git logs]] : Dynamic block for inserting the cover of a book. ** org-set-visibility-according-to-property =(&optional no-cleanup)= :PROPERTIES: :CUSTOM_ID: org-set-visibility-according-to-property :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Switch subtree visibilities according to :VISIBILITY: property. ** org-ctags-visit-buffer-or-file =(name &optional create)= :PROPERTIES: :CUSTOM_ID: org-ctags-visit-buffer-or-file :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[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]] : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS. : Visit buffer named ‘NAME.org’. If there is no such buffer, visit the file : with the same name if it exists. If the file does not exist, then behavior : depends on the value of CREATE. : : If CREATE is nil (default), then return nil. Do not create a new file. : If CREATE is t, create the new file and visit it. : If CREATE is the symbol ‘ask’, then ask the user if they wish to create : the new file. ** org-table-fedit-toggle-coordinates :PROPERTIES: :CUSTOM_ID: org-table-fedit-toggle-coordinates :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-toggle-coordinates][Find modifications in git logs]] : Toggle the display of coordinates in the referenced table. ** org-ctags-find-tag-interactive :PROPERTIES: :CUSTOM_ID: org-ctags-find-tag-interactive :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-find-tag-interactive][Find modifications in git logs]] : Prompt for the name of a tag, with autocompletion, then visit the named tag. : Uses ‘ido-mode’ if available. : If the user enters a string that does not match an existing tag, create : a new topic. ** org-src-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-src-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-mode][Find modifications in git logs]] : Minor mode for language major mode buffers generated by Org. : : This minor mode is turned on in two situations: : - when editing a source code snippet with ‘C-c '’ : - when formatting a source code snippet for export with htmlize. : : key binding : --- ------- : : C-c Prefix Command : C-x Prefix Command : : C-x C-s org-edit-src-save : : C-c C-k org-edit-src-abort : C-c ' org-edit-src-exit : : : : See also ‘org-src-mode-hook’. ** org-agenda-schedule =(arg &optional time)= :PROPERTIES: :CUSTOM_ID: org-agenda-schedule :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-schedule][Find modifications in git logs]] : Schedule the item at point. : ARG is passed through to ‘org-schedule’. ** org-table-show-reference =(&optional local)= :PROPERTIES: :CUSTOM_ID: org-table-show-reference :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-show-reference][Find modifications in git logs]] : Show the location/value of the $ expression at point. : When LOCAL is non-nil, show references for the table at point. ** org-ctrl-c-ctrl-c =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-ctrl-c-ctrl-c :END: - *Access:* ~C-c C-c, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-c-ctrl-c][Find modifications in git logs]] : Set tags in headline, or update according to changed information at point. : : This command does many different things, depending on context: : : - If a function in ‘org-ctrl-c-ctrl-c-hook’ recognizes this location, : this is what we do. : : - If the cursor is on a statistics cookie, update it. : : - If the cursor is in a headline, prompt for tags and insert them : into the current line, aligned to ‘org-tags-column’. When called : with prefix arg, realign all tags in the current buffer. : : - If the cursor is in one of the special #+KEYWORD lines, this : triggers scanning the buffer for these lines and updating the : information. : : - If the cursor is inside a table, realign the table. This command : works even if the automatic table editor has been turned off. : : - If the cursor is on a #+TBLFM line, re-apply the formulas to : the entire table. : : - If the cursor is at a footnote reference or definition, jump to : the corresponding definition or references, respectively. : : - If the cursor is a the beginning of a dynamic block, update it. : : - If the current buffer is a capture buffer, close note and file it. : : - If the cursor is on a <<>>, update radio targets and : corresponding links in this buffer. : : - If the cursor is on a numbered item in a plain list, renumber the : ordered list. : : - If the cursor is on a checkbox, toggle it. : : - If the cursor is on a code block, evaluate it. The variable : ‘org-confirm-babel-evaluate’ can be used to control prompting : before code block evaluation, by default every code block : evaluation requires confirmation. Code block evaluation can be : inhibited by setting ‘org-babel-no-eval-on-ctrl-c-ctrl-c’. ** org-babel-processing-view-sketch :PROPERTIES: :CUSTOM_ID: org-babel-processing-view-sketch :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-processing.el][ob-processing.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-processing-view-sketch][Find modifications in git logs]] : Show the sketch of the Processing block under point in an external viewer. ** org-clock-out =(&optional switch-to-state fail-quietly at-time)= :PROPERTIES: :CUSTOM_ID: org-clock-out :END: - *Access:* ~C-c C-x C-o, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out][Find modifications in git logs]] : Stop the currently running clock. : Throw an error if there is no running clock and FAIL-QUIETLY is nil. : With a universal prefix, prompt for a state to switch the clocked out task : to, overriding the existing value of ‘org-clock-out-switch-to-state’. ** org-columns-redo :PROPERTIES: :CUSTOM_ID: org-columns-redo :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-redo][Find modifications in git logs]] : Construct the column display again. ** org-agenda-archives-mode =(&optional with-files)= :PROPERTIES: :CUSTOM_ID: org-agenda-archives-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archives-mode][Find modifications in git logs]] : Toggle inclusion of items in trees marked with :ARCHIVE:. : When called with a prefix argument, include all archive files as well. ** org-beginning-of-item-list :PROPERTIES: :CUSTOM_ID: org-beginning-of-item-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beginning-of-item-list][Find modifications in git logs]] : Go to the beginning item of the current list or sublist. : Throw an error when not in a list. ** orgtbl-mode =(&optional arg)= :PROPERTIES: :CUSTOM_ID: orgtbl-mode :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-mode][Find modifications in git logs]] : The ‘org-mode’ table editor as a minor mode for use in other modes. ** org-columns-quit :PROPERTIES: :CUSTOM_ID: org-columns-quit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-quit][Find modifications in git logs]] : Remove the column overlays and in this way exit column editing. ** org-force-self-insert =(N)= :PROPERTIES: :CUSTOM_ID: org-force-self-insert :END: - *Access:* ~|~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-force-self-insert][Find modifications in git logs]] : Needed to enforce self-insert under remapping. ** org-clock-in-last =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-clock-in-last :END: - *Access:* ~C-c C-x C-x~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-in-last][Find modifications in git logs]] : Clock in the last closed clocked item. : When already clocking in, send an warning. : With a universal prefix argument, select the task you want to : clock in from the last clocked in tasks. : With two universal prefix arguments, start clocking using the : last clock-out time, if any. : With three universal prefix arguments, interactively prompt : for a todo state to switch to, overriding the existing value : ‘org-clock-in-switch-to-state’. ** org-footnote-normalize :PROPERTIES: :CUSTOM_ID: org-footnote-normalize :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-normalize][Find modifications in git logs]] : Turn every footnote in buffer into a numbered one. ** org-export-stack :PROPERTIES: :CUSTOM_ID: org-export-stack :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack][Find modifications in git logs]] : Menu for asynchronous export results and running processes. ** org-md-convert-region-to-md :PROPERTIES: :CUSTOM_ID: org-md-convert-region-to-md :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]] - [[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]] : Assume the current region has Org syntax, and convert it to Markdown. : This can be used in any buffer. For example, you can write an : itemized list in Org syntax in a Markdown buffer and use : this command to convert it. ** org-customize :PROPERTIES: :CUSTOM_ID: org-customize :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-customize][Find modifications in git logs]] : Call the customize function with org as argument. ** org-babel-tangle-file =(file &optional target-file lang)= :PROPERTIES: :CUSTOM_ID: org-babel-tangle-file :END: - *Access:* ~C-c C-v f, C-c C-v C-f~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-file][Find modifications in git logs]] : Extract the bodies of source code blocks in FILE. : Source code blocks are extracted with ‘org-babel-tangle’. : Optional argument TARGET-FILE can be used to specify a default : export file for all source blocks. Optional argument LANG can be : used to limit the exported source code blocks by language. : Return a list whose CAR is the tangled file name. ** org-goto-ret =(&optional _arg)= :PROPERTIES: :CUSTOM_ID: org-goto-ret :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-ret][Find modifications in git logs]] : Finish ‘org-goto’ by going to the new location. ** org-create-math-formula =(latex-frag &optional mathml-file)= :PROPERTIES: :CUSTOM_ID: org-create-math-formula :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-create-math-formula][Find modifications in git logs]] : Convert LATEX-FRAG to MathML and store it in MATHML-FILE. : Use ‘org-latex-to-mathml-convert-command’. If the conversion is : sucessful, return the portion between " " : elements otherwise return nil. When MATHML-FILE is specified, : write the results in to that file. When invoked as an : interactive command, prompt for LATEX-FRAG, with initial value : set to the current active region and echo the results for user : inspection. ** org-previous-block =(arg &optional block-regexp)= :PROPERTIES: :CUSTOM_ID: org-previous-block :END: - *Access:* ~C-c M-b~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-block][Find modifications in git logs]] : Jump to the previous block. : With a prefix argument ARG, jump backward ARG many source blocks. : When BLOCK-REGEXP is non-nil, use this regexp to find blocks. ** org-timestamp-down-day =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-timestamp-down-day :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timestamp-down-day][Find modifications in git logs]] : Decrease the date in the time stamp by one day. : With prefix ARG, change that many days. ** org-agenda-bulk-unmark-all :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-unmark-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-unmark-all][Find modifications in git logs]] : Remove all marks in the agenda buffer. : This will remove the markers and the overlays. ** org-show-subtree :PROPERTIES: :CUSTOM_ID: org-show-subtree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-subtree][Find modifications in git logs]] : Show everything after this heading at deeper levels. ** org-babel-lilypond-toggle-pdf-generation :PROPERTIES: :CUSTOM_ID: org-babel-lilypond-toggle-pdf-generation :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lilypond.el][ob-lilypond.el]] - [[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]] : Toggle whether pdf will be generated by compilation. ** org-columns-remove-overlays :PROPERTIES: :CUSTOM_ID: org-columns-remove-overlays :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-remove-overlays][Find modifications in git logs]] : Remove all currently active column overlays. ** org-agenda-phases-of-moon :PROPERTIES: :CUSTOM_ID: org-agenda-phases-of-moon :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-phases-of-moon][Find modifications in git logs]] : Display the phases of the moon for the 3 months around the cursor date. ** org-property-previous-allowed-value =(&optional _previous)= :PROPERTIES: :CUSTOM_ID: org-property-previous-allowed-value :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-previous-allowed-value][Find modifications in git logs]] : Switch to the next allowed value for this property. ** org-todo-list =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-todo-list :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-list][Find modifications in git logs]] : Show all (not done) TODO entries from all agenda file in a single list. : The prefix arg can be used to select a specific TODO keyword and limit : the list to these. When using ‘C-u’, you will be prompted : for a keyword. A numeric prefix directly selects the Nth keyword in : ‘org-todo-keywords-1’. ** org-odt-convert =(&optional in-file out-fmt open)= :PROPERTIES: :CUSTOM_ID: org-odt-convert :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert][Find modifications in git logs]] : Convert IN-FILE to format OUT-FMT using a command line converter. : IN-FILE is the file to be converted. If unspecified, it defaults : to variable ‘buffer-file-name’. OUT-FMT is the desired output : format. Use ‘org-odt-convert-process’ as the converter. If OPEN : is non-nil then the newly converted file is opened using : ‘org-open-file’. ** orgtbl-toggle-comment :PROPERTIES: :CUSTOM_ID: orgtbl-toggle-comment :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-toggle-comment][Find modifications in git logs]] : Comment or uncomment the orgtbl at point. ** org-duration-set-regexps :PROPERTIES: :CUSTOM_ID: org-duration-set-regexps :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-duration.el][org-duration.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-duration-set-regexps][Find modifications in git logs]] : Set duration related regexps. ** org-previous-link :PROPERTIES: :CUSTOM_ID: org-previous-link :END: - *Access:* ~C-c C-x C-p, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-previous-link][Find modifications in git logs]] : Move backward to the previous link. : If the link is in hidden text, expose it. ** org-babel-hide-result-toggle =(&optional force)= :PROPERTIES: :CUSTOM_ID: org-babel-hide-result-toggle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-hide-result-toggle][Find modifications in git logs]] : Toggle the visibility of the current result. ** org-attach :PROPERTIES: :CUSTOM_ID: org-attach :END: - *Access:* ~C-c C-a~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach][Find modifications in git logs]] : The dispatcher for attachment commands. : Shows a list of commands and prompts for another key to execute a command. ** org-agenda-columns :PROPERTIES: :CUSTOM_ID: org-agenda-columns :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-columns][Find modifications in git logs]] : Turn on or update column view in the agenda. ** org-occur =(regexp &optional keep-previous callback)= :PROPERTIES: :CUSTOM_ID: org-occur :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur][Find modifications in git logs]] : Make a compact tree which shows all matches of REGEXP. : : The tree will show the lines where the regexp matches, and any other context : defined in ‘org-show-context-detail’, which see. : : When optional argument KEEP-PREVIOUS is non-nil, highlighting and exposing : done by a previous call to ‘org-occur’ will be kept, to allow stacking of : calls to this command. : : Optional argument CALLBACK can be a function of no argument. In this case, : it is called with point at the end of the match, match data being set : accordingly. Current match is shown only if the return value is non-nil. : The function must neither move point nor alter narrowing. ** org-table-iterate-buffer-tables :PROPERTIES: :CUSTOM_ID: org-table-iterate-buffer-tables :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-iterate-buffer-tables][Find modifications in git logs]] : Iterate all tables in the buffer, to converge inter-table dependencies. ** org-attach-reveal-in-emacs :PROPERTIES: :CUSTOM_ID: org-attach-reveal-in-emacs :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-reveal-in-emacs][Find modifications in git logs]] : Show the attachment directory of the current task in dired. ** org-update-all-dblocks :PROPERTIES: :CUSTOM_ID: org-update-all-dblocks :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-all-dblocks][Find modifications in git logs]] : Update all dynamic blocks in the buffer. : This function can be used in a hook. ** org-babel-examplize-region =(beg end &optional results-switches inline)= :PROPERTIES: :CUSTOM_ID: org-babel-examplize-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-examplize-region][Find modifications in git logs]] : Comment out region using the inline ‘==’ or ‘: ’ org example quote. ** org-indent-item-tree :PROPERTIES: :CUSTOM_ID: org-indent-item-tree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indent-item-tree][Find modifications in git logs]] : Indent a local list item including its children. : If a region is active, all items inside will be moved. ** org-delete-backward-char =(N)= :PROPERTIES: :CUSTOM_ID: org-delete-backward-char :END: - *Access:* ~DEL~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-delete-backward-char][Find modifications in git logs]] : Like ‘delete-backward-char’, insert whitespace at field end in tables. : When deleting backwards, in tables this function will insert whitespace in : front of the next "|" separator, to keep the table aligned. The table will : still be marked for re-alignment if the field did fill the entire column, : because, in this case the deletion might narrow the column. ** org-agenda-archive-with =(cmd &optional confirm)= :PROPERTIES: :CUSTOM_ID: org-agenda-archive-with :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-archive-with][Find modifications in git logs]] : Move the entry to the archive sibling. ** org-element-update-syntax :PROPERTIES: :CUSTOM_ID: org-element-update-syntax :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-element.el][org-element.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-element-update-syntax][Find modifications in git logs]] : Update parser internals. ** org-agenda-add-note =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-add-note :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-add-note][Find modifications in git logs]] : Add a time-stamped note to the entry at point. ** org-agenda-bulk-mark =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-mark :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-mark][Find modifications in git logs]] : Mark the entry at point for future bulk action. ** org-insert-todo-subheading =(arg)= :PROPERTIES: :CUSTOM_ID: org-insert-todo-subheading :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-insert-todo-subheading][Find modifications in git logs]] : Insert a new subheading with TODO keyword or checkbox and demote it. : Works for outline headings and for plain lists alike. ** org-koma-letter-export-to-pdf =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-koma-letter-export-to-pdf :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[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]] : Export current buffer as a KOMA Scrlttr2 letter (pdf). : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{letter}" and "\end{letter}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : Return PDF file’s name. ** org-bibtex-search =(string)= :PROPERTIES: :CUSTOM_ID: org-bibtex-search :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-search][Find modifications in git logs]] : Search for bibliographical entries in agenda files. : This function relies ‘org-search-view’ to locate results. ** org-columns-widen =(arg)= :PROPERTIES: :CUSTOM_ID: org-columns-widen :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-widen][Find modifications in git logs]] : Make the column wider by ARG characters. ** org-agenda-manipulate-query-subtract :PROPERTIES: :CUSTOM_ID: org-agenda-manipulate-query-subtract :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-manipulate-query-subtract][Find modifications in git logs]] : Manipulate the query by adding a search term with negative selection. : Negative selection means term must not be matched for selection of an entry. ** org-meta-return =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-meta-return :END: - *Access:* ~~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-meta-return][Find modifications in git logs]] : Insert a new heading or wrap a region in a table. : Calls ‘org-insert-heading’, ‘org-insert-item’ or : ‘org-table-wrap-region’, depending on context. When called with : an argument, unconditionally call ‘org-insert-heading’. ** org-agenda-bulk-toggle-all :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-toggle-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-toggle-all][Find modifications in git logs]] : Toggle all marks for bulk action. ** org-agenda-bulk-unmark =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-bulk-unmark :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-bulk-unmark][Find modifications in git logs]] : Unmark the entry at point for future bulk action. ** org-cut-subtree =(&optional n)= :PROPERTIES: :CUSTOM_ID: org-cut-subtree :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cut-subtree][Find modifications in git logs]] : Cut the current subtree into the clipboard. : With prefix arg N, cut this many sequential subtrees. : This is a short-hand for marking the subtree and then cutting it. ** org-goto-quit :PROPERTIES: :CUSTOM_ID: org-goto-quit :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-goto-quit][Find modifications in git logs]] : Finish ‘org-goto’ without cursor motion. ** org-attach-url =(url)= :PROPERTIES: :CUSTOM_ID: org-attach-url :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-url][Find modifications in git logs]] ** org-agenda-month-view =(&optional month)= :PROPERTIES: :CUSTOM_ID: org-agenda-month-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-month-view][Find modifications in git logs]] : Switch to monthly view for agenda. : With argument MONTH, switch to that month. If MONTH has more : then 2 digits, only the last two encode the month. Any digits : before this encode a year. So 200712 means December year 2007. : Years ranging from 70 years ago to 30 years in the future can : also be written as 2-digit years. ** org-agenda-limit-interactively =(remove)= :PROPERTIES: :CUSTOM_ID: org-agenda-limit-interactively :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-limit-interactively][Find modifications in git logs]] : In agenda, interactively limit entries to various maximums. ** org-babel-hide-result-toggle-maybe :PROPERTIES: :CUSTOM_ID: org-babel-hide-result-toggle-maybe :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : Toggle visibility of result at point. ** org-narrow-to-element :PROPERTIES: :CUSTOM_ID: org-narrow-to-element :END: - *Access:* ~C-x n e~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-narrow-to-element][Find modifications in git logs]] : Narrow buffer to current element. ** org-inlinetask-promote :PROPERTIES: :CUSTOM_ID: org-inlinetask-promote :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-promote][Find modifications in git logs]] : Promote the inline task at point. : If the task has an end part, promote it. Also, prevents level from : going below ‘org-inlinetask-min-level’. ** org-agenda-date-later-hours =(arg)= :PROPERTIES: :CUSTOM_ID: org-agenda-date-later-hours :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-date-later-hours][Find modifications in git logs]] : Change the time of this item, in hour steps. ** org-decompose-region =(start end)= :PROPERTIES: :CUSTOM_ID: org-decompose-region :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-decompose-region][Find modifications in git logs]] : Decompose text in the current region. : : When called from a program, expects two arguments, : positions (integers or markers) specifying the region. ** org-export-stack-view =(&optional in-emacs)= :PROPERTIES: :CUSTOM_ID: org-export-stack-view :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-stack-view][Find modifications in git logs]] : View export results at point in stack. : With an optional prefix argument IN-EMACS, force viewing files : within Emacs. ** org-columns-narrow =(arg)= :PROPERTIES: :CUSTOM_ID: org-columns-narrow :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-narrow][Find modifications in git logs]] : Make the column narrower by ARG characters. ** org-table-transpose-table-at-point :PROPERTIES: :CUSTOM_ID: org-table-transpose-table-at-point :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Transpose Org table at point and eliminate hlines. : So a table like : : | 1 | 2 | 4 | 5 | : |---+---+---+---| : | a | b | c | d | : | e | f | g | h | : : will be transposed as : : | 1 | a | e | : | 2 | b | f | : | 4 | c | g | : | 5 | d | h | : : Note that horizontal lines disappear. ** org-columns-edit-allowed :PROPERTIES: :CUSTOM_ID: org-columns-edit-allowed :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-edit-allowed][Find modifications in git logs]] : Edit the list of allowed values for the current property. ** org-table-fedit-finish =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-table-fedit-finish :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fedit-finish][Find modifications in git logs]] : Parse the buffer for formula definitions and install them. : With prefix ARG, apply the new formulas to the table. ** org-occur-in-agenda-files =(regexp &optional _nlines)= :PROPERTIES: :CUSTOM_ID: org-occur-in-agenda-files :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-in-agenda-files][Find modifications in git logs]] : Call ‘multi-occur’ with buffers for all agenda files. ** org-convert-to-oddeven-levels :PROPERTIES: :CUSTOM_ID: org-convert-to-oddeven-levels :END: - *Access:* ~ ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-convert-to-oddeven-levels][Find modifications in git logs]] : Convert an Org file with only odd levels to one with odd/even levels. : This promotes level 3 to level 2, level 5 to level 3 etc. If the : file contains a section with an even level, conversion would : destroy the structure of the file. An error is signaled in this : case. ** org-show-block-all :PROPERTIES: :CUSTOM_ID: org-show-block-all :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-show-block-all][Find modifications in git logs]] : Unfold all blocks in the current buffer. ** org-ctags-append-topic =(name &optional narrowp)= :PROPERTIES: :CUSTOM_ID: org-ctags-append-topic :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-ctags.el][org-ctags.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctags-append-topic][Find modifications in git logs]] : This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS. : Append a new toplevel heading to the end of the current buffer. The : heading contains NAME surrounded by <>, thus making : the heading a destination for the tag ‘NAME’. ** org-koma-letter-export-to-latex =(&optional async subtreep visible-only body-only ext-plist)= :PROPERTIES: :CUSTOM_ID: org-koma-letter-export-to-latex :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[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]] : Export current buffer as a KOMA Scrlttr2 letter (tex). : : If narrowing is active in the current buffer, only export its : narrowed part. : : If a region is active, export that region. : : A non-nil optional argument ASYNC means the process should happen : asynchronously. The resulting file should be accessible through : the ‘org-export-stack’ interface. : : When optional argument SUBTREEP is non-nil, export the sub-tree : at point, extracting information from the headline properties : first. : : When optional argument VISIBLE-ONLY is non-nil, don’t export : contents of hidden elements. : : When optional argument BODY-ONLY is non-nil, only write code : between "\begin{letter}" and "\end{letter}". : : EXT-PLIST, when provided, is a property list with external : parameters overriding Org default settings, but still inferior to : file-local settings. : : When optional argument PUB-DIR is set, use it as the publishing : directory. : : Return output file’s name. ** org-archive-subtree-default-with-confirmation :PROPERTIES: :CUSTOM_ID: org-archive-subtree-default-with-confirmation :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[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]] : Archive the current subtree with the default command. : This command is set with the variable ‘org-archive-default-command’. ** org-encrypt-entries :PROPERTIES: :CUSTOM_ID: org-encrypt-entries :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-encrypt-entries][Find modifications in git logs]] : Encrypt all top-level entries in the current buffer. ** org-tree-to-indirect-buffer =(&optional arg)= :PROPERTIES: :CUSTOM_ID: org-tree-to-indirect-buffer :END: - *Access:* ~C-c C-x b, ~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tree-to-indirect-buffer][Find modifications in git logs]] : Create indirect buffer and narrow it to current subtree. : : With a numerical prefix ARG, go up to this level and then take that tree. : If ARG is negative, go up that many levels. : : If ‘org-indirect-buffer-display’ is not ‘new-frame’, the command removes the : indirect buffer previously made with this command, to avoid proliferation of : indirect buffers. However, when you call the command with a ‘C-u’ prefix, or : when ‘org-indirect-buffer-display’ is ‘new-frame’, the last buffer is kept : so that you can work with several indirect buffers at the same time. If : ‘org-indirect-buffer-display’ is ‘dedicated-frame’, the ‘C-u’ prefix also : requests that a new frame be made for the new buffer, so that the dedicated : frame is not changed. ** org-agenda-previous-item =(n)= :PROPERTIES: :CUSTOM_ID: org-agenda-previous-item :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-previous-item][Find modifications in git logs]] : Move cursor to next agenda item. ** org-babel-detangle =(&optional source-code-file)= :PROPERTIES: :CUSTOM_ID: org-babel-detangle :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-detangle][Find modifications in git logs]] : Propagate changes in source file back original to Org file. : This requires that code blocks were tangled with link comments : which enable the original code blocks to be found. ** org-end-of-item-list :PROPERTIES: :CUSTOM_ID: org-end-of-item-list :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-end-of-item-list][Find modifications in git logs]] : Go to the end of the current list or sublist. : Throw an error when not in a list. ** org-agenda-dim-blocked-tasks =(&optional invisible)= :PROPERTIES: :CUSTOM_ID: org-agenda-dim-blocked-tasks :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-dim-blocked-tasks][Find modifications in git logs]] : Dim currently blocked TODOs in the agenda display. : When INVISIBLE is non-nil, hide currently blocked TODO instead of : dimming them. ** org-babel-open-src-block-result =(&optional re-run)= :PROPERTIES: :CUSTOM_ID: org-babel-open-src-block-result :END: - *Access:* ~C-c C-v C-o, C-c C-v o~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[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]] : If ‘point’ is on a src block then open the results of the : source code block, otherwise return nil. With optional prefix : argument RE-RUN the source-code block is evaluated even if : results already exist. ** org-list-repair :PROPERTIES: :CUSTOM_ID: org-list-repair :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-repair][Find modifications in git logs]] : Fix indentation, bullets and checkboxes in the list at point. ** org-at-date-range-p =(&optional inactive-ok)= :PROPERTIES: :CUSTOM_ID: org-at-date-range-p :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-at-date-range-p][Find modifications in git logs]] : Non-nil if point is inside a date range. : : When optional argument INACTIVE-OK is non-nil, also consider : inactive time ranges. : : When this function returns a non-nil value, match data is set : according to ‘org-tr-regexp-both’ or ‘org-tr-regexp’, depending : on INACTIVE-OK. ** org-bibtex-check =(&optional optional)= :PROPERTIES: :CUSTOM_ID: org-bibtex-check :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-check][Find modifications in git logs]] : Check the current headline for required fields. : With prefix argument OPTIONAL also prompt for optional fields. ** org-lint--hide-checker :PROPERTIES: :CUSTOM_ID: org-lint--hide-checker :END: - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-lint.el][org-lint.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lint--hide-checker][Find modifications in git logs]] : Hide all reports from checker that generated the report at point. ** org-list-make-subtree :PROPERTIES: :CUSTOM_ID: org-list-make-subtree :END: - *Access:* ~C-c C-*~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-make-subtree][Find modifications in git logs]] : Convert the plain list at point into a subtree. ** org-update-statistics-cookies =(all)= :PROPERTIES: :CUSTOM_ID: org-update-statistics-cookies :END: - *Access:* ~C-c #~ - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-update-statistics-cookies][Find modifications in git logs]] : Update the statistics cookie, either from TODO or from checkboxes. : This should be called with the cursor in a line with a statistics : cookie. When called with a C-u prefix, update : all statistics cookies in the buffer. * Options :PROPERTIES: :CUSTOM_ID: options :END: ** org-odt-styles-file =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-styles-file :END: - *Type:* (choice (const :tag "Factory s... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-styles-file][Find modifications in git logs]] : Default styles file for use with ODT export. : Valid values are one of: : 1. nil : 2. path to a styles.xml file : 3. path to a *.odt or a *.ott file : 4. list of the form (ODT-OR-OTT-FILE (FILE-MEMBER-1 FILE-MEMBER-2 : ...)) : : In case of option 1, an in-built styles.xml is used. See : `org-odt-styles-dir' for more information. : : In case of option 3, the specified file is unzipped and the : styles.xml embedded therein is used. : : In case of option 4, the specified ODT-OR-OTT-FILE is unzipped : and FILE-MEMBER-1, FILE-MEMBER-2 etc are copied in to the : generated odt file. Use relative path for specifying the : FILE-MEMBERS. styles.xml must be specified as one of the : FILE-MEMBERS. : : Use options 1, 2 or 3 only if styles.xml alone suffices for : achieving the desired formatting. Use option 4, if the styles.xml : references additional files like header and footer images for : achieving the desired formatting. : : Use "#+ODT_STYLES_FILE: ..." directive to set this variable on : a per-file basis. For example, : : #+ODT_STYLES_FILE: "/path/to/styles.xml" or : #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png")). ** org-read-date-popup-calendar =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-read-date-popup-calendar :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-popup-calendar][Find modifications in git logs]] : Non-nil means pop up a calendar when prompting for a date. : In the calendar, the date can be selected with mouse-1. However, the : minibuffer will also be active, and you can simply enter the date as well. : When nil, only the minibuffer will be available. ** org-export-with-properties =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-properties :END: - *Type:* (choice (const :tag "All prope... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-properties][Find modifications in git logs]] : Non-nil means export contents of properties drawers. : : When t, all properties are exported. This may also be a list of : properties to export, as strings. : : This option can also be set with the OPTIONS keyword, : e.g. "prop:t". ** org-agenda-max-entries =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-max-entries :END: - *Type:* (choice (symbol :tag "No limit... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-entries][Find modifications in git logs]] : Maximum number of entries to display in an agenda. : This can be nil (no limit) or an integer or an alist of agenda : types with an associated number of entries to display in this : type. ** org-log-note-clock-out =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-log-note-clock-out :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-note-clock-out][Find modifications in git logs]] : Non-nil means record a note when clocking out of an item. : This can also be configured on a per-file basis by adding one of : the following lines anywhere in the buffer: : : #+STARTUP: lognoteclock-out : #+STARTUP: nolognoteclock-out ** org-link-abbrev-alist =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-link-abbrev-alist :END: - *Type:* (repeat (cons (string :tag "Pr... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-abbrev-alist][Find modifications in git logs]] : Alist of link abbreviations. : The car of each element is a string, to be replaced at the start of a link. : The cdrs are replacement values, like ("linkkey" . REPLACE). Abbreviated : links in Org buffers can have an optional tag after a double colon, e.g., : : [[linkkey:tag][description]] : : The `linkkey' must be a single word, starting with a letter, followed : by letters, numbers, `-' or `_'. : : If REPLACE is a string, the tag will simply be appended to create the link. : If the string contains "%s", the tag will be inserted there. If the string : contains "%h", it will cause a url-encoded version of the tag to be inserted : at that point (see the function `url-hexify-string'). If the string contains : the specifier "%(my-function)", then the custom function `my-function' will : be invoked: this function takes the tag as its only argument and must return : a string. : : REPLACE may also be a function that will be called with the tag as the : only argument to create the link, which should be returned as a string. : : See the manual for examples. ** org-html-format-drawer-function =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-format-drawer-function :END: - *Type:* function - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-drawer-function][Find modifications in git logs]] : Function called to format a drawer in HTML code. : : The function must accept two parameters: : NAME the drawer name, like "LOGBOOK" : CONTENTS the contents of the drawer. : : The function should return the string to be exported. : : For example, the variable could be set to the following function : in order to mimic default behavior: : : The default value simply returns the value of CONTENTS. ** org-latex-hyperref-template =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-hyperref-template :END: - *Type:* (choice (const :tag "No templa... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-hyperref-template][Find modifications in git logs]] : Template for hyperref package options. : : This format string may contain these elements: : : %a for AUTHOR keyword : %t for TITLE keyword : %s for SUBTITLE keyword : %k for KEYWORDS line : %d for DESCRIPTION line : %c for CREATOR line : %l for Language keyword : %L for capitalized language keyword : %D for DATE keyword : : If you need to use a "%" character, you need to escape it : like that: "%%". : : As a special case, a nil value prevents template from being : inserted. : : Setting :latex-hyperref-template in publishing projects will take : precedence over this variable. ** org-src-block-faces =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-src-block-faces :END: - *Type:* (repeat (list (string :tag "la... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-block-faces][Find modifications in git logs]] : Alist of faces to be used for source-block. : Each element is a cell of the format : : ("language" FACE) : : Where FACE is either a defined face or an anonymous face. : : For instance, the following value would color the background of : emacs-lisp source blocks and python source blocks in purple and : green, respectability. : : \='(("emacs-lisp" (:background "#EEE2FF")) : ("python" (:background "#e5ffb8"))) ** org-context-in-file-links =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-context-in-file-links :END: - *Type:* (choice boolean integer) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-context-in-file-links][Find modifications in git logs]] : Non-nil means file links from `org-store-link' contain context. : \ : A search string will be added to the file name with :: as separator : and used to find the context when the link is activated by the command : `org-open-at-point'. When this option is t, the entire active region : will be placed in the search string of the file link. If set to a : positive integer, only the first n lines of context will be stored. : : Using a prefix arg to the command `org-store-link' (`\[universal-argument] \[org-store-link]') : negates this setting for the duration of the command. ** org-indent-mode-turns-on-hiding-stars =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-indent-mode-turns-on-hiding-stars :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]] - [[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]] : Non-nil means setting the variable `org-indent-mode' will turn on `org-hide-leading-stars'. ** org-mobile-directory =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-mobile-directory :END: - *Type:* directory - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-directory][Find modifications in git logs]] : The WebDAV directory where the interaction with the mobile takes place. ** org-export-select-tags =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-select-tags :END: - *Type:* (repeat (string :tag "Tag")) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-select-tags][Find modifications in git logs]] : Tags that select a tree for export. : : If any such tag is found in a buffer, all trees that do not carry : one of these tags will be ignored during export. Inside trees : that are selected like this, you can still deselect a subtree by : tagging it with one of the `org-export-exclude-tags'. : : This option can also be set with the SELECT_TAGS keyword. ** org-clocktable-defaults =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clocktable-defaults :END: - *Type:* plist - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clocktable-defaults][Find modifications in git logs]] : Default properties for clock tables. ** org-koma-letter-use-place =t= :PROPERTIES: :CUSTOM_ID: org-koma-letter-use-place :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-place][Find modifications in git logs]] : Non-nil prints the letter's place next to the date. : This option can also be set with the OPTIONS keyword, e.g.: : "place:nil". ** org-koma-letter-signature =""= :PROPERTIES: :CUSTOM_ID: org-koma-letter-signature :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-signature][Find modifications in git logs]] : Signature, as a string. : This option can also be set with the SIGNATURE keyword. : Moreover, when: : (1) Either `org-koma-letter-prefer-special-headings' is non-nil : or there is no CLOSING keyword or the CLOSING keyword is empty; : (2) `org-koma-letter-headline-is-opening-maybe' is non-nil; : (3) the letter contains a headline with the special : tag "closing"; : then the signature will be set as the content of the : closing special heading. : : Note if the content is empty the signature will not be set. ** org-icalendar-store-UID =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-icalendar-store-UID :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-store-UID][Find modifications in git logs]] : Non-nil means store any created UIDs in properties. : : The iCalendar standard requires that all entries have a unique identifier. : Org will create these identifiers as needed. When this variable is non-nil, : the created UIDs will be stored in the ID property of the entry. Then the : next time this entry is exported, it will be exported with the same UID, : superseding the previous form of it. This is essential for : synchronization services. : : This variable is not turned on by default because we want to avoid creating : a property drawer in every entry if people are only playing with this feature, : or if they are only using it locally. ** org-bbdb-anniversary-format-alist =(funcall (function (closure (d...= :PROPERTIES: :CUSTOM_ID: org-bbdb-anniversary-format-alist :END: - *Type:* (alist :key-type (string :tag ... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-anniversary-format-alist][Find modifications in git logs]] : How different types of anniversaries should be formatted. : An alist of elements (STRING . FORMAT) where STRING is the name of an : anniversary class and format is either: : 1) A format string with the following substitutions (in order): : - the name of the record containing this anniversary : - the number of years : - an ordinal suffix (st, nd, rd, th) for the year : : 2) A function to be called with three arguments: NAME YEARS SUFFIX : (string int string) returning a string for the diary or nil. : : 3) An Emacs Lisp form that should evaluate to a string (or nil) in the : scope of variables NAME, YEARS and SUFFIX (among others). ** org-list-use-circular-motion =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-list-use-circular-motion :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-list-use-circular-motion][Find modifications in git logs]] : Non-nil means commands implying motion in lists should be cyclic. : \ : In that case, the item following the last item is the first one, : and the item preceding the first item is the last one. : : This affects the behavior of : `\[org-move-item-up]', : `\[org-move-item-down]', : `\[org-next-item]', : `\[org-previous-item]'. ** org-html-mathjax-options =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-mathjax-options :END: - *Type:* (list :greedy t (list :tag "pa... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-mathjax-options][Find modifications in git logs]] : Options for MathJax setup. : : Alist of the following elements. All values are strings. : : path The path to MathJax. : scale Scaling with HTML-CSS, MathML and SVG output engines. : align How to align display math: left, center, or right. : font The font to use with HTML-CSS and SVG output. As of MathJax 2.5 : the following values are understood: "TeX", "STIX-Web", : "Asana-Math", "Neo-Euler", "Gyre-Pagella", : "Gyre-Termes", and "Latin-Modern". : linebreaks Let MathJax perform automatic linebreaks. Valid values : are "true" and "false". : indent If align is not center, how far from the left/right side? : Valid values are "left" and "right" : multlinewidth The width of the multline environment. : autonumber How to number equations. Valid values are "None", : "all" and "AMS Math". : tagindent The amount tags are indented. : tagside Which side to show tags/labels on. Valid values are : "left" and "right" : : You can also customize this for each buffer, using something like : : #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler : : For further information about MathJax options, see the MathJax documentation: : : http://docs.mathjax.org/ ** org-stuck-projects =(quote ("+LEVEL=2/-DONE" ("TOD...= :PROPERTIES: :CUSTOM_ID: org-stuck-projects :END: - *Type:* (list (string :tag "Tags/TODO ... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-stuck-projects][Find modifications in git logs]] : How to identify stuck projects. : This is a list of four items: : 1. A tags/todo/property matcher string that is used to identify a project. : See the manual for a description of tag and property searches. : The entire tree below a headline matched by this is considered one project. : 2. A list of TODO keywords identifying non-stuck projects. : If the project subtree contains any headline with one of these todo : keywords, the project is considered to be not stuck. If you specify : "*" as a keyword, any TODO keyword will mark the project unstuck. : 3. A list of tags identifying non-stuck projects. : If the project subtree contains any headline with one of these tags, : the project is considered to be not stuck. If you specify "*" as : a tag, any tag will mark the project unstuck. Note that this is about : the explicit presence of a tag somewhere in the subtree, inherited : tags do not count here. If inherited tags make a project not stuck, : use "-TAG" in the tags part of the matcher under (1.) above. : 4. An arbitrary regular expression matching non-stuck projects. : : If the project turns out to be not stuck, search continues also in the : subtree to see if any of the subtasks have project status. : : See also the variable `org-tags-match-list-sublevels' which applies : to projects matched by this search as well. : : After defining this variable, you may use `\[org-agenda-list-stuck-projects]' : (bound to `C-c a #') to produce the list. ** org-latex-default-table-mode =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-default-table-mode :END: - *Type:* (choice (const :tag "Table" ta... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-default-table-mode][Find modifications in git logs]] : Default mode for tables. : : Value can be a symbol among: : : `table' Regular LaTeX table. : : `math' In this mode, every cell is considered as being in math : mode and the complete table will be wrapped within a math : environment. It is particularly useful to write matrices. : : `inline-math' This mode is almost the same as `math', but the : math environment will be inlined. : : `verbatim' The table is exported as it appears in the Org : buffer, within a verbatim environment. : : This value can be overridden locally with, i.e. ":mode math" in : LaTeX attributes. : : When modifying this variable, it may be useful to change : `org-latex-default-table-environment' accordingly. ** org-clock-rounding-minutes =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-rounding-minutes :END: - *Type:* (choice (integer :tag "Minutes... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-rounding-minutes][Find modifications in git logs]] : Rounding minutes when clocking in or out. : The default value is 0 so that no rounding is done. : When set to a non-integer value, use the car of : `org-time-stamp-rounding-minutes', like for setting a time-stamp. : : E.g. if `org-clock-rounding-minutes' is set to 5, time is 14:47 : and you clock in: then the clock starts at 14:45. If you clock : out within the next 5 minutes, the clock line will be removed; : if you clock out 8 minutes after your clocked in, the clock : out time will be 14:50. ** org-babel-load-languages =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-babel-load-languages :END: - *Type:* (alist :tag "Babel Languages" ... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-load-languages][Find modifications in git logs]] : Languages which can be evaluated in Org buffers. : This list can be used to load support for any of the languages : below, note that each language will depend on a different set of : system executables and/or Emacs modes. When a language is : "loaded", then code blocks in that language can be evaluated : with `org-babel-execute-src-block' bound by default to C-c : C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can : be set to remove code block evaluation from the C-c C-c : keybinding. By default only Emacs Lisp (which has no : requirements) is loaded. ** org-agenda-time-grid =(quote ((daily today require-t...= :PROPERTIES: :CUSTOM_ID: org-agenda-time-grid :END: - *Type:* (list (set :greedy t :tag "Gri... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-time-grid][Find modifications in git logs]] : The settings for time grid for agenda display. : This is a list of three items. The first item is again a list. It contains : symbols specifying conditions when the grid should be displayed: : : daily if the agenda shows a single day : weekly if the agenda shows an entire week : today show grid on current date, independent of daily/weekly display : require-timed show grid only if at least one item has a time specification : remove-match skip grid times already present in an entry : : The second item is a string which will be placed behind the grid time. : : The third item is a list of integers, indicating the times that should have : a grid line. ** org-export-with-entities =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-entities :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-entities][Find modifications in git logs]] : Non-nil means interpret entities when exporting. : : For example, HTML export converts \alpha to α and \AA to : Å. : : For a list of supported names, see the constant `org-entities' : and the user option `org-entities-user'. : : This option can also be set with the OPTIONS keyword, : e.g. "e:nil". ** org-texinfo-info-process =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-info-process :END: - *Type:* (repeat :tag "Shell command se... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-info-process][Find modifications in git logs]] : Commands to process a Texinfo file to an INFO file. : : This is a list of strings, each of them will be given to the : shell as a command. %f in the command will be replaced by the : relative file name, %F by the absolute file name, %b by the file : base name (i.e. without directory and extension parts), %o by the : base directory of the file and %O by the absolute file name of : the output file. ** org-bibtex-type-property-name =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-bibtex-type-property-name :END: - *Type:* string - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-type-property-name][Find modifications in git logs]] : Property in which to store bibtex entry type (e.g., article). ** org-table-auto-blank-field =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-auto-blank-field :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-auto-blank-field][Find modifications in git logs]] : Non-nil means automatically blank table field when starting to type into it. : This only happens when typing immediately after a field motion : command (TAB, S-TAB or RET). : Only relevant when `org-enable-table-editor' is equal to `optimized'. ** org-timer-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-timer-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-timer.el][org-timer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-timer-format][Find modifications in git logs]] : The format to insert the time of the timer. : This format must contain one instance of "%s" which will be replaced by : the value of the timer. ** org-agenda-skip-scheduled-if-done =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-skip-scheduled-if-done :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means don't show scheduled items in agenda when they are done. : This is relevant for the daily/weekly agenda, not for the TODO list. It : applies only to the actual date of the scheduling. Warnings about an item : with a past scheduling dates are always turned off when the item is DONE. ** org-tags-column =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-tags-column :END: - *Type:* integer - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tags-column][Find modifications in git logs]] : The column to which tags should be indented in a headline. : If this number is positive, it specifies the column. If it is negative, : it means that the tags should be flushright to that column. For example, : -80 works well for a normal 80 character screen. : When 0, place tags directly after headline text, with only one space in : between. ** org-agenda-timegrid-use-ampm =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-timegrid-use-ampm :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-timegrid-use-ampm][Find modifications in git logs]] : When set, show AM/PM style timestamps on the timegrid. ** org-babel-results-keyword =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-results-keyword :END: - *Type:* string - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-results-keyword][Find modifications in git logs]] : Keyword used to name results generated by code blocks. : It should be "RESULTS". However any capitalization may be : used. ** org-odt-convert-process =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-convert-process :END: - *Type:* (choice :convert-widget (lambd... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-convert-process][Find modifications in git logs]] : Use this converter to convert from "odt" format to other formats. : During customization, the list of converter names are populated : from `org-odt-convert-processes'. ** org-beamer-subtitle-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-beamer-subtitle-format :END: - *Type:* (string :tag "Format string") - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-beamer.el][ox-beamer.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-beamer-subtitle-format][Find modifications in git logs]] : Format string used for transcoded subtitle. : The format string should have at most one "%s"-expression, : which is replaced with the subtitle. ** org-ascii-format-inlinetask-function =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-ascii-format-inlinetask-function :END: - *Type:* function - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-format-inlinetask-function][Find modifications in git logs]] : Function called to format an inlinetask in ASCII. : : The function must accept nine parameters: : TODO the todo keyword, as a string : TODO-TYPE the todo type, a symbol among `todo', `done' and nil. : PRIORITY the inlinetask priority, as a string : NAME the inlinetask name, as a string. : TAGS the inlinetask tags, as a list of strings. : CONTENTS the contents of the inlinetask, as a string. : WIDTH the width of the inlinetask, as a number. : INLINETASK the inlinetask itself. : INFO the info channel. : : The function should return either the string to be exported or : nil to ignore the inline task. ** org-display-custom-times =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-display-custom-times :END: - *Type:* sexp - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-display-custom-times][Find modifications in git logs]] : Non-nil means overlay custom formats over all time stamps. : The formats are defined through the variable `org-time-stamp-custom-formats'. : To turn this on on a per-file basis, insert anywhere in the file: : #+STARTUP: customtime ** org-table-tab-jumps-over-hlines =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-tab-jumps-over-hlines :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[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]] : Non-nil means tab in the last column of a table with jump over a hline. : If a horizontal separator line is following the current line, : `org-table-next-field' can either create a new row before that line, or jump : over the line. When this option is nil, a new line will be created before : this line. ** org-log-states-order-reversed =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-log-states-order-reversed :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-states-order-reversed][Find modifications in git logs]] : Non-nil means the latest state note will be directly after heading. : When nil, the state change notes will be ordered according to time. : : This option can also be set with on a per-file-basis with : : #+STARTUP: logstatesreversed : #+STARTUP: nologstatesreversed ** org-babel-python-mode =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-python-mode :END: - *Type:* symbol - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-python.el][ob-python.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-python-mode][Find modifications in git logs]] : Preferred python mode for use in running python interactively. : This will typically be either `python' or `python-mode'. ** org-clock-out-switch-to-state =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-out-switch-to-state :END: - *Type:* (choice (const :tag "Don't for... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[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]] : Set task to a special todo state after clocking out. : The value should be the state to which the entry should be : switched. If the value is a function, it must take one : parameter (the current TODO state of the item) and return the : state to switch it to. ** org-agenda-show-outline-path =t= :PROPERTIES: :CUSTOM_ID: org-agenda-show-outline-path :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-outline-path][Find modifications in git logs]] : Non-nil means show outline path in echo area after line motion. ** org-html-postamble =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-postamble :END: - *Type:* (choice (const :tag "No postam... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-postamble][Find modifications in git logs]] : Non-nil means insert a postamble in HTML export. : : When set to `auto', check against the : `org-export-with-author/email/creator/date' variables to set the : content of the postamble. When set to a string, use this string : as the postamble. When t, insert a string as defined by the : formatting string in `org-html-postamble-format'. : : When set to a function, apply this function and insert the : returned string. The function takes the property list of export : options as its only argument. : : Setting :html-postamble in publishing projects will take : precedence over this variable. ** org-gnus-prefer-web-links =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-gnus-prefer-web-links :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-gnus.el][org-gnus.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-gnus-prefer-web-links][Find modifications in git logs]] : If non-nil, `org-store-link' creates web links to Google groups or Gmane. : \When nil, Gnus will be used for such links. : Using a prefix argument to the command `\[org-store-link]' (`org-store-link') : negates this setting for the duration of the command. ** org-export-async-init-file =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-async-init-file :END: - *Type:* (choice (const :tag "Regular s... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-async-init-file][Find modifications in git logs]] : File used to initialize external export process. : : Value must be either nil or an absolute file name. When nil, the : external process is launched like a regular Emacs session, : loading user's initialization file and any site specific : configuration. If a file is provided, it, and only it, is loaded : at start-up. : : Therefore, using a specific configuration makes the process to : load faster and the export more portable. ** org-use-property-inheritance =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-use-property-inheritance :END: - *Type:* (choice (const :tag "Not" nil)... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-property-inheritance][Find modifications in git logs]] : Non-nil means properties apply also for sublevels. : : This setting is chiefly used during property searches. Turning it on can : cause significant overhead when doing a search, which is why it is not : on by default. : : When nil, only the properties directly given in the current entry count. : When t, every property is inherited. The value may also be a list of : properties that should have inheritance, or a regular expression matching : properties that should be inherited. : : However, note that some special properties use inheritance under special : circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS, : and the properties ending in "_ALL" when they are used as descriptor : for valid values of a property. : : Note for programmers: : When querying an entry with `org-entry-get', you can control if inheritance : should be used. By default, `org-entry-get' looks only at the local : properties. You can request inheritance by setting the inherit argument : to t (to force inheritance) or to `selective' (to respect the setting : in this variable). ** org-tag-alist =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-tag-alist :END: - *Type:* (repeat (choice (cons (string ... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-tag-alist][Find modifications in git logs]] : Default tags available in Org files. : : The value of this variable is an alist. Associations either: : : (TAG) : (TAG . SELECT) : (SPECIAL) : : where TAG is a tag as a string, SELECT is character, used to : select that tag through the fast tag selection interface, and : SPECIAL is one of the following keywords: `:startgroup', : `:startgrouptag', `:grouptags', `:engroup', `:endgrouptag' or : `:newline'. These keywords are used to define a hierarchy of : tags. See manual for details. : : When this variable is nil, Org mode bases tag input on what is : already in the buffer. The value can be overridden locally by : using a TAGS keyword, e.g., : : #+TAGS: tag1 tag2 : : See also `org-tag-persistent-alist' to sidestep this behavior. ** org-odt-prettify-xml =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-prettify-xml :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-prettify-xml][Find modifications in git logs]] : Specify whether or not the xml output should be prettified. : When this option is turned on, `indent-region' is run on all : component xml buffers before they are saved. Turn this off for : regular use. Turn this on if you need to examine the xml : visually. ** org-agenda-prefix-format =(quote ((agenda . " %i %-12:c%...= :PROPERTIES: :CUSTOM_ID: org-agenda-prefix-format :END: - *Type:* (choice (string :tag "General ... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-prefix-format][Find modifications in git logs]] : Format specifications for the prefix of items in the agenda views. : An alist with five entries, each for the different agenda types. The : keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'. : The values are format strings. : : This format works similar to a printf format, with the following meaning: : : %c the category of the item, "Diary" for entries from the diary, : or as given by the CATEGORY keyword or derived from the file name : %e the effort required by the item : %l the level of the item (insert X space(s) if item is of level X) : %i the icon category of the item, see `org-agenda-category-icon-alist' : %T the last tag of the item (ignore inherited tags, which come first) : %t the HH:MM time-of-day specification if one applies to the entry : %s Scheduling/Deadline information, a short string : %b show breadcrumbs, i.e., the names of the higher levels : %(expression) Eval EXPRESSION and replace the control string : by the result : : All specifiers work basically like the standard `%s' of printf, but may : contain two additional characters: a question mark just after the `%' : and a whitespace/punctuation character just before the final letter. : : If the first character after `%' is a question mark, the entire field : will only be included if the corresponding value applies to the current : entry. This is useful for fields which should have fixed width when : present, but zero width when absent. For example, "%?-12t" will : result in a 12 character time field if a time of the day is specified, : but will completely disappear in entries which do not contain a time. : : If there is punctuation or whitespace character just before the : final format letter, this character will be appended to the field : value if the value is not empty. For example, the format : "%-12:c" leads to "Diary: " if the category is "Diary". If : the category is empty, no additional colon is inserted. : : The default value for the agenda sublist is " %-12:c%?-12t% s", : which means: : : - Indent the line with two space characters : - Give the category a 12 chars wide field, padded with whitespace on : the right (because of `-'). Append a colon if there is a category : (because of `:'). : - If there is a time-of-day, put it into a 12 chars wide field. If no : time, don't put in an empty field, just skip it (because of '?'). : - Finally, put the scheduling information. : : See also the variables `org-agenda-remove-times-when-in-prefix' and : `org-agenda-remove-tags'. : : Custom commands can set this variable in the options section. ** org-agenda-search-view-max-outline-level =0= :PROPERTIES: :CUSTOM_ID: org-agenda-search-view-max-outline-level :END: - *Type:* integer - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Maximum outline level to display in search view. : E.g. when this is set to 1, the search view will only : show headlines of level 1. When set to 0, the default : value, don't limit agenda view by outline level. ** org-agenda-show-all-dates =t= :PROPERTIES: :CUSTOM_ID: org-agenda-show-all-dates :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-all-dates][Find modifications in git logs]] : Non-nil means `org-agenda' shows every day in the selected range. : When nil, only the days which actually have entries are shown. ** org-id-uuid-program =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-id-uuid-program :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-uuid-program][Find modifications in git logs]] : The uuidgen program. ** org-refile-active-region-within-subtree =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-refile-active-region-within-subtree :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Non-nil means also refile active region within a subtree. : : By default `org-refile' doesn't allow refiling regions if they : don't contain a set of subtrees, but it might be convenient to : do so sometimes: in that case, the first line of the region is : converted to a headline before refiling. ** org-export-with-title =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-title :END: - *Type:* boolean - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-title][Find modifications in git logs]] : Non-nil means print title into the exported file. : This option can also be set with the OPTIONS keyword, : e.g. "title:nil". ** org-export-creator-string =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-creator-string :END: - *Type:* (string :tag "Creator string") - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-creator-string][Find modifications in git logs]] : Information about the creator of the document. : This option can also be set on with the CREATOR keyword. ** org-texinfo-node-description-column =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-node-description-column :END: - *Type:* integer - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-node-description-column][Find modifications in git logs]] : Column at which to start the description in the node listings. : If a node title is greater than this length, the description will : be placed after the end of the title. ** org-agenda-skip-timestamp-if-deadline-is-shown =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-skip-timestamp-if-deadline-is-shown :END: - *Type:* (choice (const :tag "Never" ni... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means skip timestamp line if same entry shows because of deadline. : In the agenda of today, an entry can show up multiple times : because it has both a plain timestamp and has a nearby deadline. : When this variable is t, then only the deadline is shown and the : fact that the entry has a timestamp for or including today is not : shown. When this variable is nil, the entry will be shown : several times. ** org-allow-promoting-top-level-subtree =(funcall (function (closure (b...= :PROPERTIES: :CUSTOM_ID: org-allow-promoting-top-level-subtree :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : When non-nil, allow promoting a top level subtree. : The leading star of the top level headline will be replaced : by a #. ** org-archive-reversed-order =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-archive-reversed-order :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-reversed-order][Find modifications in git logs]] : Non-nil means make the tree first child under the archive heading, not last. ** org-keep-stored-link-after-insertion =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-keep-stored-link-after-insertion :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Non-nil means keep link in list for entire session. : \ : The command `org-store-link' adds a link pointing to the current : location to an internal list. These links accumulate during a session. : The command `org-insert-link' can be used to insert links into any : Org file (offering completion for all stored links). : : When this option is nil, every link which has been inserted once using : `\[org-insert-link]' will be removed from the list, to make completing the unused : links more efficient. ** org-scheduled-delay-days =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-scheduled-delay-days :END: - *Type:* integer - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-scheduled-delay-days][Find modifications in git logs]] : Number of days before a scheduled item becomes active. : This variable governs the display in sparse trees and in the agenda. : The default value (i.e. 0) means: don't delay scheduled item. : When negative, it means use this number (the absolute value of it) : even if a scheduled item has a different individual delay time : specified. : : Custom commands can set this variable in the options section. ** org-crypt-tag-matcher =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-crypt-tag-matcher :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-crypt.el][org-crypt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-crypt-tag-matcher][Find modifications in git logs]] : The tag matcher used to find headings whose contents should be encrypted. : : See the "Match syntax" section of the org manual for more details. ** org-edit-timestamp-down-means-later =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-edit-timestamp-down-means-later :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Non-nil means S-down will increase the time in a time stamp. : When nil, S-up will increase. ** org-ascii-inlinetask-width =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-ascii-inlinetask-width :END: - *Type:* integer - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-inlinetask-width][Find modifications in git logs]] : Width of inline tasks, in number of characters. : This number ignores any margin. ** org-html-container-element =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-container-element :END: - *Type:* string - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-container-element][Find modifications in git logs]] : HTML element to use for wrapping top level sections. : Can be set with the in-buffer HTML_CONTAINER property or for : publishing, with :html-container. : : Note that changing the default will prevent you from using : org-info.js for your website. ** org-babel-noweb-wrap-end =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-noweb-wrap-end :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-noweb-wrap-end][Find modifications in git logs]] : String used to end a noweb reference in a code block. : See also `org-babel-noweb-wrap-start'. ** org-odt-create-custom-styles-for-srcblocks =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-create-custom-styles-for-srcblocks :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[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]] : Whether custom styles for colorized source blocks be automatically created. : When this option is turned on, the exporter creates custom styles : for source blocks based on the advice of `htmlfontify'. Creation : of custom styles happen as part of `org-odt-hfy-face-to-css'. : : When this option is turned off exporter does not create such : styles. : : Use the latter option if you do not want the custom styles to be : based on your current display settings. It is necessary that the : styles.xml already contains needed styles for colorizing to work. : : This variable is effective only if `org-odt-fontify-srcblocks' is : turned on. ** org-export-with-special-strings =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-special-strings :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-special-strings][Find modifications in git logs]] : Non-nil means interpret "\-", "--" and "---" for export. : : When this option is turned on, these strings will be exported as: : : Org HTML LaTeX UTF-8 : -----+----------+--------+------- : \- ­ \- : -- – -- – : --- — --- — : ... … \ldots … : : This option can also be set with the OPTIONS keyword, : e.g. "-:nil". ** org-indirect-buffer-display =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-indirect-buffer-display :END: - *Type:* (choice (const :tag "In curren... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-indirect-buffer-display][Find modifications in git logs]] : How should indirect tree buffers be displayed? : : This applies to indirect buffers created with the commands : `org-tree-to-indirect-buffer' and `org-agenda-tree-to-indirect-buffer'. : : Valid values are: : current-window Display in the current window : other-window Just display in another window. : dedicated-frame Create one new frame, and re-use it each time. : new-frame Make a new frame each time. Note that in this case : previously-made indirect buffers are kept, and you need to : kill these buffers yourself. ** org-html-infojs-template =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-infojs-template :END: - *Type:* string - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-infojs-template][Find modifications in git logs]] : The template for the export style additions when org-info.js is used. : Option settings will replace the %MANAGER-OPTIONS cookie. ** org-deadline-warning-days =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-deadline-warning-days :END: - *Type:* integer - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-deadline-warning-days][Find modifications in git logs]] : Number of days before expiration during which a deadline becomes active. : This variable governs the display in sparse trees and in the agenda. : When 0 or negative, it means use this number (the absolute value of it) : even if a deadline has a different individual lead time specified. : : Custom commands can set this variable in the options section. ** org-use-sub-superscripts =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-use-sub-superscripts :END: - *Type:* (choice (const :tag "Always in... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-use-sub-superscripts][Find modifications in git logs]] : Non-nil means interpret "_" and "^" for display. : : If you want to control how Org exports those characters, see : `org-export-with-sub-superscripts'. `org-use-sub-superscripts' : used to be an alias for `org-export-with-sub-superscripts' in : Org <8.0, it is not anymore. : : When this option is turned on, you can use TeX-like syntax for : sub- and superscripts within the buffer. Several characters after : "_" or "^" will be considered as a single item - so grouping : with {} is normally not needed. For example, the following things : will be parsed as single sub- or superscripts: : : 10^24 or 10^tau several digits will be considered 1 item. : 10^-12 or 10^-tau a leading sign with digits or a word : x^2-y^3 will be read as x^2 - y^3, because items are : terminated by almost any nonword/nondigit char. : x_{i^2} or x^(2-i) braces or parenthesis do grouping. : : Still, ambiguity is possible. So when in doubt, use {} to enclose : the sub/superscript. If you set this variable to the symbol `{}', : the braces are *required* in order to trigger interpretations as : sub/superscript. This can be helpful in documents that need "_" : frequently in plain text. ** org-agenda-insert-diary-extract-time =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-insert-diary-extract-time :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means extract any time specification from the diary entry. ** org-html-footnote-format =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-footnote-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-footnote-format][Find modifications in git logs]] : The format for the footnote reference. : %s will be replaced by the footnote reference itself. ** org-texinfo-remove-logfiles =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-remove-logfiles :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-remove-logfiles][Find modifications in git logs]] : Non-nil means remove the logfiles produced by compiling a Texinfo file. : By default, logfiles are files with these extensions: .aux, .toc, : .cp, .fn, .ky, .pg and .tp. To define the set of logfiles to remove, : set `org-texinfo-logfiles-extensions'. ** org-html-format-headline-function =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-format-headline-function :END: - *Type:* function - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-headline-function][Find modifications in git logs]] : Function to format headline text. : : This function will be called with six arguments: : TODO the todo keyword (string or nil). : TODO-TYPE the type of todo (symbol: `todo', `done', nil) : PRIORITY the priority of the headline (integer or nil) : TEXT the main headline text (string). : TAGS the tags (string or nil). : INFO the export options (plist). : : The function result will be used in the section format string. ** org-archive-file-header-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-archive-file-header-format :END: - *Type:* string - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-file-header-format][Find modifications in git logs]] : The header format string for newly created archive files. : When nil, no header will be inserted. : When a string, a %s formatter will be replaced by the file name. ** org-protocol-default-template-key =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-protocol-default-template-key :END: - *Type:* (choice (const nil) (string)) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-protocol.el][org-protocol.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-protocol-default-template-key][Find modifications in git logs]] : The default template key to use. : This is usually a single character string but can also be a : string with two characters. ** org-latex-known-warnings =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-known-warnings :END: - *Type:* (repeat (cons (string :tag "Re... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-known-warnings][Find modifications in git logs]] : Alist of regular expressions and associated messages for the user. : The regular expressions are used to find possible warnings in the : log of a latex-run. These warnings will be reported after : calling `org-latex-compile'. ** org-clock-clocktable-formatter =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-clocktable-formatter :END: - *Type:* function - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocktable-formatter][Find modifications in git logs]] : Function to turn clocking data into a table. : For more information, see `org-clocktable-write-default'. ** org-bibtex-tags =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-bibtex-tags :END: - *Type:* (repeat :tag "Tag" (string)) - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-tags][Find modifications in git logs]] : List of tag(s) that should be added to new bib entries. ** org-lowest-priority =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-lowest-priority :END: - *Type:* character - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-lowest-priority][Find modifications in git logs]] : The lowest priority of TODO items. A character like ?A, ?B etc. : Must have a larger ASCII number than `org-highest-priority'. ** org-agenda-log-mode-add-notes =t= :PROPERTIES: :CUSTOM_ID: org-agenda-log-mode-add-notes :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means add first line of notes to log entries in agenda views. : If a log item like a state change or a clock entry is associated with : notes, the first line of these notes will be added to the entry in the : agenda display. ** org-pretty-entities =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-pretty-entities :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-pretty-entities][Find modifications in git logs]] : Non-nil means show entities as UTF8 characters. : When nil, the \name form remains in the buffer. ** org-ascii-list-margin =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-ascii-list-margin :END: - *Type:* integer - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-list-margin][Find modifications in git logs]] : Width of margin used for plain lists, in characters. : This margin applies to top level list only, not to its : sub-lists. ** org-id-track-globally =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-id-track-globally :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-id.el][org-id.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-id-track-globally][Find modifications in git logs]] : Non-nil means track IDs through files, so that links work globally. : This work by maintaining a hash table for IDs and writing this table : to disk when exiting Emacs. Because of this, it works best if you use : a single Emacs process, not many. : : When nil, IDs are not tracked. Links to IDs will still work within : a buffer, but not if the entry is located in another file. : IDs can still be used if the entry with the id is in the same file as : the link. ** org-publish-sitemap-file-entry-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-publish-sitemap-file-entry-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-compat.el][org-compat.el]] - [[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]] : Format string for site-map file entry. : You could use brackets to delimit on what part the link will be. : : %t is the title. : %a is the author. : %d is the date formatted using `org-publish-sitemap-date-format'. ** org-babel-latex-htlatex-packages =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-latex-htlatex-packages :END: - *Type:* (repeat (string)) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-latex.el][ob-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-latex-htlatex-packages][Find modifications in git logs]] : Packages to use for htlatex export. ** org-export-coding-system =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-coding-system :END: - *Type:* coding-system - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-coding-system][Find modifications in git logs]] : Coding system for the exported file. ** org-texinfo-inactive-timestamp-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-inactive-timestamp-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-inactive-timestamp-format][Find modifications in git logs]] : A printf format string to be applied to inactive timestamps. ** org-habit-show-habits-only-for-today =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-habit-show-habits-only-for-today :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]] - [[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]] : If non-nil, only show habits on today's agenda, and not for future days. : Note that even when shown for future days, the graph is always : relative to the current effective date. ** org-ascii-table-use-ascii-art =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-ascii-table-use-ascii-art :END: - *Type:* boolean - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]] - [[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]] : Non-nil means table.el tables are turned into ascii-art. : : It only makes sense when export charset is `utf-8'. It is nil by : default since it requires ascii-art-to-unicode.el package. You : can download it here: : : http://gnuvola.org/software/j/aa2u/ascii-art-to-unicode.el. ** org-html-head-include-scripts =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-head-include-scripts :END: - *Type:* boolean - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-head-include-scripts][Find modifications in git logs]] : Non-nil means include the JavaScript snippets in exported HTML files. : The actual script is defined in `org-html-scripts' and should : not be modified. ** org-todo-state-tags-triggers =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-todo-state-tags-triggers :END: - *Type:* (repeat (cons (choice :tag "Wh... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-state-tags-triggers][Find modifications in git logs]] : Tag changes that should be triggered by TODO state changes. : This is a list. Each entry is : : (state-change (tag . flag) .......) : : State-change can be a string with a state, and empty string to indicate the : state that has no TODO keyword, or it can be one of the symbols `todo' : or `done', meaning any not-done or done state, respectively. ** org-babel-C++-compiler =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-C++-compiler :END: - *Type:* string - *Since:* Emacs version 24.3 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-C++-compiler][Find modifications in git logs]] : Command used to compile a C++ source code file into an executable. : May be either a command in the path, like g++ : or an absolute path name, like /usr/local/bin/g++ : parameter may be used, like g++ -v ** org-texinfo-link-with-unknown-path-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-link-with-unknown-path-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[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]] : Format string for links with unknown path type. ** org-table-copy-increment =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-copy-increment :END: - *Type:* (choice (const :tag "Use the d... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-copy-increment][Find modifications in git logs]] : Non-nil means increment when copying current field with `\[org-table-copy-down]'. ** org-treat-insert-todo-heading-as-state-change =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-treat-insert-todo-heading-as-state-change :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Non-nil means inserting a TODO heading is treated as state change. : So when the command `\[org-insert-todo-heading]' is used, state change : logging will apply if appropriate. When nil, the new TODO item will : be inserted directly, and no logging will take place. ** org-rss-image-url ="https://orgmode.org/worg/images/orgmode/org-mo...= :PROPERTIES: :CUSTOM_ID: org-rss-image-url :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-rss.el][ox-rss.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-rss-image-url][Find modifications in git logs]] : The URL of the an image for the RSS feed. ** org-latex-images-centered =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-images-centered :END: - *Type:* boolean - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-images-centered][Find modifications in git logs]] : When non-nil, images are centered. ** org-occur-case-fold-search =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-occur-case-fold-search :END: - *Type:* (choice (const :tag "Case-sens... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-occur-case-fold-search][Find modifications in git logs]] : Non-nil means `org-occur' should be case-insensitive. : If set to `smart' the search will be case-insensitive only if it : doesn't specify any upper case character. ** org-duration-units =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-duration-units :END: - *Type:* (choice (const :tag "H:MM" (qu... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-duration.el][org-duration.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-duration-units][Find modifications in git logs]] : Conversion factor to minutes for a duration. : : Each entry has the form (UNIT . MODIFIER). : : In a duration string, a number followed by UNIT is multiplied by : the specified number of MODIFIER to obtain a duration in minutes. : : For example, the following value : : \=`(("min" . 1) : ("h" . 60) : ("d" . ,(* 60 8)) : ("w" . ,(* 60 8 5)) : ("m" . ,(* 60 8 5 4)) : ("y" . ,(* 60 8 5 4 10))) : : is meaningful if you work an average of 8 hours per day, 5 days : a week, 4 weeks a month and 10 months a year. : : When setting this variable outside the Customize interface, make : sure to call the following command: : : \[org-duration-set-regexps] ** org-man-source-highlight =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-man-source-highlight :END: - *Type:* boolean - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-source-highlight][Find modifications in git logs]] : Use GNU source highlight to embellish source blocks ** org-table-formula-evaluate-inline =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-formula-evaluate-inline :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-evaluate-inline][Find modifications in git logs]] : Non-nil means TAB and RET evaluate a formula in current table field. : If the current field starts with an equal sign, it is assumed to be a formula : which should be evaluated as described in the manual and in the documentation : string of the command `org-table-eval-formula'. This feature requires the : Emacs calc package. : When this variable is nil, formula calculation is only available through : the command `\[org-table-eval-formula]'. ** org-capture-templates =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-capture-templates :END: - *Type:* (repeat (choice :value ("" "" ... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-templates][Find modifications in git logs]] : Templates for the creation of new entries. : : Each entry is a list with the following items: : : keys The keys that will select the template, as a string, characters : only, for example "a" for a template to be selected with a : single key, or "bt" for selection with two keys. When using : several keys, keys using the same prefix key must be together : in the list and preceded by a 2-element entry explaining the : prefix key, for example : : ("b" "Templates for marking stuff to buy") : : The "C" key is used by default for quick access to the : customization of the template variable. But if you want to use : that key for a template, you can. : : description A short string describing the template, will be shown during : selection. : : type The type of entry. Valid types are: : entry an Org node, with a headline. Will be filed : as the child of the target entry or as a : top-level entry. : item a plain list item, will be placed in the : first plain list at the target : location. : checkitem a checkbox item. This differs from the : plain list item only is so far as it uses a : different default template. : table-line a new line in the first table at target location. : plain text to be inserted as it is. : : target Specification of where the captured item should be placed. : In Org files, targets usually define a node. Entries will : become children of this node, other types will be added to the : table or list in the body of this node. : : Most target specifications contain a file name. If that file : name is the empty string, it defaults to `org-default-notes-file'. : A file can also be given as a variable or as a function called : with no argument. When an absolute path is not specified for a : target, it is taken as relative to `org-directory'. : : Valid values are: : : (file "path/to/file") : Text will be placed at the beginning or end of that file : : (id "id of existing Org entry") : File as child of this entry, or in the body of the entry : : (file+headline "path/to/file" "node headline") : Fast configuration if the target heading is unique in the file : : (file+olp "path/to/file" "Level 1 heading" "Level 2" ...) : For non-unique headings, the full outline path is safer : : (file+regexp "path/to/file" "regexp to find location") : File to the entry matching regexp : : (file+olp+datetree "path/to/file" "Level 1 heading" ...) : Will create a heading in a date tree for today's date. : If no heading is given, the tree will be on top level. : To prompt for date instead of using TODAY, use the : :time-prompt property. To create a week-tree, use the : :tree-type property. : : (file+function "path/to/file" function-finding-location) : A function to find the right location in the file : : (clock) : File to the entry that is currently being clocked : : (function function-finding-location) : Most general way: write your own function which both visits : the file and moves point to the right location : : template The template for creating the capture item. If you leave this : empty, an appropriate default template will be used. See below : for more details. Instead of a string, this may also be one of : : (file "/path/to/template-file") : (function function-returning-the-template) : : in order to get a template from a file, or dynamically : from a function. : : The rest of the entry is a property list of additional options. Recognized : properties are: : : :prepend Normally newly captured information will be appended at : the target location (last child, last table line, : last list item...). Setting this property will : change that. : : :immediate-finish When set, do not offer to edit the information, just : file it away immediately. This makes sense if the : template only needs information that can be added : automatically. : : :jump-to-captured When set, jump to the captured entry when finished. : : :empty-lines Set this to the number of lines the should be inserted : before and after the new item. Default 0, only common : other value is 1. : : :empty-lines-before Set this to the number of lines the should be inserted : before the new item. Overrides :empty-lines for the : number lines inserted before. : : :empty-lines-after Set this to the number of lines the should be inserted : after the new item. Overrides :empty-lines for the : number of lines inserted after. : : :clock-in Start the clock in this item. : : :clock-keep Keep the clock running when filing the captured entry. : : :clock-resume Start the interrupted clock when finishing the capture. : Note that :clock-keep has precedence over :clock-resume. : When setting both to t, the current clock will run and : the previous one will not be resumed. : : :time-prompt Prompt for a date/time to be used for date/week trees : and when filling the template. : : :tree-type When `week', make a week tree instead of the month tree. : : :unnarrowed Do not narrow the target buffer, simply show the : full buffer. Default is to narrow it so that you : only see the new stuff. : : :table-line-pos Specification of the location in the table where the : new line should be inserted. It should be a string like : "II-3", meaning that the new line should become the : third line before the second horizontal separator line. : : :kill-buffer If the target file was not yet visited by a buffer when : capture was invoked, kill the buffer again after capture : is finalized. : : The template defines the text to be inserted. Often this is an : Org mode entry (so the first line should start with a star) that : will be filed as a child of the target headline. It can also be : freely formatted text. Furthermore, the following %-escapes will : be replaced with content and expanded: : : %[pathname] Insert the contents of the file given by : `pathname'. These placeholders are expanded at the very : beginning of the process so they can be used to extend the : current template. : %(sexp) Evaluate elisp `(sexp)' and replace it with the results. : Only placeholders pre-existing within the template, or : introduced with %[pathname] are expanded this way. Since this : happens after expanding non-interactive %-escapes, those can : be used to fill the expression. : %<...> The result of format-time-string on the ... format specification. : %t Time stamp, date only. : %T Time stamp with date and time. : %u, %U Like the above, but inactive time stamps. : %i Initial content, copied from the active region. If %i is : indented, the entire inserted text will be indented as well. : %a Annotation, normally the link created with `org-store-link'. : %A Like %a, but prompt for the description part. : %l Like %a, but only insert the literal link. : %c Current kill ring head. : %x Content of the X clipboard. : %k Title of currently clocked task. : %K Link to currently clocked task. : %n User name (taken from the variable `user-full-name'). : %f File visited by current buffer when org-capture was called. : %F Full path of the file or directory visited by current buffer. : %:keyword Specific information for certain link types, see below. : %^g Prompt for tags, with completion on tags in target file. : %^G Prompt for tags, with completion on all tags in all agenda files. : %^t Like %t, but prompt for date. Similarly %^T, %^u, %^U. : You may define a prompt like: %^{Please specify birthday}t : %^C Interactive selection of which kill or clip to use. : %^L Like %^C, but insert as link. : %^{prop}p Prompt the user for a value for property `prop'. : %^{prompt} Prompt the user for a string and replace this sequence with it. : A default value and a completion table ca be specified like this: : %^{prompt|default|completion2|completion3|...}. : %? After completing the template, position cursor here. : %\1 ... %\N Insert the text entered at the nth %^{prompt}, where N : is a number, starting from 1. : : Apart from these general escapes, you can access information specific to : the link type that is created. For example, calling `org-capture' in emails : or in Gnus will record the author and the subject of the message, which you : can access with "%:from" and "%:subject", respectively. Here is a : complete list of what is recorded for each link type. : : Link type | Available information : ------------------------+------------------------------------------------------ : bbdb | %:type %:name %:company : vm, wl, mh, mew, rmail, | %:type %:subject %:message-id : gnus | %:from %:fromname %:fromaddress : | %:to %:toname %:toaddress : | %:fromto (either "to NAME" or "from NAME") : | %:date %:date-timestamp (as active timestamp) : | %:date-timestamp-inactive (as inactive timestamp) : gnus | %:group, for messages also all email fields : eww, w3, w3m | %:type %:url : info | %:type %:file %:node : calendar | %:type %:date : : When you need to insert a literal percent sign in the template, : you can escape ambiguous cases with a backward slash, e.g., \%i. ** org-latex-packages-alist =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-latex-packages-alist :END: - *Type:* (repeat (choice (list :tag "op... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-packages-alist][Find modifications in git logs]] : Alist of packages to be inserted in every LaTeX header. : : These will be inserted after `org-latex-default-packages-alist'. : Each element is either a cell or a string. : : A cell is of the format: : : ("options" "package" SNIPPET-FLAG) : : SNIPPET-FLAG, when non-nil, indicates that this package is also : needed when turning LaTeX snippets into images for inclusion into : non-LaTeX output. : : A string will be inserted as-is in the header of the document. : : Make sure that you only list packages here which: : : - you want in every file; : - do not conflict with the setup in `org-format-latex-header'; : - do not conflict with the default packages in : `org-latex-default-packages-alist'. ** org-latex-title-command =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-title-command :END: - *Type:* (string :tag "Format string") - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-title-command][Find modifications in git logs]] : The command used to insert the title just after \begin{document}. : : This format string may contain these elements: : : %a for AUTHOR keyword : %t for TITLE keyword : %s for SUBTITLE keyword : %k for KEYWORDS line : %d for DESCRIPTION line : %c for CREATOR line : %l for Language keyword : %L for capitalized language keyword : %D for DATE keyword : : If you need to use a "%" character, you need to escape it : like that: "%%". : : Setting :latex-title-command in publishing projects will take : precedence over this variable. ** org-bibtex-tags-are-keywords =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-bibtex-tags-are-keywords :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-tags-are-keywords][Find modifications in git logs]] : Convert the value of the keywords field to tags and vice versa. : : When non-nil, comma-separated entries in a bibtex entry's keywords : field will be converted to Org tags. Note: spaces will be escaped : with underscores, and characters that are not permitted in Org : tags will be removed. : : When non-nil, local tags in an Org entry will be exported as : a comma-separated string of keywords when exported to bibtex. : If `org-bibtex-inherit-tags' is non-nil, inherited tags will also : be exported as keywords. Tags defined in `org-bibtex-tags' or : `org-bibtex-no-export-tags' will not be exported. ** org-html-home/up-format =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-home/up-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-home/up-format][Find modifications in git logs]] : Snippet used to insert the HOME and UP links. : This is a format string, the first %s will receive the UP link, : the second the HOME link. If both `org-html-link-up' and : `org-html-link-home' are empty, the entire snippet will be : ignored. ** org-mobile-checksum-binary =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-mobile-checksum-binary :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-checksum-binary][Find modifications in git logs]] : Executable used for computing checksums of agenda files. ** org-clock-mode-line-total =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-mode-line-total :END: - *Type:* (choice (const :tag "Current c... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-mode-line-total][Find modifications in git logs]] : Default setting for the time included for the mode line clock. : This can be overruled locally using the CLOCK_MODELINE_TOTAL property. : Allowed values are: : : current Only the time in the current instance of the clock : today All time clocked into this task today : repeat All time clocked into this task since last repeat : all All time ever recorded for this task : auto Automatically, either `all', or `repeat' for repeating tasks ** org-structure-template-alist =(funcall (function (closure (a...= :PROPERTIES: :CUSTOM_ID: org-structure-template-alist :END: - *Type:* (repeat (list (string :tag "Ke... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-structure-template-alist][Find modifications in git logs]] : Structure completion elements. : This is a list of abbreviation keys and values. The value gets inserted : if you type `<' followed by the key and then press the completion key, : usually `TAB'. %file will be replaced by a file name after prompting : for the file using completion. The cursor will be placed at the position : of the `?' in the template. : There are two templates for each key, the first uses the original Org syntax, : the second uses Emacs Muse-like syntax tags. These Muse-like tags become : the default when the /org-mtags.el/ module has been loaded. See also the : variable `org-mtags-prefer-muse-templates'. ** orgtbl-radio-table-templates =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: orgtbl-radio-table-templates :END: - *Type:* (repeat (list (symbol :tag "Ma... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=orgtbl-radio-table-templates][Find modifications in git logs]] : Templates for radio tables in different major modes. : Each template must define lines that will be treated as a comment and that : must contain the "BEGIN RECEIVE ORGTBL %n" and "END RECEIVE ORGTBL" : lines where "%n" will be replaced with the name of the table during : insertion of the template. The transformed table will later be inserted : between these lines. : : The template should also contain a minimal table in a multiline comment. : If multiline comments are not possible in the buffer language, : you can pack it into a string that will not be used when the code : is compiled or executed. Above the table will you need a line with : the fixed string "#+ORGTBL: SEND", followed by instruction on how to : convert the table into a data structure useful in the : language of the buffer. Check the manual for the section on : "Translator functions", and more generally check out : https://orgmode.org/manual/Tables-in-arbitrary-syntax.html#Tables-in-arbitrary-syntax : : All occurrences of %n in a template will be replaced with the name of the : table, obtained by prompting the user. ** org-odt-use-date-fields =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-use-date-fields :END: - *Type:* boolean - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-use-date-fields][Find modifications in git logs]] : Non-nil, if timestamps should be exported as date fields. : : When nil, export timestamps as plain text. : : When non-nil, map `org-time-stamp-custom-formats' to a pair of : OpenDocument date-styles with names "OrgDate1" and "OrgDate2" : respectively. A timestamp with no time component is formatted : with style "OrgDate1" while one with explicit hour and minutes : is formatted with style "OrgDate2". : : This feature is experimental. Most (but not all) of the common : %-specifiers in `format-time-string' are supported. : Specifically, locale-dependent specifiers like "%c", "%x" are : formatted as canonical Org timestamps. For finer control, avoid : these %-specifiers. : : Textual specifiers like "%b", "%h", "%B", "%a", "%A" : etc., are displayed by the application in the default language : and country specified in `org-odt-styles-file'. Note that the : default styles file uses language "en" and country "GB". You : can localize the week day and month strings in the exported : document by setting the default language and country either using : the application UI or through a custom styles file. : : See `org-odt--build-date-styles' for implementation details. ** org-email-link-description-format =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-email-link-description-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-email-link-description-format][Find modifications in git logs]] : Format of the description part of a link to an email or usenet message. : The following %-escapes will be replaced by corresponding information: : : %F full "From" field : %f name, taken from "From" field, address if no name : %T full "To" field : %t first name in "To" field, address if no name : %c correspondent. Usually "from NAME", but if you sent it yourself, it : will be "to NAME". See also the variable `org-from-is-user-regexp'. : %s subject : %d date : %m message-id. : : You may use normal field width specification between the % and the letter. : This is for example useful to limit the length of the subject. : : Examples: "%f on: %.30s", "Email from %f", "Email %c" ** org-agenda-inhibit-startup =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-agenda-inhibit-startup :END: - *Type:* boolean - *Since:* Emacs version 24.3 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-inhibit-startup][Find modifications in git logs]] : Inhibit startup when preparing agenda buffers. : When this variable is t, the initialization of the Org agenda : buffers is inhibited: e.g. the visibility state is not set, the : tables are not re-aligned, etc. ** org-M-RET-may-split-line =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-M-RET-may-split-line :END: - *Type:* (choice (const :tag "Always" t... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Non-nil means M-RET will split the line at the cursor position. : When nil, it will go to the end of the line before making a : new line. : You may also set this option in a different way for different : contexts. Valid contexts are: : : headline when creating a new headline : item when creating a new item : table in a table field : default the value to be used for all contexts not explicitly : customized ** org-agenda-show-future-repeats =t= :PROPERTIES: :CUSTOM_ID: org-agenda-show-future-repeats :END: - *Type:* (choice (const :tag "Show all ... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-future-repeats][Find modifications in git logs]] : Non-nil shows repeated entries in the future part of the agenda. : When set to the symbol `next' only the first future repeat is shown. ** org-koma-letter-author =(quote user-full-name)= :PROPERTIES: :CUSTOM_ID: org-koma-letter-author :END: - *Type:* (radio (function-item user-ful... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-author][Find modifications in git logs]] : Sender's name. : : This variable defaults to calling the function `user-full-name' : which just returns the current function `user-full-name'. : Alternatively a string, nil or a function may be given. : Functions must return a string. : : This option can also be set with the AUTHOR keyword. ** org-bibtex-prefix =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-bibtex-prefix :END: - *Type:* (choice (const nil) (string)) - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-prefix][Find modifications in git logs]] : Optional prefix for all bibtex property names. : For example setting to `BIB_' would allow interoperability with fireforg. ** org-latex-diary-timestamp-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-diary-timestamp-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-diary-timestamp-format][Find modifications in git logs]] : A printf format string to be applied to diary timestamps. ** org-attach-archive-delete =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-attach-archive-delete :END: - *Type:* (choice (const :tag "Never del... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-archive-delete][Find modifications in git logs]] : Non-nil means attachments are deleted upon archiving a subtree. : When set to `query', ask the user instead. ** org-html-format-inlinetask-function =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-format-inlinetask-function :END: - *Type:* function - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-format-inlinetask-function][Find modifications in git logs]] : Function called to format an inlinetask in HTML code. : : The function must accept seven parameters: : TODO the todo keyword, as a string : TODO-TYPE the todo type, a symbol among `todo', `done' and nil. : PRIORITY the inlinetask priority, as a string : NAME the inlinetask name, as a string. : TAGS the inlinetask tags, as a list of strings. : CONTENTS the contents of the inlinetask, as a string. : INFO the export options, as a plist : : The function should return the string to be exported. ** org-capture-use-agenda-date =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-capture-use-agenda-date :END: - *Type:* boolean - *Since:* Emacs version 24.3 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-capture.el][org-capture.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-capture-use-agenda-date][Find modifications in git logs]] : Non-nil means use the date at point when capturing from agendas. : When nil, you can still capture using the date at point with : `\[org-agenda-capture]'. ** org-refile-use-outline-path =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-refile-use-outline-path :END: - *Type:* (choice (const :tag "Not" nil)... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-use-outline-path][Find modifications in git logs]] : Non-nil means provide refile targets as paths. : So a level 3 headline will be available as level1/level2/level3. : : When the value is `file', also include the file name (without directory) : into the path. In this case, you can also stop the completion after : the file name, to get entries inserted as top level in the file. : : When `full-file-path', include the full file path. : : When `buffer-name', use the buffer name. ** org-latex-inactive-timestamp-format =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-inactive-timestamp-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-inactive-timestamp-format][Find modifications in git logs]] : A printf format string to be applied to inactive timestamps. ** org-latex-pdf-process =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-pdf-process :END: - *Type:* (choice (repeat :tag "Shell co... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-pdf-process][Find modifications in git logs]] : Commands to process a LaTeX file to a PDF file. : : This is a list of strings, each of them will be given to the : shell as a command. %f in the command will be replaced by the : relative file name, %F by the absolute file name, %b by the file : base name (i.e. without directory and extension parts), %o by the : base directory of the file, %O by the absolute file name of the : output file, %latex is the LaTeX compiler (see : `org-latex-compiler'), and %bib is the BibTeX-like compiler (see : `org-latex-bib-compiler'). : : The reason why this is a list is that it usually takes several : runs of `pdflatex', maybe mixed with a call to `bibtex'. Org : does not have a clever mechanism to detect which of these : commands have to be run to get to a stable result, and it also : does not do any error checking. : : Consider a smart LaTeX compiler such as `texi2dvi' or `latexmk', : which calls the "correct" combinations of auxiliary programs. : : Alternatively, this may be a Lisp function that does the : processing, so you could use this to apply the machinery of : AUCTeX or the Emacs LaTeX mode. This function should accept the : file name as its single argument. ** org-agenda-entry-text-exclude-regexps =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-entry-text-exclude-regexps :END: - *Type:* (repeat (regexp)) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : List of regular expressions to clean up entry text. : The complete matches of all regular expressions in this list will be : removed from entry text before it is shown in the agenda. ** org-latex-listings =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-listings :END: - *Type:* (choice (const :tag "Use listi... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-listings][Find modifications in git logs]] : Non-nil means export source code using the listings package. : : This package will fontify source code, possibly even with color. : If you want to use this, you also need to make LaTeX use the : listings package, and if you want to have color, the color : package. Just add these to `org-latex-packages-alist', for : example using customize, or with something like: : : (require \='ox-latex) : (add-to-list \='org-latex-packages-alist \='("" "listings")) : (add-to-list \='org-latex-packages-alist \='("" "color")) : : Alternatively, : : (setq org-latex-listings \='minted) : : causes source code to be exported using the minted package as : opposed to listings. If you want to use minted, you need to add : the minted package to `org-latex-packages-alist', for example : using customize, or with : : (require \='ox-latex) : (add-to-list \='org-latex-packages-alist \='("newfloat" "minted")) : : In addition, it is necessary to install pygments : (http://pygments.org), and to configure the variable : `org-latex-pdf-process' so that the -shell-escape option is : passed to pdflatex. : : The minted choice has possible repercussions on the preview of : latex fragments (see `org-preview-latex-fragment'). If you run : into previewing problems, please consult : : https://orgmode.org/worg/org-tutorials/org-latex-preview.html ** org-columns-ellipses =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-columns-ellipses :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-columns-ellipses][Find modifications in git logs]] : The ellipses to be used when a field in column view is truncated. : When this is the empty string, as many characters as possible are shown, : but then there will be no visual indication that the field has been truncated. : When this is a string of length N, the last N characters of a truncated : field are replaced by this string. If the column is narrower than the : ellipses string, only part of the ellipses string will be shown. ** org-clock-report-include-clocking-task =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-report-include-clocking-task :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[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]] : When non-nil, include the current clocking task time in clock reports. ** org-html-klipsify-src =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-klipsify-src :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-klipsify-src][Find modifications in git logs]] : When non-nil, source code blocks are editable in exported presentation. ** org-latex-to-mathml-jar-file =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-latex-to-mathml-jar-file :END: - *Type:* (choice (const :tag "None" nil... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[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]] : Value of"%j" in `org-latex-to-mathml-convert-command'. : Use this to specify additional executable file say a jar file. : : When using MathToWeb as the converter, specify the full-path to : your mathtoweb.jar file. ** org-agenda-sorting-strategy =(quote ((agenda habit-down tim...= :PROPERTIES: :CUSTOM_ID: org-agenda-sorting-strategy :END: - *Type:* (choice (repeat :tag "General"... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-sorting-strategy][Find modifications in git logs]] : Sorting structure for the agenda items of a single day. : This is a list of symbols which will be used in sequence to determine : if an entry should be listed before another entry. The following : symbols are recognized: : : time-up Put entries with time-of-day indications first, early first : time-down Put entries with time-of-day indications first, late first : timestamp-up Sort by any timestamp, early first : timestamp-down Sort by any timestamp, late first : scheduled-up Sort by scheduled timestamp, early first : scheduled-down Sort by scheduled timestamp, late first : deadline-up Sort by deadline timestamp, early first : deadline-down Sort by deadline timestamp, late first : ts-up Sort by active timestamp, early first : ts-down Sort by active timestamp, late first : tsia-up Sort by inactive timestamp, early first : tsia-down Sort by inactive timestamp, late first : category-keep Keep the default order of categories, corresponding to the : sequence in `org-agenda-files'. : category-up Sort alphabetically by category, A-Z. : category-down Sort alphabetically by category, Z-A. : tag-up Sort alphabetically by last tag, A-Z. : tag-down Sort alphabetically by last tag, Z-A. : priority-up Sort numerically by priority, high priority last. : priority-down Sort numerically by priority, high priority first. : todo-state-up Sort by todo state, tasks that are done last. : todo-state-down Sort by todo state, tasks that are done first. : effort-up Sort numerically by estimated effort, high effort last. : effort-down Sort numerically by estimated effort, high effort first. : user-defined-up Sort according to `org-agenda-cmp-user-defined', high last. : user-defined-down Sort according to `org-agenda-cmp-user-defined', high first. : habit-up Put entries that are habits first : habit-down Put entries that are habits last : alpha-up Sort headlines alphabetically : alpha-down Sort headlines alphabetically, reversed : : The different possibilities will be tried in sequence, and testing stops : if one comparison returns a "not-equal". For example, the default : '(time-up category-keep priority-down) : means: Pull out all entries having a specified time of day and sort them, : in order to make a time schedule for the current day the first thing in the : agenda listing for the day. Of the entries without a time indication, keep : the grouped in categories, don't sort the categories, but keep them in : the sequence given in `org-agenda-files'. Within each category sort by : priority. : : Leaving out `category-keep' would mean that items will be sorted across : categories by priority. : : Instead of a single list, this can also be a set of list for specific : contents, with a context symbol in the car of the list, any of : `agenda', `todo', `tags', `search' for the corresponding agenda views. : : Custom commands can bind this variable in the options section. ** org-inlinetask-show-first-star =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-inlinetask-show-first-star :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-show-first-star][Find modifications in git logs]] : Non-nil means display the first star of an inline task as additional marker. : When nil, the first star is not shown. ** org-html-htmlize-font-prefix =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-htmlize-font-prefix :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-font-prefix][Find modifications in git logs]] : The prefix for CSS class names for htmlize font specifications. ** org-texinfo-tables-verbatim =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-texinfo-tables-verbatim :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-texinfo.el][ox-texinfo.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-texinfo-tables-verbatim][Find modifications in git logs]] : When non-nil, tables are exported verbatim. ** org-odt-pixels-per-inch =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-odt-pixels-per-inch :END: - *Type:* float - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-pixels-per-inch][Find modifications in git logs]] : Scaling factor for converting images pixels to inches. : Use this for sizing of embedded images. See Info node `(org) : Images in ODT export' for more information. ** org-html-viewport =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-viewport :END: - *Type:* (choice (const :tag "Disable" ... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-viewport][Find modifications in git logs]] : Viewport options for mobile-optimized sites. : : The following values are recognized : : width Size of the viewport. : initial-scale Zoom level when the page is first loaded. : minimum-scale Minimum allowed zoom level. : maximum-scale Maximum allowed zoom level. : user-scalable Whether zoom can be changed. : : The viewport meta tag is inserted if this variable is non-nil. : : See the following site for a reference: : https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag ** org-babel-process-comment-text =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-process-comment-text :END: - *Type:* function - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-process-comment-text][Find modifications in git logs]] : Function called to process raw Org text collected to be : inserted as comments in tangled source-code files. The function : should take a single string argument and return a string : result. The default value is `org-remove-indentation'. ** org-koma-letter-use-phone =nil= :PROPERTIES: :CUSTOM_ID: org-koma-letter-use-phone :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-use-phone][Find modifications in git logs]] : Non-nil prints sender's phone number. : This option can also be set with the OPTIONS keyword, e.g.: : "phone:t". ** org-agenda-tags-todo-honor-ignore-options =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-tags-todo-honor-ignore-options :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means honor todo-list ignores options also in tags-todo search. : The variables : `org-agenda-todo-ignore-with-date', : `org-agenda-todo-ignore-timestamp', : `org-agenda-todo-ignore-scheduled', : `org-agenda-todo-ignore-deadlines' : make the global TODO list skip entries that have time stamps of certain : kinds. If this option is set, the same options will also apply for the : tags-todo search, which is the general tags/property matcher : restricted to unfinished TODO entries only. ** org-agenda-todo-ignore-scheduled =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-todo-ignore-scheduled :END: - *Type:* (choice (const :tag "Ignore fu... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-todo-ignore-scheduled][Find modifications in git logs]] : Non-nil means, ignore some scheduled TODO items when making TODO list. : This applies when creating the global todo list. : Valid values are: : : past Don't show entries scheduled today or in the past. : : future Don't show entries scheduled in the future. : The idea behind this is that by scheduling it, you don't want to : think about it until the scheduled date. : : all Don't show any scheduled entries in the global todo list. : The idea behind this is that by scheduling it, you have already : "taken care" of this item. : : t Same as `all', for backward compatibility. : : This variable can also have an integer as a value. See : `org-agenda-todo-ignore-timestamp' for more details. : : See also `org-agenda-todo-ignore-with-date'. : See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want : to make his option also apply to the tags-todo list. ** org-log-into-drawer =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-log-into-drawer :END: - *Type:* (choice (const :tag "Not into ... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-into-drawer][Find modifications in git logs]] : Non-nil means insert state change notes and time stamps into a drawer. : When nil, state changes notes will be inserted after the headline and : any scheduling and clock lines, but not inside a drawer. : : The value of this variable should be the name of the drawer to use. : LOGBOOK is proposed as the default drawer for this purpose, you can : also set this to a string to define the drawer of your choice. : : A value of t is also allowed, representing "LOGBOOK". : : A value of t or nil can also be set with on a per-file-basis with : : #+STARTUP: logdrawer : #+STARTUP: nologdrawer : : If this variable is set, `org-log-state-notes-insert-after-drawers' : will be ignored. : : You can set the property LOG_INTO_DRAWER to overrule this setting for : a subtree. : : Do not check directly this variable in a Lisp program. Call : function `org-log-into-drawer' instead. ** org-icalendar-combined-description =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-icalendar-combined-description :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combined-description][Find modifications in git logs]] : Calendar description for the combined iCalendar (all agenda files). ** org-table-formula-field-format =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-formula-field-format :END: - *Type:* string - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-field-format][Find modifications in git logs]] : Format for fields which contain the result of a formula. : For example, using "~%s~" will display the result within tilde : characters. Beware that modifying the display can prevent the : field from being used in another formula. ** org-agenda-start-on-weekday =1= :PROPERTIES: :CUSTOM_ID: org-agenda-start-on-weekday :END: - *Type:* (choice (const :tag "Today" ni... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-start-on-weekday][Find modifications in git logs]] : Non-nil means start the overview always on the specified weekday. : 0 denotes Sunday, 1 denotes Monday, etc. : When nil, always start on the current day. : Custom commands can set this variable in the options section. ** org-agenda-search-headline-for-time =t= :PROPERTIES: :CUSTOM_ID: org-agenda-search-headline-for-time :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means search headline for a time-of-day. : If the headline contains a time-of-day in one format or another, it will : be used to sort the entry into the time sequence of items for a day. : Some people have time stamps in the headline that refer to the creation : time or so, and then this produces an unwanted side effect. If this is : the case for your, use this variable to turn off searching the headline : for a time. ** org-learn-always-reschedule =nil= :PROPERTIES: :CUSTOM_ID: org-learn-always-reschedule :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-learn.el][org-learn.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-learn-always-reschedule][Find modifications in git logs]] : If non-nil, always reschedule items, even if retention was "perfect". ** org-attach-git-annex-cutoff =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-attach-git-annex-cutoff :END: - *Type:* (choice (const :tag "None" nil... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-git-annex-cutoff][Find modifications in git logs]] : If non-nil, files larger than this will be annexed instead of stored. ** org-table-automatic-realign =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-automatic-realign :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-automatic-realign][Find modifications in git logs]] : Non-nil means automatically re-align table when pressing TAB or RETURN. : When nil, aligning is only done with `\[org-table-align]', or after column : removal/insertion. ** org-footnote-auto-label =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-footnote-auto-label :END: - *Type:* (choice (const :tag "Prompt fo... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-auto-label][Find modifications in git logs]] : Non-nil means define automatically new labels for footnotes. : Possible values are: : : nil Prompt the user for each label. : t Create unique labels of the form [fn:1], [fn:2], etc. : confirm Like t, but let the user edit the created value. : The label can be removed from the minibuffer to create : an anonymous footnote. : random Automatically generate a unique, random label. ** org-table-export-default-format =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-table-export-default-format :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-export-default-format][Find modifications in git logs]] : Default export parameters for `org-table-export'. : These can be overridden for a specific table by setting the : TABLE_EXPORT_FORMAT property. See the manual section on orgtbl : radio tables for the different export transformations and : available parameters. ** org-agenda-skip-archived-trees =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-agenda-skip-archived-trees :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-skip-archived-trees][Find modifications in git logs]] : Non-nil means the agenda will skip any items located in archived trees. : An archived tree is a tree marked with the tag ARCHIVE. The use of this : variable is no longer recommended, you should leave it at the value t. : Instead, use the key `v' to cycle the archives-mode in the agenda. ** org-footnote-auto-adjust =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-footnote-auto-adjust :END: - *Type:* (choice (const :tag "No adjust... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-footnote.el][org-footnote.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-footnote-auto-adjust][Find modifications in git logs]] : Non-nil means automatically adjust footnotes after insert/delete. : When this is t, after each insertion or deletion of a footnote, : simple fn:N footnotes will be renumbered, and all footnotes will be sorted. : If you want to have just sorting or just renumbering, set this variable : to `sort' or `renumber'. : : The main values of this variable can be set with in-buffer options: : : #+STARTUP: fnadjust : #+STARTUP: nofnadjust ** org-babel-tangle-lang-exts =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-tangle-lang-exts :END: - *Type:* (repeat (cons (string "Languag... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-tangle-lang-exts][Find modifications in git logs]] : Alist mapping languages to their file extensions. : The key is the language name, the value is the string that should : be inserted as the extension commonly used to identify files : written in this language. If no entry is found in this list, : then the name of the language is used. ** org-hidden-keywords =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-hidden-keywords :END: - *Type:* (set (const :tag "#+AUTHOR" au... - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hidden-keywords][Find modifications in git logs]] : List of symbols corresponding to keywords to be hidden the org buffer. : For example, a value \='(title) for this list will make the document's title : appear in the buffer without the initial #+TITLE: keyword. ** org-preview-latex-default-process =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-preview-latex-default-process :END: - *Type:* symbol - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-preview-latex-default-process][Find modifications in git logs]] : The default process to convert LaTeX fragments to image files. : All available processes and theirs documents can be found in : `org-preview-latex-process-alist', which see. ** org-publish-use-timestamps-flag =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-publish-use-timestamps-flag :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-publish.el][ox-publish.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-publish-use-timestamps-flag][Find modifications in git logs]] : Non-nil means use timestamp checking to publish only changed files. : When nil, do no timestamp checking and always publish all files. ** org-man-logfiles-extensions =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-man-logfiles-extensions :END: - *Type:* (repeat (string :tag "Extensio... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-logfiles-extensions][Find modifications in git logs]] : The list of file extensions to consider as Man logfiles. ** org-bibtex-treat-headline-as-title =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-bibtex-treat-headline-as-title :END: - *Type:* boolean - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]] - [[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]] : Treat headline text as title if title property is absent. : If an entry is missing a title property, use the headline text as : the property. If this value is t, `org-bibtex-check' will ignore : a missing title field. ** org-blank-before-new-entry =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-blank-before-new-entry :END: - *Type:* (list (cons (const heading) (c... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-blank-before-new-entry][Find modifications in git logs]] : Should `org-insert-heading' leave a blank line before new heading/item? : The value is an alist, with `heading' and `plain-list-item' as CAR, : and a boolean flag as CDR. The cdr may also be the symbol `auto', in : which case Org will look at the surrounding headings/items and try to : make an intelligent decision whether to insert a blank line or not. ** org-feed-default-template =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-feed-default-template :END: - *Type:* (string :tag "Template") - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-feed.el][org-feed.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-feed-default-template][Find modifications in git logs]] : Template for the Org node created from RSS feed items. : This is just the default, each feed can specify its own. : Any fields from the feed item can be interpolated into the template with : %name, for example %title, %description, %pubDate etc. In addition, the : following special escapes are valid as well: : : %h The title, or the first line of the description : %t The date as a stamp, either from (if present), or : the current date : %T Date and time : %u,%U Like %t,%T, but inactive time stamps : %a A link, from if that is a permalink, else from : %(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple : %-escapes above can be used as arguments, e.g. %(capitalize \"%h\") ** org-time-stamp-custom-formats =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-time-stamp-custom-formats :END: - *Type:* sexp - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-time-stamp-custom-formats][Find modifications in git logs]] : Custom formats for time stamps. See `format-time-string' for the syntax. : These are overlaid over the default ISO format if the variable : `org-display-custom-times' is set. Time like %H:%M should be at the : end of the second format. The custom formats are also honored by export : commands, if custom time display is turned on at the time of export. ** org-man-table-scientific-notation =(funcall (function (closure (o...= :PROPERTIES: :CUSTOM_ID: org-man-table-scientific-notation :END: - *Type:* (choice (string :tag "Format s... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-man.el][ox-man.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-man-table-scientific-notation][Find modifications in git logs]] : Format string to display numbers in scientific notation. : The format should have "%s" twice, for mantissa and exponent : (i.e. "%s\\times10^{%s}"). : : When nil, no transformation is made. ** org-babel-ruby-nil-to =(funcall (function (closure (i...= :PROPERTIES: :CUSTOM_ID: org-babel-ruby-nil-to :END: - *Type:* symbol - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-ruby.el][ob-ruby.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-ruby-nil-to][Find modifications in git logs]] : Replace nil in ruby tables with this before returning. ** org-babel-J-command =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-J-command :END: - *Type:* string - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-J.el][ob-J.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-J-command][Find modifications in git logs]] : Command to call J. ** org-babel-R-command =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-R-command :END: - *Type:* string - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-R.el][ob-R.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-R-command][Find modifications in git logs]] : Name of command to use for executing R code. ** org-clock-x11idle-program-name =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-x11idle-program-name :END: - *Type:* string - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-x11idle-program-name][Find modifications in git logs]] : Name of the program which prints X11 idle time in milliseconds. : : You can find x11idle.c in the contrib/scripts directory of the : Org git distribution. Or, you can do: : : sudo apt-get install xprintidle : : if you are using Debian. ** org-icalendar-with-timestamps =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-icalendar-with-timestamps :END: - *Type:* (choice (const :tag "All times... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-with-timestamps][Find modifications in git logs]] : Non-nil means make an event from plain time stamps. : : It can be set to `active', `inactive', t or nil, in order to make : an event from, respectively, only active timestamps, only : inactive ones, all of them or none. : : This variable has precedence over `org-export-with-timestamps'. : It can also be set with the #+OPTIONS line, e.g. "<:t". ** org-mobile-encryption-password =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-mobile-encryption-password :END: - *Type:* (string :tag "Password") - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-encryption-password][Find modifications in git logs]] : Password for encrypting files uploaded to the server. : This is a single password which is used for AES-256 encryption. The same : password must also be set in the MobileOrg application. All Org files, : including mobileorg.org will be encrypted using this password. : : SECURITY CONSIDERATIONS: : : Note that, when Org runs the encryption commands, the password could : be visible briefly on your system with the `ps' command. So this method is : only intended to keep the files secure on the server, not on your own machine. : : Also, if you set this variable in an init file (.emacs or .emacs.d/init.el : or custom.el...) and if that file is stored in a way so that other can read : it, this also limits the security of this approach. You can also leave : this variable empty - Org will then ask for the password once per Emacs : session. ** org-agenda-format-date =(quote org-agenda-format-date-...= :PROPERTIES: :CUSTOM_ID: org-agenda-format-date :END: - *Type:* (choice (string :tag "Format s... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-format-date][Find modifications in git logs]] : Format string for displaying dates in the agenda. : Used by the daily/weekly agenda and by the timeline. This should be : a format string understood by `format-time-string', or a function returning : the formatted date as a string. The function must take a single argument, : a calendar-style date list like (month day year). ** org-babel-remote-temporary-directory =(funcall (function (closure (*...= :PROPERTIES: :CUSTOM_ID: org-babel-remote-temporary-directory :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-remote-temporary-directory][Find modifications in git logs]] : Directory to hold temporary files on remote hosts. ** org-export-with-section-numbers =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-section-numbers :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-section-numbers][Find modifications in git logs]] : Non-nil means add section numbers to headlines when exporting. : : When set to an integer n, numbering will only happen for : headlines whose relative level is higher or equal to n. : : This option can also be set with the OPTIONS keyword, : e.g. "num:t". ** org-export-with-latex =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-with-latex :END: - *Type:* (choice (const :tag "Do not pr... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-latex][Find modifications in git logs]] : Non-nil means process LaTeX environments and fragments. : : This option can also be set with the OPTIONS line, : e.g. "tex:verbatim". Allowed values are: : : nil Ignore math snippets. : `verbatim' Keep everything in verbatim. : t Allow export of math snippets. ** org-export-exclude-tags =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-export-exclude-tags :END: - *Type:* (repeat (string :tag "Tag")) - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-exclude-tags][Find modifications in git logs]] : Tags that exclude a tree from export. : : All trees carrying any of these tags will be excluded from : export. This is without condition, so even subtrees inside that : carry one of the `org-export-select-tags' will be removed. : : This option can also be set with the EXCLUDE_TAGS keyword. ** org-html-head-include-default-style =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-head-include-default-style :END: - *Type:* boolean - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[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]] : Non-nil means include the default style in exported HTML files. : The actual style is defined in `org-html-style-default' and : should not be modified. Use `org-html-head' to use your own : style information. ** org-habit-completed-glyph =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-habit-completed-glyph :END: - *Type:* character - *Since:* Emacs version 24.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-habit.el][org-habit.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-habit-completed-glyph][Find modifications in git logs]] : Glyph character used to show completed days on which a task was done. ** org-mhe-search-all-folders =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-mhe-search-all-folders :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mhe.el][org-mhe.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mhe-search-all-folders][Find modifications in git logs]] : Non-nil means the search for the mh-message may extend to all folders. : When non-nil, the search for a message will extend to all other : folders if it cannot be found in the folder given in the link. : Searching all folders may be slow with the default pick based : search but is very efficient with one of the other search engines : supported by MH-E. ** org-babel-lua-hline-to =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-babel-lua-hline-to :END: - *Type:* string - *Since:* Emacs version 24.5 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-lua.el][ob-lua.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-lua-hline-to][Find modifications in git logs]] : Replace hlines in incoming tables with this when translating to lua. ** org-agenda-max-todos =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-max-todos :END: - *Type:* (choice (symbol :tag "No limit... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-max-todos][Find modifications in git logs]] : Maximum number of TODOs to display in an agenda. : This can be nil (no limit) or an integer or an alist of agenda : types with an associated number of entries to display in this : type. ** org-agenda-skip-scheduled-delay-if-deadline =nil= :PROPERTIES: :CUSTOM_ID: org-agenda-skip-scheduled-delay-if-deadline :END: - *Type:* (choice (const :tag "Always ho... - *Since:* Emacs version 24.4 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]] - [[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]] : Non-nil means skip scheduled delay when entry also has a deadline. : This variable may be set to nil, t, the symbol `post-deadline', : or a number which will then give the number of days after the actual : scheduled date when the delay should expire. The symbol `post-deadline' : eliminates the schedule delay when the date is posterior to the deadline. ** org-html-keep-old-src =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-keep-old-src :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-keep-old-src][Find modifications in git logs]] : When non-nil, use
 instead of 
.

** org-table-fix-formulas-confirm =(funcall (function (closure (o...=
   :PROPERTIES:
   :CUSTOM_ID: org-table-fix-formulas-confirm
   :END:

- *Type:* (choice (const :tag "with yes-...
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-fix-formulas-confirm][Find modifications in git logs]]

: Whether the user should confirm when Org fixes formulas.

** org-clock-into-drawer =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-into-drawer
   :END:

- *Type:* (choice (const :tag "Always" t...
- *Since:* Emacs version 26.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-into-drawer][Find modifications in git logs]]

: Non-nil when clocking info should be wrapped into a drawer.
:
: When non-nil, clocking info will be inserted into the same drawer
: as log notes (see variable `org-log-into-drawer'), if it exists,
: or "LOGBOOK" otherwise.  If necessary, the drawer will be
: created.
:
: When an integer, the drawer is created only when the number of
: clocking entries in an item reaches or exceeds this value.
:
: When a string, it becomes the name of the drawer, ignoring the
: log notes drawer altogether.
:
: Do not check directly this variable in a Lisp program.  Call
: function `org-clock-into-drawer' instead.

** org-src-tab-acts-natively =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-src-tab-acts-natively
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-tab-acts-natively][Find modifications in git logs]]

: If non-nil, the effect of TAB in a code block is as if it were
: issued in the language major mode buffer.

** org-log-done-with-time =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-log-done-with-time
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-done-with-time][Find modifications in git logs]]

: Non-nil means the CLOSED time stamp will contain date and time.
: When nil, only the date will be recorded.

** org-html-table-data-tags =(funcall (function (closure (h...=
   :PROPERTIES:
   :CUSTOM_ID: org-html-table-data-tags
   :END:

- *Type:* (cons (string :tag "Opening ta...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-table-data-tags][Find modifications in git logs]]

: The opening and ending tags for table data fields.
: This is customizable so that alignment options can be specified.
: The first %s will be filled with the scope of the field, either row or col.
: The second %s will be replaced by a style entry to align the field.
: See also the variable `org-html-table-align-individual-fields'.

** org-agenda-use-time-grid =t=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-use-time-grid
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-use-time-grid][Find modifications in git logs]]

: Non-nil means show a time grid in the agenda schedule.
: A time grid is a set of lines for specific times (like every two hours between
: 8:00 and 20:00).  The items scheduled for a day at specific times are
: sorted in between these lines.
: For details about when the grid will be shown, and what it will look like, see
: the variable `org-agenda-time-grid'.

** org-columns-modify-value-for-display-function =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-columns-modify-value-for-display-function
   :END:

- *Type:* (choice (const nil) (function)...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-colview.el][org-colview.el]]
- [[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]]

: Function that modifies values for display in column view.
: For example, it can be used to cut out a certain part from a time stamp.
: The function must take 2 arguments:
:
: column-title    The title of the column (*not* the property name)
: value           The value that should be modified.
:
: The function should return the value that should be displayed,
: or nil if the normal value should be used.

** org-edit-src-content-indentation =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-edit-src-content-indentation
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-edit-src-content-indentation][Find modifications in git logs]]

: Indentation for the content of a source code block.
:
: This should be the number of spaces added to the indentation of the #+begin
: line in order to compute the indentation of the block content after
: editing it with `\[org-edit-src-code]'.
:
: It has no effect if `org-src-preserve-indentation' is non-nil.

** org-indent-mode-turns-off-org-adapt-indentation =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-indent-mode-turns-off-org-adapt-indentation
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-indent.el][org-indent.el]]
- [[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]]

: Non-nil means setting the variable `org-indent-mode' will turn off indentation adaptation.
: For details see the variable `org-adapt-indentation'.

** org-table-relative-ref-may-cross-hline =(funcall (function (closure (o...=
   :PROPERTIES:
   :CUSTOM_ID: org-table-relative-ref-may-cross-hline
   :END:

- *Type:* (choice (const :tag "Allow to ...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
- [[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]]

: Non-nil means relative formula references may cross hlines.
: Here are the allowed values:
:
: nil    Relative references may not cross hlines.  They will reference the
:        field next to the hline instead.  Coming from below, the reference
:        will be to the field below the hline.  Coming from above, it will be
:        to the field above.
: t      Relative references may cross hlines.
: error  An attempt to cross a hline will throw an error.
:
: It is probably good to never set this variable to nil, for the sake of
: portability of tables.

** org-ascii-paragraph-spacing =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-ascii-paragraph-spacing
   :END:

- *Type:* (choice (integer :tag "Number ...
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-paragraph-spacing][Find modifications in git logs]]

: Number of white lines between paragraphs.
: If the value is an integer, add this number of blank lines
: between contiguous paragraphs.  If is it the symbol `auto', keep
: the same number of blank lines as in the original document.

** org-export-headline-levels =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-headline-levels
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-headline-levels][Find modifications in git logs]]

: The last level which is still exported as a headline.
:
: Inferior levels will usually produce itemize or enumerate lists
: when exported, but back-end behavior may differ.
:
: This option can also be set with the OPTIONS keyword,
: e.g. "H:2".

** org-export-with-statistics-cookies =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-with-statistics-cookies
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-statistics-cookies][Find modifications in git logs]]

: Non-nil means include statistics cookies in export.
: This option can also be set with the OPTIONS keyword,
: e.g. "stat:nil"

** org-agenda-entry-text-maxlines =5=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-entry-text-maxlines
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-maxlines][Find modifications in git logs]]

: Number of text lines to be added when `E' is pressed in the agenda.
:
: Note that this variable only used during agenda display.  To add entry text
: when exporting the agenda, configure the variable
: `org-agenda-add-entry-text-maxlines'.

** org-babel-tangle-use-relative-file-links =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-tangle-use-relative-file-links
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-tangle.el][ob-tangle.el]]
- [[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]]

: Use relative path names in links from tangled source back the Org file.

** org-agenda-entry-text-leaders ="    > "=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-entry-text-leaders
   :END:

- *Type:* string
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-entry-text-leaders][Find modifications in git logs]]

: Text prepended to the entry text in agenda buffers.

** org-ctrl-k-protect-subtree =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-ctrl-k-protect-subtree
   :END:

- *Type:* (choice (const :tag "Do not pr...
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ctrl-k-protect-subtree][Find modifications in git logs]]

: Non-nil means, do not delete a hidden subtree with C-k.
: When set to the symbol `error', simply throw an error when C-k is
: used to kill (part-of) a headline that has hidden text behind it.
: Any other non-nil value will result in a query to the user, if it is
: OK to kill that hidden subtree.  When nil, kill without remorse.

** org-directory =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-directory
   :END:

- *Type:* directory
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-directory][Find modifications in git logs]]

: Directory with Org files.
: This is just a default location to look for Org files.  There is no need
: at all to put your files into this directory.  It is used in the
: following situations:
:
: 1. When a capture template specifies a target file that is not an
:    absolute path.  The path will then be interpreted relative to
:    `org-directory'
: 2. When the value of variable `org-agenda-files' is a single file, any
:    relative paths in this file will be taken as relative to
:    `org-directory'.

** org-latex-footnote-separator =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-latex-footnote-separator
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-footnote-separator][Find modifications in git logs]]

: Text used to separate footnotes.

** org-clock-auto-clock-resolution =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-auto-clock-resolution
   :END:

- *Type:* (choice (const :tag "Never" ni...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-auto-clock-resolution][Find modifications in git logs]]

: When to automatically resolve open clocks found in Org buffers.

** org-log-state-notes-insert-after-drawers =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-log-state-notes-insert-after-drawers
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[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]]

: Non-nil means insert state change notes after any drawers in entry.
: Only the drawers that *immediately* follow the headline and the
: deadline/scheduled line are skipped.
: When nil, insert notes right after the heading and perhaps the line
: with deadline/scheduling if present.
:
: This variable will have no effect if `org-log-into-drawer' is
: set.

** org-plain-list-ordered-item-terminator =(funcall (function (closure (o...=
   :PROPERTIES:
   :CUSTOM_ID: org-plain-list-ordered-item-terminator
   :END:

- *Type:* (choice (const :tag "dot like ...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-list.el][org-list.el]]
- [[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]]

: The character that makes a line with leading number an ordered list item.
: Valid values are ?. and ?).  To get both terminators, use t.
:
: This variable needs to be set before org.el is loaded.  If you
: need to make a change while Emacs is running, use the customize
: interface or run the following code after updating it:
:
:   `\[org-element-update-syntax]'

** org-ascii-indented-line-width =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-ascii-indented-line-width
   :END:

- *Type:* (choice (integer :tag "Number ...
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-indented-line-width][Find modifications in git logs]]

: Additional indentation width for the first line in a paragraph.
: If the value is an integer, indent the first line of each
: paragraph by this width, unless it is located at the beginning of
: a section, in which case indentation is removed from that line.
: If it is the symbol `auto' preserve indentation from original
: document.

** org-attach-expert =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-attach-expert
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-expert][Find modifications in git logs]]

: Non-nil means do not show the splash buffer with the attach dispatcher.

** org-highlight-links =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-highlight-links
   :END:

- *Type:* (set :greedy t (const :tag "Do...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-highlight-links][Find modifications in git logs]]

: Types of links that should be highlighted in Org files.
:
: This is a list of symbols, each one of them leading to the
: highlighting of a certain link type.
:
: You can still open links that are not highlighted.
:
: In principle, it does not hurt to turn on highlighting for all
: link types.  There may be a small gain when turning off unused
: link types.  The types are:
:
: bracket   The recommended [[link][description]] or [[link]] links with hiding.
: angle     Links in angular brackets that may contain whitespace like
:           .
: plain     Plain links in normal text, no whitespace, like http://google.com.
: radio     Text that is matched by a radio target, see manual for details.
: tag       Tag settings in a headline (link to tag search).
: date      Time stamps (link to calendar).
: footnote  Footnote labels.
:
: If you set this variable during an Emacs session, use `org-mode-restart'
: in the Org buffer so that the change takes effect.

** org-src-preserve-indentation =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-src-preserve-indentation
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-src.el][org-src.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-src-preserve-indentation][Find modifications in git logs]]

: If non-nil preserve leading whitespace characters on export.
: \
: If non-nil leading whitespace characters in source code blocks
: are preserved on export, and when switching between the org
: buffer and the language mode edit buffer.
:
: When this variable is nil, after editing with `\[org-edit-src-code]',
: the minimum (across-lines) number of leading whitespace characters
: are removed from all lines, and the code block is uniformly indented
: according to the value of `org-edit-src-content-indentation'.

** org-custom-properties =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-custom-properties
   :END:

- *Type:* (repeat (string :tag "Property...
- *Since:* Emacs version 24.3
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-custom-properties][Find modifications in git logs]]

: List of properties (as strings) with a special meaning.
: The default use of these custom properties is to let the user
: hide them with `org-toggle-custom-properties-visibility'.

** org-clock-heading-function =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-heading-function
   :END:

- *Type:* (choice (const nil) (function)...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-heading-function][Find modifications in git logs]]

: When non-nil, should be a function to create `org-clock-heading'.
: This is the string shown in the mode line when a clock is running.
: The function is called with point at the beginning of the headline.

** org-link-frame-setup =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-link-frame-setup
   :END:

- *Type:* (list (cons (const vm) (choice...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-frame-setup][Find modifications in git logs]]

: Setup the frame configuration for following links.
: When following a link with Emacs, it may often be useful to display
: this link in another window or frame.  This variable can be used to
: set this up for the different types of links.
: For VM, use any of
:     `vm-visit-folder'
:     `vm-visit-folder-other-window'
:     `vm-visit-folder-other-frame'
: For Gnus, use any of
:     `gnus'
:     `gnus-other-frame'
:     `org-gnus-no-new-news'
: For FILE, use any of
:     `find-file'
:     `find-file-other-window'
:     `find-file-other-frame'
: For Wanderlust use any of
:     `wl'
:     `wl-other-frame'
: For the calendar, use the variable `calendar-setup'.
: For BBDB, it is currently only possible to display the matches in
: another window.

** org-agenda-remove-times-when-in-prefix =t=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-remove-times-when-in-prefix
   :END:

- *Type:* (choice (const :tag "Always" t...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[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]]

: Non-nil means remove duplicate time specifications in agenda items.
: When the format `org-agenda-prefix-format' contains a `%t' specifier, a
: time-of-day specification in a headline or diary entry is extracted and
: placed into the prefix.  If this option is non-nil, the original specification
: (a timestamp or -range, or just a plain time(range) specification like
: 11:30-4pm) will be removed for agenda display.  This makes the agenda less
: cluttered.
: The option can be t or nil.  It may also be the symbol `beg', indicating
: that the time should only be removed when it is located at the beginning of
: the headline/diary entry.

** org-pretty-entities-include-sub-superscripts =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-pretty-entities-include-sub-superscripts
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[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]]

: Non-nil means, pretty entity display includes formatting sub/superscripts.

** org-todo-interpretation =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-todo-interpretation
   :END:

- *Type:* (choice (const sequence) (cons...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-todo-interpretation][Find modifications in git logs]]

: Controls how TODO keywords are interpreted.
: This variable is in principle obsolete and is only used for
: backward compatibility, if the interpretation of todo keywords is
: not given already in `org-todo-keywords'.  See that variable for
: more information.

** org-yank-folded-subtrees =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-yank-folded-subtrees
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-yank-folded-subtrees][Find modifications in git logs]]

: Non-nil means when yanking subtrees, fold them.
: If the kill is a single subtree, or a sequence of subtrees, i.e. if
: it starts with a heading and all other headings in it are either children
: or siblings, then fold all the subtrees.  However, do this only if no
: text after the yank would be swallowed into a folded tree by this action.

** org-table-formula-use-constants =(funcall (function (closure (o...=
   :PROPERTIES:
   :CUSTOM_ID: org-table-formula-use-constants
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-table.el][org-table.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-table-formula-use-constants][Find modifications in git logs]]

: Non-nil means interpret constants in formulas in tables.
: A constant looks like `$c' or `$Grav' and will be replaced before evaluation
: by the value given in `org-table-formula-constants', or by a value obtained
: from the `constants.el' package.

** org-display-internal-link-with-indirect-buffer =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-display-internal-link-with-indirect-buffer
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[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]]

: Non-nil means use indirect buffer to display infile links.
: Activating internal links (from one location in a file to another location
: in the same file) normally just jumps to the location.  When the link is
: activated with a `\[universal-argument]' prefix (or with mouse-3), the link is displayed in
: another window.  When this option is set, the other window actually displays
: an indirect buffer clone of the current buffer, to avoid any visibility
: changes to the current buffer.

** org-clock-sound =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-sound
   :END:

- *Type:* (choice (const :tag "No sound"...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-sound][Find modifications in git logs]]

: Sound to use for notifications.
: Possible values are:
:
: nil        No sound played
: t          Standard Emacs beep
: file name  Play this sound file, fall back to beep

** org-property-format =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-property-format
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-property-format][Find modifications in git logs]]

: How property key/value pairs should be formatted by `indent-line'.
: When `indent-line' hits a property definition, it will format the line
: according to this format, mainly to make sure that the values are
: lined-up with respect to each other.

** org-log-refile =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-log-refile
   :END:

- *Type:* (choice (const :tag "No loggin...
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-log-refile][Find modifications in git logs]]

: Information to record when a task is refiled.
:
: Possible values are:
:
: nil     Don't add anything
: time    Add a time stamp to the task
: note    Prompt for a note and add it with template `org-log-note-headings'
:
: This option can also be set with on a per-file-basis with
:
:    #+STARTUP: nologrefile
:    #+STARTUP: logrefile
:    #+STARTUP: lognoterefile
:
: You can have local logging settings for a subtree by setting the LOGGING
: property to one or more of these keywords.
:
: When bulk-refiling from the agenda, the value `note' is forbidden and
: will temporarily be changed to `time'.

** org-mobile-allpriorities =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-mobile-allpriorities
   :END:

- *Type:* string
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-allpriorities][Find modifications in git logs]]

: Default set of priority cookies for the index file.

** org-bibtex-autogen-keys =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-bibtex-autogen-keys
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bibtex.el][org-bibtex.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bibtex-autogen-keys][Find modifications in git logs]]

: Set to a truth value to use `bibtex-generate-autokey' to generate keys.

** org-export-with-todo-keywords =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-with-todo-keywords
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-todo-keywords][Find modifications in git logs]]

: Non-nil means include TODO keywords in export.
: When nil, remove all these keywords from the export.  This option
: can also be set with the OPTIONS keyword, e.g.  "todo:nil".

** org-export-with-tags =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-with-tags
   :END:

- *Type:* (choice (const :tag "Off" nil)...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-tags][Find modifications in git logs]]

: If nil, do not export tags, just remove them from headlines.
:
: If this is the symbol `not-in-toc', tags will be removed from
: table of contents entries, but still be shown in the headlines of
: the document.
:
: This option can also be set with the OPTIONS keyword,
: e.g. "tags:nil".

** org-latex-toc-command =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-latex-toc-command
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-toc-command][Find modifications in git logs]]

: LaTeX command to set the table of contents, list of figures, etc.
: This command only applies to the table of contents generated with
: the toc:nil option, not to those generated with #+TOC keyword.

** org-cycle-separator-lines =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-cycle-separator-lines
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-separator-lines][Find modifications in git logs]]

: Number of empty lines needed to keep an empty line between collapsed trees.
: If you leave an empty line between the end of a subtree and the following
: headline, this empty line is hidden when the subtree is folded.
: Org mode will leave (exactly) one empty line visible if the number of
: empty lines is equal or larger to the number given in this variable.
: So the default 2 means at least 2 empty lines after the end of a subtree
: are needed to produce free space between a collapsed subtree and the
: following headline.
:
: If the number is negative, and the number of empty lines is at least -N,
: all empty lines are shown.
:
: Special case: when 0, never leave empty lines in collapsed view.

** org-disputed-keys =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-disputed-keys
   :END:

- *Type:* alist
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-disputed-keys][Find modifications in git logs]]

: Keys for which Org mode and other modes compete.
: This is an alist, cars are the default keys, second element specifies
: the alternative to use when `org-replace-disputed-keys' is t.
:
: Keys can be specified in any syntax supported by `define-key'.
: The value of this option takes effect only at Org mode startup,
: therefore you'll have to restart Emacs to apply it after changing.

** org-cycle-skip-children-state-if-no-children =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-cycle-skip-children-state-if-no-children
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[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]]

: Non-nil means skip CHILDREN state in entries that don't have any.

** org-hide-emphasis-markers =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-hide-emphasis-markers
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-hide-emphasis-markers][Find modifications in git logs]]

: Non-nil mean font-lock should hide the emphasis marker characters.

** org-clock-persist-query-save =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-persist-query-save
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-persist-query-save][Find modifications in git logs]]

: When non-nil, ask before saving the current clock on exit.

** org-odt-format-headline-function =(funcall (function (closure (h...=
   :PROPERTIES:
   :CUSTOM_ID: org-odt-format-headline-function
   :END:

- *Type:* function
- *Since:* Emacs version 26.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-format-headline-function][Find modifications in git logs]]

: Function to format headline text.
:
: This function will be called with 5 arguments:
: TODO      the todo keyword (string or nil).
: TODO-TYPE the type of todo (symbol: `todo', `done', nil)
: PRIORITY  the priority of the headline (integer or nil)
: TEXT      the main headline text (string).
: TAGS      the tags string, separated with colons (string or nil).
:
: The function result will be used as headline text.

** org-refile-target-verify-function =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-refile-target-verify-function
   :END:

- *Type:* (choice (const nil) (function)...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-refile-target-verify-function][Find modifications in git logs]]

: Function to verify if the headline at point should be a refile target.
: The function will be called without arguments, with point at the
: beginning of the headline.  It should return t and leave point
: where it is if the headline is a valid target for refiling.
:
: If the target should not be selected, the function must return nil.
: In addition to this, it may move point to a place from where the search
: should be continued.  For example, the function may decide that the entire
: subtree of the current entry should be excluded and move point to the end
: of the subtree.

** org-clock-out-when-done =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-out-when-done
   :END:

- *Type:* (choice (const :tag "No" nil) ...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-out-when-done][Find modifications in git logs]]

: When non-nil, clock will be stopped when the clocked entry is marked DONE.
: \DONE here means any DONE-like state.
: A nil value means clock will keep running until stopped explicitly with
: `\[org-clock-out]', or until the clock is started in a different item.
: Instead of t, this can also be a list of TODO states that should trigger
: clocking out.

** org-attach-allow-inheritance =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-attach-allow-inheritance
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-attach.el][org-attach.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-attach-allow-inheritance][Find modifications in git logs]]

: Non-nil means allow attachment directories be inherited.

** org-export-copy-to-kill-ring =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-copy-to-kill-ring
   :END:

- *Type:* (choice (const :tag "Always" t...
- *Since:* Emacs version 26.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[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]]

: Non-nil means pushing export output to the kill ring.
: This variable is ignored during asynchronous export.

** org-inlinetask-min-level =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-inlinetask-min-level
   :END:

- *Type:* (choice (const :tag "Off" nil)...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-min-level][Find modifications in git logs]]

: Minimum level a headline must have before it is treated as an inline task.
: Don't set it to something higher than `29' or clocking will break since this
: is the hardcoded maximum number of stars `org-clock-sum' will work with.
:
: It is strongly recommended that you set `org-cycle-max-level' not at all,
: or to a number smaller than this one.  In fact, when `org-cycle-max-level' is
: not set, it will be assumed to be one less than the value of smaller than
: the value of this variable.

** org-archive-mark-done =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-archive-mark-done
   :END:

- *Type:* (choice (const :tag "No" nil) ...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-archive.el][org-archive.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-archive-mark-done][Find modifications in git logs]]

: Non-nil means mark entries as DONE when they are moved to the archive file.
: This can be a string to set the keyword to use.  When non-nil, Org will
: use the first keyword in its list that means done.

** org-icalendar-combined-agenda-file =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-icalendar-combined-agenda-file
   :END:

- *Type:* file
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-combined-agenda-file][Find modifications in git logs]]

: The file name for the iCalendar file covering all agenda files.
: This file is created with the command `\[org-icalendar-combine-agenda-files]'.
: The file name should be absolute.  It will be overwritten without warning.

** org-confirm-elisp-link-not-regexp =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-confirm-elisp-link-not-regexp
   :END:

- *Type:* regexp
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[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]]

: A regexp to skip confirmation for Elisp links.

** org-babel-C-compiler =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-C-compiler
   :END:

- *Type:* string
- *Since:* Emacs version 24.3
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-C-compiler][Find modifications in git logs]]

: Command used to compile a C source code file into an executable.
: May be either a command in the path, like gcc
: or an absolute path name, like /usr/local/bin/gcc
: parameter may be used, like gcc -v

** org-babel-D-compiler =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-D-compiler
   :END:

- *Type:* string
- *Since:* Emacs version 24.3
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-C.el][ob-C.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-D-compiler][Find modifications in git logs]]

: Command used to compile and execute a D source code file.
: May be either a command in the path, like rdmd
: or an absolute path name, like /usr/local/bin/rdmd
: parameter may be used, like rdmd --chatty

** org-clock-string-limit =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-string-limit
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-string-limit][Find modifications in git logs]]

: Maximum length of clock strings in the mode line.  0 means no limit.

** org-agenda-move-date-from-past-immediately-to-today =t=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-move-date-from-past-immediately-to-today
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[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]]

: Non-nil means jump to today when moving a past date forward in time.
: When using S-right in the agenda to move a a date forward, and the date
: stamp currently points to the past, the first key press will move it
: to today.  WHen nil, just move one day forward even if the date stays
: in the past.

** org-bookmark-names-plist =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-bookmark-names-plist
   :END:

- *Type:* plist
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bookmark-names-plist][Find modifications in git logs]]

: Names for bookmarks automatically set by some Org commands.
: This can provide strings as names for a number of bookmarks Org sets
: automatically.  The following keys are currently implemented:
:   :last-capture
:   :last-capture-marker
:   :last-refile
: When a key does not show up in the property list, the corresponding bookmark
: is not set.

** org-babel-clojure-backend =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-clojure-backend
   :END:

- *Type:* (choice (const :tag "cider" ci...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-clojure.el][ob-clojure.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-babel-clojure-backend][Find modifications in git logs]]

: Backend used to evaluate Clojure code blocks.

** org-export-show-temporary-export-buffer =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-show-temporary-export-buffer
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[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]]

: Non-nil means show buffer after exporting to temp buffer.
: When Org exports to a file, the buffer visiting that file is never
: shown, but remains buried.  However, when exporting to
: a temporary buffer, that buffer is popped up in a second window.
: When this variable is nil, the buffer remains buried also in
: these cases.

** org-export-in-background =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-in-background
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-in-background][Find modifications in git logs]]

: Non-nil means export and publishing commands will run in background.
: Results from an asynchronous export are never displayed
: automatically.  But you can retrieve them with `\[org-export-stack]'.

** org-agenda-show-inherited-tags =t=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-show-inherited-tags
   :END:

- *Type:* (choice (const :tag "Show inhe...
- *Since:* Emacs version 24.3
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-agenda-show-inherited-tags][Find modifications in git logs]]

: Non-nil means show inherited tags in each agenda line.
:
: When this option is set to `always', it takes precedence over
: `org-agenda-use-tag-inheritance' and inherited tags are shown
: in every agenda.
:
: When this option is set to t (the default), inherited tags are
: shown when they are available, i.e. when the value of
: `org-agenda-use-tag-inheritance' enables tag inheritance for the
: given agenda type.
:
: This can be set to a list of agenda types in which the agenda
: must display the inherited tags.  Available types are `todo',
: `agenda', `search' and `timeline'.
:
: When set to nil, never show inherited tags in agenda lines.

** org-babel-no-eval-on-ctrl-c-ctrl-c =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-no-eval-on-ctrl-c-ctrl-c
   :END:

- *Type:* boolean
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-core.el][ob-core.el]]
- [[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]]

: \Remove code block evaluation from the `\[org-ctrl-c-ctrl-c]' key binding.

** org-odd-levels-only =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-odd-levels-only
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odd-levels-only][Find modifications in git logs]]

: Non-nil means skip even levels and only use odd levels for the outline.
: This has the effect that two stars are being added/taken away in
: promotion/demotion commands.  It also influences how levels are
: handled by the exporters.
: Changing it requires restart of `font-lock-mode' to become effective
: for fontification also in regions already fontified.
: You may also set this on a per-file basis by adding one of the following
: lines to the buffer:
:
:    #+STARTUP: odd
:    #+STARTUP: oddeven

** org-ascii-headline-spacing =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-ascii-headline-spacing
   :END:

- *Type:* (choice (const :tag "Replicate...
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-ascii.el][ox-ascii.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-ascii-headline-spacing][Find modifications in git logs]]

: Number of blank lines inserted around headlines.
:
: This variable can be set to a cons cell.  In that case, its car
: represents the number of blank lines present before headline
: contents whereas its cdr reflects the number of blank lines after
: contents.
:
: A nil value replicates the number of blank lines found in the
: original Org buffer at the same place.

** org-html-htmlize-output-type =(funcall (function (closure (h...=
   :PROPERTIES:
   :CUSTOM_ID: org-html-htmlize-output-type
   :END:

- *Type:* (choice (const css) (const inl...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-htmlize-output-type][Find modifications in git logs]]

: Output type to be used by htmlize when formatting code snippets.
: Choices are `css' to export the CSS selectors only,`inline-css'
: to export the CSS attribute values inline in the HTML or `nil' to
: export plain text.  We use as default `inline-css', in order to
: make the resulting HTML self-containing.
:
: However, this will fail when using Emacs in batch mode for export, because
: then no rich font definitions are in place.  It will also not be good if
: people with different Emacs setup contribute HTML files to a website,
: because the fonts will represent the individual setups.  In these cases,
: it is much better to let Org/Htmlize assign classes only, and to use
: a style file to define the look of these classes.
: To get a start for your css file, start Emacs session and make sure that
: all the faces you are interested in are defined, for example by loading files
: in all modes you want.  Then, use the command
: `\[org-html-htmlize-generate-css]' to extract class definitions.

** org-read-date-display-live =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-read-date-display-live
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-read-date-display-live][Find modifications in git logs]]

: Non-nil means display current interpretation of date prompt live.
: This display will be in an overlay, in the minibuffer.

** org-clock-history-length =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-clock-history-length
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-history-length][Find modifications in git logs]]

: Number of clock tasks to remember in history.

** org-imenu-depth =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-imenu-depth
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-imenu-depth][Find modifications in git logs]]

: The maximum level for Imenu access to Org headlines.
: This also applied for speedbar access.

** org-icalendar-use-scheduled =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-icalendar-use-scheduled
   :END:

- *Type:* (set :greedy t (const :tag "SC...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-icalendar.el][ox-icalendar.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-icalendar-use-scheduled][Find modifications in git logs]]

: Contexts where iCalendar export should use a scheduling time stamp.
:
: This is a list with possibly several symbols in it.  Valid symbols are:
:
: `event-if-todo'       Scheduling time stamps in TODO entries become an event.
: `event-if-not-todo'   Scheduling time stamps in non-TODO entries become an event.
: `todo-start'          Scheduling time stamps in TODO entries become start date.
:                       Some calendar applications show TODO entries only after
:                       that date.

** org-latex-format-headline-function =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-latex-format-headline-function
   :END:

- *Type:* function
- *Since:* Emacs version 24.4
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-format-headline-function][Find modifications in git logs]]

: Function for formatting the headline's text.
:
: This function will be called with six arguments:
: TODO      the todo keyword (string or nil)
: TODO-TYPE the type of todo (symbol: `todo', `done', nil)
: PRIORITY  the priority of the headline (integer or nil)
: TEXT      the main headline text (string)
: TAGS      the tags (list of strings or nil)
: INFO      the export options (plist)
:
: The function result will be used in the section format string.

** org-koma-letter-default-class ="default-koma-letter"=
   :PROPERTIES:
   :CUSTOM_ID: org-koma-letter-default-class
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-default-class][Find modifications in git logs]]

: Default class for `org-koma-letter'.
: The value must be a member of `org-latex-classes'.

** org-cycle-max-level =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-cycle-max-level
   :END:

- *Type:* (choice (const :tag "No limit"...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-cycle-max-level][Find modifications in git logs]]

: Maximum level which should still be subject to visibility cycling.
: Levels higher than this will, for cycling, be treated as text, not a headline.
: When `org-odd-levels-only' is set, a value of N in this variable actually
: means 2N-1 stars as the limiting headline.
: When nil, cycle all levels.
: Note that the limiting level of cycling is also influenced by
: `org-inlinetask-min-level'.  When `org-cycle-max-level' is not set but
: `org-inlinetask-min-level' is, cycling will be limited to levels one less
: than its value.

** org-md-footnote-format =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-md-footnote-format
   :END:

- *Type:* string
- *Since:* Emacs version 26.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-md.el][ox-md.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-md-footnote-format][Find modifications in git logs]]

: Format string for the footnote reference.
: The %s will be replaced by the footnote reference itself.

** org-bbdb-extract-date-fun =(funcall (function (closure (d...=
   :PROPERTIES:
   :CUSTOM_ID: org-bbdb-extract-date-fun
   :END:

- *Type:* function
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-bbdb.el][org-bbdb.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-bbdb-extract-date-fun][Find modifications in git logs]]

: How to retrieve `month date year' from the anniversary field.
:
: Customize if you have already filled your BBDB with dates
: different from YYYY-MM-DD.  The function must return a list (month
: date year).

** org-link-file-path-type =(funcall (function (closure (f...=
   :PROPERTIES:
   :CUSTOM_ID: org-link-file-path-type
   :END:

- *Type:* (choice (const relative) (cons...
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-file-path-type][Find modifications in git logs]]

: How the path name in file links should be stored.
: Valid values are:
:
: relative  Relative to the current directory, i.e. the directory of the file
:           into which the link is being inserted.
: absolute  Absolute path, if possible with ~ for home directory.
: noabbrev  Absolute path, no abbreviation of home directory.
: adaptive  Use relative path for files in the current directory and sub-
:           directories of it.  For other files, use an absolute path.

** org-koma-letter-from-address =""=
   :PROPERTIES:
   :CUSTOM_ID: org-koma-letter-from-address
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-from-address][Find modifications in git logs]]

: Sender's address, as a string.
: This option can also be set with one or more FROM_ADDRESS
: keywords.

** org-export-with-emphasize =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-export-with-emphasize
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox.el][ox.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-export-with-emphasize][Find modifications in git logs]]

: Non-nil means interpret *word*, /word/, _word_ and +word+.
:
: If the export target supports emphasizing text, the word will be
: typeset in bold, italic, with an underline or strike-through,
: respectively.
:
: This option can also be set with the OPTIONS keyword,
: e.g. "*:nil".

** org-odt-schema-dir =(funcall (function (closure (h...=
   :PROPERTIES:
   :CUSTOM_ID: org-odt-schema-dir
   :END:

- *Type:* (choice (const :tag "Not set" ...
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-odt.el][ox-odt.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-odt-schema-dir][Find modifications in git logs]]

: Directory that contains OpenDocument schema files.
:
: This directory contains:
: 1. rnc files for OpenDocument schema
: 2. a "schemas.xml" file that specifies locating rules needed
:    for auto validation of OpenDocument XML files.
:
: Use the customize interface to set this variable.  This ensures
: that `rng-schema-locating-files' is updated and auto-validation
: of OpenDocument XML takes place based on the value
: `rng-nxml-auto-validate-flag'.
:
: The default value of this variable varies depending on the
: version of org in use and is initialized from
: `org-odt-schema-dir-list'.  The OASIS schema files are available
: only in the org's private git repository.  It is *not* bundled
: with GNU ELPA tar or standard Emacs distribution.

** org-inlinetask-default-state =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-inlinetask-default-state
   :END:

- *Type:* (choice (const :tag "No state"...
- *Since:* Emacs version 24.1
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-inlinetask.el][org-inlinetask.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-inlinetask-default-state][Find modifications in git logs]]

: Non-nil means make inline tasks have a TODO keyword initially.
: This should be the state `org-inlinetask-insert-task' should use by
: default, or nil of no state should be assigned.

** org-mobile-inbox-for-pull =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-mobile-inbox-for-pull
   :END:

- *Type:* file
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-mobile.el][org-mobile.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-mobile-inbox-for-pull][Find modifications in git logs]]

: The file where captured notes and flags will be appended to.
: During the execution of `org-mobile-pull', the file
: `org-mobile-capture-file' will be emptied it's contents have
: been appended to the file given here.  This file should be in
: `org-directory', and not in the staging area or on the web server.

** org-babel-exp-call-line-template =(funcall (function (closure (t...=
   :PROPERTIES:
   :CUSTOM_ID: org-babel-exp-call-line-template
   :END:

- *Type:* string
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ob-exp.el][ob-exp.el]]
- [[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]]

: Template used to export call lines.
: This template may be customized to include the call line name
: with any export markup.  The template is filled out using
: `org-fill-template', and the following %keys may be used.
:
:  line --- call line
:
: An example value would be "\n: call: %line" to export the call line
: wrapped in a verbatim environment.
:
: Note: the results are inserted separately after the contents of
: this template.

** org-agenda-skip-timestamp-if-done =nil=
   :PROPERTIES:
   :CUSTOM_ID: org-agenda-skip-timestamp-if-done
   :END:

- *Type:* boolean
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-agenda.el][org-agenda.el]]
- [[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]]

: Non-nil means don't select item by timestamp or -range if it is DONE.

** org-html-toplevel-hlevel =(funcall (function (closure (h...=
   :PROPERTIES:
   :CUSTOM_ID: org-html-toplevel-hlevel
   :END:

- *Type:* integer
- *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]]
- [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-html-toplevel-hlevel][Find modifications in git logs]]

: The  level for level 1 headings in HTML export.
: This is also important for the classes that will be wrapped around headlines
: and outline structure.  If this variable is 1, the top-level headlines will
: be 

, and the corresponding classes will be outline-1, section-number-1, : and outline-text-1. If this is 2, all of these will get a 2 instead. : The default for this variable is 2, because we use

for formatting the : document title. ** org-latex-minted-langs =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-minted-langs :END: - *Type:* (repeat (list (symbol :tag "Ma... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-minted-langs][Find modifications in git logs]] : Alist mapping languages to their minted language counterpart. : The key is a symbol, the major mode symbol without the "-mode". : The value is the string that should be inserted as the language : parameter for the minted package. If the mode name and the : listings name are the same, the language does not need an entry : in this list - but it does not hurt if it is present. : : Note that minted uses all lower case for language identifiers, : and that the full list of language identifiers can be obtained : with: : : pygmentize -L lexers ** org-clock-clocktable-default-properties =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-clock-clocktable-default-properties :END: - *Type:* plist - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org-clock.el][org-clock.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-clock-clocktable-default-properties][Find modifications in git logs]] : Default properties for new clocktables. : These will be inserted into the BEGIN line, to make it easy for users to : play with them. ** org-html-table-use-header-tags-for-first-column =(funcall (function (closure (h...= :PROPERTIES: :CUSTOM_ID: org-html-table-use-header-tags-for-first-column :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-html.el][ox-html.el]] - [[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]] : Non-nil means format column one in tables with header tags. : When nil, also column one will use data tags. ** org-link-translation-function =(funcall (function (closure (f...= :PROPERTIES: :CUSTOM_ID: org-link-translation-function :END: - *Type:* (choice (const nil) (function)... - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/org.el][org.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-link-translation-function][Find modifications in git logs]] : Function to translate links with different syntax to Org syntax. : This can be used to translate links created for example by the Planner : or emacs-wiki packages to Org syntax. : The function must accept two parameters, a TYPE containing the link : protocol name like "rmail" or "gnus" as a string, and the linked path, : which is everything after the link protocol. It should return a cons : with possibly modified values of type and path. : Org contains a function for this, so if you set this variable to : `org-translate-link-from-planner', you should be able follow many : links created by planner. ** org-latex-remove-logfiles =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-remove-logfiles :END: - *Type:* boolean - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-remove-logfiles][Find modifications in git logs]] : Non-nil means remove the logfiles produced by PDF production. : By default, logfiles are files with these extensions: .aux, .idx, : .log, .out, .toc, .nav, .snm and .vrb. To define the set of : logfiles to remove, set `org-latex-logfiles-extensions'. ** org-koma-letter-location =""= :PROPERTIES: :CUSTOM_ID: org-koma-letter-location :END: - *Type:* string - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-koma-letter.el][ox-koma-letter.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-koma-letter-location][Find modifications in git logs]] : Sender's extension field, as a string. : : This option can also be set with the LOCATION keyword. : Moreover, when: : (1) Either `org-koma-letter-prefer-special-headings' is non-nil : or there is no LOCATION keyword or the LOCATION keyword is : empty; : (2) the letter contains a headline with the special : tag "location"; : then the location will be set as the content of the location : special heading. : : The location field is typically printed right of the address : field (See Figure 4.9. in the English manual of 2015-10-03). ** org-latex-custom-lang-environments =(funcall (function (closure (t...= :PROPERTIES: :CUSTOM_ID: org-latex-custom-lang-environments :END: - *Type:* (repeat (list (symbol :tag "La... - *Since:* Emacs version 26.1 - *In file:* [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/tree/lisp/ox-latex.el][ox-latex.el]] - [[https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/?qt=grep&q=org-latex-custom-lang-environments][Find modifications in git logs]] : Alist mapping languages to language-specific LaTeX environments. : : It is used during export of src blocks by the listings and minted : latex packages. The environment may be a simple string, composed of : only letters and numbers. In this case, the string is directly the : name of the latex environment to use. The environment may also be : a format string. In this case the format string will be directly : exported. This format string may contain these elements: : : %s for the formatted source : %c for the caption : %f for the float attribute : %l for an appropriate label : %o for the LaTeX attributes : : For example, : : (setq org-latex-custom-lang-environments : \='((python "pythoncode") : (ocaml "\\begin{listing} : \\begin{minted}[%o]{ocaml} : %s\\end{minted} : \\caption{%c} : \\label{%l}"))) : : would have the effect that if Org encounters a Python source block : during LaTeX export it will produce : : \begin{pythoncode} : : \end{pythoncode} : : and if Org encounters an Ocaml source block during LaTeX export it : will produce : : \begin{listing} : \begin{minted}[]{ocaml} : : \end{minted} : \caption{} : \label{