commit
5e11659e66
22
lisp/org.el
22
lisp/org.el
|
@ -5135,9 +5135,6 @@ The following commands are available:
|
||||||
(org-set-local 'outline-isearch-open-invisible-function
|
(org-set-local 'outline-isearch-open-invisible-function
|
||||||
(lambda (&rest ignore) (org-show-context 'isearch))))
|
(lambda (&rest ignore) (org-show-context 'isearch))))
|
||||||
|
|
||||||
;; Turn on org-beamer-mode?
|
|
||||||
(and org-startup-with-beamer-mode (org-beamer-mode))
|
|
||||||
|
|
||||||
;; Setup the pcomplete hooks
|
;; Setup the pcomplete hooks
|
||||||
(set (make-local-variable 'pcomplete-command-completion-function)
|
(set (make-local-variable 'pcomplete-command-completion-function)
|
||||||
'org-pcomplete-initial)
|
'org-pcomplete-initial)
|
||||||
|
@ -5157,6 +5154,7 @@ The following commands are available:
|
||||||
(= (point-min) (point-max)))
|
(= (point-min) (point-max)))
|
||||||
(insert "# -*- mode: org -*-\n\n"))
|
(insert "# -*- mode: org -*-\n\n"))
|
||||||
(unless org-inhibit-startup
|
(unless org-inhibit-startup
|
||||||
|
(and org-startup-with-beamer-mode (org-beamer-mode))
|
||||||
(when org-startup-align-all-tables
|
(when org-startup-align-all-tables
|
||||||
(let ((bmp (buffer-modified-p)))
|
(let ((bmp (buffer-modified-p)))
|
||||||
(org-table-map-tables 'org-table-align 'quietly)
|
(org-table-map-tables 'org-table-align 'quietly)
|
||||||
|
@ -17078,16 +17076,11 @@ This requires Emacs >= 24.1, build with imagemagick support."
|
||||||
(list :tag "Use #+ATTR* or a number of pixels" (integer))
|
(list :tag "Use #+ATTR* or a number of pixels" (integer))
|
||||||
(const :tag "Use #+ATTR* or don't resize" nil)))
|
(const :tag "Use #+ATTR* or don't resize" nil)))
|
||||||
|
|
||||||
(defcustom org-agenda-inhibit-startup-visibility-cycling t
|
(defcustom org-agenda-inhibit-startup t
|
||||||
"Turn off visibility cycling when preparing agenda buffers.
|
"Inhibit startup when preparing agenda buffers.
|
||||||
|
When this variable is `t' (the default), the initialization of
|
||||||
When preparing agenda buffers, Org visits agenda files. When
|
the Org agenda buffers is inhibited: e.g. the visibility state
|
||||||
this variable is `t' (the default), the visited buffers for
|
is not set, the tables are not re-aligned, etc."
|
||||||
agenda files will not honor `org-startup-folded' or any
|
|
||||||
#+STARTUP: fold option. Turning this option off may slow down
|
|
||||||
the generation of agenda, both because folding takes time and
|
|
||||||
because finding entries in folded buffers takes longer than
|
|
||||||
finding entries in unfolded ones."
|
|
||||||
:type 'boolean
|
:type 'boolean
|
||||||
:version "24.3"
|
:version "24.3"
|
||||||
:group 'org-agenda)
|
:group 'org-agenda)
|
||||||
|
@ -17431,8 +17424,7 @@ When a buffer is unmodified, it is just killed. When modified, it is saved
|
||||||
(pc '(:org-comment t))
|
(pc '(:org-comment t))
|
||||||
(pall '(:org-archived t :org-comment t))
|
(pall '(:org-archived t :org-comment t))
|
||||||
(inhibit-read-only t)
|
(inhibit-read-only t)
|
||||||
(org-inhibit-startup-visibility-stuff
|
(org-inhibit-startup org-agenda-inhibit-startup)
|
||||||
org-agenda-inhibit-startup-visibility-cycling)
|
|
||||||
(rea (concat ":" org-archive-tag ":"))
|
(rea (concat ":" org-archive-tag ":"))
|
||||||
bmp file re)
|
bmp file re)
|
||||||
(save-excursion
|
(save-excursion
|
||||||
|
|
Loading…
Reference in New Issue