ob-clojure: Normalize :show-process syntax
[org-mode/org-tableheadings.git] / etc / ORG-NEWS
blob9be24436634d240f0716534d2fa5609d48d860e5
1 ORG NEWS -- history of user-visible changes.           -*- org -*-
3 #+LINK: doc http://orgmode.org/worg/doc.html#%s
4 #+LINK: git http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=%s
6 Copyright (C) 2012-2016 Free Software Foundation, Inc.
7 See the end of the file for license conditions.
9 Please send Org bug reports to mailto:emacs-orgmode@gnu.org.
11 * Version 9.1
13 ** Incompatible changes
15 *** ~org-capture-templates~ no longer accepts S-expressions as file names
17 Since functions are allowed there, a straightforward way to migrate
18 is to turn, e.g.,
20 : (file (sexp))
22 into
24 : (file (lambda () (sexp)))
26 ** New features
27 *** Babel
28 **** Clojure: new setting ~org-babel-clojure-sync-nrepl-timeout~
30 Creation of a new setting to specify the Cider timeout.  By setting
31 the =org-babel-clojure-sync-nrepl-timeout= setting option.  The value
32 is in seconds and if set to =nil= then no timeout will occur.
34 **** Clojure: new header ~:show-process~
36 A new block code header has been created for Org Babel that enables
37 developers to output the process of an ongoing process into a new
38 window/buffer.
40 You can tell Org Babel to output the process of a running code block.
42 To show that output you only have to specify the =:show-process=
43 option in the code block's header like this:
45 #+begin_example
46 ,#+BEGIN_SRC clojure :results output :show-process t
47   (dotimes [n 10]
48     (println n ".")
49     (Thread/sleep 500))
50 ,#+END_SRC
51 #+end_example
53 If =:show-process= is specified that way, then when you will run the
54 code using =C-c C-c= a new window will open in Emacs.  Everything that
55 is output by the REPL will immediately be added to that new window.
57 When the processing of the code is finished, then the window and its
58 buffer will be closed and the results will be reported in the
59 =#+RESULTS= section.
61 Note that the =:results= parameter's behavior is *not* changed.  If
62 =silent= is specified, then no result will be displayed.  If =output=
63 is specified then all the output from the window will appears in the
64 results section.  If =value= is specified, then only the last returned
65 value of the code will be displayed in the results section.
67 *** Horizontal rules are no longer ignored in LaTeX table math mode
69 * Version 9.0
71 ** Incompatible changes
73 *** Emacs 23 support has been dropped
75 From now on, Org expects at least Emacs 24.3, although Emacs 24.4 or
76 above is suggested.
78 *** XEmacs support has been dropped
80 Incomplete compatibility layer with XEmacs has been removed.  If you
81 want to take over maintainance of this compatibility, please contact
82 our mailing list.
84 *** New syntax for export blocks
86 Export blocks are explicitly marked as such at the syntax level to
87 disambiguate their parsing from special blocks.  The new syntax is
89 #+BEGIN_SRC org
90 ,#+BEGIN_EXPORT backend
91 ...
92 ,#+END_EXPORT
93 #+END_SRC
95 instead of
97 #+BEGIN_SRC org
98 ,#+BEGIN_backend
99 ...
100 ,#+END_backend
101 #+END_SRC
103 As a consequence, =INCLUDE= keywords syntax is modified, e.g.,
105 #+BEGIN_SRC org
106 ,#+INCLUDE: "file.org" HTML
107 #+END_SRC
109 becomes
111 #+BEGIN_SRC org
112 ,#+INCLUDE: "file.org" export html
113 #+END_SRC
115 The following function repairs export blocks and =INCLUDE= keywords
116 using previous syntax:
118 #+BEGIN_SRC emacs-lisp
119 (defun org-repair-export-blocks ()
120   "Repair export blocks and INCLUDE keywords in current buffer."
121   (interactive)
122   (when (eq major-mode 'org-mode)
123     (let ((case-fold-search t)
124           (back-end-re (regexp-opt
125                         '("HTML" "ASCII" "LATEX" "ODT" "MARKDOWN" "MD" "ORG"
126                           "MAN" "BEAMER" "TEXINFO" "GROFF" "KOMA-LETTER")
127                         t)))
128       (org-with-wide-buffer
129        (goto-char (point-min))
130        (let ((block-re (concat "^[ \t]*#\\+BEGIN_" back-end-re)))
131          (save-excursion
132            (while (re-search-forward block-re nil t)
133              (let ((element (save-match-data (org-element-at-point))))
134                (when (eq (org-element-type element) 'special-block)
135                  (save-excursion
136                    (goto-char (org-element-property :end element))
137                    (save-match-data (search-backward "_"))
138                    (forward-char)
139                    (insert "EXPORT")
140                    (delete-region (point) (line-end-position)))
141                  (replace-match "EXPORT \\1" nil nil nil 1))))))
142        (let ((include-re
143               (format "^[ \t]*#\\+INCLUDE: .*?%s[ \t]*$" back-end-re)))
144          (while (re-search-forward include-re nil t)
145            (let ((element (save-match-data (org-element-at-point))))
146              (when (and (eq (org-element-type element) 'keyword)
147                         (string= (org-element-property :key element) "INCLUDE"))
148                (replace-match "EXPORT \\1" nil nil nil 1)))))))))
149 #+END_SRC
151 Moreover, ~:export-block~ keyword used in ~org-export-define-backend~ and
152 ~org-export-define-derived-backend~ is no longer used and needs to be
153 removed.
155 *** Footnotes
157 **** [1]-like constructs are not valid footnotes
159 Using =[1]= as a footnote was already discouraged in the manual, since
160 it introduced too many false-positives in many Org documents.  These
161 constructs are now unsupported.
163 If you used =[N]= in some of your documents, consider turning them into
164 =[fn:N]=.
166 **** /Org Footnote/ library doesn't handle non-Org buffers
168 Commands for footnotes in an Org document no longer try to do
169 something in non-Org ones.  If you need to have footnotes there,
170 consider using the =footnote.el= library, shipped with Emacs.
172 In particular, ~org-footnote-tag-for-non-org-mode-files~ no longer
173 exists.
175 *** ~org-file-apps~ no longer accepts S-expressions as commands
177 The variable now accepts functions of two arguments instead of plain
178 S-expressions.  Replacing a S-expresion with an appropriate function
179 is straightforward.  For example
181 : ("pdf" . (foo))
183 becomes
185 : ("pdf" . (lambda (file link) (foo)))
187 *** The ~{{{modification-time}}}~ macro can get time via =vc=
189 The modification time will be determined via =vc.el= if the second
190 argument is non-nil.  See the manual for details.
192 *** Preparation and completion functions in publishing projects change signature
194 Preparation and completion functions are now called with an argument,
195 which is the project property list.  It used to be dynamically scoped
196 through the ~project-plist~ variable.
198 *** Old Babel header properties are no longer supported
200 Using header arguments as property names is no longer possible.  As
201 such, the following
203 #+BEGIN_EXAMPLE
204 ,* Headline
205 :PROPERTIES:
206 :exports: code
207 :var: a=1 b=2
208 :var+: c=3
209 :END:
210 #+END_EXAMPLE
212 should be written instead
214 #+BEGIN_EXAMPLE
215 ,* Headline
216 :PROPERTIES:
217 :header-args: :exports code
218 :header-args: :var a=1 b=2
219 :header-args+: :var c=3
220 :END:
221 #+END_EXAMPLE
223 Please note that, however, old properties were defined at the source
224 block definition.  Current ones are defined where the block is called.
226 ** New features
228 *** ~org-eww~ has been moved into core
229 *** New org-protocol key=value syntax
231 Org-protocol can now handle query-style parameters such as:
233 #+begin_example
234 org-protocol://store-link?url=http:%2F%2Flocalhost%2Findex.html&title=The%20title
235 org-protocol://capture?template=x&title=Hello&body=World&url=http:%2F%2Fexample.com
236 #+end_example
238 Old-style links such as
239 : org-protocol://store-link:/http:%2F%2Flocalhost%2Findex.html/The%20title
240 continue to be supported.
242 If you have defined your own handler functions for
243 ~org-protocol-protocol-alist~, change them to accept either a property
244 list (for new-style links) or a string (for old-style links).  Use
245 ~org-protocol-parse-parameters~ to convert old-style links into property
246 lists.
248 *** New Org linter library
250 ~org-lint~ can check syntax and report common issues in Org documents.
252 *** New option ~date-tree-last~ for ~org-agenda-insert-diary-strategy~
254 When ~org-agenda-insert-diary-strategy~ is set to ~date-tree-last~, diary
255 entries are added to last in the date tree.
257 *** New ~vbar~ entity
259 ~\vbar~ or ~\vbar{}~ will be exported unconditionnally as a =|=,
260 unlike to existing ~\vert~, which is expanded as ~|~ when using
261 a HTML derived export back-end.
263 *** Export
265 **** New =#+latex_compiler= keyword to set LaTeX compiler.
267 PDFLaTeX, XeLaTeX, and LuaLaTeX are supported.  See the manual for
268 details.
270 **** New option ~org-export-with-broken-links~
272 This option tells the export process how to behave when encountering
273 a broken internal link.  See its docstring for more information.
275 **** Attributes support in custom language environments for LaTeX export
277 Custom language environments for LaTeX export can now define the
278 string to be inserted during export, using attributes to indicate the
279 position of the elements. See variable ~org-latex-custom-lang-environments~
280 for more details.
282 **** New Texinfo ~options~ attribute on special blocks
284 Using ~:options~ as a Texinfo attribute, it is possible to add
285 information to custom environments.  See manual for details.
287 **** New HTML ~id~ attributes on special, example and quote blocks
289 If the block has a =#+NAME:= attribute assigned, then the HTML element
290 will have an ~id~ attribute with that name in the HTML export. This
291 enables one to create links to these elements in other places, e.g.,
292 ~<a href="#name">text</a>~.
294 **** Listings with captions are now numbered in HTML export
296 The class associated to the numbering is "listing-number".  If you
297 don't want these blocks to be numbered, as it was the case until now,
298 You may want to add ~.listing-number { display: none; }~ to the CSS
299 used.
301 **** Line Numbering in SRC/EXAMPLE blocks support arbitrary start number
303 The ~-n~ option to ~SRC~ and ~EXAMPLE~ blocks can now take a numeric
304 argument to specify the staring line number for the source or example
305 block.  The ~+n~ option can now take a numeric argument that will be
306 added to the last line number from the previous block as the starting
307 point for the SRC/EXAMPLE block.
309 #+BEGIN_SRC org
310 ,#+BEGIN_SRC emacs-lisp -n 20
311 ;; this will export with line number 20
312 (message "This is line 21")
313 ,#+END_SRC
314 ,#+BEGIN_SRC emacs-lisp +n 10
315 ;; This will be listed as line 31
316 (message "This is line 32")
317 ,#+END_SRC
318 #+END_SRC
320 **** Allow toggling center for images in LaTeX export
322 With the global variable ~org-latex-images-centered~ or the local
323 attribute ~:center~ it is now possible to center an image in LaTeX
324 export.
326 **** Default CSS class ~org-svg~ for SVG images in HTML export
328 SVG images exported in HTML are now by default assigned a CSS class
329 ~org-svg~ if no CSS class is specified with the ~:class~ attribute. By
330 default, the CSS styling of class ~org-svg~ specifies an image width of
331 90\thinsp{}% of the container the image.
333 **** Markdown footnote export customization
335 Variables ~org-md-footnotes-section~ and ~org-md-footnote-format~
336 introduced for =ox-md.el=.  Both new variables define template strings
337 which can be used to customize the format of the exported footnotes
338 section and individual footnotes, respectively.
340 *** Babel
342 **** Blocks with coderefs labels can now be evaluated
344 The labels are removed prior to evaluating the block.
346 **** Support for Lua language
347 **** Support for SLY in Lisp blocks
349 See ~org-babel-lisp-eval-fn~ to activate it.
351 **** Support for Stan language
353 New ob-stan.el library.
355 Evaluating a Stan block can produce two different results.
357 1. Dump the source code contents to a file.
359    This file can then be used as a variable in other blocks, which
360    allows interfaces like RStan to use the model.
362 2. Compile the contents to a model file.
364    This provides access to the CmdStan interface.  To use this, set
365    ~org-babel-stan-cmdstan-directory~ and provide a ~:file~ argument
366    that does not end in ".stan".
368 For more information and usage examples, visit
369 http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-stan.html
371 **** Support for Oracle databases via ~sqlplus~
373 =ob-sql= library supports running SQL blocks against an Oracle
374 database using ~sqlplus~.  Use with properties like this (all
375 mandatory):
377 #+BEGIN_EXAMPLE
378 :engine oracle
379 :dbhost <host.com>
380 :dbport <1521>
381 :dbuser <username>
382 :database <database>
383 :dbpassword <secret>
384 #+END_EXAMPLE
386 **** Improved support to Microsoft SQL Server via ~sqlcmd~
388 =ob-sql= library removes support to the ~msosql~ engine which uses the
389 deprecated ~osql~ command line tool, and replaces it with ~mssql~
390 engine which uses the ~sqlcmd~ command line tool.  Use with properties
391 like this:
393 #+BEGIN_EXAMPLE
394 :engine mssql
395 :dbhost <host.com>
396 :dbuser <username>
397 :dbpassword <secret>
398 :database <database>
399 #+END_EXAMPLE
401 If you want to use the *trusted connection* feature, omit *both* the
402 =dbuser= and =dbpassword= properties and add =cmdline -E= to the properties.
404 If your Emacs is running in a Cygwin environment, the =ob-sql= library
405 can pass the converted path to the =sqlcmd= tool.
407 **** Improved support of header arguments for postgresql 
409 The postgresql engine in a sql code block supports now ~:dbport~ nd
410 ~:dbpassword~ as header arguments.
412 **** Support for additional plantuml output formats
414 The support for output formats of [[http://plantuml.com/][plantuml]] has been extended to now
415 include:
417 All Diagrams:
418 - png ::
419 - svg ::
420 - eps ::
421 - pdf ::
422 - vdx ::
423 - txt :: ASCII art
424 - utxt :: ASCII art using unicode characters
426 Class Diagrams:
427 - xmi ::
428 - html ::
430 State Diagrams:
431 - scxml ::
433 The output formats are determined by the file extension specified
434 using the :file property, e.g.:
436 #+begin_src plantuml :file diagram.png
437 @startuml
438 Alice -> Bob: Authentication Request
439 Bob --> Alice: Authentication Response
441 Alice -> Bob: Another authentication Request
442 Alice <-- Bob: another authentication Response
443 @enduml
444 #+end_src
446 Please note that *pdf* *does not work out of the box* and needs additional
447 setup in addition to plantuml.  See [[http://plantuml.com/pdf.html]] for
448 details and setup information.
450 *** Rewrite of radio lists
452 Radio lists, i.e, Org plain lists in foreign buffers, have been
453 rewritten to be on par with Radio tables.  You can use a large set of
454 parameters to control how a given list should be rendered.  See manual
455 for details.
457 *** org-bbdb-anniversaries-future
459 Used like ~org-bbdb-anniversaries~, it provides a few days warning for
460 upcoming anniversaries (default: 7 days).
462 *** Clear non-repeated SCHEDULED upon repeating a task
464 If the task is repeated, and therefore done at least one, scheduling
465 information is no longer relevant.  It is therefore removed.
467 See [[git:481719fbd5751aaa9c672b762cb43aea8ee986b0][commit message]] for more information.
469 *** Support for ISO week trees
471 ISO week trees are an alternative date tree format that orders entries
472 by ISO week and not by month.
474 For example:
476 : * 2015
477 : ** 2015-W35
478 : ** 2015-W36
479 : *** 2015-08-31 Monday
481 They are supported in org-capture via ~file+weektree~ and
482 ~file+weektree+prompt~ target specifications.
484 *** Accept ~:indent~ parameter when capturing column view
486 When defining a "columnview" dynamic block, it is now possible to add
487 an :indent parameter, much like the one in the clock table.
489 On the other hand, stars no longer appear in an ITEM field.
491 *** Columns view
493 **** ~org-columns~ accepts a prefix argument
495 When called with a prefix argument, ~org-columns~ apply to the whole
496 buffer unconditionally.
498 **** New variable : ~org-agenda-view-columns-initially~
500 The variable used to be a ~defvar~, it is now a ~defcustom~.
502 **** Allow custom summaries
504 It is now possible to add new summary types, or override those
505 provided by Org by customizing ~org-columns-summary-types~, which see.
507 **** Allow multiple summaries for any property
509 Columns can now summarize the same property using different summary
510 types.
512 *** Preview LaTeX snippets in buffers not visiting files
513 *** New option ~org-attach-commit~
515 When non-nil, commit attachments with git, assuming the document is in
516 a git repository.
518 *** Allow conditional case-fold searches in ~org-occur~
520 When set to ~smart~, the new variable ~org-occur-case-fold-search~ allows
521 to mimic =isearch.el=: if the regexp searched contains any upper case
522 character (or character class), the search is case sensitive.
523 Otherwise, it is case insensitive.
525 *** More robust repeated =ox-latex= footnote handling
527 Repeated footnotes are now numbered by referring to a label in the
528 first footnote.
530 *** The ~org-block~ face is inherited by ~src-blocks~
532 This works also when =org-src-fontify-natively= is non-nil.  It is also
533 possible to specify per-languages faces.  See =org-src-block-faces= and
534 the manual for details.
536 *** Links are now customizable
538 Links can now have custom colors, tooltips, keymaps, display behavior,
539 etc.  Links are now centralized in ~org-link-parameters~.
541 ** New functions
543 *** ~org-next-line-empty-p~
545 It replaces the deprecated ~next~ argument to ~org-previous-line-empty-p~.
547 *** ~org-show-children~
549 It is a faster implementation of ~outline-show-children~.
551 ** Removed functions
553 *** ~org-agenda-filter-by-tag-refine~ has been removed.
555 Use ~org-agenda-filter-by-tag~ instead.
557 *** ~org-agenda-todayp~ is deprecated.
559 Use ~org-agenda-today-p~ instead.
561 *** ~org-babel-get-header~ is removed.
563 Use ~org-babel--get-vars~ or ~assq~ instead, as applicable.
565 *** ~org-babel-trim~ is deprecated.
567 Use ~org-trim~ instead.
569 *** ~org-element-remove-indentation~ is deprecated.
571 Use ~org-remove-indentation~ instead.
573 *** ~org-image-file-name-regexp~ is deprecated
575 Use ~image-file-name-regexp~ instead.
576 The never-used-in-core ~extensions~ argument has been dropped.
578 *** ~org-list-parse-list~ is deprecated
580 Use ~org-list-to-lisp~ instead.
582 *** ~org-on-heading-p~ is deprecated
584 A comment to this effect was in the source code since 7.8.03, but
585 now a byte-compiler warning will be generated as well.
587 *** ~org-table-p~ is deprecated
589 Use ~org-at-table-p~ instead.
591 *** ~org-table-recognize-table.el~ is deprecated
593 It was not called by any org code since 2010.
595 *** Various reimplementations of cl-lib functions are deprecated
597 The affected functions are:
598 - ~org-count~
599 - ~org-remove-if~
600 - ~org-remove-if-not~
601 - ~org-reduce~
602 - ~org-every~
603 - ~org-some~
605 Additionally, ~org-sublist~ is deprecated in favor of ~cl-subseq~.  Note
606 the differences in indexing conventions: ~org-sublist~ is 1-based and
607 end-inclusive; ~cl-subseq~ is 0-based and end-exclusive.
609 ** Removed options
611 *** Remove all options related to ~ido~ or ~iswitchb~
613 This includes ~org-completion-use-iswitchb~ and ~org-completion-use-ido~.
614 Instead Org uses regular functions, e.g., ~completion-read~ so as to
615 let those libraries operate.
617 *** Remove ~org-list-empty-line-terminates-plain-lists~
619 Two consecutive blank lines always terminate all levels of current
620 plain list.
622 *** ~fixltx2e~ is removed from ~org-latex-default-packages-alist~
624 fixltx2e is obsolete, see LaTeX News 22.
626 ** Miscellaneous
627 *** Add Icelandic smart quotes
628 *** Allow multiple receiver locations in radio tables and lists
629 *** Allow angular links within link descriptions
631 It is now allowed to write, e.g.,
632 ~[[http:orgmode.org][<file:unicorn.png>]]~ as an equivalent to
633 ~[[http:orgmode.org][file:unicorn.png]]~.  The advantage of the former
634 is that spaces are allowed within the path.
636 *** Beamer export back-ends uses ~org-latex-prefer-user-labels~
637 *** ~:preparation-function~ called earlier during publishing
639 Functions in this list are called before any file is associated to the
640 current projet.  Thus, they can be used to generate to be published
641 Org files.
643 *** Function ~org-remove-indentation~ changes.
645 The new algorithm doesn't remove TAB characters not used for
646 indentation.
648 *** Secure placeholders in capture templates
650 Placeholders in capture templates are no longer expanded recursively.
651 However, ~%(...)~ constructs are expanded very late, so you can fill
652 the contents of the S-exp with the replacement text of non-interactive
653 placeholders.  As before, interactive ones are still expanded as the
654 very last step, so the previous statement doesn't apply to them.
656 Note that only ~%(...)~ placeholders initially present in the
657 template, or introduced using a file placeholder, i.e., ~%[...]~ are
658 expanded.  This prevents evaluating potentially malicious code when
659 another placeholder, e.g., ~%i~ expands to a S-exp.
661 *** Links stored by ~org-gnus-store-link~ in nnir groups
663 Since gnus nnir groups are temporary, ~org-gnus-store-link~ now refers
664 to the article's original group.
666 *** ~org-babel-check-confirm-evaluate~ is now a function instead of a macro
668 The calling convention has changed.
670 *** HTML export table row customization changes
672 Variable ~org-html-table-row-tags~ has been split into
673 ~org-html-table-row-open-tag~ and ~org-html-table-row-close-tag~.
674 Both new variables can be either a string or a function which will be
675 called with 6 parameters.
677 *** =ITEM= special property returns headline without stars
678 *** Rename ~org-insert-columns-dblock~ into ~org-columns-insert-dblock~
680 The previous name is, for the time being, kept as an obsolete alias.
682 *** ~org-trim~ can preserve leading indentation.
684 When setting a new optional argument to a non-nil value, ~org-trim~
685 preserves leading indentation while removing blank lines at the
686 beginning of the string.  The behavior is identical for white space at
687 the end of the string.
689 *** Function ~org-info-export~ changes.
691 HTML links created from certain info links now point to =gnu.org= URL's rather
692 than just to local files. For example info links such as =info:emacs#List
693 Buffers= used to be converted to HTML links like this:
695 : <a href="emacs.html#List-Buffers">emacs#List Buffers</a>
697 where local file =emacs.html= is referenced.
698 For most folks this file does not exist.
699 Thus the new behavior is to generate this HTML link instead:
701 : <a href="http://www.gnu.org/software/emacs/manual/html_mono/emacs.html#List-Buffers">emacs#List Buffers</a>
703 All emacs related info links are similarly translated plus few other
704 =gnu.org= manuals.
706 *** Repeaters with a ~++~ interval and a time can be shifted to later today
708 Previously, if a recurring task had a timestamp of
709 ~<2016-01-01 Fri 20:00 ++1d>~ and was completed on =2016-01-02= at
710 =08:00=, the task would skip =2016-01-02= and would be rescheduled for
711 =2016-01-03=.  Timestamps with ~++~ cookies and a specific time will
712 now shift to the first possible future occurrence, even if the
713 occurrence is later the same day the task is completed.  (Timestamps
714 already in the future are still shifted one time further into the
715 future.)
717 *** ~org-mobile-action-alist~ is now a defconst
719 It used to be a defcustom, with a warning that it shouldn't be
720 modified anyway.
722 *** ~file+emacs~ and ~file+sys~ link types are deprecated
724 They are still supported in Org 9.0 but will eventually be removed in
725 a later release.  Use ~file~ link type along with universal arguments
726 to force opening it in either Emacs or with system application.
728 *** New defcustom ~org-babel-J-command~ stores the j command
729 *** New defalias ~org-babel-execute:j~
731 Allows J source blocks be indicated by letter j.  Previously the
732 indication letter was solely J.
734 *** ~org-open-line~ ignores tables at the very beginning of the buffer
736 When ~org-special-ctrl-o~ is non-nil, it is impractical to create
737 a blank line above a table at the beginning of the document. Now, as
738 a special case, ~org-open-line~ behaves normally in this situation.
740 *** ~org-babel-hash-show-time~ is now customizable
742 The experimental variable used to be more or less confidential, as
743 a ~defvar~.
745 *** New ~:format~ property to parsed links
747 It defines the format of the original link.  Possible values are:
748 ~plain~, ~bracket~ and ~angle~.
750 * Version 8.3
752 ** Incompatible changes
754 *** Properties drawers syntax changes
756 Properties drawers are now required to be located right after a
757 headline and its planning line, when applicable.
759 It will break some documents as TODO states changes were sometimes
760 logged before the property drawer.
762 The following function will repair them:
764 #+BEGIN_SRC emacs-lisp
765 (defun org-repair-property-drawers ()
766   "Fix properties drawers in current buffer.
767 Ignore non Org buffers."
768   (when (eq major-mode 'org-mode)
769     (org-with-wide-buffer
770      (goto-char (point-min))
771      (let ((case-fold-search t)
772            (inline-re (and (featurep 'org-inlinetask)
773                            (concat (org-inlinetask-outline-regexp)
774                                    "END[ \t]*$"))))
775        (org-map-entries
776         (lambda ()
777           (unless (and inline-re (org-looking-at-p inline-re))
778             (save-excursion
779               (let ((end (save-excursion (outline-next-heading) (point))))
780                 (forward-line)
781                 (when (org-looking-at-p org-planning-line-re) (forward-line))
782                 (when (and (< (point) end)
783                            (not (org-looking-at-p org-property-drawer-re))
784                            (save-excursion
785                              (and (re-search-forward org-property-drawer-re end t)
786                                   (eq (org-element-type
787                                        (save-match-data (org-element-at-point)))
788                                       'drawer))))
789                   (insert (delete-and-extract-region
790                            (match-beginning 0)
791                            (min (1+ (match-end 0)) end)))
792                   (unless (bolp) (insert "\n"))))))))))))
793 #+END_SRC
795 *** Using "COMMENT" is now equivalent to commenting with "#"
797 If you used "COMMENT" in headlines to prevent a subtree from being
798 exported, you can still do it but all information within the subtree
799 is now commented out, i.e. no #+OPTIONS line will be parsed or taken
800 into account when exporting.
802 If you want to exclude a headline from export while using its contents
803 for setting options, use =:noexport:= (see =org-export-exclude-tags=.)
805 *** =#+CATEGORY= keywords no longer apply partially to document
807 It was possible to use several such keywords and have them apply to
808 the text below until the next one, but strongly deprecated since Org
809 5.14 (2008).
811 =#+CATEGORY= keywords are now global to the document.  You can use node
812 properties to set category for a subtree, e.g.,
814 #+BEGIN_SRC org
815 ,* Headline
816    :PROPERTIES:
817    :CATEGORY: some category
818    :END:
819 #+END_SRC
821 *** New variable to control visibility when revealing a location
823 ~org-show-following-heading~, ~org-show-siblings~, ~org-show-entry-below~
824 and ~org-show-hierarchy-above~ no longer exist.  Instead, visibility is
825 controlled through a single variable: ~org-show-context-detail~, which
826 see.
828 *** Replace disputed keys again when reading a date
830 ~org-replace-disputed-keys~ has been ignored when reading date since
831 version 8.1, but the former behavior is restored again.
833 Keybinding for reading date can be customized with a new variable
834 ~org-read-date-minibuffer-local-map~.
836 *** No default title is provided when =TITLE= keyword is missing
838 Skipping =TITLE= keyword no longer provides the current file name, or
839 buffer name, as the title.  Instead, simply ignore the title.
841 *** Default bindings of =C-c C-n= and =C-c C-p= changed
843 The key sequences =C-c C-n= and =C-c C-p= are now bound to
844 ~org-next-visible-heading~ and ~org-previous-visible-heading~
845 respectively, rather than the =outline-mode= versions of these
846 functions.  The Org version of these functions skips over inline tasks
847 (and even-level headlines when ~org-odd-levels-only~ is set).
849 *** ~org-element-context~ no longer return objects in keywords
851 ~org-element-context~ used to return objects on some keywords, i.e.,
852 =TITLE=, =DATE= and =AUTHOR=.  It now returns only the keyword.
854 *** ~org-timer-default-timer~ type changed from number to string
856 If you have, in your configuration, something like =(setq
857 org-timer-default-timer 10)= replace it with =(setq
858 org-timer-default-timer "10")=.
860 *** Functions signature changes
862 The following functions require an additional argument.  See their
863 docstring for more information.
865 - ~org-export-collect-footnote-definitions~
866 - ~org-html-format-headline-function~
867 - ~org-html-format-inlinetask-function~
868 - ~org-latex-format-headline-function~
869 - ~org-latex-format-inlinetask-function~
870 - ~org-link-search~
872 ** New features
874 *** Default lexical evaluation of emacs-lisp src blocks
876 Emacs-lisp src blocks in babel are now evaluated using lexical
877 scoping.  There is a new header to control this behavior.
879 The default results in an eval with lexical scoping.
880 :lexical yes
882 This turns lexical scoping off in the eval (the former behavior).
883 :lexical no
885 This uses the lexical environment with x=42 in the eval.
886 :lexical '((x . 42))
888 *** Behavior of ~org-return~ changed
890 If point is before or after the headline title, insert a new line
891 without changing the headline.
893 *** Hierarchies of tags
895 The functionality of nesting tags in hierarchies is added to org-mode.
896 This is the generalization of what was previously called "Tag groups"
897 in the manual.  That term is now changed to "Tag hierarchy".
899 The following in-buffer definition:
901 #+BEGIN_SRC org
902   ,#+TAGS: [ Group : SubOne SubTwo ]
903   ,#+TAGS: [ SubOne : SubOne1 SubOne2 ]
904   ,#+TAGS: [ SubTwo : SubTwo1 SubTwo2 ]
905 #+END_SRC
907 Should be seen as the following tree of tags:
909 - Group
910   - SubOne
911     - SubOne1
912     - SubOne2
913   - SubTwo
914     - SubTwo1
915     - SubTwo2
917 Searching for "Group" should return all tags defined above.  Filtering
918 on SubOne filters also it's sub-tags.  Etc.
920 There is no limit on the depth for the tag hierarchy.
922 *** Additional syntax for non-unique grouptags
924 Additional syntax is defined for grouptags if the tags in the group
925 don't have to be distinct on a heading.
927 Grouptags had to previously be defined with { }.  This syntax is
928 already used for exclusive tags and Grouptags need their own,
929 non-exclusive syntax.  This behaviour is achieved with [ ].  Note: { }
930 can still be used also for Grouptags but then only one of the given
931 tags can be used on the headline at the same time.  Example:
933 [ group : sub1 sub2 ]
935 #+BEGIN_SRC org
936 ,* Test                                                            :sub1:sub2:
937 #+END_SRC
939 This is a more general case than the already existing syntax for
940 grouptags; { }.
942 *** Define regular expression patterns as tags
944 Tags can be defined as grouptags with regular expressions as
945 "sub-tags".
947 The regular expressions in the group must be marked up within { }.
948 Example use:
950 : #+TAGS: [ Project : {P@.+} ]
952 Searching for the tag Project will now list all tags also including
953 regular expression matches for P@.+.  This is good for example for
954 projects tagged with a common identifier, i.e. P@2014_OrgTags.
956 *** Filtering in the agenda on grouptags (Tag hierarchies)
958 Filtering in the agenda on grouptags filters all of the related tags.
959 Except if a filter is applied with a (double) prefix-argument.
961 Filtering in the agenda on subcategories does not filter the "above"
962 levels anymore.
964 If a grouptag contains a regular expression the regular expression
965 is also used as a filter.
967 *** Minor refactoring of ~org-agenda-filter-by-tag~
969 Now uses the argument ARG and optional argument exclude instead of
970 strip and narrow.  ARG because the argument has multiple purposes and
971 makes more sense than strip now.  The term "narrowing" is changed to
972 exclude.
974 The main purpose is for the function to make more logical sense when
975 filtering on tags now when tags can be structured in hierarchies.
977 *** Babel: support for sed scripts
979 Thanks to Bjarte Johansen for this feature.
981 *** Babel: support for Processing language
983 New ob-processing.el library.
985 This library implements necessary functions for implementing editing
986 of Processing code blocks, viewing the resulting sketches in an
987 external viewer, and HTML export of the sketches.
989 Check the documentation for more details.
991 Thanks to Jarmo Hurri for this feature.
993 *** New behaviour for ~org-toggle-latex-fragment~
995 The new behaviour is the following:
997 - With a double prefix argument or with a single prefix argument when
998   point is before the first headline, toggle overlays in the whole
999   buffer;
1001 - With a single prefix argument, toggle overlays in the current
1002   subtree;
1004 - On latex code, toggle overlay at point;
1006 - Otherwise, toggle overlays in the current section.
1008 *** Additional markup with =#+INCLUDE= keyword
1010 The content of the included file can now be optionally marked up, for
1011 instance as HTML.  See the documentation for details.
1013 *** File links with =#+INCLUDE= keyword
1015 Objects can be extracted via =#+INCLUDE= using file links.  It is
1016 possible to include only the contents of the object.  See manual for
1017 more information.
1019 *** Drawers do not need anymore to be referenced in =#+DRAWERS=
1021 One can use a drawer without listing it in the =#+DRAWERS= keyword,
1022 which is now obsolete.  As a consequence, this change also deprecates
1023 ~org-drawers~ variable.
1025 *** ~org-edit-special~ can edit export blocks
1027 Using C-c ' on an export block now opens a sub-editing buffer.  Major
1028 mode in that buffer is determined by export backend name (e.g.,
1029 "latex" \to "latex-mode").  You can define exceptions to this rule by
1030 configuring ~org-src-lang-modes~, which see.
1032 *** Additional =:hline= processing to ob-shell
1034 If the argument =:hlines yes= is present in a babel call, an optional
1035 argument =:hlines-string= can be used to define a string to use as a
1036 representation for the lisp symbol ='hline= in the shell program.  The
1037 default is =hline=.
1039 *** Markdown export supports switches in source blocks
1041 For example, it is now possible to number lines using the =-n= switch in
1042 a source block.
1044 *** New option in ASCII export
1046 Plain lists can have an extra margin by setting ~org-ascii-list-margin~
1047 variable to an appopriate integer.
1049 *** New blocks in ASCII export
1051 ASCII export now supports =#+BEGIN_JUSTIFYRIGHT= and =#+BEGIN_JUSTIFYLEFT=
1052 blocks.  See documentation for details.
1054 *** More back-end specific publishing options
1056 The number of publishing options specific to each back-end has been
1057 increased.  See manual for details.
1059 *** Export inline source blocks
1061 Inline source code was used to be removed upon exporting.  They are
1062 now handled as standard code blocks, i.e., the source code can appear
1063 in the output, depending on the parameters.
1065 *** Extend ~org-export-first-sibling-p~ and ~org-export-last-sibling-p~
1067 These functions now support any element or object, not only headlines.
1069 *** New function: ~org-export-table-row-in-header-p~
1071 *** New function: ~org-export-get-reference~
1073 *** New function: ~org-element-lineage~
1075 This function deprecates ~org-export-get-genealogy~.  It also provides
1076 more features.  See docstring for details.
1078 *** New function: ~org-element-copy~
1080 *** New filter: ~org-export-filter-body-functions~
1082 Functions in this filter are applied on the body of the exported
1083 document, befor wrapping it within the template.
1085 *** New :environment parameter when exporting example blocks to LaTeX
1087 : #+ATTR_LATEX: :environment myverbatim
1088 : #+BEGIN_EXAMPLE
1089 : This sentence is false.
1090 : #+END_EXAMPLE
1092 will be exported using =@samp(myverbatim)= instead of =@samp(verbatim)=.
1094 *** Various improvements on radio tables
1096 Radio tables feature now relies on Org's export framework ("ox.el").
1097 ~:no-escape~ parameter no longer exists, but additional global
1098 parameters are now supported: ~:raw~, ~:backend~.  Moreover, there are new
1099 parameters specific to some pre-defined translators, e.g.,
1100 ~:environment~ and ~:booktabs~ for ~orgtbl-to-latex~.  See translators
1101 docstrings (including ~orgtbl-to-generic~) for details.
1103 *** Non-floating minted listings in Latex export
1105 It is not possible to specify =#+attr_latex: :float nil= in conjunction
1106 with source blocks exported by the minted package.
1108 *** Field formulas can now create columns as needed
1110 Previously, evaluating formulas that referenced out-of-bounds columns
1111 would throw an error. A new variable ~org-table-formula-create-columns~
1112 was added to adjust this behavior. It is now possible to silently add
1113 new columns, to do so with a warning or to explicitly ask the user
1114 each time.
1116 *** ASCII plot
1118 Ability to plot values in a column through ASCII-art bars.  See manual
1119 for details.
1121 *** New hook: ~org-archive-hook~
1123 This hook is called after successfully archiving a subtree, with point
1124 on the original subtree, not yet deleted.
1126 *** New option: ~org-attach-archive-delete~
1128 When non-nil, attachments from archived subtrees are removed.
1130 *** New option: ~org-latex-caption-above~
1132 This variable generalizes ~org-latex-table-caption-above~, which is now
1133 deprecated.  In addition to tables, it applies to source blocks,
1134 special blocks and images.  See docstring for more information.
1136 *** New option: ~org-latex-prefer-user-labels~
1138 See the docstring for more information.
1140 *** Export unnumbered headlines
1142 Headlines, for which the property ~UNNUMBERED~ is non-nil, are now
1143 exported without section numbers irrespective of their levels.  The
1144 property is inherited by children.
1146 *** Tables can be sorted with an arbitrary function
1148 It is now possible to specify a function, both programatically,
1149 through a new optional argument, and interactively with ~f~ or ~F~ keys,
1150 to sort a table.
1152 *** Table of contents can be local to a section
1154 The ~TOC~ keywords now accepts an optional ~local~ parameter.  See manual
1155 for details.
1157 *** Countdown timers can now be paused
1159 ~org-timer-pause-time~ now pauses and restarts both relative and
1160 countdown timers.
1162 *** New option ~only-window~ for ~org-agenda-window-setup~
1164 When ~org-agenda-window-setup~ is set to ~only-window~, the agenda is
1165 displayed as the sole window of the current frame.
1167 *** ~{{{date}}}~ macro supports optional formatting argument
1169 It is now possible to supply and optional formatting argument to
1170 ~{{{date}}}~. See manual for details.
1172 *** ~{{{property}}}~ macro supports optional search argument
1174 It is now possible to supply an optional search option to
1175 ~{{{property}}}~ in order to retrieve remote properties optional.  See
1176 manual for details.
1178 *** New option ~org-export-with-title~
1180 It is possible to suppress the title insertion with ~#+OPTIONS:
1181 title:nil~ or globally using the variable ~org-export-with-title~.
1183 *** New entities family: "\_ "
1185 "\_ " are used to insert up to 20 contiguous spaces in various
1186 back-ends.  In particular, this family can be used to introduce
1187 leading spaces within table cells.
1189 *** New MathJax configuration options
1191 Org uses the MathJax CDN by default.  See the manual and the docstring
1192 of ~org-html-mathjax-options~ for details.
1194 *** New behaviour in `org-export-options-alist'
1196 When defining a back-end, it is now possible to specify to give
1197 `parse' behaviour on a keyword.  It is equivalent to call
1198 `org-element-parse-secondary-string' on the value.
1200 However, parsed =KEYWORD= is automatically associated to an
1201 =:EXPORT_KEYWORD:= property, which can be used to override the keyword
1202 value during a subtree export.  Moreover, macros are expanded in such
1203 keywords and properties.
1205 *** Viewport support in html export
1207 Viewport for mobile-optimized website is now automatically inserted
1208 when exporting to html.  See ~org-html-viewport~ for details.
1210 *** New ~#+SUBTITLE~ export keyword
1212 Org can typeset a subtitle in some export backends.  See the manual
1213 for details.
1215 *** Remotely edit a footnote definition
1217 Calling ~org-edit-footnote-reference~ (C-c ') on a footnote reference
1218 allows to edit its definition, as long as it is not anonymous, in a
1219 dedicated buffer.  It works even if buffer is currently narrowed.
1221 *** New function ~org-delete-indentation~ bound to ~M-^~
1223 Work as ~delete-indentation~ unless at heading, in which case text is
1224 added to headline text.
1226 *** Support for images in Texinfo export
1228 ~Texinfo~ back-end now handles images.  See the manual for details.
1230 *** Support for captions in Texinfo export
1232 Tables and source blocks can now have captions.  Additionally, lists
1233 of tables and lists of listings can be inserted in the document with
1234 =#+TOC= keyword.
1236 *** Countdown timer support hh:mm:ss format
1238 In addition to setting countdown timers in minutes, they can also be
1239 set using the hh:mm:ss format.
1241 *** Extend ~org-clone-subtree-with-time-shift~
1243 ~org-clone-subtree-with-time-shift~ now accepts 0 as an argument for the
1244 number of clones, which removes the repeater from the original subtree
1245 and creates one shifted, repeating clone.
1247 *** New time block for clock tables: ~untilnow~
1249 It encompasses all past closed clocks.
1251 *** Support for the ~polyglossia~ LaTeX package
1253 See the docstring of ~org-latex-classes~ and
1254 ~org-latex-guess-polyglossia-language~ for details.
1256 *** None-floating tables, graphics and blocks can have captions
1258 *** `org-insert-heading' can be forced to insert top-level headline
1260 ** Removed functions
1262 *** Removed function ~org-translate-time~
1264 Use ~org-timestamp-translate~ instead.
1266 *** Removed function ~org-beamer-insert-options-template~
1268 This function inserted a Beamer specific template at point or in
1269 current subtree.  Use ~org-export-insert-default-template~ instead, as
1270 it provides more features and covers all export back-ends.  It is also
1271 accessible from the export dispatcher.
1273 *** Removed function ~org-timer-cancel-timer~
1275 ~org-timer-stop~ now stops both relative and countdown timers.
1277 *** Removed function ~org-export-solidify-link-text~
1279 This function, being non-bijective, introduced bug in internal
1280 references.  Use ~org-export-get-reference~ instead.
1282 *** Removed function ~org-end-of-meta-data-and-drawers~
1284 The function is superseded by ~org-end-of-meta-data~, called with an
1285 optional argument.
1287 *** Removed functions ~org-table-colgroup-line-p~, ~org-table-cookie-line-p~
1289 These functions were left-over from pre 8.0 era.  They are not correct
1290 anymore.  Since they are not needed, they have no replacement.
1292 ** Removed options
1294 *** ~org-list-empty-line-terminates-plain-lists~ is deprecated
1296 It will be kept in code base until next release, for backward
1297 compatibility.
1299 If you need to separate consecutive lists with blank lines, always use
1300 two of them, as if this option was nil (default value).
1302 *** ~org-export-with-creator~ is a boolean
1304 Special ~comment~ value is no longer allowed.  It is possible to use a
1305 body filter to add comments about the creator at the end of the
1306 document instead.
1308 *** Removed option =org-html-use-unicode-chars=
1310 Setting this to non-nil was problematic as it converted characters
1311 everywhere in the buffer, possibly corrupting URLs.
1313 *** Removed option =org-babel-sh-command=
1315 This undocumented option defaulted to the value of =shell-file-name= at
1316 the time of loading =ob-shell=.  The new behaviour is to use the value
1317 of =shell-file-name= directly when the shell langage is =shell=.  To chose
1318 a different shell, either customize =shell-file-name= or bind this
1319 variable locally.
1321 *** Removed option =org-babel-sh-var-quote-fmt=
1323 This undocumented option was supposed to provide different quoting
1324 styles when changing the shell type.  Changing the shell type can now
1325 be done directly from the source block and the quoting style has to be
1326 compatible across all shells, so a customization doesn't make sense
1327 anymore.  The chosen hard coded quoting style conforms to POSIX.
1329 *** Removed option ~org-insert-labeled-timestamps-at-point~
1331 Setting this option to anything else that the default value (nil)
1332 would create invalid planning info.  This dangerous option is now
1333 removed.
1335 *** Removed option ~org-koma-letter-use-title~
1337 Use org-export-with-title instead.  See also below.
1339 *** Removed option ~org-entities-ascii-explanatory~
1341 This variable has no effect since Org 8.0.
1343 *** Removed option ~org-table-error-on-row-ref-crossing-hline~
1345 This variable has no effect since August 2009.
1347 *** Removed MathML-related options from ~org-html-mathjax-options~
1349 MathJax automatically chooses the best display technology based on the
1350 end-users browser.  You may force initial usage of MathML via
1351 ~org-html-mathjax-template~ or by setting the ~path~ property of
1352 ~org-html-mathjax-options~.
1354 *** Removed comment-related filters
1356 ~org-export-filter-comment-functions~ and
1357 ~org-export-filter-comment-block-functions~ variables do not exist
1358 anymore.
1360 ** Miscellaneous
1362 *** Strip all meta data from ITEM special property
1364 ITEM special property does not contain TODO, priority or tags anymore.
1366 *** File names in links accept are now compatible with URI syntax
1368 Absolute file names can now start with =///= in addition to =/=. E.g.,
1369 =[[file:///home/me/unicorn.jpg]]=.
1371 *** Footnotes in included files are now local to the file
1373 As a consequence, it is possible to include multiple Org files with
1374 footnotes in a master document without being concerned about footnote
1375 labels colliding.
1377 *** Mailto links now use regular URI syntax
1379 This change deprecates old Org syntax for mailto links:
1380 =mailto:user@domain::Subject=.
1382 *** =QUOTE= keywords do not exist anymore
1384 =QUOTE= keywords have been deprecated since Org 8.2.
1386 *** Select tests to perform with the build system
1388 The build system has been enhanced to allow test selection with a
1389 regular expression by defining =BTEST_RE= during the test invocation.
1390 This is especially useful during bisection to find just when a
1391 particular test failure was introduced.
1393 *** Exact heading search for external links ignore spaces and cookies
1395 Exact heading search for links now ignore spaces and cookies. This is
1396 the case for links of the form ~file:projects.org::*task title~, as well
1397 as links of the form ~file:projects.org::some words~ when
1398 ~org-link-search-must-match-exact-headline~ is not nil.
1400 *** ~org-latex-hyperref-template~, ~org-latex-title-command~ formatting
1402 New formatting keys are supported.  See the respective docstrings.
1403 Note, ~org-latex-hyperref-template~ has a new default value.
1405 *** ~float, wasysym, marvosym~ are removed from ~org-latex-default-packages-alist~
1407 If you require any of these package add them to your preamble via
1408 ~org-latex-packages-alist~. Org also uses default LaTeX ~\tolerance~ now.
1410 *** When exporting, throw an error on unresolved id/fuzzy links and code refs
1412 This helps spotting wrong links.
1414 * Version 8.2
1416 ** Incompatible changes
1417 *** =ob-sh.el= renamed to =ob-shell=
1418 This may require two changes in user config.
1420 1. In =org-babel-do-load-languages=, change =(sh . t)= to =(shell . t)=.
1421 2. Edit =local.mk= files to change the value of =BTEST_OB_LANGUAGES=
1422    to remove "sh" and include "shell".
1424 *** Combine org-mac-message.el and org-mac-link-grabber into org-mac-link.el
1426 Please remove calls to =(require 'org-mac-message)= and =(require
1427 'org-mac-link-grabber)= in your =.emacs= initialization file.  All you
1428 need now is =(require 'org-mac-link)=.
1430 Additionally, replace any calls to =ogml-grab-link= to
1431 =org-mac-grab-link=.  For example, replace this line:
1433 : (define-key org-mode-map (kbd "C-c g") 'omgl-grab-link)
1435 with this:
1437 : (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link)
1439 *** HTML export: Replace =HTML_HTML5_FANCY= by =:html-html5-fancy= (...)
1441 Some of the HTML specific export options in Org <8.1 are either nil or
1442 t, like =#+HTML_INCLUDE_STYLE=.  We replaced these binary options with
1443 option keywords like :html-include-style.
1445 So you need to replace
1447 : #+HTML_INCLUDE_STYLE: t
1451 : #+OPTIONS: :html-include-style t
1453 Options affected by this change: =HTML5_FANCY=, =HTML_INCLUDE_SCRIPTS=
1454 and =HTML_INCLUDE_STYLE=.
1456 *** Add an argument to ~org-export-to-file~ and ~org-export-to-buffer~
1458 ~org-export-to-file~ and ~org-export-to-file~ can run in a different
1459 process when provided a non-nil =ASYNC= optional argument, without
1460 relying on ~org-export-async-start~ macro.
1462 Since =ASYNC= is the first of optional arguments, you have to shift
1463 the other optional arguments accordingly.
1465 *** Export back-ends are now structures
1467 Export back-ends are now structures, and stored as such in the
1468 communication channel during an export process.  In other words, from
1469 now on, ~(plist-get info :back-end)~ will return a structure instead
1470 of a symbol.
1472 Arguments in hooks and in filters are still symbols, though.
1474 ** Important bugfixes
1476 *** [[doc:org-insert-heading][org-insert-heading]] has been rewritten and bugs are now fixed
1477 *** The replacement of disputed keys is now turned of when reading a date
1479 *** Match string for sparse trees can now contain a slash in a property value
1481     You can now have searches like SOMEPROP="aaa/bbb".  Until now,
1482     this would break because the slash would be interpreted as the
1483     separator starting a TOTO match string.
1484 ** New features
1486 *** =C-c ^ x= will now sort checklist items by their checked status
1488 See [[doc:org-sort-list][org-sort-list]]: hitting =C-c ^ x= will put checked items at the end
1489 of the list.
1490 *** Various LaTeX export enhancements
1492 - Support SVG images
1493 - Support for .pgf files
1494 - LaTeX Babel blocks can now be exported as =.tikz= files
1495 - Allow =latexmk= as an option for [[doc:org-latex-pdf-process][org-latex-pdf-process]]
1496 - When using =\usepackage[AUTO]{babel}=, AUTO will automatically be
1497   replaced with a value compatible with ~org-export-default-language~
1498   or ~LANGUAGE~ keyword.
1499 - The dependency on the =latexsym= LaTeX package has been removed, we
1500   now use =amssymb= symbols by default instead.
1502 *** New functions for paragraph motion
1504     The commands =C-down= and =C-up= now invoke special commands
1505     that use knowledge from the org-elements parser to move the cursor
1506     in a paragraph-like way.
1508 *** New entities in =org-entities.el=
1510 Add support for ell, imath, jmath, varphi, varpi, aleph, gimel, beth,
1511 dalet, cdots, S (§), dag, ddag, colon, therefore, because, triangleq,
1512 leq, geq, lessgtr, lesseqgtr, ll, lll, gg, ggg, prec, preceq,
1513 preccurlyeq, succ, succeq, succurlyeq, setminus, nexist(s), mho,
1514 check, frown, diamond.  Changes loz, vert, checkmark, smile and tilde.
1516 *** Anonymous export back-ends
1518 ~org-export-create-backend~ can create anonymous export back-ends,
1519 which can then be passed to export functions like
1520 ~org-export-to-file~, ~org-export-to-buffer~ or ~org-export-as~.
1522 It allows for quick translation of Org syntax without the overhead of
1523 registering a new back-end.
1525 *** New agenda fortnight view
1527     The agenda has not, in addition to day, week, month, and year
1528     views, also a fortnight view covering 14 days.
1529 ** New options
1531 *** New option [[doc:org-bookmark-names-plist][org-bookmark-names-plist]]
1533 This allows to specify the names of automatic bookmarks.
1534 *** New option [[doc:org-agenda-ignore-drawer-properties][org-agenda-ignore-drawer-properties]]
1536 This allows more flexibility when optimizing the agenda generation.
1537 See http://orgmode.org/worg/agenda-optimization.html for details.
1538 *** New option: [[doc:org-html-link-use-abs-url][org-html-link-use-abs-url]] to force using absolute URLs
1540 This is an export/publishing option, and should be used either within
1541 the =#+OPTIONS= line(s) or within a [[doc:org-publish-project-alist][org-publish-project-alist]].
1543 Setting this option to =t= is needed when the HTML output does not
1544 allow relative URLs.  For example, the =contrib/lisp/ox-rss.el=
1545 library produces a RSS feed, and RSS feeds need to use absolute URLs,
1546 so a combination of =:html-link-home "..." and :html-link-use-abs-url
1547 t= is required---see the configuration example in the comment section
1548 of =ox-rss.el=.
1550 *** New option [[doc:org-babel-ditaa-java-cmd][org-babel-ditaa-java-cmd]]
1552 This makes java executable configurable for ditaa blocks.
1554 *** New options [[doc:org-babel-latex-htlatex][org-babel-latex-htlatex]] and [[doc:org-babel-latex-htlatex-packages][org-babel-latex-htlatex-packages]]
1556 This enables SVG generation from latex code blocks.
1558 *** New option: [[doc:org-habit-show-done-always-green][org-habit-show-done-always-green]]
1560 See [[http://lists.gnu.org/archive/html/emacs-orgmode/2013-05/msg00214.html][this message]] from Max Mikhanosha.
1562 *** New option: [[doc:org-babel-inline-result-wrap][org-babel-inline-result-wrap]]
1564 If you set this to the following
1566 : (setq org-babel-inline-result-wrap "$%s$")
1568 then inline code snippets will be wrapped into the formatting string.
1570 *** New option: [[doc:org-special-ctrl-o][org-special-ctrl-o]]
1572     This variable can be used to turn off the special behavior of
1573     =C-o= in tables.
1574 ** New contributed packages
1576 - =ox-bibtex.el= by Nicolas Goaziou :: an utility to handle BibTeX
1577      export to both LaTeX and HTML exports.  It uses the [[http://www.lri.fr/~filliatr/bibtex2html/][bibtex2html]]
1578      software.
1580 - =org-screenshot.el= by Max Mikhanosha :: an utility to handle
1581      screenshots easily from Org, using the external tool [[http://freecode.com/projects/scrot][scrot]].
1583 ** Miscellaneous
1585 *** "QUOTE" keywords in headlines are deprecated
1587 "QUOTE" keywords are an undocumented feature in Org.  When a headline
1588 starts with the keyword "QUOTE", its contents are parsed as
1589 a ~quote-section~ and treated as an example block.  You can achieve
1590 the same with example blocks.
1592 This feature is deprecated and will be removed in the next Org
1593 release.
1595 * Version 8.0.1
1597 ** Installation
1599 Installation instructions have been updated and simplified.
1601 If you have troubles installing or updating Org, focus on these
1602 instructions:
1604 - when updating via a =.zip/.tar.gz= file, you only need to set the
1605   =load-path= in your =.emacs=.  Set it before any other Org
1606   customization that would call autoloaded Org functions.
1608 - when updating by pulling Org's Git repository, make sure to create the
1609   correct autoloads.  You can do this by running =~$ make autoloads= (to
1610   only create the autoloads) or by running =~$ make= (to also compile
1611   the Emacs lisp files.)  =~$ make help= and =~$ make helpall= gives you
1612   detailed explanations.
1614 - when updating through ELPA (either from GNU ELPA or from Org ELPA),
1615   you have to install Org's ELPA package in a session where no Org
1616   function has been called already.
1618 When in doubt, run =M-x org-version RET= and see if you have a mixed-up
1619 installation.
1621 See http://orgmode.org/org.html#Installation for details.
1623 ** Incompatible changes
1625 Org 8.0 is the most disruptive major version of Org.
1627 If you configured export options, you will have to update some of them.
1629 If you used =#+ATTR_*= keywords, the syntax of the attributes changed and
1630 you will have to update them.
1632 Below is a list of changes for which you need to take action.
1634 See http://orgmode.org/worg/org-8.0.html for the most recent version of
1635 this list and for detailed instructions on how to migrate.
1637 **** New export engine
1639 Org 8.0 comes with a new export engine written by Nicolas Goaziou.  This
1640 export engine relies on ~org-element.el~ (Org's syntax parser), which was
1641 already in Org's core.  This new export engine triggered the rewriting of
1642 /all/ export back-ends.
1644 The most visible change is the export dispatcher, accessible through the
1645 keybinding =C-c C-e=.  By default, this menu only shows some of the
1646 built-in export formats, but you can add more formats by loading them
1647 directly (e.g., =(require 'ox-texinfo)= or by configuring the option
1648 [[doc:org-export-backends][org-export-backends]].
1650 More contributed back-ends are available from the =contrib/= directory, the
1651 corresponding files start with the =ox-= prefix.
1653 If you customized an export back-end (like HTML or LaTeX), you will need to
1654 rename some options so that your customization is not lost.  Typically, an
1655 option starting with =org-export-html-= is now named =org-html-=.  See the
1656 manual for details and check [[http://orgmode.org/worg/org-8.0.html][this Worg page]] for directions.
1658 **** New syntax for #+ATTR_HTML/LaTeX/... options
1660      : #+ATTR_HTML width="200px"
1662      should now be written
1664      : #+ATTR_HTML :width 200px
1666      Keywords like =#+ATTR_HTML= and =#+ATTR_LaTeX= are defined in their
1667      respective back-ends, and the list of supported parameters depends on
1668      each backend.  See Org's manual for details.
1670 **** ~org-remember.el~ has been removed
1672      You cannot use =remember.el= anymore to capture notes.
1674      Support for remember templates has been obsoleted since long, it is
1675      now fully removed.
1677      Use =M-x org-capture-import-remember-templates RET= to import your
1678      remember templates into capture templates.
1680 **** ~org-jsinfo.el~ has been merged into ~ox-html.el~
1682      If you were requiring ~ox-jsinfo.el~ in your ~.emacs.el~ file, you
1683      will have to remove this requirement from your initialization file.
1685 **** Note for third-party developers
1687      The name of the files for export back-end have changed: we now use the
1688      prefix =ox-= for those files (like we use the =ob-= prefix for Babel
1689      files.)  For example ~org-html.el~ is now ~ox-html.el~.
1691      If your code relies on these files, please update the names in your
1692      code.
1694 **** Packages moved from core to contrib
1696      Since packages in Org's core are meant to be part of GNU Emacs, we try
1697      to be minimalist when it comes to adding files into core.  For 8.0, we
1698      moved some contributions into the =contrib/= directory.
1700      The rationale for deciding that these files should live in =contrib/=
1701      is either because they rely on third-party software that is not
1702      included in Emacs, or because they are not targeting a significant
1703      user-base.
1705      - org-colview-xemacs.el
1706      - org-mac-message.el
1707      - org-mew.el
1708      - org-wl.el
1709      - ox-freedmind.el
1710      - ox-taskjuggler.el
1712      Note that ~ox-freedmind.el~ has been rewritten by Jambunathan,
1713      ~org-mew.el~ has been enhanced by Tokuya Kameshima and
1714      ~ox-taskjuggler.el~ by Nicolas Goaziou and others.
1716      Also, the Taskjuggler exporter now uses TJ3 by default.  John Hendy
1717      wrote [[http://orgmode.org/worg/org-tutorials/org-taskjuggler3.html][a tutorial on Worg]] for the TJ3 export.
1719 ** New packages in core
1721 *** ~ob-makefile.el~ by Eric Schulte and Thomas S. Dye
1723     =ob-makefile.el= implements Org Babel support for Makefile tangling.
1725 *** ~ox-man.el~ by Luis Anaya
1727     =ox-man.el= allows you to export Org files to =man= pages.
1729 *** ~ox-md.el~ by Nicolas Goaziou
1731     =ox-md.el= allows you to export Org files to Markdown files, using the
1732     vanilla [[http://daringfireball.net/projects/markdown/][Markdown syntax]].
1734 *** ~ox-texinfo.el~ by Jonathan Leech-Pepin
1736     =ox-texinfo.el= allows you to export Org files to [[http://www.gnu.org/software/texinfo/][Texinfo]] files.
1738 ** New packages in contrib
1740 *** ~ob-julia.el~ by G. Jay Kerns
1742     [[http://julialang.org/][Julia]] is a new programming language.
1744     =ob-julia.el= provides Org Babel support for evaluating Julia source
1745     code.
1747 *** ~ob-mathomatic.el~ by Luis Anaya
1749     [[http://www.mathomatic.org/][mathomatic]] a portable, command-line, educational CAS and calculator
1750     software, written entirely in the C programming language.
1752     ~ob-mathomatic.el~ provides Org Babel support for evaluating mathomatic
1753     entries.
1755 *** ~ob-tcl.el~ by Luis Anaya
1757     ~ob-tcl.el~ provides Org Babel support for evaluating [[http://www.tcl.tk/][Tcl]] source code.
1759 *** ~org-bullets.el~ by Evgeni Sabof
1761     Display bullets instead of stars for headlines.
1763     Also see [[http://orgmode.org/worg/org-faq.html#sec-8-12][this updated FAQ]] on how to display another character than "*"
1764     for starting headlines.
1766 *** ~org-favtable.el~ by Marc-Oliver Ihm
1768     ~org-favtable.el~ helps you to create and update a table of favorite
1769     locations in org, keeping the most frequently visited lines right at
1770     the top.  This table is called "favtable".  See the documentation on
1771     [[http://orgmode.org/worg/org-contrib/org-favtable.html][Worg]].
1773 *** ~ox-confluence.el~ by Sébastien Delafond
1775     ~ox-confluence.el~ lets you convert Org files to [[https://confluence.atlassian.com/display/DOC/Confluence%2BWiki%2BMarkup][Confluence Wiki]] files.
1777 *** ~ox-deck.el~ and ~ox-s5.el~ by Rick Frankel
1779     [[http://imakewebthings.com/deck.js/][deck.js]] is a javascript library for displaying HTML ages as
1780     presentations.  ~ox-deck.el~ exports Org files to HTML presentations
1781     using =deck.js=.
1783     [[http://meyerweb.com/eric/tools/s5/][s5]] is a set of scripts which also allows to display HTML pages as
1784     presentations.  ~ox-s5.el~ exports Org files to HTML presentations
1785     using =s5=.
1787 *** ~ox-groff.el~ by Luis Anaya and Nicolas Goaziou
1789     The [[http://www.gnu.org/software/groff/][groff]] (GNU troff) software is a typesetting package which reads
1790     plain text mixed with formatting commands and produces formatted
1791     output.
1793     Luis Anaya and Nicolas Goaziou implemented ~ox-groff.el~ to allow
1794     conversion from Org files to groff.
1796 *** ~ox-koma-letter.el~ by Nicolas Goaziou and Alan Schmitt
1798     This back-end allow to export Org pages to the =KOMA Scrlttr2= format.
1800 *** ~ox-rss.el~ by Bastien
1802     This back-end lets you export Org pages to RSS 2.0 feeds.  Combined
1803     with the HTML publishing feature, this allows you to build a blog
1804     entirely with Org.
1806 ** New features
1808 *** Export
1810 **** New export generic options
1812 If you use Org exporter, we advise you to re-read [[http://orgmode.org/org.html#Exporting][the manual section about
1813 it]].  It has been updated and includes new options.
1815 Among the new/updated export options, three are of particular importance:
1817 - [[doc:org-export-allow-bind-keywords][org-export-allow-bind-keywords]] :: This option replaces the old option
1818      =org-export-allow-BIND= and the default value is =nil=, not =confirm=.
1819      You will need to explicitly set this to =t= in your initialization
1820      file if you want to allow =#+BIND= keywords.
1822 - [[doc:org-export-with-planning][org-export-with-planning]] :: This new option controls the export of
1823      =SCHEDULED:, DEADLINE:, CLOSED:= lines, and planning information is
1824      now skipped by default during export.  This use to be the job of
1825      [[doc:org-export-with-timestamps][org-export-with-timestamps]], but this latter option has been given a
1826      new role: it controls the export of /standalone time-stamps/.  When
1827      set to =nil=, Org will not export active and inactive time-stamps
1828      standing on a line by themselves or within a paragraph that only
1829      contains time-stamps.
1831 To check if an option has been introduced or its default value changed in
1832 Org 8.0, do =C-h v [option] RET= and check if the documentation says that
1833 the variable has been introduced (or changed) in version 24.4 of Emacs.
1835 **** Enhanced default stylesheet for the HTML exporter
1837 See the new default value of [[doc:org-html-style-default][org-html-style-default]].
1839 **** New tags, classes and ids for the HTML exporter
1841 See the new default value of [[doc:org-html-divs][org-html-divs]].
1843 **** Support for tikz pictures in LaTeX export
1844 **** ~org-man.el~: New export function for "man" links
1845 **** ~org-docview.el~: New export function for docview links
1846 *** Structure editing
1848 **** =C-u C-u M-RET= inserts a heading at the end of the parent subtree
1849 **** Cycling to the =CONTENTS= view keeps inline tasks folded
1851 [[doc:org-cycle-hook][org-cycle-hook]] as a new function [[doc:org-cycle-hide-inline-tasks][org-cycle-hide-inline-tasks]] which
1852 prevents the display of inline tasks when showing the content of a subtree.
1854 **** =C-c -= in a region makes a list item for each line
1856 This is the opposite of the previous behavior, where =C-c -= on a region
1857 would create one item for the whole region, and where =C-u C-c -= would
1858 create an item for each line.  Now =C-c -= on the selected region creates
1859 an item per line, and =C-u C-c -= creates a single item for the whole
1860 region.
1862 **** When transposing words, markup characters are now part of the words
1864 In Emacs, you can transpose words with =M-t=.  Transposing =*these*
1865 _words__= will preserve markup.
1867 **** New command [[doc:org-set-property-and-value][org-set-property-and-value]] bound to =C-c C-x P=
1869 This command allows you to quickly add both the property and its value.  It
1870 is useful in buffers where there are many properties and where =C-c C-x p=
1871 can slow down the flow of editing too much.
1873 **** New commands [[doc:org-next-block][org-next-block]] and [[doc:org-previous-block][org-previous-block]]
1875 These commands allow you to go to the previous block (=C-c M-b= or the
1876 speedy key =B=) or to the next block (=C-c M-f= or the speedy key =F=.)
1878 **** New commands [[doc:org-drag-line-forward][org-drag-line-forward]] and [[doc:org-drag-line-backward][org-drag-line-backward]]
1880 These commands emulate the old behavior of =M-<down>= and =M-<up>= but are
1881 now bound to =S-M-<down>= and =S-M-<up>= respectively, since =M-<down>= and
1882 =M-<up>= now drag the whole element at point (a paragraph, a table, etc.)
1883 forward and backward.
1885 **** When a list item has a checkbox, inserting a new item uses a checkbox too
1886 **** When sorting entries/items, only the description of links is considered
1888 Now Org will sort this list
1890 : - [[http://abc.org][B]]
1891 : - [[http://def.org][A]]
1893 like this:
1895 : - [[http://def.org][A]]
1896 : - [[http://abc.org][B]]
1898 by comparing the descriptions, not the links.
1899 Same when sorting headlines instead of list items.
1900 **** New option =orgstruct-heading-prefix-regexp=
1902 For example, setting this option to "^;;; " in Emacs lisp files and using
1903 =orgstruct-mode= in those files will allow you to cycle through visibility
1904 states as if lines starting with ";;; *..." where headlines.
1906 In general, you want to set =orgstruct-heading-prefix-regexp= as a file
1907 local variable.
1909 **** New behavior of [[doc:org-clone-subtree-with-time-shift][org-clone-subtree-with-time-shift]]
1911 The default is now to ask for a time-shift only when there is a time-stamp.
1912 When called with a universal prefix argument =C-u=, it will not ask for a
1913 time-shift even if there is a time-stamp.
1915 **** New option [[doc:org-agenda-restriction-lock-highlight-subtree][org-agenda-restriction-lock-highlight-subtree]]
1917 This defaults to =t= so that the whole subtree is highlighted when you
1918 restrict the agenda view to it with =C-c C-x <= (or the speed command =<=).
1919 The default setting helps ensuring that you are not adding tasks after the
1920 restricted region.  If you find this highlighting too intrusive, set this
1921 option to =nil=.
1922 **** New option [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]]
1924 When switching back from a =DONE= keyword to a =TODO= keyword, Org now
1925 removes the =CLOSED= planning information, if any.  It also removes this
1926 information when going back to a non-TODO state (e.g., with =C-c C-t SPC=).
1927 If you want to keep the =CLOSED= planning information when removing the
1928 TODO keyword, set [[doc:org-closed-keep-when-no-todo][org-closed-keep-when-no-todo]] to =t=.
1930 **** New option [[doc:org-image-actual-width][org-image-actual-width]]
1932 This option allows you to change the width of in-buffer displayed images.
1933 The default is to use the actual width of the image, but you can use a
1934 fixed value for all images, or fall back on an attribute like
1936 : #+attr_html: :width 300px
1937 *** Scheduled/deadline
1939 **** Implement "delay" cookies for scheduled items
1941 If you want to delay the display of a scheduled task in the agenda, you can
1942 now use a delay cookie like this: =SCHEDULED: <2004-12-25 Sat -2d>=.  The
1943 task is still scheduled on the 25th but will appear in your agenda starting
1944 from two days later (i.e. from March 27th.)
1946 Imagine for example that your co-workers are not done in due time and tell
1947 you "we need two more days".  In that case, you may want to delay the
1948 display of the task in your agenda by two days, but you still want the task
1949 to appear as scheduled on March 25th.
1951 In case the task contains a repeater, the delay is considered to affect all
1952 occurrences; if you want the delay to only affect the first scheduled
1953 occurrence of the task, use =--2d= instead.  See [[doc:org-scheduled-delay-days][org-scheduled-delay-days]]
1954 and [[doc:org-agenda-skip-scheduled-delay-if-deadline][org-agenda-skip-scheduled-delay-if-deadline]] for details on how to
1955 control this globally or per agenda.
1957 **** Use =C-u C-u C-c C-s= will insert a delay cookie for scheduled tasks
1959 See the previous section for why delay cookies may be useful.
1961 **** Use =C-u C-u C-c C-d= will insert a warning delay for deadline tasks
1963 =C-u C-u C-c C-d= now inserts a warning delay to deadlines.
1964 *** Calendar, diary and appts
1966 **** New variable [[doc:org-read-date-minibuffer-local-map][org-read-date-minibuffer-local-map]]
1968 By default, this new local map uses "." to go to today's date, like in the
1969 normal =M-x calendar RET=.  If you want to deactivate this and to reassign
1970 the "@" key to =calendar-goto-today=, use this:
1972 #+BEGIN_SRC emacs-lisp
1973   ;; Unbind "." in Org's calendar:
1974   (define-key org-read-date-minibuffer-local-map (kbd ".") nil)
1976   ;; Bind "@" to `calendar-goto-today':
1977   (define-key org-read-date-minibuffer-local-map
1978               (kbd "@")
1979               (lambda () (interactive) (org-eval-in-calendar '(calendar-goto-today))))
1980 #+END_SRC
1982 **** In Org's calendar, =!= displays diary entries of the date at point
1984 This is useful when you want to check if you don't already have an
1985 appointment when setting new ones with =C-c .= or =C-c s=.  =!= will
1986 call =diary-view-entries= and display the diary in a separate buffer.
1988 **** [[doc:org-diary][org-diary]]: only keep the descriptions of links
1990 [[doc:org-diary][org-diary]] returns diary information from Org files, but it returns it
1991 in a diary buffer, not in an Org mode buffer.  When links are displayed,
1992 only show their description, not the full links.
1993 *** Agenda
1995 **** New agenda type =agenda*= and entry types =:scheduled* :deadline*=
1997 When defining agenda custom commands, you can now use =agenda*=: this will
1998 list entries that have both a date and a time.  This is useful when you
1999 want to build a list of appointments.
2001 You can also set [[doc:org-agenda-entry-types][org-agenda-entry-types]] either globally or locally in
2002 each agenda custom command and use =:timestamp*= and/or =:deadline*= there.
2004 Another place where this is useful is your =.diary= file:
2006 : %%(org-diary :scheduled*) ~/org/rdv.org
2008 This will list only entries from =~/org/rdv.org= that are scheduled with a
2009 time value (i.e. appointments).
2011 **** New agenda sorting strategies
2013 [[doc:org-agenda-sorting-strategy][org-agenda-sorting-strategy]] allows these new sorting strategies:
2015 | Strategy       | Explanations                             |
2016 |----------------+------------------------------------------|
2017 | timestamp-up   | Sort by any timestamp, early first       |
2018 | timestamp-down | Sort by any timestamp, late first        |
2019 | scheduled-up   | Sort by scheduled timestamp, early first |
2020 | scheduled-down | Sort by scheduled timestamp, late first  |
2021 | deadline-up    | Sort by deadline timestamp, early first  |
2022 | deadline-down  | Sort by deadline timestamp, late first   |
2023 | ts-up          | Sort by active timestamp, early first    |
2024 | ts-down        | Sort by active timestamp, late first     |
2025 | tsia-up        | Sort by inactive timestamp, early first  |
2026 | tsia-down      | Sort by inactive timestamp, late first   |
2028 **** New options to limit the number of agenda entries
2030 You can now limit the number of entries in an agenda view.  This is
2031 different from filters: filters only /hide/ the entries in the agenda,
2032 while limits are set while generating the list of agenda entries.
2034 These new options are available:
2036 - [[doc:org-agenda-max-entries][org-agenda-max-entries]] :: limit by number of entries.
2037 - [[doc:org-agenda-max-todos][org-agenda-max-todos]] :: limit by number of TODOs.
2038 - [[doc:org-agenda-max-tags][org-agenda-max-tags]] :: limit by number of tagged entries.
2039 - [[doc:org-agenda-max-effort][org-agenda-max-effort]] :: limit by effort (minutes).
2041 For example, if you locally set [[doc:org-agenda-max-todos][org-agenda-max-todos]] to 3 in an agenda
2042 view, the agenda will be limited to the first three todos.  Other entries
2043 without a TODO keyword or beyond the third TODO headline will be ignored.
2045 When setting a limit (e.g. about an effort's sum), the default behavior is
2046 to exclude entries that cannot be checked against (e.g. entries that have
2047 no effort property.)  To include other entries too, you can set the limit
2048 to a negative number.  For example =(setq org-agenda-max-tags -3)= will not
2049 show the fourth tagged headline (and beyond), but it will also show
2050 non-tagged headlines.
2052 **** =~= in agenda view sets temporary limits
2054 You can hit =~= in the agenda to temporarily set limits: this will
2055 regenerate the agenda as if the limits were set.  This is useful for
2056 example when you want to only see a list of =N= tasks, or a list of tasks
2057 that take only =N= minutes.
2059 **** "=" in agenda view filters by regular expressions
2061 You can now filter agenda entries by regular expressions using ~=~.  =C-u
2062 == will filter entries out.  Regexp filters are cumulative.  You can set
2063 [[doc:org-agenda-regexp-filter-preset][org-agenda-regexp-filter-preset]] to suit your needs in each agenda view.
2065 **** =|= in agenda view resets all filters
2067 Since it's common to combine tag filters, category filters, and now regexp
2068 filters, there is a new command =|= to reset all filters at once.
2070 **** Allow writing an agenda to an =.org= file
2072 You can now write an agenda view to an =.org= file.  It copies the
2073 headlines and their content (but not subheadings) into the new file.
2075 This is useful when you want to quickly share an agenda containing the full
2076 list of notes.
2078 **** New commands to drag an agenda line forward (=M-<down>=) or backward (=M-<up>=)
2080 It sometimes handy to move agenda lines around, just to quickly reorganize
2081 your tasks, or maybe before saving the agenda to a file.  Now you can use
2082 =M-<down>= and =M-<up>= to move the line forward or backward.
2084 This does not persist after a refresh of the agenda, and this does not
2085 change the =.org= files who contribute to the agenda.
2087 **** Use =%b= for displaying "breadcrumbs" in the agenda view
2089 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] now allows to use a =%b= formatter to tell Org
2090 to display "breadcrumbs" in the agenda view.
2092 This is useful when you want to display the task hierarchy in your agenda.
2094 **** Use =%l= for displaying the headline's level in the agenda view
2096 [[doc:org-agenda-prefix-format][org-agenda-prefix-format]] allows to use a =%l= formatter to tell Org to
2097 display entries with additional spaces corresponding to their level in the
2098 outline tree.
2100 **** [[doc:org-agenda-write][org-agenda-write]] will ask before overwriting an existing file
2102 =M-x org-agenda-write RET= (or =C-c C-w= from an agenda buffer) used to
2103 overwrite preexisting file with the same name without confirmation.  It now
2104 asks for a confirmation.
2106 **** New commands =M-m= and =M-*= to toggle (all) mark(s) for bulk action
2108 - [[doc:org-agenda-bulk-toggle][org-agenda-bulk-toggle]] :: this command is bound to =M-m= and toggles
2109      the mark of the entry at point.
2111 - [[doc:org-agenda-bulk-toggle-all][org-agenda-bulk-toggle-all]] :: this command is bound to =M-*= and
2112      toggles all the marks in the current agenda.
2114 **** New option [[doc:org-agenda-search-view-max-outline-level][org-agenda-search-view-max-outline-level]]
2116 This option sets the maximum outline level to display in search view.
2117 E.g. when this is set to 1, the search view will only show headlines of
2118 level 1.
2120 **** New option [[doc:org-agenda-todo-ignore-time-comparison-use-seconds][org-agenda-todo-ignore-time-comparison-use-seconds]]
2122 This allows to compare times using seconds instead of days when honoring
2123 options like =org-agenda-todo-ignore-*= in the agenda display.
2125 **** New option [[doc:org-agenda-entry-text-leaders][org-agenda-entry-text-leaders]]
2127 This allows you to get rid of the ">" character that gets added in front of
2128 entries excerpts when hitting =E= in the agenda view.
2130 **** New formatting string for past deadlines in [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]]
2132 The default formatting for past deadlines is ="%2d d. ago: "=, which makes
2133 it explicit that the deadline is in the past.  You can configure this via
2134 [[doc:org-agenda-deadline-leaders][org-agenda-deadline-leaders]].  Note that the width of the formatting
2135 string is important to keep the agenda alignment clean.
2137 **** New allowed value =repeated-after-deadline= for [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]]
2139 When [[doc:org-agenda-skip-scheduled-if-deadline-is-shown][org-agenda-skip-scheduled-if-deadline-is-shown]] is set to
2140 =repeated-after-deadline=, the agenda will skip scheduled items if they are
2141 repeated beyond the current deadline.
2143 **** New option for [[doc:org-agenda-skip-deadline-prewarning-if-scheduled][org-agenda-skip-deadline-prewarning-if-scheduled]]
2145 This variable may be set to nil, t, the symbol `pre-scheduled', or a number
2146 which will then give the number of days before the actual deadline when the
2147 prewarnings should resume.  The symbol `pre-scheduled' eliminates the
2148 deadline prewarning only prior to the scheduled date.
2150 Read the full docstring for details.
2152 **** [[doc:org-class][org-class]] now supports holiday strings in the skip-weeks parameter
2154 For example, this task will now be skipped only on new year's day:
2156     : * Task
2157     :   <%%(org-class 2012 1 1 2013 12 12 2 "New Year's Day")>
2158 *** Capture
2160 **** Allow =C-1= as a prefix for [[doc:org-agenda-capture][org-agenda-capture]] and [[doc:org-capture][org-capture]]
2162 With a =C-1= prefix, the capture mechanism will use the =HH:MM= value at
2163 point (if any) or the current =HH:MM= time as the default time for the
2164 capture template.
2166 **** Expand keywords within %(sexp) placeholder in capture templates
2168 If you use a =%:keyword= construct within a =%(sexp)= construct, Org will
2169 expand the keywords before expanding the =%(sexp)=.
2171 **** Allow to contextualize capture (and agenda) commands by checking the name of the buffer
2173 [[doc:org-capture-templates-contexts][org-capture-templates-contexts]] and [[doc:org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
2174 allow you to define what capture templates and what agenda commands should
2175 be available in various contexts.  It is now possible for the context to
2176 check against the name of the buffer.
2177 *** Tag groups
2179 Using =#+TAGS: { Tag1 : Tag2 Tag3 }= will define =Tag1= as a /group tag/
2180 (note the colon after =Tag1=).  If you search for =Tag1=, it will return
2181 headlines containing either =Tag1=, =Tag2= or =Tag3= (or any combination
2182 of those tags.)
2184 You can use group tags for sparse tree in an Org buffer, for creating
2185 agenda views, and for filtering.
2187 See http://orgmode.org/org.html#Tag-groups for details.
2189 *** Links
2191 **** =C-u C-u M-x org-store-link RET= will ignore non-core link functions
2193 Org knows how to store links from Org buffers, from info files and from
2194 other Emacs buffers.  Org can be taught how to store links from any buffer
2195 through new link protocols (see [[http://orgmode.org/org.html#Adding-hyperlink-types]["Adding hyperlink types"]] in the manual.)
2197 Sometimes you want Org to ignore added link protocols and store the link
2198 as if the protocol was not known.
2200 You can now do this with =C-u C-u M-x org-store-link RET=.
2202 **** =C-u C-u C-u M-x org-store-link RET= on an active region will store links for each lines
2204 Imagine for example that you want to store a link for every message in a
2205 Gnus summary buffer.  In that case =C-x h C-u C-u C-u M-x org-store-link
2206 RET= will store a link for every line (i.e. message) if the region is
2207 active.
2209 **** =C-c C-M-l= will add a default description for links which don't have one
2211 =C-c C-M-l= inserts all stored links.  If a link does not have a
2212 description, this command now adds a default one, so that we are not mixing
2213 with-description and without-description links when inserting them.
2215 **** No curly braces to bracket links within internal links
2217 When storing a link to a headline like
2219 : * See [[http://orgmode.org][Org website]]
2221 [[doc:org-store-link][org-store-link]] used to convert the square brackets into curly brackets.
2222 It does not anymore, taking the link description or the link path, when
2223 there is no description.
2224 *** Table
2226 **** Switching between #+TBLFM lines
2228 If you have several =#+TBLFM= lines below a table, =C-c C-c= on a line will
2229 apply the formulas from this line, and =C-c C-c= on another line will apply
2230 those other formulas.
2232 **** You now use "nan" for empty fields in Calc formulas
2234 If empty fields are of interest, it is recommended to reread the section
2235 [[http://orgmode.org/org.html#Formula-syntax-for-Calc][3.5.2 Formula syntax for Calc]] of the manual because the description for the
2236 mode strings has been clarified and new examples have been added towards
2237 the end.
2239 **** Handle localized time-stamps in formulas evaluation
2241 If your =LOCALE= is set so that Org time-stamps use another language than
2242 english, and if you make time computations in Org's table, it now works by
2243 internally converting the time-stamps with a temporary =LOCALE=C= before
2244 doing computation.
2246 **** New lookup functions
2248 There are now three lookup functions:
2250 - [[doc:org-loopup-first][org-loopup-first]]
2251 - [[doc:org-loopup-last][org-loopup-last]]
2252 - [[doc:org-loopup-all][org-loopup-all]]
2254 See [[http://orgmode.org/org.html#Lookup-functions][the manual]] for details.
2255 *** Startup keywords
2257 These new startup keywords are now available:
2259 | Startup keyword                  | Option                                      |
2260 |----------------------------------+---------------------------------------------|
2261 | =#+STARTUP: logdrawer=           | =(setq org-log-into-drawer t)=              |
2262 | =#+STARTUP: nologdrawer=         | =(setq org-log-into-drawer nil)=            |
2263 |----------------------------------+---------------------------------------------|
2264 | =#+STARTUP: logstatesreversed=   | =(setq org-log-states-order-reversed t)=    |
2265 | =#+STARTUP: nologstatesreversed= | =(setq org-log-states-order-reversed nil)=  |
2266 |----------------------------------+---------------------------------------------|
2267 | =#+STARTUP: latexpreview=        | =(setq org-startup-with-latex-preview t)=   |
2268 | =#+STARTUP: nolatexpreview=      | =(setq org-startup-with-latex-preview nil)= |
2270 *** Clocking
2272 **** New option [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]]
2274 E.g. if [[doc:org-clock-rounding-minutes][org-clock-rounding-minutes]] is set to 5, time is 14:47 and you
2275 clock in: then the clock starts at 14:45.  If you clock out within the next
2276 5 minutes, the clock line will be removed; if you clock out 8 minutes after
2277 your clocked in, the clock out time will be 14:50.
2279 **** New option [[doc:org-time-clocksum-use-effort-durations][org-time-clocksum-use-effort-durations]]
2281 When non-nil, =C-c C-x C-d= uses effort durations.  E.g., by default, one
2282 day is considered to be a 8 hours effort, so a task that has been clocked
2283 for 16 hours will be displayed as during 2 days in the clock display or in
2284 the clocktable.
2286 See [[doc:org-effort-durations][org-effort-durations]] on how to set effort durations and
2287 [[doc:org-time-clocksum-format][org-time-clocksum-format]] for more on time clock formats.
2289 **** New option [[doc:org-clock-x11idle-program-name][org-clock-x11idle-program-name]]
2291 This allows to set the name of the program which prints X11 idle time in
2292 milliseconds.  The default is to use =x11idle=.
2294 **** New option [[doc:org-use-last-clock-out-time-as-effective-time][org-use-last-clock-out-time-as-effective-time]]
2296 When non-nil, use the last clock out time for [[doc:org-todo][org-todo]].  Note that this
2297 option has precedence over the combined use of [[doc:org-use-effective-time][org-use-effective-time]] and
2298 [[doc:org-extend-today-until][org-extend-today-until]].
2300 **** =S-<left/right>= on a clocksum column will update the sum by updating the last clock
2301 **** =C-u 3 C-S-<up/down>= will update clock timestamps synchronously by 3 units
2302 **** New parameter =:wstart= for clocktables to define the week start day
2303 **** New parameter =:mstart= to state the starting day of the month
2304 **** Allow relative times in clocktable tstart and tend options
2305 **** The clocktable summary is now a caption
2306 **** =:tstart= and =:tend= and friends allow relative times like "<-1w>" or "<now>"
2307 *** Babel
2309 **** You can now use =C-c C-k= for [[doc:org-edit-src-abort][org-edit-src-abort]]
2311 This allows you to quickly cancel editing a source block.
2313 **** =C-u C-u M-x org-babel-tangle RET= tangles by the target file of the block at point
2315 This is handy if you want to tangle all source code blocks that have the
2316 same target than the block at point.
2318 **** New options for auto-saving the base buffer or the source block editing buffer
2320 When [[doc:org-edit-src-turn-on-auto-save][org-edit-src-turn-on-auto-save]] is set to =t=, editing a source block
2321 in a new window will turn on =auto-save-mode= and save the code in a new
2322 file under the same directory than the base Org file.
2324 When [[doc:org-edit-src-auto-save-idle-delay][org-edit-src-auto-save-idle-delay]] is set to a number of minutes =N=,
2325 the base Org buffer will be saved after this number of minutes of idle
2326 time.
2328 **** New =:post= header argument post-processes results
2330      This header argument may be used to pass the results of the current
2331      code block through another code block for post-processing.  See the
2332      manual for a usage example.
2334 **** Commented out heading are ignored when collecting blocks for tangling
2336 If you comment out a heading (with =C-c ;= anywhere on the heading or in
2337 the subtree), code blocks from within this heading are now ignored when
2338 collecting blocks for tangling.
2340 **** New option [[doc:org-babel-hash-show-time][org-babel-hash-show-time]] to show a time-stamp in the result hash
2341 **** Do not ask for confirmation if cached value is current
2343 Do not run [[doc:org-babel-confirm-evaluate][org-babel-confirm-evaluate]] if source block has a cache and the
2344 cache value is current as there is no evaluation involved in this case.
2345 **** =ob-sql.el= and =ob-python.el= have been improved.
2346 **** New Babel files only need to =(require 'ob)=
2348 When writing a new Babel file, you now only need to use =(require 'ob)=
2349 instead of requiring each Babel library one by one.
2350 *** Faces
2352 - Org now fontifies radio link targets by default
2353 - In the agenda, use [[doc:org-todo-keyword-faces][org-todo-keyword-faces]] to highlight selected TODO keywords
2354 - New face [[doc:org-priority][org-priority]], enhanced fontification of priority cookies in agenda
2355 - New face [[doc:org-tag-group][org-tag-group]] for group tags
2357 ** Miscellaneous
2359 - New speedy key =s= pour [[doc:org-narrow-to-subtree][org-narrow-to-subtree]]
2360 - Handling of [[doc:org-html-table-row][org-html-table-row]] has been updated (incompatible change)
2361 - [[doc:org-export-html-table-tag][org-export-html-table-tag]] is replaced by [[doc:org-html-table-default-attributes][org-html-table-default-attributes]]
2362 - Support using =git-annex= with Org attachments
2363 - org-protocol: Pass optional value using query in url to capture from protocol
2364 - When the refile history is empty, use the current filename as default
2365 - When you cannot change the TODO state of a task, Org displays the blocking task
2366 - New option [[doc:org-mobile-allpriorities][org-mobile-allpriorities]]
2367 - org-bibtex.el now use =visual-line-mode= instead of the deprecated =longlines-mode=
2368 - [[doc:org-format-latex-options][org-format-latex-options]] allows to set the foreground/background colors automatically
2369 - New option [[doc:org-archive-file-header-format][org-archive-file-header-format]]
2370 - New "neg" entity in [[doc:org-entities][org-entities]]
2371 - New function [[doc:org-docview-export][org-docview-export]] to export docview links
2372 - New =:eps= header argument for ditaa code blocks
2373 - New option [[doc:org-gnus-no-server][org-gnus-no-server]] to start Gnus with =gnus-no-server=
2374 - Org is now distributed with =htmlize.el= version 1.43
2375 - ~org-drill.el~ has been updated to version 2.3.7
2376 - ~org-mac-iCal.el~ now supports MacOSX version up to 10.8
2377 - Various improvements to ~org-contacts.el~ and =orgpan.el=
2379 ** Outside Org
2381 *** Spanish translation of the Org guide by David Arroyo Menéndez
2383 David (and others) translated the Org compact guide in spanish:
2385 You can read the [[http://orgmode.org/worg/orgguide/orgguide.es.pdf][PDF guide]].
2387 *** ~poporg.el~ and ~outorg.el~
2389 Two new libraries (~poporg.el~ by François Pinard and ~outorg.el~ by
2390 Thorsten Jolitz) now enable editing of comment-sections from source-code
2391 buffers in temporary Org-mode buffers, making the full editing power of
2392 Org-mode available.  ~outorg.el~ comes together with ~outshine.el~ and
2393 ~navi-mode.el~, two more libraries by Thorsten Jolitz with the goal to give
2394 source-code buffers the /look & feel/ of Org-mode buffers while greatly
2395 improving navigation and structure editing.  A detailed description can be
2396 found here: http://orgmode.org/worg/org-tutorials/org-outside-org.html
2398 Here are two screencasts demonstrating Thorsten's tools:
2400 - [[http://youtu.be/nqE6YxlY0rw]["Modern conventions for Emacs Lisp files"]]
2401 - [[http://www.youtube.com/watch?v%3DII-xYw5VGFM][Exploring Bernt Hansen's Org-mode tutorial with 'navi-mode']]
2403 *** MobileOrg for iOS
2405 MobileOrg for iOS back in the App Store The 1.6.0 release was focused on
2406 the new Dropbox API and minor bug fixes but also includes a new ability to
2407 launch in Capture mode.  Track development and contribute [[https://github.com/MobileOrg/mobileorg/issues][on github]].
2409 * Version 7.9.3
2411 ** New option [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]]
2413 [[doc::org-use-tag-inheritance][org-use-tag-inheritance]] controls whether tags are inherited when
2414 org-tags-view is called (either in =tags=, =tags-tree= or =tags-todo=
2415 agenda views.)
2417 When generating other agenda types such as =agenda=, =todo= and
2418 =todo-tree=, tags inheritance is not used when selecting the entries
2419 to display.  Still, you might want to have all tag information correct
2420 in the agenda buffer, e.g. for tag filtering.  In that case, add the
2421 agenda type to this variable.
2423 Setting this variable to nil should considerably speeds up the agenda
2424 generation.
2426 Note that the default was to display inherited tags in the agenda
2427 lines even if `org-use-tag-inheritance' was nil.  The default is now
2428 to *never* display inherited tags in agenda lines, but to /know/ about
2429 them when the agenda type is listed in [[doc::org-agenda-use-tag-inheritance][org-agenda-use-tag-inheritance]].
2431 ** New default value nil for [[doc::org-agenda-dim-blocked-tasks][org-agenda-dim-blocked-tasks]]
2433 Using `nil' as the default value speeds up the agenda generation.  You
2434 can hit `#' (or `C-u #') in agenda buffers to temporarily dim (or turn
2435 invisible) blocked tasks.
2437 ** New speedy keys for [[doc::org-speed-commands-default][org-speed-commands-default]]
2439 You can now use `:' (instead of `;') for setting tags---this is
2440 consistent with using the `:' key in agenda view.
2442 You can now use `=' for [[doc::org-columns][org-columns]].
2444 ** =org-float= is now obsolete, use =diary-float= instead
2445 ** No GPL manual anymore
2447 There used to be a GPL version of the Org manual, but this is not the
2448 case anymore, the Free Software Foundation does not permit this.
2450 The GNU FDL license is now included in the manual directly.
2452 ** Enhanced compatibility with Emacs 22 and XEmacs
2454 Thanks to Achim for his work on enhancing Org's compatibility with
2455 various Emacsen.  Things may not be perfect, but Org should work okay
2456 in most environments.
2458 * Version 7.9.2
2460 ** New ELPA repository for Org packages
2462 You can now add the Org ELPA repository like this:
2464 #+BEGIN_SRC emacs-lisp
2465 (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
2466 #+END_SRC
2468 It contains both the =org-*.tar= package (the core Org distribution, also
2469 available through http://elpa.gnu.org) and the =org-plus*.tar= package (the
2470 extended Org distribution, with non-GNU packages from the =contrib/=
2471 directory.)
2473 See http://orgmode.org/elpa/
2475 ** Overview of the new keybindings
2477    | Keybinding      | Speedy | Command                     |
2478    |-----------------+--------+-----------------------------|
2479    | =C-c C-x C-z=   |        | [[doc::org-clock-resolve][org-clock-resolve]]           |
2480    | =C-c C-x C-q=   |        | [[doc::org-clock-cancel][org-clock-cancel]]            |
2481    | =C-c C-x C-x=   |        | [[doc::org-clock-in-last][org-clock-in-last]]           |
2482    | =M-h=           |        | [[doc::org-mark-element][org-mark-element]]            |
2483    | =*=             |        | [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]]    |
2484    | =C-c C-M-l=     |        | [[doc::org-insert-all-links][org-insert-all-links]]        |
2485    | =C-c C-x C-M-v= |        | [[doc::org-redisplay-inline-images][org-redisplay-inline-images]] |
2486    | =C-c C-x E=     | =E=    | [[doc::org-inc-effort][org-inc-effort]]              |
2487    |                 | =#=    | [[doc::org-toggle-comment][org-toggle-comment]]          |
2488    |                 | =:=    | [[doc::org-columns][org-columns]]                 |
2489    |                 | =W=    | Set =APPT_WARNTIME=          |
2490    | =k=             |        | [[doc::org-agenda-capture][org-agenda-capture]]          |
2491    | C-c ,           | ,      | [[doc::org-priority][org-priority]]                |
2493 ** New package and Babel language
2495 *** =org-eshell.el= by Konrad Hinsen is now in Org
2497     =org-eshell.el= allows you to create links from [[http://www.gnu.org/software/emacs/manual/html_node/eshell/index.html][Eshell]].
2499 *** Support for execution of Scala code blocks (see ob-scala.el)
2500 *** Support for execution of IO code blocks (see ob-io.el)
2502 ** Incompatible changes
2504    - If your code relies on =org-write-agenda=, please use
2505      [[doc::org-agenda-write][org-agenda-write]] from now on.
2507    - If your code relies on =org-make-link=, please use =concat=
2508      instead.
2510    - =org-link-to-org-use-id= has been renamed to
2511      =org-id-link-to-org-use-id= and its default value is nil.  The
2512      previous default was =create-if-interactive-and-no-custom-id=.
2514 ** New features and user-visible changes
2516 *** Org Element
2518     =org-element.el= is a toolbox for parsing and analyzing "elements"
2519     in an Org-mode buffer.  This has been written by Nicolas Goaziou
2520     and has been tested for quite some time.  It is now part of Org's
2521     core and many core functions rely on this package.
2523     Two functions might be particularly handy for users:
2524     =org-element-at-point= and =org-element-context=.
2526     See the docstrings for more details.
2528     Below is a list of editing and navigating commands that now rely
2529     on =org-element.el=.
2531 **** [[doc::org-fill-paragraph][org-fill-paragraph]] has been completely rewritten
2533      The filling mechanisms now rely on org-element, trying to do the
2534      right thing on each element in various contexts.  E.g. filling in
2535      a list item will preserve indentation; filling in message-mode
2536      will fall back on the relevant filling functions; etc.
2538 **** [[doc::org-metaup][org-metaup]] and [[doc::org-metadown][org-metadown]] will drag the element backward/forward
2540      If you want to get the old behavior (i.e. moving a line up and
2541      down), you can first select the line as an active region, then
2542      =org-metaup= or =org-metadown= to move the region backward or
2543      forward.  This also works with regions bigger than just one line.
2545 **** [[doc::org-up-element][org-up-element]] and [[doc::org-down-element][org-down-element]] (respectively =C-c C-^= and =C-c C-_=)
2547      This will move the point up/down in the hierarchy of elements.
2549 **** [[doc::org-backward-element][org-backward-element]] and [[doc::org-forward-element][org-forward-element]] (respectively =M-{= and =M-}=)
2551      This will move the point backward/forward in the hierarchy of
2552      elements.
2554 **** [[doc::org-narrow-to-element][org-narrow-to-element]] will narrow to the element at point
2555 **** [[doc::org-mark-element][org-mark-element]] will mark the element at point
2557      This command is bound to =M-h= and will mark the element at
2558      point.  If the point is at a paragraph, it will mark the
2559      paragraph.  If the point is at a list item, it will mark the list
2560      item.  Etc.
2562      Note that if point is at the beginning of a list, it will mark
2563      the whole list.
2565      To mark a subtree, you can either use =M-h= on the headline
2566      (since there is no ambiguity about the element you're at) or
2567      [[doc::org-mark-subtree][org-mark-subtree]] (=C-c @=) anywhere in the subtree.
2569      Invoking [[doc::org-mark-element][org-mark-element]] repeatedly will try to mark the next
2570      element on top of the previous one(s).  E.g. hitting =M-h= twice
2571      on a headline will mark the current subtree and the next one on
2572      the same level.
2574 *** Org Agenda
2576 **** New option [[doc::org-agenda-sticky][org-agenda-sticky]]
2578      There is a new option =org-agenda-sticky= which enables "sticky"
2579      agendas.  Sticky agendas remain opened in the background so that
2580      you don't need to regenerate them each time you hit the
2581      corresponding keystroke.  This is a big time saver.
2583      When [[doc::org-agenda-sticky][org-agenda-sticky]] is =non-nil=, the agenda buffer will be
2584      named using the agenda key and its description.  In sticky
2585      agendas, the =q= key will just bury the agenda buffers and
2586      further agenda commands will show existing buffer instead of
2587      generating new ones.
2589      If [[doc::org-agenda-sticky][org-agenda-sticky]] is set to =nil=, =q= will kill the single
2590      agenda buffer.
2592 **** New option [[doc::org-agenda-custom-commands-contexts][org-agenda-custom-commands-contexts]]
2594      Setting this option allows you to define specific context where
2595      agenda commands should be available from.  For example, when set
2596      to this value
2598      #+BEGIN_SRC emacs-lisp
2599   (setq org-agenda-custom-commands-contexts
2600         '(("p" (in-file . "\\.txt"))))
2601 #+END_SRC
2603      then the =p= agenda command will only be available from buffers
2604      visiting *.txt files.  See the docstring and the manual for more
2605      details on how to use this.
2607 **** Changes in bulk actions
2609      The set of commands starting with =k ...= as been deleted and the
2610      features have been merged into the "bulk action" feature.
2612      After you marked some entries in the agenda, if you call =B s=,
2613      the agenda entries will be rescheduled using the date at point if
2614      on a date header.  If you are on an entry with a timestamp, you
2615      will be prompted for a date to reschedule your marked entries to,
2616      using the timestamp at point as the default prompt.
2618      You can now use =k= to capture the marked entry and use the date
2619      at point as an overriding date for the capture template.
2621      To bind this behavior to =M-x org-capture RET= (or its
2622      keybinding), set the new option [[doc::org-capture-use-agenda-date][org-capture-use-agenda-date]] to
2623      =t=.
2625 **** =N= and =P= in the agenda will move to the next/previous item
2627 **** New command [[doc::org-agenda-bulk-mark-all][org-agenda-bulk-mark-all]] to mark all items
2629      This new command is bound to =*= in agenda mode.
2631      There is also a new option [[doc::org-agenda-bulk-mark-char][org-agenda-bulk-mark-char]] to set the
2632      character to use as a mark for bulk actions.
2634 **** New option [[doc::org-agenda-persistent-marks][org-agenda-persistent-marks]]
2636      When set to =non-nil=, marks will remain visible after a bulk
2637      action.  You can temporarily toggle this by pressing =p= when
2638      invoking [[doc::org-agenda-bulk-action][org-agenda-bulk-action]].  Marks are deleted if your
2639      rebuild the agenda buffer or move to another date/span (e.g. with
2640      =f= or =w=).
2642 **** New option [[doc::org-agenda-skip-timestamp-if-deadline-is-shown][org-agenda-skip-timestamp-if-deadline-is-shown]]
2644      =Non-nil= means skip timestamp line if same entry shows because
2645      of deadline.
2647      In the agenda of today, an entry can show up multiple times
2648      because it has both a plain timestamp and has a nearby deadline.
2649      When this variable is t, then only the deadline is shown and the
2650      fact that the entry has a timestamp for or including today is not
2651      shown.  When this variable is =nil=, the entry will be shown
2652      several times.
2654 **** New =todo-unblocked= and =nottodo-unblocked= skip conditions
2656      See the [[http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=f426da][git commit]] for more explanations.
2658 **** Allow category filtering in the agenda
2660      You can now filter the agenda by category.  Pressing "<" will
2661      filter by the category of the item on the current line, and
2662      pressing "<" again will remove the filter.  You can combine tag
2663      filters and category filters.
2665      You can use =org-agenda-category-filter= in your custom agenda
2666      views and =org-agenda-category-filter-preset= in your main
2667      configuration.
2669      See also the new command [[doc::org-agenda-filter-by-top-category][org-agenda-filter-by-top-category]]:
2670      hitting =^= will filter by "Top" category: only show entries that
2671      are of the same category than the Top category of the entry at
2672      point.
2674 *** Org Links
2676 **** Inserting links
2678      When inserting links through [[doc::org-insert-link][org-insert-link]], the description is
2679      now displayed first, followed by the literal link, as the
2680      description is often more useful when you look for the link you
2681      want to insert.
2683      Completion now complete both literal links and description.  If
2684      you complete a description, the literal link and its description
2685      will be inserted directly, whereas when you complete the literal
2686      link, you will be prompted for a description (as with Org 7.8.)
2688      In the completion buffer, links to the current buffer are now
2689      highlighted.
2691 **** New templates =%h= and =%(sexp)= for abbreviated links
2693      On top of =%s= template, which is replaced by the link tag in
2694      abbreviated links, you can now use =%h= (which does the same than =%s=
2695      but does not hexify the tag) and =%(sexp)= (which can run a function
2696      that takes the tag as its own argument.)
2698 **** New link type =help=
2700      You can now create links from =help= buffers.
2702      For example, if you request help for the command [[doc::org-agenda][org-agenda]] with
2703      =C-h f org-agenda RET=, creating a link from this buffer will let
2704      you go back to the same buffer.
2706 **** New command [[doc::org-insert-all-links][org-insert-all-links]]
2708      This will insert all links as list items.  With a universal
2709      prefix argument, links will not be deleted from the variable
2710      =org-stored-links=.
2712      This new command is bound to =C-c C-M-l=.
2714 **** New option [[doc::org-url-hexify-p][org-url-hexify-p]]
2716      When set to =nil=, the =URL= part of a link will not be hexified.
2718 **** Org can now open multiple shell links
2720 **** New option [[doc::org-doi-server-url][org-doi-server-url]] to specify an alternate DOI server
2722 **** RET now follows time stamps links
2724 *** Org Editing
2726 **** [[doc::org-todo][org-todo]] and =org-archive-*= can now loop in the active region
2728      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, using
2729      [[doc::org-todo][org-todo]] or =org-archive-*= commands in the active region will
2730      loop over headlines.  This is handy if you want to set the TODO
2731      keyword for several items, or archive them quickly.
2733 **** You can now set tags for headlines in a region
2735      If [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is =non-nil=, then
2736      selecting the region and hitting =C-c C-q= will set the tags for
2737      all headlines in the region.
2739 **** New command [[doc::org-insert-drawer][org-insert-drawer]] to insert a drawer interactively
2741 **** Comments start with "^[ \t]*# " anywhere on a line
2743      Note that the space after the hashtag is mandatory.  Comments
2744      with "^#+" are not supported anymore.
2746 **** New speed key =#= to toggle the COMMENT cookie on a headline
2748 **** =indent-region-function= is now set to [[doc::org-indent-region][org-indent-region]]
2750      =C-M-\= should now produce useful results.
2752      You can unindent the buffer with [[doc::org-unindent-buffer][org-unindent-buffer]].
2754 **** New option [[doc::org-allow-promoting-top-level-subtree][org-allow-promoting-top-level-subtree]]
2756      When =non-nil=, =S-M-<left>= will promote level-1 subtrees
2757      containing other subtrees.  The level-1 headline will be
2758      commented out.  You can revert to the previous state with =M-x
2759      undo RET=.
2761 *** Org Clock
2763 **** New keybinding =C-c C-x C-z= for [[doc::org-clock-resolve][org-clock-resolve]]
2765 **** New keybinding =C-c C-x C-q= for [[doc::org-clock-cancel][org-clock-cancel]]
2767 **** New command [[doc::org-clock-in-last][org-clock-in-last]] to clock in the last clocked item
2769      This command is bound to =C-c C-x C-x= and will clock in the last
2770      clocked entry, if any.
2772 **** =C-u M-x= [[doc::org-clock-out][org-clock-out]] =RET= now prompts for a state to switch to
2774 **** =S-M-<up/down>= on a clock timestamps adjusts the previous/next clock
2776 **** New option [[doc::org-clock-continuously][org-clock-continuously]]
2778      When set to =nil=, clocking in a task will first try to find the
2779      last clocked out task and restart from when that task was clocked
2780      out.
2782      You can temporarily activate continuous clocking with =C-u C-u
2783      C-u M-x= [[doc::org-clock-in][org-clock-in]] =RET= (three universal prefix arguments)
2784      and =C-u C-u M-x= [[org-clock-in-last][org-clock-in-last]] =RET= (two universal prefix
2785      arguments).
2788 **** New option [[doc::org-clock-frame-title-format][org-clock-frame-title-format]]
2790      This option sets the value of =frame-title-format= when clocking
2791      in.
2793 **** New options for controlling the clockreport display
2795      [[doc::org-clock-file-time-cell-format][org-clock-file-time-cell-format]]: Format string for the file time
2796      cells in clockreport.
2798      [[doc::org-clock-total-time-cell-format][org-clock-total-time-cell-format]]: Format string for the total
2799      time cells in clockreport.
2802 **** New options for controlling the clock/timer display
2804      [[doc::org-clock-clocked-in-display][org-clock-clocked-in-display]]: control whether the current clock
2805      is displayed in the mode line and/or frame title.
2807      [[doc::org-timer-display][org-timer-display]]: control whether the current timer is displayed
2808      in the mode line and/or frame title.
2810      This allows the clock and timer to be displayed in the frame
2811      title instead of, or as well as, the mode line.  This is useful
2812      for people with limited space in the mode line but with ample
2813      space in the frame title.
2815 *** Org Appearance
2817 **** New option [[doc::org-custom-properties][org-custom-properties]]
2819      The visibility of properties listed in this options can be turn
2820      on/off with [[doc::org-toggle-custom-properties-visibility][org-toggle-custom-properties-visibility]].  This might
2821      be useful for properties used by third-part tools or that you
2822      don't want to see temporarily.
2824 **** New command [[doc::org-redisplay-inline-images][org-redisplay-inline-images]]
2826      This will redisplay all images.  It is bound to =C-c C-x C-M-v=.
2828 **** New entities in =org-entities.el=
2830      There are these new entities:
2832      : ("tilde" "\\~{}" nil "&tilde;" "~" "~" "~")
2833      : ("slash" "/" nil "/" "/" "/" "/")
2834      : ("plus" "+" nil "+" "+" "+" "+")
2835      : ("under" "\\_" nil "_" "_" "_" "_")
2836      : ("equal" "=" nil "=" "=" "=" "=")
2837      : ("asciicirc" "\\textasciicircum{}" nil "^" "^" "^" "^")
2839 **** New face =org-list-dt= for definition terms
2840 **** New face =org-date-selected= for the selected calendar day
2841 **** New face value for =org-document-title=
2843      The face is back to a normal height.
2845 *** Org Columns
2847 **** New speed command =:= to activate the column view
2848 **** New special property =CLOCKSUM_T= to display today's clocked time
2850      You can use =CLOCKSUM_T= the same way you use =CLOCKSUM=.  It
2851      will display the time spent on tasks for today only.
2853 **** Use the =:COLUMNS:= property in columnview dynamic blocks
2855      If the =:COLUMNS:= is set in a subtree, the columnview dynamic
2856      block will use its value as the column format.
2858 **** Consider inline tasks when computing a sum
2860 *** Org Dates and Time Stamps
2862 **** Enhanced [[doc::org-sparse-tree][org-sparse-tree]]
2864      =C-c /= can now check for time ranges.
2866      When checking for dates with =C-c /= it is useful to change the
2867      type of dates that you are interested in.  You can now do this
2868      interactively with =c= after =C-c /= and/or by setting
2869      [[doc::org-sparse-tree-default-date-type][org-sparse-tree-default-date-type]] to the default value you want.
2871 **** Support for hourly repeat cookies
2873      You can now use
2875      : SCHEDULED: <2012-08-20 lun. 08:00 +1h>
2877      if you want to add an hourly repeater to an entry.
2879 **** =C-u C-u C-c .= inserts a time-stamp with no prompt
2881 **** When (setq [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] 'time), accept days in the prompt
2883      "8am Wed" and "Wed 8am" are now acceptable values when entering a
2884      date from the prompt.  If [[doc::org-read-date-prefer-future][org-read-date-prefer-future]] is set to
2885      =time=, this will produce the expected prompt indication.
2887 **** New option [[doc::org-datetree-add-timestamp][org-datetree-add-timestamp]]
2889      When set to =non-nil=, datetree entries will also have a
2890      timestamp.  This is useful if you want to see these entries in a
2891      sparse tree with =C-c /=.
2893 *** Org Capture
2895 **** New command [[doc::org-capture-string][org-capture-string]]
2897      M-x [[doc::org-capture-string][org-capture-string]] RET will prompt for a string and a capture
2898      template.  The string will be used as an annotation for the
2899      template.  This is useful when capturing in batch mode as it lets
2900      you define the content of the template without being in Emacs.
2902 **** New option [[doc::org-capture-templates-contexts][org-capture-templates-contexts]]
2904      Setting this option allows you to define specific context where
2905      capture templates should be available from.  For example, when
2906      set to this value
2908      #+BEGIN_SRC emacs-lisp
2909   (setq org-capture-templates-contexts
2910         '(("c" (in-mode . "message-mode"))))
2911 #+END_SRC
2913      then the =c= capture template will only be available from
2914      =message-mode= buffers.  See the docstring and the manual for
2915      more details on how to use this.
2917 **** New =%l= template to insert the literal link
2918 **** New option [[doc::org-capture-bookmark][org-capture-bookmark]]
2920      Org used to automatically add a bookmark with capture a note.
2921      You can now turn this on by setting [[doc::org-capture-bookmark][org-capture-bookmark]] to
2922      =nil=.
2924 **** Expand =%<num>= escape sequences into text entered for <num>'th =%^{PROMPT}= escape
2926      See the manual for more explanations.
2928 **** More control over empty lines
2930      You can use =:empty-lines-before= and =:empty-lines-after= to
2931      control the insertion of empty lines.  Check the manual for more
2932      explanations.
2934 **** New hook [[doc::org-capture-prepare-finalize-hook][org-capture-prepare-finalize-hook]]
2936      This new hook runs before the finalization process starts.
2938 *** Org Export
2940 **** New functions =orgtbl-to-table.el= and =orgtbl-to-unicode=
2942      =orgtbl-to-table.el= convert the table to a =table.el= table, and
2943      =orgtbl-to-unicode= will use =ascii-art-to-unicode.el= (when
2944      available) to print beautiful tables.
2946 **** [[doc::org-table-export][org-table-export]] now a bit clever about the target format
2948      When you specify a file name like =table.csv=, [[doc::org-table-export][org-table-export]]
2949      will now suggest =orgtbl-to-csv= the default method for exporting
2950      the table.
2952 **** New option [[doc::org-export-date-timestamp-format][org-export-date-timestamp-format]]
2954      The option allows to set a time string format for Org timestamps
2955      in the #+DATE option.
2957 **** LaTeX: New options for exporting table rules :tstart, :hline and :tend
2959      See [[doc::org-export-latex-tables-hline][org-export-latex-tables-hline]] and [[doc::org-export-latex-tables-tend][org-export-latex-tables-tend]].
2961 **** LaTeX: You can now set =:hfmt= from =#+ATTR_LaTeX=
2962 **** Beamer: Add support and keybinding for the =exampleblock= environment
2964      Add support for these languages in [[doc::org-export-language-setup][org-export-language-setup]].
2965      More languages are always welcome.
2967 **** Beamer: New option [[doc::org-beamer-inherited-properties][org-beamer-inherited-properties]]
2969      This option allows Beamer export to inherit some properties.
2970      Thanks to Carsten for implementing this.
2972 **** ODT: Add support for ODT export in org-bbdb.el
2973 **** ODT: Add support for indented tables (see [[http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=e9fd33][this commit]] for details)
2974 **** ODT: Improve the conversion from ODT to other formats
2975 **** ASCII: Swap the level-1/level-2 characters to underline the headlines
2976 **** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese
2977 **** HTML: New option [[doc::org-export-html-date-format-string][org-export-html-date-format-string]]
2979      Format string to format the date and time in HTML export.  Thanks
2980      to Sébastien Vauban for this patch.
2982 *** Org Babel
2984 **** New =:results drawer= parameter
2986 =:results drawer= replaces =:results wrap=, which is deprecated but still
2987 supported.
2989 **** =:results org= now put results in a =#+BEGIN_SRC org= block
2991 =:results org= used to put results in a =#+BEGIN_ORG= block but it now puts
2992 results in a =#+BEGIN_SRC org= block, with comma-escaped lines.
2994 =#+BEGIN_ORG= blocks are obsolete.
2996 **** Exporting =#+BEGIN_SRC org= blocks exports the code
2998 It used to exports the results of the code.
3000 *** Miscellaneous
3002 **** New menu entry for [[doc::org-refile][org-refile]]
3003 **** Allow capturing to encrypted entries
3005 If you capture to an encrypted entry, it will be decrypted before
3006 inserting the template then re-encrypted after finalizing the capture.
3008 **** Inactive timestamps are now handled in tables
3010 Calc can do computation on active time-stamps like <2012-09-29 sat.>.
3011 Inactive time-stamps in a table's cell are now internally deactivated so
3012 that Calc formulas can operate on them.
3014 **** [[doc::org-table-number-regexp][org-table-number-regexp]] can now accept comma as decimal mark
3015 **** Org allows a new property =APPT_WARNTIME=
3017      You can set it with the =W= speedy key or set it manually.  When
3018      set, exporting to iCalendar and [[doc::org-agenda-to-appt][org-agenda-to-appt]] will use the
3019      value of this property as the number of minutes for the warning
3020      alarm.
3022 **** New command [[doc::org-inc-effort][org-inc-effort]]
3024      This will increment the effort value.
3026      It is bound to =C-c C-x E= and to =E= as a speedy command.
3028 **** Attach: Add support for creating symbolic links
3030      =org-attach-method= now supports a new method =lns=, allowing to
3031      attach symbolic links.
3033 **** Archive: you can now archive to a datetree
3035 **** New option [[doc::org-inlinetask-show-first-star][org-inlinetask-show-first-star]]
3037      =Non-nil= means display the first star of an inline task as
3038      additional marker.  When =nil=, the first star is not shown.
3040 **** New option [[doc::org-latex-preview-ltxpng-directory][org-latex-preview-ltxpng-directory]]
3042      This lets you define the path for the =ltxpng/= directory.
3044 **** You can now use imagemagick instead of dvipng to preview LaTeX fragments
3045 **** You can now turn off [[doc::orgstruct++-mode][orgstruct++-mode]] safely
3046 **** =C-u C-c C-c= on list items to add check boxes
3048      =C-u C-c C-c= will add an empty check box on a list item.
3050      When hit from the top of the list, it will add check boxes for
3051      all top level list items.
3053 **** =org-list-ending-method= and =org-list-end-regexp= are now obsolete
3055      Fall back on using =org-list-end-re= only, which see.
3057 **** org-feed.el now expands =%(sexp)= templates
3058 **** New option [[doc::org-protocol-data-separator][org-protocol-data-separator]]
3060 **** New option [[doc::org-ditaa-jar-option][org-ditaa-jar-option]] to specify the ditaa jar file
3062 **** New possible value for [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]]
3064      When [[doc::org-loop-over-headlines-in-active-region][org-loop-over-headlines-in-active-region]] is set to
3065      =start-level=, the command will loop over the active region but
3066      will only act upon entries that are of the same level than the
3067      first headline in the region.
3069 **** New option [[doc::org-habit-show-all-today][org-habit-show-all-today]]
3071      When set to =t=, show all (even unscheduled) habits on today's
3072      agenda.
3074 ** Important bug fixes
3076 *** M-TAB on options keywords perform completion correctly again
3078     If you hit =M-TAB= on keywords like =#+TITLE=, Org will try to
3079     perform completion with meaningful values.
3081 *** Add licenses to javascript embedded and external code snippets
3083     Embedded javascript code produced when exporting an Org file to
3084     HTML is now licensed under GPLv3 (or later), and the copyright is
3085     owned by the Free Software Foundation, Inc.
3087     The javascript code for embedding MathJax in the browser mentions
3088     the MathJax copyright and the Apache 2.0 license.
3090     The javascript code for embedding =org-injo.js= in the browser
3091     mentions the copyright of Sebastian Rose and the GPLv3 (or later)
3092     license.
3094     =org-export-html-scripts= is now a variable, so that you can adapt
3095     the code and the license to your needs.
3097     See http://www.gnu.org/philosophy/javascript-trap.html for
3098     explanations on why these changes were necessary.
3100 * Version 7.8.11
3102 ** Incompatible changes
3104 *** Emacs 21 support has been dropped
3106     Do not use Org mode 7.xx with Emacs 21, use [[http://orgmode.org/org-6.36c.zip][version 6.36c]] instead.
3108 *** XEmacs support requires the XEmacs development version
3110     To use Org mode 7.xx with XEmacs, you need to run the developer
3111     version of XEmacs.  We were about to drop XEmacs support entirely,
3112     but Michael Sperber stepped in and made changes to XEmacs that
3113     made it easier to keep the support.  Thanks to Michael for this
3114     last-minute save.
3116 *** New keys for TODO sparse trees
3118     The key =C-c C-v= is now reserved for Org Babel action.  TODO
3119     sparse trees can still be made with =C-c / t= (all not-done
3120     states) and =C-c / T= (specific states).
3122 *** The Agenda =org-agenda-ndays= is now obsolete
3124     The variable =org-agenda-ndays= is obsolete - please use
3125     =org-agenda-span= instead.
3127     Thanks to Julien Danjou for this.
3129 *** Changes to the intended use of =org-export-latex-classes=
3131     So far this variable has been used to specify the complete header
3132     of the LaTeX document, including all the =\usepackage= calls
3133     necessary for the document.  This setup makes it difficult to
3134     maintain the list of packages that Org itself would like to call,
3135     for example for the special symbol support it needs.
3137     First of all, you can *opt out of this change* in the following
3138     way: You can say: /I want to have full control over headers, and I
3139     will take responsibility to include the packages Org needs/.  If
3140     that is what you want, add this to your configuration and skip the
3141     rest of this section (except maybe for the description of the
3142     =[EXTRA]= place holder):
3144     #+begin_src emacs-lisp
3145    (setq org-export-latex-default-packages-alist nil
3146          org-export-latex-packages-alist nil)
3147     #+end_src
3149     /Continue to read here if you want to go along with the modified
3150     setup./
3152     There are now two variables that should be used to list the LaTeX
3153     packages that need to be included in all classes.  The header
3154     definition in =org-export-latex-classes= should then not contain
3155     the corresponding =\usepackage= calls (see below).
3157     The two new variables are:
3159     1. =org-export-latex-default-packages-alist= :: This is the
3160          variable where Org-mode itself puts the packages it needs.
3161          Normally you should not change this variable.  The only
3162          reason to change it anyway is when one of these packages
3163          causes a conflict with another package you want to use.  Then
3164          you can remove that packages and hope that you are not using
3165          Org-mode functionality that needs it.
3167     2. =org-export-latex-packages-alist= :: This is the variable where
3168          you can put the packages that you'd like to use across all
3169          classes.
3171     The sequence how these customizations will show up in the LaTeX
3172     document are:
3174     1. Header from =org-export-latex-classes=
3175     2. =org-export-latex-default-packages-alist=
3176     3. =org-export-latex-packages-alist=
3177     4. Buffer-specific things set with =#+LaTeX_HEADER:=
3179     If you want more control about which segment is placed where, or
3180     if you want, for a specific class, have full control over the
3181     header and exclude some of the automatic building blocks, you can
3182     put the following macro-like place holders into the header:
3184     #+begin_example
3185     [DEFAULT-PACKAGES]      \usepackage statements for default packages
3186     [NO-DEFAULT-PACKAGES]   do not include any of the default packages
3187     [PACKAGES]              \usepackage statements for packages
3188     [NO-PACKAGES]           do not include the packages
3189     [EXTRA]                 the stuff from #+LaTeX_HEADER
3190     [NO-EXTRA]              do not include #+LaTeX_HEADER stuff
3191     #+end_example
3193     If you have currently customized =org-export-latex-classes=, you
3194     should revise that customization and remove any package calls that
3195     are covered by =org-export-latex-default-packages-alist=.  This
3196     applies to the following packages:
3198     - inputenc
3199     - fontenc
3200     - fixltx2e
3201     - graphicx
3202     - longtable
3203     - float
3204     - wrapfig
3205     - soul
3206     - t1enc
3207     - textcomp
3208     - marvosym
3209     - wasysym
3210     - latexsym
3211     - amssymb
3212     - hyperref
3214     If one of these packages creates a conflict with another package
3215     you are using, you can remove it from
3216     =org-export-latex-default-packages-alist=.  But then you risk that
3217     some of the advertised export features of Org will not work
3218     properly.
3220     You can also consider moving packages that you use in all classes
3221     to =org-export-latex-packages-alist=.  If necessary, put the place
3222     holders so that the packages get loaded in the right sequence.  As
3223     said above, for backward compatibility, if you omit the place
3224     holders, all the variables will dump their content at the end of
3225     the header.
3227 *** The constant =org-html-entities= is obsolete
3229     Its content is now part of the new constant =org-entities=, which
3230     is defined in the file org-entities.el.  =org-html-entities= was
3231     an internal variable, but it is possible that some users did write
3232     code using it.
3234 *** =org-bbdb-anniversary-format-alist= has changed
3236     Please check the docstring and update your settings accordingly.
3238 *** Deleted =org-mode-p=
3240     This function has been deleted: please update your code.
3242 ** Important new features
3244 *** New Org to ODT exporter
3246     Jambunathan's Org to ODT exporter is now part of Org.
3248     To use it, it `C-c C-e o' in an Org file.  See the documentation
3249     for more information on how to customize it.
3251 *** org-capture.el is now the default capture system
3253     This replaces the earlier system org-remember.  The manual only
3254     describes org-capture, but for people who prefer to continue to
3255     use org-remember, we keep a static copy of the former manual
3256     section [[http://orgmode.org/org-remember.pdf][chapter about remember]].
3258     The new system has a technically cleaner implementation and more
3259     possibilities for capturing different types of data.  See
3260     [[http://thread.gmane.org/gmane.emacs.orgmode/26441/focus%3D26441][Carsten's announcement]] for more details.
3262     To switch over to the new system:
3264     1. Run
3266      : M-x org-capture-import-remember-templates RET
3268        to get a translated version of your remember templates into the
3269        new variable =org-capture-templates=.  This will "mostly" work,
3270        but maybe not for all cases.  At least it will give you a good
3271        place to modify your templates.  After running this command,
3272        enter the customize buffer for this variable with
3274      : M-x customize-variable RET org-capture-templates RET
3276        and convince yourself that everything is OK.  Then save the
3277        customization.
3279     2. Bind the command =org-capture= to a key, similar to what you did
3280        with org-remember:
3282      : (define-key global-map "\C-cc" 'org-capture)
3284        If your fingers prefer =C-c r=, you can also use this key once
3285        you have decided to move over completely to the new
3286        implementation.  During a test time, there is nothing wrong
3287        with using both system in parallel.
3289 ** New libraries
3291 *** New Org libraries
3292 **** org-eshell.el (Konrad Hinsen)
3294      Implement links to eshell buffers.
3296 **** org-special-blocks (Carsten Dominik)
3298      This package generalizes the #+begin_foo and #+end_foo tokens.
3300      To use, put the following in your init file:
3302      #+BEGIN_EXAMPLE
3303 (require 'org-special-blocks)
3304 #+END_EXAMPLE
3306      The tokens #+begin_center, #+begin_verse, etc. existed
3307      previously.  This package generalizes them (at least for the
3308      LaTeX and html exporters).  When a #+begin_foo token is
3309      encountered by the LaTeX exporter, it is expanded
3310      into \begin{foo}.  The text inside the environment is not
3311      protected, as text inside environments generally is.
3312      When #+begin_foo is encountered by the html exporter, a div with
3313      class foo is inserted into the HTML file.  It is up to the user
3314      to add this class to his or her stylesheet if this div is to mean
3315      anything.
3317 **** org-taskjuggler.el (Christian Egli)
3319      Christian Egli's /org-taskjuggler.el/ module is now part of Org.
3320      He also wrote a [[http://orgmode.org/worg/org-tutorials/org-taskjuggler.php][tutorial]] for it.
3322 **** org-ctags.el (Paul Sexton)
3324      Targets like =<<my target>>= can now be found by Emacs' etag
3325      functionality, and Org-mode links can be used to to link to
3326      etags, also in non-Org-mode files.  For details, see the file
3327      /org-ctags.el/.
3329      This feature uses a new hook =org-open-link-functions= which will
3330      call function to do something special with text links.
3332      Thanks to Paul Sexton for this contribution.
3334 **** org-docview.el (Jan Böcker)
3336      This new module allows links to various file types using docview, where
3337      Emacs displays images of document pages.  Docview link types can point
3338      to a specific page in a document, for example to page 131 of the
3339      Org-mode manual:
3341      : [[docview:~/.elisp/org/doc/org.pdf::131][Org-Mode Manual]]
3343      Thanks to Jan Böcker for this contribution.
3345 *** New Babel libraries
3347 - ob-picolisp.el (Thorsten Jolitz)
3348 - ob-fortran.el (Sergey Litvinov)
3349 - ob-shen.el (Eric Schulte)
3350 - ob-maxima.el (Eric S Fraga)
3351 - ob-java.el (Eric Schulte)
3352 - ob-lilypond.el (Martyn Jago)
3353 - ob-awk.el (Eric Schulte)
3355 ** Other new features and various enhancements
3357 *** Hyperlinks
3359 **** Org-Bibtex -- major improvements
3361      Provides support for managing bibtex bibliographical references
3362      data in headline properties.  Each headline corresponds to a
3363      single reference and the relevant bibliographic meta-data is
3364      stored in headline properties, leaving the body of the headline
3365      free to hold notes and comments.  Org-bibtex is aware of all
3366      standard bibtex reference types and fields.
3368      The key new functions are
3370      - org-bibtex-check :: queries the user to flesh out all required
3371           (and with prefix argument optional) bibtex fields available
3372           for the specific reference =type= of the current headline.
3374      - org-bibtex-create :: Create a new entry at the given level,
3375           using org-bibtex-check to flesh out the relevant fields.
3377      - org-bibtex-yank :: Yank a bibtex entry on the kill ring as a
3378           formatted Org-mode headline into the current buffer
3380      - org-bibtex-export-to-kill-ring :: Export the current headline
3381           to the kill ring as a formatted bibtex entry.
3383 **** org-gnus.el now allows link creation from messages
3385      You can now create links from messages.  This is particularly
3386      useful when the user wants to stored messages that he sends, for
3387      later check.  Thanks to Ulf Stegemann for the patch.
3389 **** Modified link escaping
3391      David Maus worked on `org-link-escape'.  See [[http://article.gmane.org/gmane.emacs.orgmode/37888][his message]]:
3393      : Percent escaping is used in Org mode to escape certain characters
3394      : in links that would either break the parser (e.g. square brackets
3395      : in link target oder description) or are not allowed to appear in
3396      : a particular link type (e.g. non-ascii characters in a http:
3397      : link).
3398      :
3399      : With this change in place Org will apply percent escaping and
3400      : unescaping more consistently especially for non-ascii characters.
3401      : Additionally some of the outstanding bugs or glitches concerning
3402      : percent escaped links are solved.
3404      Thanks a lot to David for this work.
3406 **** Make =org-store-link= point to directory in a dired buffer
3408      When, in a dired buffer, the cursor is not in a line listing a
3409      file, `org-store-link' will store a link to the directory.
3411      Patch by Stephen Eglen.
3413 **** Allow regexps in =org-file-apps= to capture link parameters
3415      The way extension regexps in =org-file-apps= are handled has
3416      changed.  Instead of matching against the file name, the regexps
3417      are now matched against the whole link, and you can use grouping
3418      to extract link parameters which you can then use in a command
3419      string to be executed.
3421      For example, to allow linking to PDF files using the syntax
3422      =file:/doc.pdf::<page number>=, you can add the following entry
3423      to org-file-apps:
3425      #+begin_example
3426      Extension: \.pdf::\([0-9]+\)\'
3427      Command:   evince "%s" -p %1
3428      #+end_example
3430      Thanks to Jan Böcker for a patch to this effect.
3432 *** Dates and time
3434 **** Allow relative time when scheduling/adding a deadline
3436      You can now use relative duration strings like "-2d" or "++3w"
3437      when calling =org-schedule= or =org-deadline=: it will schedule
3438      (or set the deadline for) the item respectively two days before
3439      today and three weeks after the current timestamp, if any.
3441      You can use this programmatically: =(org-schedule nil "+2d")=
3442      will work on the current entry.
3444      You can also use this while (bulk-)rescheduling and
3445      (bulk-)resetting the deadline of (several) items from the agenda.
3447      Thanks to Memnon Anon for a heads up about this!
3449 **** American-style dates are now understood by =org-read-date=
3451      So when you are prompted for a date, you can now answer like this
3453      #+begin_example
3454      2/5/3         --> 2003-02-05
3455      2/5           --> <CURRENT-YEAR>-02-05
3456      #+end_example
3458 *** Agenda
3460 **** =org-agenda-custom-commands= has a default value
3462      This option used to be `nil' by default.  This now has a default
3463      value, displaying an agenda and all TODOs.  See the docstring for
3464      details.  Thanks to Carsten for this.
3466 **** Improved filtering through =org-agenda-to-appt=
3468      The new function allows the user to refine the scope of entries
3469      to pass to =org-agenda-get-day-entries= and allows to filter out
3470      entries using a function.
3472      Thanks to Peter Münster for raising a related issue and to
3473      Tassilo Horn for this idea.  Also thanks to Peter Münster for
3474      [[git:68ffb7a7][fixing a small bug]] in the final implementation.
3476 **** Allow ap/pm times in agenda time grid
3478      Times in the agenda can now be displayed in am/pm format.  See
3479      the new variable =org-agenda-timegrid-use-ampm=.  Thanks to
3480      C. A. Webber for a patch to this effect.
3482 **** Agenda: Added a bulk "scattering" command
3484      =B S= in the agenda buffer will cause tasks to be rescheduled a
3485      random number of days into the future, with 7 as the default.
3486      This is useful if you've got a ton of tasks scheduled for today,
3487      you realize you'll never deal with them all, and you just want
3488      them to be distributed across the next N days.  When called with
3489      a prefix arg, rescheduling will avoid weekend days.
3491      Thanks to John Wiegley for this.
3493 *** Exporting
3495 **** Simplification of org-export-html-preamble/postamble
3497      When set to `t', export the preamble/postamble as usual, honoring
3498      the =org-export-email/author/creator-info= variables.
3500      When set to a formatting string, insert this string.  See the
3501      docstring of these variable for details about available
3502      %-sequences.
3504      You can set =:html-preamble= in publishing project in the same
3505      way: `t' means to honor =:email/creator/author-info=, and a
3506      formatting string will insert a string.
3508 **** New exporters to Latin-1 and UTF-8
3510      While Ulf Stegemann was going through the entities list to
3511      improve the LaTeX export, he had the great idea to provide
3512      representations for many of the entities in Latin-1, and for all
3513      of them in UTF-8.  This means that we can now export files rich
3514      in special symbols to Latin-1 and to UTF-8 files.  These new
3515      exporters can be reached with the commands =C-c C-e n= and =C-c
3516      C-e u=, respectively.
3518      When there is no representation for a given symbol in the
3519      targeted coding system, you can choose to keep the TeX-macro-like
3520      representation, or to get an "explanatory" representation.  For
3521      example, =\simeq= could be represented as "[approx. equal to]".
3522      Please use the variable =org-entities-ascii-explanatory= to state
3523      your preference.
3525 **** HTML export: Add class to outline containers using property
3527      The =HTML_CONTAINER_CLASS= property can now be used to add a
3528      class name to the outline container of a node in HTML export.
3530 **** Throw an error when creating an image from a LaTeX snippet fails
3532      This behavior can be configured with the new option variable
3533      =org-format-latex-signal-error=.
3535 **** Support for creating BEAMER presentations from Org-mode documents
3537      Org-mode documents or subtrees can now be converted directly in
3538      to BEAMER presentation.  Turning a tree into a simple
3539      presentations is straight forward, and there is also quite some
3540      support to make richer presentations as well.  See the [[http://orgmode.org/manual/Beamer-class-export.html#Beamer-class-export][BEAMER
3541      section]] in the manual for more details.
3543      Thanks to everyone who has contributed to the discussion about
3544      BEAMER support and how it should work.  This was a great example
3545      for how this community can achieve a much better result than any
3546      individual could.
3548 *** Refiling
3550 **** Refile targets can now be cached
3552      You can turn on caching of refile targets by setting the variable
3553      =org-refile-use-cache=.  This should speed up refiling if you
3554      have many eligible targets in many files.  If you need to update
3555      the cache because Org misses a newly created entry or still
3556      offers a deleted one, press =C-0 C-c C-w=.
3558 **** New logging support for refiling
3560      Whenever you refile an item, a time stamp and even a note can be
3561      added to this entry.  For details, see the new option
3562      =org-log-refile=.
3564      Thanks to Charles Cave for this idea.
3566 *** Completion
3568 **** In-buffer completion is now done using John Wiegley's pcomplete.el
3570      Thanks to John Wiegley for much of this code.
3572 *** Tables
3574 **** New command =org-table-transpose-table-at-point=
3576      See the docstring.  This hack from Juan Pechiar is now part of
3577      Org's core.  Thanks to Juan!
3579 **** Display field's coordinates when editing it with =C-c `=
3581      When editing a field with =C-c `=, the field's coordinate will
3582      the displayed in the buffer.
3584      Thanks to Michael Brand for a patch to this effect.
3586 **** Spreadsheet computation of durations and time values
3588      If you want to compute time values use the =T= flag, either in
3589      Calc formulas or Elisp formulas:
3591      | Task 1 | Task 2 |   Total |
3592      |--------+--------+---------|
3593      |  35:00 |  35:00 | 1:10:00 |
3594      #+TBLFM: @2$3=$1+$2;T
3596      Values must be of the form =[HH:]MM:SS=, where hours are
3597      optional.
3599      Thanks to Martin Halder, Eric Schulte and Carsten for code and
3600      feedback on this.
3602 **** Implement formulas applying to field ranges
3604      Carsten implemented this field-ranges formulas.
3606      : A frequently requested feature for tables has been to be able to define
3607      : row formulas in a way similar to column formulas.  The patch below allows
3608      : things like
3609      :
3610      : @3=
3611      : @2$2..@5$7=
3612      : @I$2..@II$4=
3613      :
3614      : as the left hand side for table formulas in order to write a formula that
3615      : is valid for an entire column or for a rectangular section in a
3616      : table.
3618      Thanks a lot to Carsten for this.
3620 **** Sending radio tables from org buffers is now allowed
3622      Org radio tables can no also be sent inside Org buffers.  Also,
3623      there is a new hook which get called after a table has been sent.
3625      Thanks to Seweryn Kokot.
3627 *** Lists
3629 **** Improved handling of lists
3631      Nicolas Goaziou extended and improved the way Org handles lists.
3633      1. Indentation of text determines again end of items in
3634         lists. So, some text less indented than the previous item
3635         doesn't close the whole list anymore, only all items more
3636         indented than it.
3638      2. Alphabetical bullets are implemented, through the use of the
3639         variable `org-alphabetical-lists'. This also adds alphabetical
3640         counters like [@c] or [@W].
3642      3. Lists can now safely contain drawers, inline tasks, or various
3643         blocks, themselves containing lists. Two variables are
3644         controlling this: `org-list-forbidden-blocks', and
3645         `org-list-export-context'.
3647      4. Improve `newline-and-indent' (C-j): used in an item, it will
3648         keep text from moving at column 0. This allows to split text
3649         and make paragraphs and still not break the list.
3651      5. Improve `org-toggle-item' (C-c -): used on a region with
3652         standard text, it will change the region into one item. With a
3653         prefix argument, it will fallback to the previous behavior and
3654         make every line in region an item. It permits to easily
3655         integrate paragraphs inside a list.
3657      6. `fill-paragraph' (M-q) now understands lists. It can freely be
3658         used inside items, or on text just after a list, even with no
3659         blank line around, without breaking list structure.
3661      Thanks a lot to Nicolas for all this!
3663 *** Inline display of linked images
3665     Images can now be displayed inline.  The key C-c C-x C-v does
3666     toggle the display of such images.  Note that only image links
3667     that have no description part will be inlined.
3669 *** Implement offsets for ordered lists
3671     If you want to start an ordered plain list with a number different
3672     from 1, you can now do it like this:
3674     : 1. [@start:12] will star a lit a number 12
3676 *** Babel: code block body expansion for table and preview
3678     In org-babel, code is "expanded" prior to evaluation. I.e. the
3679     code that is actually evaluated comprises the code block contents,
3680     augmented with the extra code which assigns the referenced data to
3681     variables. It is now possible to preview expanded contents, and
3682     also to expand code during during tangling. This expansion takes
3683     into account all header arguments, and variables.
3685     A new keybinding `C-c M-b p' bound to `org-babel-expand-src-block'
3686     can be used from inside of a source code block to preview its
3687     expanded contents (which can be very useful for debugging).
3688     tangling
3690     The expanded body can now be tangled, this includes variable
3691     values which may be the results of other source-code blocks, or
3692     stored in headline properties or tables. One possible use for this
3693     is to allow those using org-babel for their emacs initialization
3694     to store values (e.g. usernames, passwords, etc...) in headline
3695     properties or in tables.
3697     Org-babel now supports three new header arguments, and new default
3698     behavior for handling horizontal lines in tables (hlines), column
3699     names, and rownames across all languages.
3701 *** Editing Convenience and Appearance
3703 **** New command =org-copy-visible= (=C-c C-x v=)
3705      This command will copy the visible text in the region into the
3706      kill ring.  Thanks to Florian Beck for this function and to
3707      Carsten for adding it to org.el and documenting it!
3709 **** Make it possible to protect hidden subtrees from being killed by =C-k=
3711      See the new variable =org-ctrl-k-protect-subtree=.  This was a
3712      request by Scott Otterson.
3714 **** Implement pretty display of entities, sub-, and superscripts.
3716      The command =C-c C-x \= toggles the display of Org's special
3717      entities like =\alpha= as pretty unicode characters.  Also, sub
3718      and superscripts are displayed in a pretty way (raised/lower
3719      display, in a smaller font).  If you want to exclude sub- and
3720      superscripts, see the variable
3721      =org-pretty-entities-include-sub-superscripts=.
3723      Thanks to Eric Schulte and Ulf Stegeman for making this possible.
3725 **** New faces for title, date, author and email address lines
3727      The keywords in these lines are now dimmed out, and the title is
3728      displayed in a larger font, and a special font is also used for
3729      author, date, and email information.  This is implemented by the
3730      following new faces:
3732      =org-document-title=
3733      =org-document-info=
3734      =org-document-info-keyword=
3736      In addition, the variable =org-hidden-keywords= can be used to
3737      make the corresponding keywords disappear.
3739      Thanks to Dan Davison for this feature.
3741 **** Simpler way to specify faces for tags and todo keywords
3743      The variables =org-todo-keyword-faces=, =org-tag-faces=, and
3744      =org-priority-faces= now accept simple color names as
3745      specifications.  The colors will be used as either foreground or
3746      background color for the corresponding keyword.  See also the
3747      variable =org-faces-easy-properties=, which governs which face
3748      property is affected by this setting.
3750      This is really a great simplification for setting keyword faces.
3751      The change is based on an idea and patch by Ryan Thompson.
3753 **** <N> in tables now means fixed width, not maximum width
3755      Requested by Michael Brand.
3757 **** Better level cycling function
3759      =TAB= in an empty headline cycles the level of that headline
3760      through likely states.  Ryan Thompson implemented an improved
3761      version of this function, which does not depend upon when exactly
3762      this command is used.  Thanks to Ryan for this improvement.
3764 **** Adaptive filling
3766      For paragraph text, =org-adaptive-fill-function= did not handle
3767      the base case of regular text which needed to be filled.  This is
3768      now fixed.  Among other things, it allows email-style ">"
3769      comments to be filled correctly.
3771      Thanks to Dan Hackney for this patch.
3773 **** `org-reveal' (=C-c C-r=) also decrypts encrypted entries (org-crypt.el)
3775      Thanks to Richard Riley for triggering this change.
3777 **** Better automatic letter selection for TODO keywords
3779      When all first letters of keywords have been used, Org now
3780      assigns more meaningful characters based on the keywords.
3782      Thanks to Mikael Fornius for this patch.
3784 *** Clocking
3786 **** Clock: Allow synchronous update of timestamps in CLOCK log
3788      Using =S-M-<up/down>= on CLOCK log timestamps will
3789      increase/decrease the two timestamps on this line so that
3790      duration will keep the same.  Note that duration can still be
3791      slightly modified in case a timestamp needs some rounding.
3793      Thanks to Rainer Stengele for this idea.
3795 **** Localized clock tables
3797      Clock tables now support a new new =:lang= parameter, allowing
3798      the user to customize the localization of the table headers.  See
3799      the variable =org-clock-clocktable-language-setup= which controls
3800      available translated strings.
3802 **** Show clock overruns in mode line
3804      When clocking an item with a planned effort, overrunning the
3805      planned time is now made visible in the mode line, for example
3806      using the new face =org-mode-line-clock-overrun=, or by adding an
3807      extra string given by =org-task-overrun-text=.
3809      Thanks to Richard Riley for a patch to this effect.
3811 **** Clock reports can now include the running, incomplete clock
3813      If you have a clock running, and the entry being clocked falls
3814      into the scope when creating a clock table, the time so far spent
3815      can be added to the total.  This behavior depends on the setting
3816      of =org-clock-report-include-clocking-task=.  The default is
3817      =nil=.
3819      Thanks to Bernt Hansen for this useful addition.
3821 *** Misc
3823 **** Improvements with inline tasks and indentation
3825      There is now a configurable way on how to export inline tasks.
3826      See the new variable =org-inlinetask-export-templates=.
3828      Thanks to Nicolas Goaziou for coding these changes.
3830 **** A property value of "nil" now means to unset a property
3832      This can be useful in particular with property inheritance, if
3833      some upper level has the property, and some grandchild of it
3834      would like to have the default settings (i.e. not overruled by a
3835      property) back.
3837      Thanks to Robert Goldman and Bernt Hansen for suggesting this
3838      change.
3840 **** New helper functions in org-table.el
3842      There are new functions to access and write to a specific table field.
3843      This is for hackers, and maybe for the org-babel people.
3845      #+begin_example
3846      org-table-get
3847      org-table-put
3848      org-table-current-line
3849      org-table-goto-line
3850      #+end_example
3852 **** Archiving: Allow to reverse order in target node
3854      The new option =org-archive-reversed-order= allows to have
3855      archived entries inserted in a last-on-top fashion in the target
3856      node.
3858      This was requested by Tom.
3860 **** Org-reveal: Double prefix arg shows the entire subtree of the parent
3862      This can help to get out of an inconsistent state produced for
3863      example by viewing from the agenda.
3865      This was a request by Matt Lundin.
3867 * License
3869   This file is part of GNU Emacs.
3871   GNU Emacs is free software: you can redistribute it and/or modify
3872   it under the terms of the GNU General Public License as published by
3873   the Free Software Foundation, either version 3 of the License, or
3874   (at your option) any later version.
3876   GNU Emacs is distributed in the hope that it will be useful,
3877   but WITHOUT ANY WARRANTY; without even the implied warranty of
3878   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3879   GNU General Public License for more details.
3881   You should have received a copy of the GNU General Public License
3882   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.