Variable: org-startup-options

org-startup-options is a variable defined in org.el.gz.

Value

Large value
(("fold" org-startup-folded fold)
 ("overview" org-startup-folded overview)
 ("nofold" org-startup-folded nofold)
 ("showall" org-startup-folded showall)
 ("show2levels" org-startup-folded show2levels)
 ("show3levels" org-startup-folded show3levels)
 ("show4levels" org-startup-folded show4levels)
 ("show5levels" org-startup-folded show5levels)
 ("showeverything" org-startup-folded showeverything)
 ("content" org-startup-folded content)
 ("indent" org-startup-indented t)
 ("noindent" org-startup-indented nil) ("num" org-startup-numerated t)
 ("nonum" org-startup-numerated nil)
 ("hidestars" org-hide-leading-stars t)
 ("showstars" org-hide-leading-stars nil)
 ("odd" org-odd-levels-only t) ("oddeven" org-odd-levels-only nil)
 ("align" org-startup-align-all-tables t)
 ("noalign" org-startup-align-all-tables nil)
 ("shrink" org-startup-shrink-all-tables t)
 ("descriptivelinks" org-link-descriptive t)
 ("literallinks" org-link-descriptive nil)
 ("inlineimages" org-startup-with-inline-images t)
 ("noinlineimages" org-startup-with-inline-images nil)
 ("latexpreview" org-startup-with-latex-preview t)
 ("nolatexpreview" org-startup-with-latex-preview nil)
 ("customtime" org-display-custom-times t)
 ("logdone" org-log-done time) ("lognotedone" org-log-done note)
 ("nologdone" org-log-done nil)
 ("lognoteclock-out" org-log-note-clock-out t)
 ("nolognoteclock-out" org-log-note-clock-out nil)
 ("logrepeat" org-log-repeat state)
 ("lognoterepeat" org-log-repeat note)
 ("logdrawer" org-log-into-drawer t)
 ("nologdrawer" org-log-into-drawer nil)
 ("logstatesreversed" org-log-states-order-reversed t)
 ("nologstatesreversed" org-log-states-order-reversed nil)
 ("nologrepeat" org-log-repeat nil)
 ("logreschedule" org-log-reschedule time)
 ("lognotereschedule" org-log-reschedule note)
 ("nologreschedule" org-log-reschedule nil)
 ("logredeadline" org-log-redeadline time)
 ("lognoteredeadline" org-log-redeadline note)
 ("nologredeadline" org-log-redeadline nil)
 ("logrefile" org-log-refile time)
 ("lognoterefile" org-log-refile note)
 ("nologrefile" org-log-refile nil)
 ("fninline" org-footnote-define-inline t)
 ("nofninline" org-footnote-define-inline nil)
 ("fnlocal" org-footnote-section nil)
 ("fnauto" org-footnote-auto-label t)
 ("fnprompt" org-footnote-auto-label nil)
 ("fnconfirm" org-footnote-auto-label confirm)
 ("fnplain" org-footnote-auto-label plain)
 ("fnadjust" org-footnote-auto-adjust t)
 ("nofnadjust" org-footnote-auto-adjust nil)
 ("fnanon" org-footnote-auto-label anonymous)
 ("constcgs" constants-unit-system cgs)
 ("constSI" constants-unit-system SI)
 ("noptag" org-tag-persistent-alist nil)
 ("hideblocks" org-hide-block-startup t)
 ("nohideblocks" org-hide-block-startup nil)
 ("hidedrawers" org-hide-drawer-startup t)
 ("nohidedrawers" org-hide-drawer-startup nil)
 ("beamer" org-startup-with-beamer-mode t)
 ("entitiespretty" org-pretty-entities t)
 ("entitiesplain" org-pretty-entities nil))

Documentation

Variable associated with STARTUP options for Org.

Each element is a list of three items: the startup options (as written in the #+STARTUP line), the corresponding variable, and the value to set this variable to if the option is found. An optional fourth element PUSH means to push this value onto the list in the variable.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-startup-options
  '(("fold" org-startup-folded fold)
    ("overview" org-startup-folded overview)
    ("nofold" org-startup-folded nofold)
    ("showall" org-startup-folded showall)
    ("show2levels" org-startup-folded show2levels)
    ("show3levels" org-startup-folded show3levels)
    ("show4levels" org-startup-folded show4levels)
    ("show5levels" org-startup-folded show5levels)
    ("showeverything" org-startup-folded showeverything)
    ("content" org-startup-folded content)
    ("indent" org-startup-indented t)
    ("noindent" org-startup-indented nil)
    ("num" org-startup-numerated t)
    ("nonum" org-startup-numerated nil)
    ("hidestars" org-hide-leading-stars t)
    ("showstars" org-hide-leading-stars nil)
    ("odd" org-odd-levels-only t)
    ("oddeven" org-odd-levels-only nil)
    ("align" org-startup-align-all-tables t)
    ("noalign" org-startup-align-all-tables nil)
    ("shrink" org-startup-shrink-all-tables t)
    ("descriptivelinks" org-link-descriptive t)
    ("literallinks" org-link-descriptive nil)
    ("inlineimages" org-startup-with-inline-images t)
    ("noinlineimages" org-startup-with-inline-images nil)
    ("latexpreview" org-startup-with-latex-preview t)
    ("nolatexpreview" org-startup-with-latex-preview nil)
    ("customtime" org-display-custom-times t)
    ("logdone" org-log-done time)
    ("lognotedone" org-log-done note)
    ("nologdone" org-log-done nil)
    ("lognoteclock-out" org-log-note-clock-out t)
    ("nolognoteclock-out" org-log-note-clock-out nil)
    ("logrepeat" org-log-repeat state)
    ("lognoterepeat" org-log-repeat note)
    ("logdrawer" org-log-into-drawer t)
    ("nologdrawer" org-log-into-drawer nil)
    ("logstatesreversed" org-log-states-order-reversed t)
    ("nologstatesreversed" org-log-states-order-reversed nil)
    ("nologrepeat" org-log-repeat nil)
    ("logreschedule" org-log-reschedule time)
    ("lognotereschedule" org-log-reschedule note)
    ("nologreschedule" org-log-reschedule nil)
    ("logredeadline" org-log-redeadline time)
    ("lognoteredeadline" org-log-redeadline note)
    ("nologredeadline" org-log-redeadline nil)
    ("logrefile" org-log-refile time)
    ("lognoterefile" org-log-refile note)
    ("nologrefile" org-log-refile nil)
    ("fninline" org-footnote-define-inline t)
    ("nofninline" org-footnote-define-inline nil)
    ("fnlocal" org-footnote-section nil)
    ("fnauto" org-footnote-auto-label t)
    ("fnprompt" org-footnote-auto-label nil)
    ("fnconfirm" org-footnote-auto-label confirm)
    ("fnplain" org-footnote-auto-label plain)
    ("fnadjust" org-footnote-auto-adjust t)
    ("nofnadjust" org-footnote-auto-adjust nil)
    ("fnanon" org-footnote-auto-label anonymous)
    ("constcgs" constants-unit-system cgs)
    ("constSI" constants-unit-system SI)
    ("noptag" org-tag-persistent-alist nil)
    ("hideblocks" org-hide-block-startup t)
    ("nohideblocks" org-hide-block-startup nil)
    ("hidedrawers" org-hide-drawer-startup t)
    ("nohidedrawers" org-hide-drawer-startup nil)
    ("beamer" org-startup-with-beamer-mode t)
    ("entitiespretty" org-pretty-entities t)
    ("entitiesplain" org-pretty-entities nil))
  "Variable associated with STARTUP options for Org.
Each element is a list of three items: the startup options (as written
in the #+STARTUP line), the corresponding variable, and the value to set
this variable to if the option is found.  An optional fourth element PUSH
means to push this value onto the list in the variable.")